
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  body {
    background: #f0f4f8;
  }

  /* Navbar Container */
  nav {
    background: #1e1e2f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  /* Logo */
  nav .logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: transform 0.3s, color 0.3s;
  }

  nav .logo:hover {
    color: #ff6b6b;
    transform: rotate(-5deg) scale(1.1);
  }

  /* Menu */
  nav ul {
    display: flex;
    list-style: none;
  }

  nav ul li {
    margin-left: 30px;
    position: relative;
  }

  nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
  }

  /* Hover underline animation */
  nav ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    background: #ff6b6b;
    left: 0;
    bottom: -5px;
    transition: 0.4s;
    border-radius: 3px;
  }

  nav ul li a:hover::after {
    width: 100%;
  }

  /* Extra hover effect */
  nav ul li a:hover {
    color: #ff6b6b;
    transform: translateY(-3px);
  }

  /* Hamburger for mobile */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }

  .hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: 0.3s;
  }

  /* Responsive */
  @media (max-width: 768px) {
    nav ul {
      position: fixed;
      left: -100%;
      top: 0;
      flex-direction: column;
      width: 60%;
      height: 100vh;
      background: #1e1e2f;
      padding-top: 100px;
      transition: 0.4s;
    }

    nav ul li {
      margin: 20px 0;
    }

    nav ul.show {
      left: 0;
    }

    .hamburger {
      display: flex;
    }
  }



/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Floating Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(100px);
  animation: float 15s infinite ease-in-out;
}

.shape1 { width: 300px; height: 300px; background: #ff6b6b; top: 10%; left: 15%; animation-delay: 0s; }
.shape2 { width: 200px; height: 200px; background: #ffd93d; bottom: 20%; right: 10%; animation-delay: 3s; }
.shape3 { width: 400px; height: 400px; background: #6a82fb; top: 50%; left: -10%; animation-delay: 5s; }
.shape4 { width: 250px; height: 250px; background: #8ff7a7; bottom: 5%; left: 40%; animation-delay: 7s; }

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-50px) translateX(50px); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeUp 1.5s ease forwards;
}

/* Heading with Gradient Text */
.gradient-text {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6a82fb);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientShift 5s ease infinite;
  transition: transform 0.4s;
}

.gradient-text:hover {
  transform: scale(1.05);
}

/* Paragraph */
.hero-content p {
  font-size: 1.2rem;
  margin: 20px 0 40px;
  line-height: 1.6;
  opacity: 0.85;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Primary button with glow */
.btn-primary {
  background: #ff6b6b;
  color: #fff;
  box-shadow: 0 0 15px rgba(255,107,107,0.5);
}

.btn-primary:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255,107,107,0.8);
}

/* Secondary button */
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #6a82fb;
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255,255,255,0.5);
}

/* Animations */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gradient-text {
  background-size: 200% 200%;
}

/* Responsive */
@media (max-width: 768px) {
  .gradient-text { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
}


/* Who We Are Section */
.who-we-are-section {
  width: 100%;
  padding: 100px 5%;
  background: #f8f9fb;
  color: #1e1e2f;
  position: relative;
  overflow: hidden;
}

/* Container */
.who-we-are-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Flex Layout */
.who-we-are-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* Image Column */
.image-column {
  flex: 1;
  min-width: 300px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s, box-shadow 0.4s;
}

.image-column img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}

.image-column:hover img {
  transform: scale(1.05);
}

.image-column:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Text Column */
.text-column {
  flex: 1;
  min-width: 300px;
  animation: fadeLeft 1.2s ease forwards;
}

.text-column h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.text-column h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #ff6b6b;
  margin-top: 8px;
  border-radius: 2px;
}

.text-column p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
}

.features {
  list-style: none;
  margin-bottom: 30px;
}

.features li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  transition: transform 0.3s;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: bold;
  font-size: 1.2rem;
}

.features li:hover {
  transform: translateX(5px);
}

/* Button */
.text-column .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: #ff6b6b;
  transition: all 0.4s;
  box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.text-column .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255,107,107,0.6);
}

/* Animations */
@keyframes fadeLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .who-we-are-content {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .text-column h2 { font-size: 2rem; }
}



/* Services Section */
.services-section {
  width: 100%;
  padding: 100px 5%;
  background: #fff;
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff6b6b, #6a82fb);
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientShift 5s ease infinite;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Service Cards */
.service-card {
  background: #f8f9fb;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  transition: transform 0.4s, color 0.4s;
}

.service-card:hover .icon {
  transform: rotate(15deg) scale(1.2);
  color: #ff6b6b;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1e1e2f;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  transition: color 0.3s;
}

.service-card:hover p {
  color: #333;
}

/* Button */
.services-btn {
  margin-top: 60px;
}

.services-btn .btn {
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  background: #ff6b6b;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.services-btn .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255,107,107,0.6);
}

/* Gradient Animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-title {
  background-size: 200% 200%;
}

/* Responsive */
@media (max-width: 768px) {
  .services-section { padding: 60px 5%; }
  .section-title { font-size: 2rem; }
  .services-btn .btn { padding: 12px 30px; }
}

/* Newsletter Section */
.newsletter-section {
  width: 100%;
  padding: 100px 5%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  text-align: center;
  position: relative;
}

.newsletter-section .section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6a82fb);
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientShift 5s ease infinite;
}

.newsletter-section .section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: #f0f0f0;
}

/* Form Styles */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input {
  padding: 12px 15px;
  border-radius: 50px;
  border: none;
  outline: none;
  min-width: 200px;
}

.newsletter-form .btn-primary {
  padding: 12px 35px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: #ff6b6b;
  color: #fff;
  transition: all 0.4s;
}

.newsletter-form .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,107,107,0.6);
}

/* Unsubscribe Button */
.btn-secondary {
  padding: 10px 30px;
  border-radius: 50px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #fff;
  color: #764ba2;
  transform: scale(1.05);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  color: #1e1e2f;
  max-width: 400px;
  width: 90%;
}

.modal-content h3 {
  margin-bottom: 15px;
}

.modal-content p {
  margin-bottom: 20px;
}

.modal-content .btn {
  margin: 10px;
}

/* Close Button */
.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 25px;
  cursor: pointer;
  color: #333;
}

/* Confirmation Message */
.confirmation-message {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b6b;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  display: none;
  font-weight: 600;
}

/* Gradient Animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-title {
  background-size: 200% 200%;
}

/* Responsive */
@media(max-width: 768px) {
  .newsletter-form { flex-direction: column; gap: 15px; }
  .form-group input { min-width: 100%; }
}


/* FAQ Section */
.faq-section {
  width: 100%;
  padding: 100px 5%;
  background: #f0f4f8;
  color: #1e1e2f;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff6b6b, #6a82fb);
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientShift 5s ease infinite;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 60px;
  color: #555;
}

/* FAQ Container */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* FAQ Item */
.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Question */
.faq-question {
  padding: 20px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 30px;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

/* Answer */
.faq-answer {
  padding: 0 30px 20px;
  font-size: 1rem;
  line-height: 1.6;
  display: none;
  color: #333;
}

/* Show Answer */
.faq-item.active .faq-answer {
  display: block;
  animation: fadeDown 0.5s ease forwards;
}

/* Animations */
@keyframes fadeDown {
  0% { opacity: 0; transform: translateY(-20px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-title {
  background-size: 200% 200%;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question { font-size: 1.1rem; }
  .faq-answer { font-size: 0.95rem; }
}



/* Footer Styles */
.footer-section {
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  color: #fff;
  padding: 80px 5% 40px;
  position: relative;
}

.footer-logo {
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-about {
  line-height: 1.7;
  color: #e0e0e0;
}

.footer-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-link:hover {
  color: #ffd93d;
  transform: translateX(5px);
}

.footer-divider {
  border-color: rgba(255,255,255,0.2);
  margin: 30px 0;
}

/* Subscribe Button */
.btn-subscribe {
  background: #ff6b6b;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s;
}

.btn-subscribe:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255,107,107,0.6);
}

/* Social Icons */
.social-icons i {
  font-size: 1.3rem;
  margin: 0 10px;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
}

.social-icons i:hover {
  transform: scale(1.2);
  color: #ffd93d;
}

/* Contact Section */
.contact-section {
  width: 100%;
  padding: 100px 5%;
  background: linear-gradient(135deg, #764ba2, #667eea);
  color: #fff;
  text-align: center;
  position: relative;
}

.contact-section .section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6a82fb);
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientShift 5s ease infinite;
}

.contact-section .section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: #f0f0f0;
}

/* Form */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeUp 1.2s ease forwards;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border-radius: 50px;
  border: none;
  outline: none;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(255,255,255,0.4);
}

/* Button */
.contact-form .btn-primary {
  padding: 15px 40px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: #ff6b6b;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.contact-form .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255,107,107,0.6);
}

/* Confirmation Popup */
.confirmation-popup {
  display: none;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b6b;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  z-index: 1000;
}

/* Animations */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(50px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-title {
  background-size: 200% 200%;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section { padding: 60px 5%; }
}
