* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

   /* Navigation Bar */
   header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}


header nav .nav-links {
    display: flex;
    list-style: none;
}

header nav .nav-links li {
    margin-left: 30px;
}

header nav .nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

header nav .nav-links a:hover {
    color:#059669;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s;
}
header nav .logo img {
  height: 40px; /* Adjust height as needed */
  width: auto; /* Maintain aspect ratio */
}

header nav .nav-links a.active {
  color:#1f4534; /* Active link color */
  font-weight: bold; /* Bold text for active link */
}

/* Toggle button styles (assuming it's shown on smaller screens) */
@media (max-width: 768px) {
  .nav-toggle {
      display: flex;
  }

  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 80px; /* Adjust top position */
      left: 0;
      width: 100%;
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 9;
  }

  .nav-links.active {
      display: flex;
  }
}

/* Hero Section */
.heroo {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
    margin-top: 70px; /* Adjust for fixed nav */
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.7;
}

.heroo-content {
    max-width: 700px;
    z-index: 2;
    position: relative;
    padding: 20px;
}

.heroo-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.heroo-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #4a90e2;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #4a90e2;
    color: #fff;
}

.heroo-curve {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

.heroo-curve svg {
    width: 100%;
    height: 200px;
    display: block;
}

/* Bottom Wave Section */
.bottom-wave {
    position: relative;
    background-color: #f5f5f5; /* Match body background */
    height: 100px;
    overflow: hidden;
}

.bottom-wave::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: radial-gradient(circle at 50% 0%, #f5f5f5 0%, #f5f5f5 70%, #fff 70%);
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    header nav {
        padding: 15px 20px;
    }

    header nav .logo {
        font-size: 1.5rem;
    }

    header nav .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    header nav .nav-links.active {
        display: flex;
    }

    header nav .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    header nav .nav-links a {
        font-size: 1rem;
        color: #333;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .heroo {
        height: 80vh;
        margin-top: 60px;
    }

    .heroo-content h1 {
        font-size: 2rem;
    }

    .heroo-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .hero-curve svg {
        height: 120px;
    }

    .bottom-wave {
        height: 80px;
    }

    .bottom-wave::before {
        height: 80px;
        top: -40px;
    }
}

@media (max-width: 480px) {
    .heroo-content h1 {
        font-size: 1.8rem;
    }

    .heroo-content p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

.innovation-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #ffffff; /* Light background for contrast */
}

.innovation-card {
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0; /* Initially hidden */
    animation: cardAppear 0.8s ease-out forwards;
}

.heading-container {
    width: 60%;
    position: relative;
    margin-right: 30px;
}

.innovation-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c6e49;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0; /* Initially hidden */
}

.svg-container {
    width: 147.5px; /* Half the original width */
    margin-top: 5px;
}

.content-right {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 40px;
}

.innovation-card p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0; /* Initially hidden */
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
    transition: all 0.4s ease;
    opacity: 0; /* Initially hidden for animation */
    letter-spacing: 1px;
}

.cta-button::after {
    content: '→';
    margin-left: 10px;
    font-size: 1.3rem;
    transition: margin-left 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.5);
    transform: translateY(-3px);
}

.cta-button:hover::after {
    margin-left: 14px;
}

/* Animations */
.animate-slide-up {
    animation: slideUp 0.8s ease-out 0.2s forwards;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out 0.4s forwards;
}

.animate-pop-in {
    animation: popIn 0.5s ease-out 0.6s forwards;
}

/* Keyframes for animation */
@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes popIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .innovation-section {
        padding: 30px 15px;
    }

    .innovation-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .heading-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .innovation-card h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .svg-container {
        margin: 10px auto;
    }

    .content-right {
        width: 100%;
        margin-left: 0;
        align-items: center;
    }

    .innovation-card p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 8px 18px;
    }
}

@media (max-width: 480px) {
    .innovation-card h2 {
        font-size: 1.5rem;
    }

    .innovation-card p {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 6px 15px;
    }

    .svg-container {
        width: 120px; /* Reduce SVG size for smaller screens */
    }
}

/* .footer-area {
    background-color: #1f4534;
    padding: 80px 20px 30px ;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
  } */

  .top-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -15px; /* small overlap if needed */
}

.top-wave svg {
    display: block;
    width: 100%;
    height: 100px; /* control height as needed */
}

  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .single-footer-widget {
    flex: 1 1 22%;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  
  .single-footer-widget h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #f9a250;
  }
  
  .single-footer-widget p,
  .single-footer-widget a {
    color: #d4d4d4;
    font-size: 1rem;
    line-height: 1.8;
    text-decoration: none;
  }
  
  .single-footer-widget a:hover {
    color: #f9a250;
    text-decoration: underline;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  ul li {
    margin-bottom: 10px;
  }
  
  .contact_info p {
    margin-bottom: 8px;
  }
  
  .newsletter-form {
    display: flex;
    margin-top: 15px;
  }
  
  .newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
    font-size: 1rem;
  }
  
  .newsletter-form button {
    background-color: #f9a250;
    border: none;
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    color: #fff;
    font-size: 1.2rem;
  }
  
  .newsletter-form button:hover {
    background-color: #f78d2c;
  }
  
  .copyright_part_text {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #3d5d52;
    text-align: center;
    font-size: 0.9rem;
  }
  
  /* .copyright_part_text p {
    margin-bottom: 10px;
  } */
  
  /* .copyright_social_icon {
    margin-top: 10px;
  }
  
  .copyright_social_icon a {
    color: #ffffff;
    margin: 0 8px;
    font-size: 1.4rem;
  }
  
  .copyright_social_icon a:hover {
    color: #f9a250;
  } */
  
  /* Responsive */
  @media (max-width: 992px) {
    .single-footer-widget {
      flex: 1 1 45%;
      margin-bottom: 20px;
      text-align: center;
    }
  }
  
  @media (max-width: 600px) {
    .single-footer-widget {
      flex: 1 1 100%;
      margin-bottom: 20px;
      text-align: center;
    }
  }
  
  .footer-area {
    background-color: #1f4534;
    padding: 0 0 0;
    color: #ffffff;
    width: 100%;
    position: relative;
  }
  
  .top-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: 40px;
  }
  
  .top-wave svg {
    display: block;
    width: 100%;
    height: 80px;
  }
  
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
  }
  
  .single-footer-widget {
    flex: 1 1 22%;
    min-width: 200px;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  
  .single-footer-widget h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #f9a250;
  }
  
  .single-footer-widget p,
  .single-footer-widget a {
    color: #d4d4d4;
    font-size: 1rem;
    line-height: 1.8;
    text-decoration: none;
  }
  
  .single-footer-widget a:hover {
    color: #f9a250;
    transition: color 0.3s ease;
  }
  
  ul {
    list-style: none;
    padding-left: 0 !important;
  }
  
  ul li {
    margin-bottom: 10px;
  }
  
  .contact_info p {
    margin-bottom: 10px;
  }
  
  .newsletter-form {
    display: flex;
    margin-top: 15px;
  }
  
  .newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
    font-size: 0.9rem;
  }
  
  .newsletter-form button {
    background-color: #f9a250;
    border: none;
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    color: #fff;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background-color: #f78d2c;
  }
  
  .copyright_part_text {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #3d5d52;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .copyright_social_icon {
    margin-top: 15px;
  }
  
  .copyright_social_icon a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .copyright_social_icon a:hover {
    color: #f9a250;
  }
  
  @media (max-width: 992px) {
    .single-footer-widget {
      flex: 1 1 45%;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .top-wave svg {
      height: 60px;
    }
    
    .single-footer-widget {
      flex: 1 1 100%;
      text-align: center;
    }
    
    .single-footer-widget ul {
      padding-left: 0 !important;
    }
  }
  
  

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.header h1 {
    font-size: 2.5em;
    color: #1f4534;
    margin-bottom: 15px;
}

.header p {
    font-size: 1.1em;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 15px;
    position: relative;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.3em;
    color: #2c3e50;
}

/* .wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%233498db" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,128C960,160,1056,224,1152,224C1248,224,1344,160,1392,128L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    z-index: -1;
    opacity: 0.2;
} */

.read-more {
    text-align: center;
    margin-top: 40px;
}

.read-more a {
    display: inline-block;
    padding: 10px 25px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1em;
    transition: background 0.3s ease;
}

.read-more a:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }

    .header p {
        font-size: 1em;
    }

    .team-member img {
        width: 100px;
        height: 100px;
    }
}


/* 
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
} */

.partner-section {
  padding: 8rem 2rem;
  position: relative;
}

/* Background shapes */
.bg-shape-1 {
  position: absolute;
  top: -3%;
  right: -0.01%;
  width: 30vw;
  height: 30vw;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(123, 186, 240, 0.05) 0%, rgba(90, 199, 188, 0.08) 100%);
  z-index: 0;
}

.bg-shape-2 {
  position: absolute;
  bottom: 10%;
  left: -8%;
  width: 35vw;
  height: 35vw;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(157, 206, 255, 0.05) 0%, rgba(92, 185, 145, 0.08) 100%);
  z-index: 0;
}

.container s{
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 8rem;
  align-items: center;
}

.intro-content {
  padding-right: 2rem;
}

.intro-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 0 4rem 0 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-title span {
  color: #1f4534;
}

.section-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 90%;
}

/* Features section */
.features {
  margin-top: 6rem;
}

.feature {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 8rem;
  position: relative;
}

.feature:last-child {
  margin-bottom: 0;
}

.feature-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: flex-start;
  position: relative;
}

.feature:nth-child(even) .feature-content {
  grid-template-columns: 1fr auto;
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8fcfa;
  border-radius: 20px;
  font-size: 2rem;
  color: #3ca58f;
  box-shadow: 0 10px 30px rgba(60, 165, 143, 0.1);
  position: relative;
  z-index: 2;
}

.feature:nth-child(1) .feature-icon {
  color: #4dabf7;
  background-color: #f8fbff;
  box-shadow: 0 10px 30px rgba(77, 171, 247, 0.1);
}

.feature:nth-child(2) .feature-icon {
  color: #f1b34e;
  background-color: #fffaf2;
  box-shadow: 0 10px 30px rgba(241, 179, 78, 0.1);
}

.feature:nth-child(3) .feature-icon {
  color: #3ca58f;
  background-color: #f8fcfa;
  box-shadow: 0 10px 30px rgba(60, 165, 143, 0.1);
}

.feature-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  max-width: 90%;
}

.feature:nth-child(even) .feature-text {
  text-align: right;
  margin-left: auto;
}

.feature:nth-child(even) .feature-description {
  margin-left: auto;
}

/* Decorative elements */
.feature-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(60, 165, 143, 0.3), rgba(60, 165, 143, 0));
  width: 15%;
  top: 40px;
  left: 100px;
  z-index: 1;
}

.feature:nth-child(even) .feature-line {
  left: auto;
  right: 100px;
  background: linear-gradient(90deg, rgba(60, 165, 143, 0), rgba(60, 165, 143, 0.3));
}

.feature:nth-child(1) .feature-line {
  background: linear-gradient(90deg, rgba(77, 171, 247, 0.3), rgba(77, 171, 247, 0));
}

.feature:nth-child(1).feature:nth-child(even) .feature-line {
  background: linear-gradient(90deg, rgba(77, 171, 247, 0), rgba(77, 171, 247, 0.3));
}

.feature:nth-child(2) .feature-line {
  background: linear-gradient(90deg, rgba(241, 179, 78, 0.3), rgba(241, 179, 78, 0));
}

.feature:nth-child(2).feature:nth-child(even) .feature-line {
  background: linear-gradient(90deg, rgba(241, 179, 78, 0), rgba(241, 179, 78, 0.3));
}

/* Numbers in background */
.feature-number {
  position: absolute;
  font-size: 12rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.02);
  z-index: 0;
  top: -60px;
  left: -20px;
  line-height: 1;
}

.feature:nth-child(even) .feature-number {
  left: auto;
  right: -20px;
}

/* CTA Section */
.ctas-section {
  margin-top: 8rem;
  padding: 5rem;
  background: linear-gradient(135deg, #fdfdfd 0%, #dae7f9 100%);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.ctas-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 10rem 0;
  background: linear-gradient(135deg, rgba(60, 165, 143, 0.05) 0%, rgba(77, 171, 247, 0.05) 100%);
  z-index: 0;
  right: -100px;
  bottom: -100px;
  transform: rotate(45deg);
}

.ctas-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ctas-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.ctas-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.ctas-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #3ca58f 0%, #4dabf7 100%);
  color: white;
  font-weight: 500;
  border-radius: 3rem;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(60, 165, 143, 0.2);
  transition: all 0.3s ease;
}

.ctas-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(60, 165, 143, 0.3);
}

/* Animation classes */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.active {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
  .section-intro {
      grid-template-columns: 1fr;
      gap: 3rem;
  }

  .intro-content {
      padding-right: 0;
  }

  .intro-image {
      max-width: 600px;
      margin: 0 auto;
  }

  .feature-content {
      grid-template-columns: 1fr !important;
      gap: 2rem;
  }

  .feature-icon {
      margin: 0 auto;
  }

  .feature-text {
      text-align: center !important;
  }

  .feature-description {
      margin: 0 auto !important;
      max-width: 100%;
  }

  .feature-line {
      display: none;
  }

  .feature-number {
      display: none;
  }
}

@media screen and (max-width: 768px) {
  .partner-section {
      padding: 4rem 1.5rem;
  }

  .section-title {
      font-size: 2.2rem;
  }

  .cta-section {
      padding: 3rem 1.5rem;
  }
}


.containerx {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
}

.headerx {
  text-align: center;
  margin-bottom: 60px;
  animation: floatIn 1.2s ease-out;
}

.headerx h1 {
  font-size: 3em;
  color:#1f4534;
  margin-bottom: 15px;
  position: relative;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.headerx h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  /* background: linear-gradient(to right, #a855f7, #ec4899); */
  border-radius: 3px;
}

.headerx p {
  font-size: 1.2em;
  color: #000000;
  max-width: 700px;
  margin: 20px auto;
  font-weight: 300;
  animation: fadeIn 1.5s ease-out 0.3s backwards;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  position: relative;
}

.service-item {
  padding: 20px;
  text-align: center;
  position: relative;
  opacity: 0;
  animation: swirlIn 0.8s ease-out forwards;
  z-index: 1;
}

.service-item:nth-child(1) { animation-delay: 0.2s; }
.service-item:nth-child(2) { animation-delay: 0.3s; }
.service-item:nth-child(3) { animation-delay: 0.4s; }
.service-item:nth-child(4) { animation-delay: 0.5s; }
.service-item:nth-child(5) { animation-delay: 0.6s; }
.service-item:nth-child(6) { animation-delay: 0.7s; }
.service-item:nth-child(7) { animation-delay: 0.8s; }
.service-item:nth-child(8) { animation-delay: 0.9s; }
.service-item:nth-child(9) { animation-delay: 1.0s; }

.service-item:hover {
  transform: translateY(-10px) rotate(2deg);
}

.service-icon {
  font-size: 2.2em;
  color: #a855f7;
  margin-bottom: 12px;
  display: inline-block;
  transition: transform 0.5s ease, color 0.5s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.3);
  color: #ec4899;
}

.service-item h3 {
  font-size: 1.2em;
  color: #000000;
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-item:hover h3 {
  color: #000000;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ec4899" stroke-width="2" opacity="0.2"/></svg>');
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-item:hover::before {
  opacity: 1;
}

.bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.bg-shapes::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  /* background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%); */
  animation: float 10s infinite ease-in-out;
}

.bg-shapes::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  /* background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%); */
  animation: float 12s infinite ease-in-out reverse;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(50px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes swirlIn {
  from { opacity: 0; transform: rotate(180deg) scale(0.5); }
  to { opacity: 1; transform: rotate(0deg) scale(1); }
}

@keyframes float {
  0% { transform: translate(0, 0); }
  50% { transform: translate(50px, 50px); }
  100% { transform: translate(0, 0); }
}

@media (max-width: 768px) {
  .header h1 {
      font-size: 2.2em;
  }

  .header p {
      font-size: 1em;
  }

  .services-list {
      grid-template-columns: 1fr;
  }
}

 /* Contact Section */
 .contact-section {
  padding: 100px 20px;
  background: #ffffff;
  position: relative;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.8em;
  color: #064e3b;
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
}

.contact-section h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #10b981, #34d399);
  border-radius: 2px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.contact-card h3 {
  font-size: 1.8em;
  color: #064e3b;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info p {
  font-size: 1.1em;
  color: #4b5563;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 12px;
  color: #10b981;
  font-size: 1.3em;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1em;
  width: 100%;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 5px rgba(16, 185, 129, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form button {
  padding: 14px;
  background: #10b981;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #059669;
}

.contact-map-calendly {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.calendly-container {
  text-align: center;
}

.calendly-container .calendly-inline-widget {
  min-width: 100%;
  height: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
      grid-template-columns: 1fr;
  }

  .contact-map-calendly {
      grid-template-columns: 1fr;
  }

  .map-container iframe,
  .calendly-container .calendly-inline-widget {
      height: 400px;
  }
}