* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #ffffff;
  color: #333;
  overflow-x: hidden;
}

header {
  background: linear-gradient(135deg, #6b48ff, #8a2be2);
  color: white;
  padding: 2rem 6rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 3.2rem;
  font-weight: 900;
}

header nav {
  display: flex;
  align-items: center;
}

header nav a {
  color: white;
  text-decoration: none;
  margin: 0 2rem;
  font-size: 1.3rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #e0d0ff;
}

/* Existing navigation styling (adjust if already defined) */
header {
  background-color: #1a1a1a; /* Dark background matching your theme */
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

nav a, .dropbtn {
  color: #fff;
  text-decoration: none;
  margin-left: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  transition: color 0.3s ease, background-color 0.3s ease;
  padding: 0.5rem 1rem;
}

nav a:hover, .dropbtn:hover {
  color: #007bff; /* Matches btn-primary hover or theme accent */
}

/* Dropdown styling to match theme */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px; /* Matches button style */
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #2d2d2d; /* Darker shade for dropdown, matching header */
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Subtle shadow */
  border-radius: 4px;
  z-index: 1001;
  top: 100%;
  left: 0;
  padding: 0.5rem 0;
}

.dropdown-content a {
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #007bff; /* Matches btn-primary hover */
  color: #fff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Optional: Smooth transition for dropdown appearance */
.dropdown-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.hero {
  height: 60vh;
  background: linear-gradient(to bottom, rgba(107, 72, 255, 0.8), rgba(138, 43, 226, 0.8)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover;
  text-align: center;
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 7rem;
}

.hero h2 {
  font-size: 4.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  animation: fadeIn 1.2s ease-in;
}

.hero p {
  font-size: 1.8rem;
  color: #f0f0f0;
  max-width: 1000px;
  margin-bottom: 2.5rem;
  animation: fadeIn 1.4s ease-in;
}

.hero .btn-primary, .hero .btn-secondary {
  padding: 1.4rem 3.5rem;
  border: none;
  border-radius: 35px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  animation: fadeIn 1.6s ease-in;
  margin: 0 1rem;
}

.hero .btn-primary {
  background: white;
  color: #6b48ff;
}

.hero .btn-primary:hover {
  background: #e0d0ff;
  transform: scale(1.05);
}

.hero .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.hero .btn-secondary:hover {
  background: white;
  color: #6b48ff;
  transform: scale(1.05);
}

.services {
  padding: 6rem 5rem;
  max-width: 1800px;
  margin: 0 auto;
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover fixed;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  z-index: -1;
}

.services h2 {
  font-size: 3.5rem;
  color: #333;
  margin-bottom: 3.5rem;
  text-align: center;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.service-card {
  background: white;
  padding: 3rem;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2), 0 0 15px rgba(107, 72, 255, 0.5);
}

.service-card i {
  font-size: 3.5rem;
  color: #6b48ff;
  margin-bottom: 1.8rem;
}

.service-card h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1.4rem;
  font-weight: 600;
}

.service-card p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

.stats {
  padding: 6rem 5rem;
  background: linear-gradient(135deg, #6b48ff, #8a2be2);
  color: white;
  text-align: center;
}

.stats h2 {
  font-size: 3.5rem;
  margin-bottom: 3.5rem;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  max-width: 1800px;
  margin: 0 auto;
}

.stat-card {
  padding: 2.5rem;
}

.stat-card .count {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  opacity: 0;
  transition: opacity 1s ease;
}

.stat-card p {
  font-size: 1.3rem;
  font-weight: 400;
}

.testimonials {
  padding: 7rem 6rem;
  background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover fixed;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 249, 250, 0.95);
  z-index: -1;
}

.testimonials h2 {
  font-size: 3.8rem;
  color: #333;
  margin-bottom: 4rem;
  text-align: center;
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 3.5rem;
  max-width: 1800px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 3.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  text-align: left;
  transition: transform 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2), 0 0 18px rgba(107, 72, 255, 0.5);
}

.testimonial-card p {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-card h4 {
  font-size: 1.4rem;
  color: #6b48ff;
  font-weight: 600;
}

.portfolio {
  padding: 6rem 5rem;
  max-width: 1800px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}

.portfolio h2 {
  font-size: 3.5rem;
  color: #333;
  margin-bottom: 3.5rem;
  text-align: center;
  font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
}

.portfolio-card {
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2), 0 0 15px rgba(107, 72, 255, 0.5);
}

.portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.portfolio-card div {
  padding: 2rem;
}

.portfolio-card h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.portfolio-card p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
}

.team {
  padding: 6rem 5rem;
  max-width: 1800px;
  margin: 0 auto;
  background: #f8f9fa;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
}

.team h2 {
  font-size: 3.5rem;
  color: #333;
  margin-bottom: 3.5rem;
  text-align: center;
  font-weight: 700;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.team-card {
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  text-align: center;
  padding: 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2), 0 0 15px rgba(107, 72, 255, 0.5);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.team-card h3 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.team-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.blog {
  padding: 6rem 5rem;
  max-width: 1800px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.2s;
}

.blog h2 {
  font-size: 3.5rem;
  color: #333;
  margin-bottom: 3.5rem;
  text-align: center;
  font-weight: 700;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
}

.blog-card {
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2), 0 0 15px rgba(107, 72, 255, 0.5);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card div {
  padding: 2rem;
}

.blog-card h3 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

.about {
  padding: 6rem 5rem;
  max-width: 1800px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.4s;
}

.about h2 {
  font-size: 3.5rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 700;
}

.about p {
  font-size: 1.3rem;
  color: #666;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.8;
}

.cta-banner {
  background: linear-gradient(135deg, #6b48ff, #8a2be2);
  color: white;
  text-align: center;
  padding: 5rem 4rem;
  margin: 4rem 0 0;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.6s;
}

.cta-banner h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.cta-banner button {
  background: white;
  color: #6b48ff;
  padding: 1.4rem 3.5rem;
  border: none;
  border-radius: 35px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-banner button:hover {
  background: #e0d0ff;
  color: #333;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #6b48ff, #8a2be2);
  color: white;
  text-align: center;
  padding: 1rem;
  z-index: 1000;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: slideIn 1s ease forwards;
  animation-delay: 2s;
}

.sticky-cta button {
  background: white;
  color: #6b48ff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sticky-cta button:hover {
  background: #e0d0ff;
}

.contact-form {
  padding: 7rem 6rem;
  max-width: 1800px;
  margin: 0 auto;
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover fixed;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  z-index: -1;
}

.contact-form h2 {
  font-size: 3.8rem;
  color: #333;
  margin-bottom: 4rem;
  text-align: center;
  font-weight: 700;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.form-container input, .form-container textarea {
  width: 100%;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1.1rem;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-container input:focus, .form-container textarea:focus {
  border: 2px solid #6b48ff;
  box-shadow: 0 0 12px rgba(107, 72, 255, 0.5);
}

.form-container textarea {
  resize: vertical;
  min-height: 150px;
}

.form-container button {
  width: 100%;
  padding: 1.4rem;
  border: none;
  border-radius: 35px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  background: #6b48ff;
  color: white;
  transition: background 0.3s ease, transform 0.2s ease;
}

.form-container button:hover {
  background: #8a2be2;
  transform: scale(1.05);
}

.map {
  padding: 7rem 6rem;
  max-width: 1800px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
}

.map h2 {
  font-size: 3.8rem;
  color: #333;
  margin-bottom: 4rem;
  text-align: center;
  font-weight: 700;
}

.map iframe {
  width: 100%;
  height: 500px;
  border: 4px solid #6b48ff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.why-choose-us {
  padding: 7rem 6rem;
  max-width: 1800px;
  margin: 0 auto;
  background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover fixed;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 249, 250, 0.95);
  z-index: -1;
}

.why-choose-us h2 {
  font-size: 3.8rem;
  color: #333;
  margin-bottom: 4rem;
  text-align: center;
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.5rem;
}

.why-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  text-align: center;
  padding: 3rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2), 0 0 18px rgba(107, 72, 255, 0.5);
}

.why-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.why-card h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.why-card p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

footer {
  background: linear-gradient(to bottom, rgba(107, 72, 255, 0.9), rgba(138, 43, 226, 0.9)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover;
  color: white;
  padding: 5rem 6rem 3rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1800px;
  margin: 0 auto 3rem;
}

.footer-column h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-column p, .footer-column a {
  font-size: 1rem;
  color: #f0f0f0;
  line-height: 1.8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #e0d0ff;
}

.footer-column .social-icons a {
  font-size: 1.5rem;
  margin: 0 0.8rem 0 0;
  color: #f0f0f0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column .social-icons a:hover {
  color: #e0d0ff;
  transform: scale(1.2);
}

.footer-column .contact-info i {
  margin-right: 0.5rem;
}

.footer-column .newsletter input {
  padding: 0.8rem;
  width: 70%;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
  outline: none;
}

.footer-column .newsletter button {
  padding: 0.8rem 1.5rem;
  border: none;
  background: #6b48ff;
  color: white;
  border-radius: 0 5px 5px 0;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-column .newsletter button:hover {
  background: #e0d0ff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  header {
    padding: 1.5rem 2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }

  header nav a {
    margin: 0 0.8rem;
    font-size: 1rem;
  }

  .hero {
    height: 50vh;
    padding: 0 2rem;
    margin-top: 6rem;
  }

  .hero h2 {
    font-size: 3.2rem;
  }

  .hero p {
    font-size: 1.4rem;
  }

  .hero .btn-primary, .hero .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    margin: 0.6rem;
  }

  .services, .stats, .testimonials, .portfolio, .team, .blog, .about, .cta-banner {
    padding: 4rem 2rem;
  }

  .services h2, .stats h2, .testimonials h2, .portfolio h2, .team h2, .blog h2, .about h2, .cta-banner h2 {
    font-size: 2.5rem;
  }

  .contact-form, .map, .why-choose-us, .testimonials {
    padding: 4rem 2rem;
  }

  .contact-form h2, .map h2, .why-choose-us h2, .testimonials h2 {
    font-size: 2.8rem;
  }

  .service-grid, .stats-grid, .testimonial-grid, .portfolio-grid, .team-grid, .blog-grid, .why-grid {
    grid-template-columns: 1fr;
  }

  .service-card, .testimonial-card, .portfolio-card, .team-card, .blog-card, .why-card {
    padding: 2rem;
  }

  .service-card i {
    font-size: 3rem;
  }

  .stat-card .count {
    font-size: 3rem;
  }

  .portfolio-card img, .blog-card img {
    height: 180px;
  }

  .team-card img {
    width: 100px;
    height: 100px;
  }

  .why-card img {
    width: 60px;
    height: 60px;
  }

  .why-card h3 {
    font-size: 1.6rem;
  }

  .why-card p {
    font-size: 1.1rem;
  }

  .form-container {
    padding: 2rem;
  }

  .form-container input, .form-container textarea {
    font-size: 1rem;
  }

  .form-container button {
    font-size: 1.1rem;
  }

  .map iframe {
    height: 300px;
  }

  .sticky-cta {
    padding: 0.8rem;
  }

  .sticky-cta button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  footer {
    padding: 3rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-column h3 {
    font-size: 1.5rem;
  }

  .footer-column .newsletter input {
    width: 60%;
  }
}


/* about */

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #ffffff;
      color: #333;
      overflow-x: hidden;
    }

    header {
      background: linear-gradient(135deg, #6b48ff, #8a2be2);
      color: white;
      padding: 2.5rem 9rem;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header h1 {
      font-size: 3.8rem;
      font-weight: 900;
    }

    header nav {
      display: flex;
      align-items: center;
    }

    header nav a {
      color: white;
      text-decoration: none;
      margin: 0 2.5rem;
      font-size: 1.5rem;
      font-weight: 400;
      transition: color 0.3s ease;
    }

    header nav a:hover {
      color: #e0d0ff;
    }

    .hero {
      height: 80vh;
      background: linear-gradient(to bottom, rgba(107, 72, 255, 0.8), rgba(138, 43, 226, 0.8)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover;
      text-align: center;
      padding: 0 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1;
      margin-top: 8rem;
    }

    .hero h2 {
      font-size: 5.5rem;
      font-weight: 900;
      color: white;
      margin-bottom: 1.5rem;
      animation: fadeIn 1.2s ease-in;
    }

    .hero .subheadline {
      font-size: 3rem;
      color: #f0f0f0;
      margin-bottom: 1rem;
      animation: fadeIn 1.4s ease-in;
    }

    .hero .tagline {
      font-size: 2rem;
      color: #e0d0ff;
      margin-bottom: 3rem;
      animation: fadeIn 1.6s ease-in;
    }

    .hero .btn-primary {
      padding: 1.6rem 4rem;
      border: none;
      border-radius: 40px;
      font-size: 1.5rem;
      font-weight: 600;
      cursor: pointer;
      background: white;
      color: #6b48ff;
      transition: background 0.3s ease, transform 0.2s ease;
      animation: fadeIn 1.8s ease-in;
    }

    .hero .btn-primary:hover {
      background: #e0d0ff;
      transform: scale(1.1);
    }

    .our-story {
      padding: 10rem 9rem;
      max-width: 2000px;
      margin: 0 auto;
      background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover fixed;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: zoomIn 1s ease forwards;
      animation-delay: 0.4s;
    }

    .our-story::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.92);
      z-index: -1;
    }

    .our-story h2 {
      font-size: 4.5rem;
      color: #333;
      margin-bottom: 3rem;
      text-align: center;
      font-weight: 700;
    }

    .story-content {
      display: flex;
      align-items: center;
      gap: 5rem;
      max-width: 1400px;
      margin: 0 auto 4rem;
    }

    .story-text {
      flex: 1;
    }

    .story-text p {
      font-size: 1.5rem;
      color: #555;
      line-height: 1.9;
      margin-bottom: 2rem;
    }

    .story-image img {
      width: 100%;
      max-width: 600px;
      border-radius: 20px;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
    }

    .timeline {
      max-width: 1400px;
      margin: 0 auto;
    }

    .timeline-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
      padding: 2.5rem;
      margin-bottom: 2rem;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .timeline-card:hover {
      transform: translateY(-12px) scale(1.1);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25), 0 0 25px rgba(107, 72, 255, 0.7);
    }

    .timeline-card img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      margin-bottom: 1.5rem;
    }

    .timeline-card h3 {
      font-size: 2rem;
      color: #6b48ff;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .timeline-card p {
      font-size: 1.3rem;
      color: #666;
      line-height: 1.9;
    }

    .mission-vision {
      padding: 10rem 9rem;
      max-width: 2000px;
      margin: 0 auto;
      background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover fixed;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: zoomIn 1s ease forwards;
      animation-delay: 0.6s;
    }

    .mission-vision::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(248, 249, 250, 0.95);
      z-index: -1;
    }

    .mission-vision h2 {
      font-size: 4.5rem;
      color: #333;
      margin-bottom: 5rem;
      text-align: center;
      font-weight: 700;
    }

    .mission-vision-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
      gap: 4rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .mission-vision-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
      text-align: center;
      padding: 3.5rem;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .mission-vision-card:hover {
      transform: translateY(-12px) scale(1.1);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25), 0 0 25px rgba(107, 72, 255, 0.7);
    }

    .mission-vision-card img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      margin-bottom: 2rem;
    }

    .mission-vision-card h3 {
      font-size: 2.2rem;
      color: #333;
      margin-bottom: 1.5rem;
      font-weight: 600;
    }

    .mission-vision-card p {
      font-size: 1.3rem;
      color: #666;
      line-height: 1.9;
    }

    .our-leadership {
      padding: 10rem 9rem;
      max-width: 2000px;
      margin: 0 auto;
      background: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover fixed;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: zoomIn 1s ease forwards;
      animation-delay: 0.8s;
    }

    .our-leadership::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.92);
      z-index: -1;
    }

    .our-leadership h2 {
      font-size: 4.5rem;
      color: #333;
      margin-bottom: 3rem;
      text-align: center;
      font-weight: 700;
    }

    .leadership-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
      gap: 4rem;
      max-width: 1400px;
      margin: 0 auto 4rem;
    }

    .leadership-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
      padding: 3.5rem;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .leadership-card:hover {
      transform: translateY(-12px) scale(1.1);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25), 0 0 25px rgba(107, 72, 255, 0.7);
    }

    .leadership-card img {
      width: 100%;
      max-width: 400px;
      border-radius: 20px;
      margin-bottom: 2rem;
    }

    .leadership-card h3 {
      font-size: 2.2rem;
      color: #6b48ff;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .leadership-card p {
      font-size: 1.3rem;
      color: #555;
      line-height: 1.9;
      margin-bottom: 1.5rem;
    }

    .leadership-card .vision-quote {
      font-size: 1.2rem;
      color: #666;
      font-style: italic;
    }

    .our-team {
      padding: 10rem 9rem;
      max-width: 2000px;
      margin: 0 auto;
      background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover fixed;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: zoomIn 1s ease forwards;
      animation-delay: 1s;
    }

    .our-team::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(248, 249, 250, 0.95);
      z-index: -1;
    }

    .our-team h2 {
      font-size: 4.5rem;
      color: #333;
      margin-bottom: 5rem;
      text-align: center;
      font-weight: 700;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 4rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .team-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
      text-align: center;
      padding: 3rem;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .team-card:hover {
      transform: translateY(-12px) scale(1.1);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25), 0 0 25px rgba(107, 72, 255, 0.7);
    }

    .team-card img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 1.5rem;
    }

    .team-card h3 {
      font-size: 1.8rem;
      color: #333;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .team-card .role {
      font-size: 1.2rem;
      color: #6b48ff;
      margin-bottom: 1rem;
    }

    .team-card p {
      font-size: 1.1rem;
      color: #666;
      line-height: 1.8;
    }

    .our-values {
      padding: 10rem 9rem;
      max-width: 2000px;
      margin: 0 auto;
      background: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover fixed;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: zoomIn 1s ease forwards;
      animation-delay: 1.2s;
    }

    .our-values::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(248, 249, 250, 0.95);
      z-index: -1;
    }

    .our-values h2 {
      font-size: 4.5rem;
      color: #333;
      margin-bottom: 5rem;
      text-align: center;
      font-weight: 700;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 4rem;
    }

    .value-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
      text-align: center;
      padding: 3.5rem;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .value-card:hover {
      transform: translateY(-12px) scale(1.1);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25), 0 0 25px rgba(107, 72, 255, 0.7);
    }

    .value-card img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      margin-bottom: 2rem;
    }

    .value-card h3 {
      font-size: 2.2rem;
      color: #333;
      margin-bottom: 1.5rem;
      font-weight: 600;
    }

    .value-card p {
      font-size: 1.3rem;
      color: #666;
      line-height: 1.9;
    }

    .achievements {
      padding: 10rem 9rem;
      max-width: 2000px;
      margin: 0 auto;
      background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover fixed;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: zoomIn 1s ease forwards;
      animation-delay: 1.4s;
    }

    .achievements::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(248, 249, 250, 0.95);
      z-index: -1;
    }

    .achievements h2 {
      font-size: 4.5rem;
      color: #333;
      margin-bottom: 5rem;
      text-align: center;
      font-weight: 700;
    }

    .achievements-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 4rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .achievement-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
      text-align: center;
      padding: 3rem;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .achievement-card:hover {
      transform: translateY(-12px) scale(1.1);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25), 0 0 25px rgba(107, 72, 255, 0.7);
    }

    .achievement-card h3 {
      font-size: 2.5rem;
      color: #6b48ff;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .achievement-card p {
      font-size: 1.3rem;
      color: #666;
      line-height: 1.9;
    }

    .global-impact {
      padding: 10rem 9rem;
      max-width: 2000px;
      margin: 0 auto;
      background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover fixed;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: zoomIn 1s ease forwards;
      animation-delay: 1.6s;
    }

    .global-impact::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.92);
      z-index: -1;
    }

    .global-impact h2 {
      font-size: 4.5rem;
      color: #333;
      margin-bottom: 3rem;
      text-align: center;
      font-weight: 700;
    }

    .impact-content {
      display: flex;
      align-items: center;
      gap: 5rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .impact-text {
      flex: 1;
    }

    .impact-text p {
      font-size: 1.5rem;
      color: #555;
      line-height: 1.9;
      margin-bottom: 2rem;
    }

    .impact-image img {
      width: 100%;
      max-width: 600px;
      border-radius: 20px;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
    }

    .cta-section {
      padding: 10rem 9rem;
      max-width: 2000px;
      margin: 0 auto;
      background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover fixed;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: zoomIn 1s ease forwards;
      animation-delay: 1.8s;
      text-align: center;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.92);
      z-index: -1;
      box-shadow: 0 0 25px rgba(107, 72, 255, 0.7) inset;
    }

    .cta-section h2 {
      font-size: 4.5rem;
      color: #333;
      margin-bottom: 3rem;
      font-weight: 700;
    }

    .cta-section p {
      font-size: 2rem;
      color: #666;
      margin-bottom: 4rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-section .btn-primary {
      padding: 1.6rem 4rem;
      border: none;
      border-radius: 40px;
      font-size: 1.5rem;
      font-weight: 600;
      cursor: pointer;
      background: #6b48ff;
      color: white;
      transition: background 0.3s ease, transform 0.2s ease;
      margin: 0 1rem;
    }

    .cta-section .btn-primary:hover {
      background: #8a2be2;
      transform: scale(1.1);
    }

    .cta-section .btn-secondary {
      padding: 1.6rem 4rem;
      border: 2px solid #6b48ff;
      border-radius: 40px;
      font-size: 1.5rem;
      font-weight: 600;
      cursor: pointer;
      background: transparent;
      color: #6b48ff;
      transition: background 0.3s ease, transform 0.2s ease;
      margin: 0 1rem;
    }

    .cta-section .btn-secondary:hover {
      background: #e0d0ff;
      transform: scale(1.1);
    }

    footer {
      background: linear-gradient(to bottom, rgba(107, 72, 255, 0.9), rgba(138, 43, 226, 0.9)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover;
      color: white;
      padding: 6rem 9rem 4rem;
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 4rem;
      max-width: 2000px;
      margin: 0 auto 4rem;
    }

    .footer-column h3 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 2rem;
    }

    .footer-column p, .footer-column a {
      font-size: 1.2rem;
      color: #f0f0f0;
      line-height: 1.9;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-column a:hover {
      color: #e0d0ff;
    }

    .footer-column .social-icons a {
      font-size: 1.8rem;
      margin: 0 1rem 0 0;
      color: #f0f0f0;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-column .social-icons a:hover {
      color: #e0d0ff;
      transform: scale(1.2);
    }

    .footer-column .contact-info i {
      margin-right: 0.6rem;
    }

    .footer-column .newsletter input {
      padding: 1rem;
      width: 70%;
      border: none;
      border-radius: 6px 0 0 6px;
      font-size: 1.2rem;
      outline: none;
    }

    .footer-column .newsletter button {
      padding: 1rem 2rem;
      border: none;
      background: #6b48ff;
      color: white;
      border-radius: 0 6px 6px 0;
      font-size: 1.2rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .footer-column .newsletter button:hover {
      background: #e0d0ff;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 1.2rem;
    }

    .particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }

    .particle {
      position: absolute;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 50%;
      animation: float 15s infinite;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes zoomIn {
      from { opacity: 0; transform: translateY(40px) scale(0.95); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes float {
      0% { transform: translateY(0); opacity: 0.7; }
      50% { transform: translateY(-50px); opacity: 0.3; }
      100% { transform: translateY(0); opacity: 0.7; }
    }

    @media (max-width: 768px) {
      header {
        padding: 2rem 2rem;
        flex-direction: column;
        align-items: flex-start;
      }

      header h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
      }

      header nav a {
        margin: 0 1rem;
        font-size: 1.2rem;
      }

      .hero {
        height: 60vh;
        padding: 0 2rem;
        margin-top: 7rem;
      }

      .hero h2 {
        font-size: 4rem;
      }

      .hero .subheadline {
        font-size: 2rem;
      }

      .hero .tagline {
        font-size: 1.6rem;
      }

      .hero .btn-primary {
        padding: 1.2rem 3rem;
        font-size: 1.2rem;
      }

      .our-story, .mission-vision, .our-leadership, .our-team, .our-values, .achievements, .global-impact, .cta-section {
        padding: 7rem 2rem;
      }

      .our-story h2, .mission-vision h2, .our-leadership h2, .our-team h2, .our-values h2, .achievements h2, .global-impact h2, .cta-section h2 {
        font-size: 4rem;
      }

      .story-content, .impact-content {
        flex-direction: column;
        gap: 3rem;
      }

      .story-image img, .impact-image img {
        max-width: 100%;
      }

      .story-text p, .impact-text p {
        font-size: 1.2rem;
      }

      .timeline-card {
        padding: 2rem;
      }

      .timeline-card img {
        width: 60px;
        height: 60px;
      }

      .timeline-card h3 {
        font-size: 1.8rem;
      }

      .timeline-card p {
        font-size: 1.1rem;
      }

      .mission-vision-grid, .leadership-grid, .team-grid, .values-grid, .achievements-grid {
        grid-template-columns: 1fr;
      }

      .mission-vision-card, .leadership-card, .team-card, .value-card, .achievement-card {
        padding: 2.5rem;
      }

      .mission-vision-card img, .value-card img {
        width: 100px;
        height: 100px;
      }

      .mission-vision-card h3, .value-card h3, .achievement-card h3 {
        font-size: 1.8rem;
      }

      .mission-vision-card p, .value-card p, .achievement-card p {
        font-size: 1.1rem;
      }

      .leadership-card img, .team-card img {
        max-width: 300px;
        height: auto;
      }

      .leadership-card h3 {
        font-size: 1.8rem;
      }

      .leadership-card p, .leadership-card .vision-quote {
        font-size: 1.1rem;
      }

      .team-card h3 {
        font-size: 1.6rem;
      }

      .team-card .role {
        font-size: 1rem;
      }

      .team-card p {
        font-size: 1rem;
      }

      .cta-section p {
        font-size: 1.6rem;
      }

      .cta-section .btn-primary, .cta-section .btn-secondary {
        padding: 1.2rem 3rem;
        font-size: 1.2rem;
        margin: 0.5rem 0;
      }

      footer {
        padding: 4rem 2rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .footer-column h3 {
        font-size: 1.8rem;
      }

      .footer-column .newsletter input {
        width: 60%;
      }
    }
 

/* services */

   

    header {
      background: linear-gradient(135deg, #6b48ff, #8a2be2);
      color: white;
      padding: 2rem 6rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header h1 {
      font-size: 3.2rem;
      font-weight: 900;
    }

    header nav {
      display: flex;
      align-items: center;
    }

    header nav a {
      color: white;
      text-decoration: none;
      margin: 0 2rem;
      font-size: 1.3rem;
      font-weight: 400;
      transition: color 0.3s ease;
    }

    header nav a:hover {
      color: #e0d0ff;
    }

    .hero {
      height: 70vh;
      background: linear-gradient(to bottom, rgba(107, 72, 255, 0.8), rgba(138, 43, 226, 0.8)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover;
      text-align: center;
      padding: 0 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1;
      margin-top: 7rem;
    }

    .hero h2 {
      font-size: 4.5rem;
      font-weight: 900;
      color: white;
      margin-bottom: 1.5rem;
      animation: fadeIn 1.2s ease-in;
    }

    .hero p {
      font-size: 1.8rem;
      color: #f0f0f0;
      max-width: 1000px;
      margin-bottom: 2.5rem;
      animation: fadeIn 1.4s ease-in;
    }

    .hero .btn-primary {
      padding: 1.4rem 3.5rem;
      border: none;
      border-radius: 35px;
      font-size: 1.3rem;
      font-weight: 600;
      cursor: pointer;
      background: white;
      color: #6b48ff;
      transition: background 0.3s ease, transform 0.2s ease;
      animation: fadeIn 1.6s ease-in;
    }

    .hero .btn-primary:hover {
      background: #e0d0ff;
      transform: scale(1.05);
    }

    .services {
      padding: 7rem 6rem;
      max-width: 1800px;
      margin: 0 auto;
      background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover fixed;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 0.4s;
    }

    .services::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.92);
      z-index: -1;
    }

    .services h2 {
      font-size: 3.8rem;
      color: #333;
      margin-bottom: 4rem;
      text-align: center;
      font-weight: 700;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      gap: 3.5rem;
    }

    .service-card {
      background: white;
      padding: 3.5rem;
      border-radius: 16px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
      text-align: center;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
    }

    .service-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2), 0 0 18px rgba(107, 72, 255, 0.5);
    }

    .service-card img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      margin-bottom: 2rem;
    }

    .service-card h3 {
      font-size: 2.2rem;
      color: #333;
      margin-bottom: 1.4rem;
      font-weight: 600;
    }

    .service-card p {
      font-size: 1.3rem;
      color: #666;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .service-card .btn-secondary {
      padding: 1rem 2.5rem;
      border: 2px solid #6b48ff;
      border-radius: 30px;
      font-size: 1.1rem;
      font-weight: 600;
      color: #6b48ff;
      background: transparent;
      cursor: pointer;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .service-card .btn-secondary:hover {
      background: #6b48ff;
      color: white;
    }

    .case-studies {
      padding: 7rem 6rem;
      max-width: 1800px;
      margin: 0 auto;
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 0.6s;
    }

    .case-studies h2 {
      font-size: 3.8rem;
      color: #333;
      margin-bottom: 4rem;
      text-align: center;
      font-weight: 700;
    }

    .case-study-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      gap: 3.5rem;
    }

    .case-study-card {
      background: white;
      border-radius: 16px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
    }

    .case-study-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2), 0 0 18px rgba(107, 72, 255, 0.5);
    }

    .case-study-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }

    .case-study-card div {
      padding: 2.5rem;
    }

    .case-study-card h3 {
      font-size: 2rem;
      color: #333;
      margin-bottom: 1.2rem;
      font-weight: 600;
    }

    .case-study-card p {
      font-size: 1.2rem;
      color: #666;
      line-height: 1.8;
    }

    .testimonials {
      padding: 7rem 6rem;
      background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover fixed;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 0.8s;
    }

    .testimonials::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(248, 249, 250, 0.95);
      z-index: -1;
    }

    .testimonials h2 {
      font-size: 3.8rem;
      color: #333;
      margin-bottom: 4rem;
      text-align: center;
      font-weight: 700;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      gap: 3.5rem;
      max-width: 1800px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: white;
      padding: 3.5rem;
      border-radius: 16px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
      text-align: left;
      transition: transform 0.4s ease;
      position: relative;
    }

    .testimonial-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2), 0 0 18px rgba(107, 72, 255, 0.5);
    }

    .testimonial-card p {
      font-size: 1.3rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .testimonial-card h4 {
      font-size: 1.4rem;
      color: #6b48ff;
      font-weight: 600;
    }

    .client-logos {
      padding: 7rem 6rem;
      max-width: 1800px;
      margin: 0 auto;
      text-align: center;
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 1s;
    }

    .client-logos h2 {
      font-size: 3.8rem;
      color: #333;
      margin-bottom: 4rem;
      font-weight: 700;
    }

    .logos-carousel {
      overflow: hidden;
      position: relative;
    }

    .logos-track {
      display: flex;
      animation: scroll 20s linear infinite;
    }

    .logos-track img {
      width: 150px;
      height: 80px;
      object-fit: contain;
      margin: 0 2rem;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
    }

    .logos-track img:hover {
      filter: grayscale(0%);
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .faq {
      padding: 7rem 6rem;
      max-width: 1800px;
      margin: 0 auto;
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 1.2s;
    }

    .faq h2 {
      font-size: 3.8rem;
      color: #333;
      margin-bottom: 4rem;
      text-align: center;
      font-weight: 700;
    }

    .faq-item {
      background: white;
      border-radius: 10px;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .faq-question {
      padding: 1.5rem 2rem;
      font-size: 1.4rem;
      font-weight: 600;
      color: #333;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s ease;
    }

    .faq-question:hover {
      background: #f0f0f0;
    }

    .faq-question i {
      color: #6b48ff;
      transition: transform 0.3s ease;
    }

    .faq-question.active i {
      transform: rotate(180deg);
    }

    .faq-answer {
      padding: 0 2rem;
      font-size: 1.2rem;
      color: #666;
      line-height: 1.8;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-answer.active {
      padding: 1.5rem 2rem;
      max-height: 200px;
    }

    .sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: linear-gradient(135deg, #6b48ff, #8a2be2);
      color: white;
      text-align: center;
      padding: 1rem;
      z-index: 1000;
      box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
      opacity: 0;
      animation: slideIn 1s ease forwards;
      animation-delay: 2s;
    }

    .sticky-cta button {
      background: white;
      color: #6b48ff;
      padding: 0.8rem 2rem;
      border: none;
      border-radius: 25px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .sticky-cta button:hover {
      background: #e0d0ff;
    }

    footer {
      background: linear-gradient(to bottom, rgba(107, 72, 255, 0.9), rgba(138, 43, 226, 0.9)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center/cover;
      color: white;
      padding: 5rem 6rem 3rem;
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      max-width: 1800px;
      margin: 0 auto 3rem;
    }

    .footer-column h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .footer-column p, .footer-column a {
      font-size: 1rem;
      color: #f0f0f0;
      line-height: 1.8;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-column a:hover {
      color: #e0d0ff;
    }

    .footer-column .social-icons a {
      font-size: 1.5rem;
      margin: 0 0.8rem 0 0;
      color: #f0f0f0;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-column .social-icons a:hover {
      color: #e0d0ff;
      transform: scale(1.2);
    }

    .footer-column .contact-info i {
      margin-right: 0.5rem;
    }

    .footer-column .newsletter input {
      padding: 0.8rem;
      width: 70%;
      border: none;
      border-radius: 5px 0 0 5px;
      font-size: 1rem;
      outline: none;
    }

    .footer-column .newsletter button {
      padding: 0.8rem 1.5rem;
      border: none;
      background: #6b48ff;
      color: white;
      border-radius: 0 5px 5px 0;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .footer-column .newsletter button:hover {
      background: #e0d0ff;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 1rem;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideIn {
      from { opacity: 0; transform: translateY(100%); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      header {
        padding: 1.5rem 2rem;
        flex-direction: column;
        align-items: flex-start;
      }

      header h1 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
      }

      header nav a {
        margin: 0 0.8rem;
        font-size: 1rem;
      }

      .hero {
        height: 60vh;
        padding: 0 2rem;
        margin-top: 6rem;
      }

      .hero h2 {
        font-size: 3.2rem;
      }

      .hero p {
        font-size: 1.4rem;
      }

      .hero .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
      }

      .services, .case-studies, .testimonials, .client-logos, .faq {
        padding: 4rem 2rem;
      }

      .services h2, .case-studies h2, .testimonials h2, .client-logos h2, .faq h2 {
        font-size: 2.8rem;
      }

      .service-card, .case-study-card, .testimonial-card {
        padding: 2rem;
      }

      .service-card img {
        width: 80px;
        height: 80px;
      }

      .service-card h3 {
        font-size: 1.8rem;
      }

      .service-card p {
        font-size: 1.1rem;
      }

      .case-study-card img {
        height: 180px;
      }

      .logos-track img {
        width: 100px;
        height: 60px;
      }

      .faq-question {
        font-size: 1.2rem;
      }

      .faq-answer {
        font-size: 1rem;
      }

      .sticky-cta {
        padding: 0.8rem;
      }

      .sticky-cta button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
      }

      footer {
        padding: 3rem 2rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer-column h3 {
        font-size: 1.5rem;
      }

      .footer-column .newsletter input {
        width: 60%;
      }
    }
 
    .success-message, .error-message {
      text-align: center;
      margin-bottom: 1.5rem;
      font-size: 1.2rem;
      padding: 1rem;
      border-radius: 8px;
  }
  .success-message {
      color: #155724;
      background-color: #d4edda;
      border: 1px solid #c3e6cb;
  }
  .error-message {
      color: #721c24;
      background-color: #f8d7da;
      border: 1px solid #f5c6cb;
  }