/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:"Segoe UI", Tahoma, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: white;
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 70px;
  display: block;
}
.navbar {
  display: flex;
  gap: 20px;
padding:20px 0px;
}
.navbar a {
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  color: #000;
  position: relative;
  text-decoration: none;
}


.navbar a:not(.btn):hover {
  background: none; 
  background-image: linear-gradient(135deg, #5f2dde, #3e1d9c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Underline effect */
.navbar a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0%;
  height: 2px;
  background: linear-gradient(135deg, #5f2dde, #3e1d9c);
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}


.navbar .btn {
  background: linear-gradient(135deg, #5f2dde, #3e1d9c);
  color: #fff;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(95, 45, 222, 0.3);
  border-radius: 6px;
  padding: 8px 14px;
}

.navbar .btn:hover {
opacity:0.8;
}
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 0 0 8px 8px;
  }
  .navbar.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #fff, #f4f0ff);
  padding: 80px 0;
}
.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-text {
  flex: 1;
  min-width: 280px;
}
.hero-text h1 {
  font-size: 2.2rem;
  color: #5f2dde;
  font-weight: bold;
  margin-bottom: 15px;
}
.hero-text h2 {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #555;
}
.hero-text p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #555;
}
.cta-btn {
  background: linear-gradient(135deg, #5f2dde, #3e1d9c);
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(95, 45, 222, 0.3);
  display: inline-block;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(95, 45, 222, 0.4);
}
.hero-image {
  flex: 1;
  text-align: center;
}
.hero-image img {
  max-width: 100%;
  border-radius: 12px;
  height: auto;
}

/* Floating Widgets */
.floating-widgets {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.widget {
  position: absolute;
  transition: transform 3s linear, top 3s linear, left 3s linear;
}
.widget img {
  width: 35px;
  height: 35px;
  display: block;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ABOUT */
.about {
  padding: 80px 0;
}
.about-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.about-text {
  flex: 1;
  min-width: 280px;
}
.about-text h2 {
  color: #5f2dde;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.about-text p {
  margin-bottom: 15px;
  color: #555;
}
.about-btn {
  display: inline-block;
  margin-top: 15px;
  background: linear-gradient(135deg, #5f2dde, #3e1d9c);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(95, 45, 222, 0.3);
}
.about-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}
.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* FEATURES */
.features {
  background: #f7f4ff;
  padding: 80px 0;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  color: #5f2dde;
  margin-bottom: 15px;
}
.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
  color: #555;
  font-size: 1rem;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.feature-text {
  flex: 1;
  min-width: 280px;
}
.feature-text h3 {
  color: #5f2dde;
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.feature-text h3 i {
  margin-right: 10px;
}
.feature-text p {
  color: #555;
  margin-bottom: 15px;
}
.feature-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}
.feature-image img {
  max-width: 70%;
  border-radius: 8px;
}
.feature-card:nth-child(even) {
  flex-direction: row-reverse;
}

/* CONTACT */
.contact {
  padding: 80px 0;
  background: #f9f9f9;
}
.contact-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.contact-image img {
  max-width: 450px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.contact-form {
  flex: 1;
  max-width: 500px;
}
.contact-form h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #5f2dde;
}
.contact-form p {
  margin-bottom: 25px;
  color: #666;
  font-size: 1rem;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #5f2dde;
  box-shadow: 0 0 6px rgba(95, 45, 222, 0.2);
}
.cta-btn {
  display: inline-block;
  background: #5f2dde;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-btn i {
  margin-left: 8px;
}
.cta-btn:hover {
  background: #4b23b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(95, 45, 222, 0.3);
}
/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}
.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.5s; }
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, #5f2dde, #3e1d9c);
  color: #fff;
  text-align: center;
  padding: 25px 20px;
  font-size: 1rem;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 992px) {
  .hero-text h1 { font-size: 2rem; }
  .about-text h2, .section-title { font-size: 1.6rem; }
}
@media (max-width: 768px) {
  .hero, .about, .features, .contact { padding: 60px 20px; }
  .hero-text h1 { font-size: 1.8rem; }
  .hero-text h2 { font-size: 1rem; }
  .contact-form h2 { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.5rem; }
  .cta-btn { padding: 10px 20px; font-size: 14px; }
  .feature-image img { max-width: 90%; }
  .contact-image img { max-width: 100%; }
}
