/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #F9F9F9; /* Light gray background */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar Styles */
header {
  background-color: #f1f1f1; /* Light gray background for header */
  padding: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.navbar {
  height: 60px; /* Keep the header height fixed */
  display: flex;
  justify-content: space-between; /* Logo on the left, nav links on the right */
  align-items: center; /* Center everything vertically */
  padding-right: 30px; /* Add some padding on the right */
  padding-left: 30px; /* Add padding on the left for balance */
  max-width: 1200px;
  margin: 0 auto; /* Center navbar content */
}

.navbar .logo img {
  height: 70px; /* Adjust this value to make the logo bigger */
  max-width: none; /* Remove the limitation on width */
  object-fit: contain; /* Ensure the image fits without distorting */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: #333; /* Dark gray for links */
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.nav-links li a:hover {
  color: #00BFA6; /* Teal on hover */
}

/* Highlight the active link in the navbar */
.nav-links a.active {
  color: #00BFA6; /* Teal color to indicate it's active */
  font-weight: bold; /* Bold the active link */
}

/* Hamburger Menu Styles */
.hamburger {
  display: none; /* Hidden on larger screens */
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
}

/* Close Button Hidden by Default */
.close-btn {
  display: none; /* Hidden by default */
}


/* Myopia Info Section with Parallax Effect */
.myopia-info {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
              url('/images/myopia_info_section.webp') center/cover no-repeat;
  background-attachment: fixed; /* Parallax effect */
  background-size: cover;
  padding: 100px 20px; /* Increased padding for more space */
  position: relative;
  overflow: hidden;
}

.myopia-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.myopia-text {
  max-width: 800px;
  background-color: rgba(255, 255, 255, 0.9); /* Slightly opaque white background for better readability */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out; /* Animation on load */
}

.myopia-text h2 {
  font-size: 2.8em;
  color: #1149F4;
  margin-bottom: 20px;
}

.myopia-text h2 span {
  font-size: 1.2em;
  color: #00BFA6;
}

.myopia-text p {
  font-size: 1.2em;
  color: #333;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
}

.myopia-text p strong {
  color: #00BFA6; /* Teal color to match theme */
  font-size: 1.2em; /* Slightly larger text size */
  font-weight: bold; /* Ensuring it's bold */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for emphasis */
  background-color: rgba(0, 191, 166, 0.1); /* Light background highlight */
  padding: 3px 5px; /* Padding to make it stand out */
  border-radius: 5px; /* Rounded corners for highlight */
}


.myopia-text p::before {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #00BFA6; /* Line separator between paragraphs */
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.view-more-btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #00BFA6, #007bff); /* Gradient from teal to soft blue */
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 191, 166, 0.2); /* Soft shadow */
}

.view-more-btn:hover {
  background: linear-gradient(135deg, #008F78, #0056b3); /* Slightly darker gradient on hover */
  transform: scale(1.05); /* Slight zoom on hover */
  border: 2px solid white; /* Add white border on hover */
}


/* Keyframe Animation for Text */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .myopia-text {
    padding: 20px;
    max-width: 100%;
  }

  .myopia-text h2 {
    font-size: 2em;
  }

  .myopia-text p {
    font-size: 1em;
  }
}



/* Services Section with Background and Overlay */
.services-section {
  position: relative;
  background: url('/images/services_bg.webp') center/cover no-repeat; /* Background image */
  padding: 100px 0; /* Adjust padding for the content */
  color: white; /* Text color */
  text-align: center;
}

/* Overlay Effect */
.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  z-index: 1; /* Ensures the overlay stays below the content */
}

.services-section .container {
  position: relative;
  z-index: 2; /* Places the text and icons above the overlay */
}

/* Heading Styling */
.services-section h2 {
  font-size: 3em; /* Increased heading size */
  margin-bottom: 40px; /* More space below heading */
}

/* Service Grid Layout */
.services-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Service Box Styling */
.service-box {
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent background for each box */
  border-radius: 10px;
  padding: 40px; /* Increased padding for larger card size */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  flex: 1;
  min-width: 300px; /* Increased minimum size */
  transition: transform 0.3s ease-in-out;
}

.service-box:hover {
  transform: translateY(-10px);
}

/* Icon Styling */
.service-box i {
  font-size: 3.5em; /* Slightly larger icons */
  color: #00BFA6; /* Teal color for icons */
  margin-bottom: 20px;
}

/* Title and Description Styling */
.service-box h3 {
  font-size: 2em; /* Larger service title */
  margin-bottom: 15px;
}

.service-box p {
  font-size: 1.2em; /* Slightly larger description */
  color: white;
  line-height: 1.6;
}

/* Learn More Button Styling */
.learn-more-btn {
  display: inline-block;
  background-color: #00BFA6; /* Teal button */
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 40px; /* Spacing above button */
  transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #008F78; /* Darker teal on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    gap: 20px;
  }

  .service-box {
    max-width: 100%;
  }

  .learn-more-btn {
    width: 100%; /* Full-width button on mobile */
    padding: 15px;
  }
}


/* Mobile View-specific styles (hamburger and menu behavior) */
@media (max-width: 768px) {

  /* Full-Screen Overlay Menu */
  .nav-links {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background-color: rgba(0, 0, 0, 0.95); /* Slightly more opaque black */
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    transition: visibility 0s, opacity 0.5s ease; /* Smooth fade-in effect */
    visibility: hidden; /* Initially hidden */
    opacity: 0; /* Initially fully transparent */
    z-index: 1000; /* High z-index to ensure it sits on top of all elements */
  }
  
  .nav-active {
    display: flex;
    visibility: visible; /* Make visible when active */
    opacity: 1; /* Fade-in effect */
  }
  
  /* Navigation Links Styling */
  .nav-links a {
    color: white !important; /* Ensure text is white */
    font-size: 2em; /* Larger font size */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition for hover effect */
  }
  
  .nav-links a:hover {
    color: #00BFA6 !important; /* Teal color on hover */
  }
  
  /* Close Button for Mobile */
  .close-btn {
    display: block; /* Only visible on mobile view when menu is active */
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2em;
    color: white;
    cursor: pointer;
    z-index: 1010;
  }

  /* Display the hamburger menu icon in mobile view */
  .hamburger {
    display: flex; /* Show hamburger on mobile */
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
  }
}


/* Hero Section with Background Image and Overlay */
.hero-section {
  height: 100vh; /* Full screen height */
  background: url('/images/home_hero_bg.webp') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 1; /* Ensure overlay is on top of image */
}

.container {
  position: relative;
  z-index: 2; /* Ensures text is above the overlay */
  color: white;
}

.hero-text h1 {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-in-out;
}

.hero-text p {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1.5s ease-in-out;
}

.cta-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 30px;
  background-color: #00BFA6;
  color: white;
  text-decoration: none;
  font-size: 1.4em;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #008F78;
}

.scroll-indicator {
  position: absolute;
  bottom:-135px; /* Position the indicator at the bottom */
  left: 50%; /* Center horizontally */
  transform: translateX(50%);
  font-size: 2em;
  color: white;
  animation: bounce 1.5s infinite;
  z-index: 2; /* Ensures it stays above the overlay */
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}



/* Contact Section */
.contact-section {
  background-color: #fff;
  padding: 80px 0;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 30px;
  font-size: 2.5em;
  color: #00BFA6; /* Teal for headings */
}

/* Enhanced Contact Section Styles */
.contact-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #cbd5e1 50%, transparent 100%);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 3em;
  color: #1e293b;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-header p {
  font-size: 1.2em;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Contact Info Styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00BFA6 0%, #008F78 100%);
  border-radius: 2px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.5);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 166, 0.1), transparent);
  transition: left 0.5s ease;
}

.contact-item:hover::before {
  left: 100%;
}

.contact-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 191, 166, 0.15);
  border-color: rgba(0, 191, 166, 0.3);
}

.contact-link {
  cursor: pointer;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00BFA6 0%, #008F78 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.2em;
  color: #1e293b;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-details p {
  color: #64748b;
  margin: 0;
  font-size: 1em;
}

.contact-action {
  display: block;
  color: #00BFA6;
  font-size: 0.85em;
  font-weight: 500;
  margin-top: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-action {
  opacity: 1;
  transform: translateY(0);
}

.contact-arrow {
  margin-left: auto;
  color: #9ca3af;
  font-size: 16px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-10px);
}

.contact-item:hover .contact-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #00BFA6;
}

/* Enhanced Form Styles */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.5);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00BFA6 0%, #008F78 100%);
  border-radius: 20px 20px 0 0;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  font-size: 1.8em;
  color: #1e293b;
  margin-bottom: 10px;
  font-weight: 600;
}

.form-header p {
  color: #64748b;
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #374151;
  font-weight: 500;
  font-size: 0.95em;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 16px;
  z-index: 2;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 15px 15px 15px 45px;
  font-size: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  transition: all 0.3s ease;
  font-family: inherit;
  outline: none;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-color: #00BFA6;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.1);
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 15px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #00BFA6 0%, #008F78 100%);
  color: white;
  padding: 18px 30px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 191, 166, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Form Status */
.form-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 12px;
  margin-top: 20px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.form-status i {
  font-size: 20px;
}

/* Footer Styles */
footer {
  background-color: #f1f1f1; /* Lighter background that blends with the theme */
  color: #333; /* Dark gray text for better readability */
  padding: 40px 0;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: #333; /* Dark gray for links */
  margin: 0 15px;
  text-decoration: none;
  font-size: 1em;
}

.footer-links a:hover {
  color: #00BFA6; /* Teal hover effect */
}

.footer-social {
  margin-bottom: 20px;
}

.footer-social a {
  margin: 0 10px;
  display: inline-block;
}

.footer-social i {
  font-size: 30px;
  color: #333; /* Uniform dark gray for all icons */
  transition: color 0.3s ease;
}

.footer-social i:hover {
  color: #00BFA6; /* Teal on hover to match theme */
}

.footer-info {
  font-size: 0.9em;
}

/* Responsive Footer Layout */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-links a {
    display: block;
    margin: 5px 0;
  }
}

/* Custom Scrollbar for WebKit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px; /* Narrower scrollbar width */
}

::-webkit-scrollbar-track {
  background: #e0e0e0; /* Subtle light gray background for the track */
}

::-webkit-scrollbar-thumb {
  background-color: #888; /* Neutral gray thumb */
  border-radius: 10px; /* Rounded edges for a modern look */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Slightly darker on hover for a subtle effect */
}

/* Scrollbar Styling for Firefox */
* {
  scrollbar-width: thin; /* Thin scrollbar */
  scrollbar-color: #888 #e0e0e0; /* Thumb color (neutral gray) and track color (light gray) */
}


/* Mobile View Adjustments */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
  }

  .hero-container {
    flex-direction: column;
    gap: 20px;
  }

  .hero-text, .hero-image {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 2em;
  }

  .hero-text p {
    font-size: 1.1em;
  }

  .hero-image img {
    max-width: 90%;
    margin: 0 auto;
  }

  .cta-btn {
    width: 100%;
    padding: 15px 20px;
  }

  .contact-form {
    padding: 0 20px;
  }

  .form-group input, .form-group textarea {
    font-size: 16px;
    padding: 12px;
  }

  .submit-btn {
    width: 100%;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 60px 0;
  background-color: #f1f1f1;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.4em;
  color: #00BFA6;
  margin-bottom: 40px;
}

.testimonial-carousel {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 80%;
  margin: 0 auto;
}

.testimonial {
  min-width: 100%;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
  opacity: 1;
}

.testimonial p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #555;
}

.testimonial h4 {
  margin-top: 20px;
  font-size: 1.1em;
  color: #00BFA6;
}

/* Dots for navigation */
.carousel-dots {
  text-align: center;
  margin-top: 20px;
}

.carousel-dots .dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dots .dot.active {
  background-color: #00BFA6;
}


/* Grants and Incubation Section */
.grants-incubation {
  padding: 80px 0;
  background-color: #f4f4f4;
  text-align: center;
}

.section-title h3 {
  font-size: 2em;
  color: #1149F4;
  margin-bottom: 40px;
}

.logo-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px; /* Added to create more gap between sections */
}

.logo-container {
  width: 160px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.logo-container img {
  max-width: 85%;  /* Reduced size of the logos inside container */
  max-height: 85%; /* Ensures logos do not get clipped */
  object-fit: contain;
}

.logo-container:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr); /* Two columns on mobile */
    gap: 15px; /* Smaller gap for mobile */
  }

  .logo-container {
    width: 120px;
    height: 100px; /* Slightly smaller containers on mobile */
  }
}

/* Enhanced FAQ Section Styles */
.faq-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #cbd5e1 50%, transparent 100%);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 3.5em;
  color: #1e293b;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.faq-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00BFA6 0%, #008F78 100%);
  border-radius: 2px;
}

.faq-header p {
  font-size: 1.2em;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.5);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-item.active {
  box-shadow: 0 8px 30px rgba(0, 191, 166, 0.15);
  border-color: rgba(0, 191, 166, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
}

.faq-question h3 {
  font-size: 1.3em;
  color: #1e293b;
  margin: 0;
  font-weight: 600;
  flex: 1;
  padding-right: 20px;
  line-height: 1.4;
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00BFA6 0%, #008F78 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #008F78 0%, #00BFA6 100%);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #f9fafb;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 30px 30px;
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
  font-size: 1.05em;
}


/* Mobile Responsive for FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-header h2 {
    font-size: 2.5em;
  }
  
  .faq-header p {
    font-size: 1.1em;
    padding: 0 20px;
  }
  
  .faq-container {
    padding: 0 20px;
    gap: 15px;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-question h3 {
    font-size: 1.1em;
    padding-right: 15px;
  }
  
  .faq-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .faq-header h2 {
    font-size: 2em;
  }
  
  .faq-question {
    padding: 15px;
  }
  
  .faq-question h3 {
    font-size: 1em;
  }
  
  .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

/* Mobile Responsive for Enhanced Contact Form */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-header h2 {
    font-size: 2.5em;
  }
  
  .contact-header p {
    font-size: 1.1em;
    padding: 0 20px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form {
    order: 1;
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .input-wrapper input,
  .input-wrapper textarea {
    padding: 12px 12px 12px 40px;
    font-size: 16px;
  }
  
  .submit-btn {
    padding: 16px 25px;
    font-size: 16px;
  }
  
  .contact-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .contact-arrow {
    display: none;
  }
  
  .contact-action {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.8em;
  }
}

@media (max-width: 480px) {
  .contact-header h2 {
    font-size: 2em;
  }
  
  .contact-form {
    padding: 25px 15px;
  }
  
  .form-header h3 {
    font-size: 1.5em;
  }
  
  .contact-item {
    padding: 15px;
  }
}