@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --primary-color: #2887ff;
  --primary-color-dark: #2476da;
  --text-dark: #0a0a0a;
  --text-light: #737373;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
}

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

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 5px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.nav_logo {
  height: 150px;
  width: 150px;
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Sans-serif;
  overflow-x: hidden;
}



/* General Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

/* Navbar Styles */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: transparent; /* Dark background for the header */
}

#navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

#navbar.scrolled {
  padding: 0.8rem 0;
}

.nav_logo {
  height: 150px;
  width: 150px;  
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #fff1a6;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
  background-color: #fff1a6;
  color: #354730;
  padding: 0.75rem 1.5rem;
  border: 1px solid #858585;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.join-network {
  background-color: transparent;
  border: 2px solid #fff1a6;
  color: #fff1a6;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.join-network:hover {
  background-color: #fff1a6;
  color: #354730;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  box-shadow: 0 8px 16px #354730;
  border: 1px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  background-color: transparent;
}

.dropdown-content a {
  color: #fff1a6;
  padding: 0.8rem 1rem;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #fff1a6;
  color: #354730;
  opacity: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: 150vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding-top: 80px;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-background video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  padding: 2rem;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.hero-text {
  font-size: 16px;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.tagline {
  font-style: italic;
  font-weight: 500;
  font-size: 2rem;
}

/* Mobile Menu */
.hamburger {
  display: none;
  cursor: pointer;
  border: 1px solid #fff1a6;
  border-radius: 5px;
  padding: 5px;
}

.hamburger:hover {
  color: #fff1a6;
  background-color: #354730;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff1a6;
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .nav-links {
    gap: 1rem;
  }
}

@media screen and (max-width: 768px) {

  .header{
    position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #354730;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: #354730; /* Background color for mobile menu */
    box-shadow: 0 8px 16px #354730;
    z-index: 10;
    
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    background-color: #354730; /* Background color for dropdown in mobile */
    box-shadow: none;
  }

  .dropdown-content a {
    color: #fff1a6;
  }

  .join-network {
    display: block;
    margin-top: 1rem;
    text-align: center;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background-color: transparent;
    border: 2px solid #fff1a6;
    color: #fff1a6;
  }

  .join-network:hover {
    background-color: #fff1a6;
    color: #354730;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}


/* About us second section starts from here */

.About_growth-section {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.About_container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 4rem 1.5rem;
}

.About_top-text, .About_bottom-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.About_slash {
  color: #257600; /* Emerald green */
}

.About_subheading {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000000;
}

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

@media (min-width: 1024px) {
  .About_content-grid {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
  }
}

.About_main-heading {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
  margin-top: 6rem;
}

@media (min-width: 1024px) {
  .About_main-heading {
      font-size: 2.5rem;
  }
}

.About_paragraph1 {
  font-size: 24px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  margin-top: -5rem;
}

.About_paragraph2, 
.About_paragraph3, 
.About_paragraph4 {
  margin-bottom: 2rem;
  color: #000000;
  font-size: 16px;
}

.About_bottom-text {
  padding-top: 2rem;
}

/* Initial state: Hidden and moved slightly up */
.About_paragraph1, 
.About_paragraph2, 
.About_paragraph3, 
.About_paragraph4, 
.About_bottom-text {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 3s ease-out, transform 3s ease-out;
}

/* When in view, fade in and move to normal position */
.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .About_container {
      padding: 2rem 1rem;
      gap: 2rem;
  }

  .About_top-text, .About_bottom-text {
      flex-direction: column;
      text-align: center;
  }

  .About_main-heading {
      font-size: 1.8rem;
      margin-top: 3rem;
  }

  .About_paragraph1 {
      font-size: 18px;
      margin-top: 0;
  }

  .About_paragraph2, 
  .About_paragraph3, 
  .About_paragraph4 {
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .About_container {
      padding: 1.5rem;
  }

  .About_main-heading {
      font-size: 1.5rem;
  }

  .About_paragraph1 {
      font-size: 16px;
  }

  .About_paragraph2, 
  .About_paragraph3, 
  .About_paragraph4 {
      font-size: 13px;
  }
}
  
  
  /* About us second section ends here */
  
  /* About us 3rd section starts from here  */
  
  .Venture_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    margin-top: -3rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 3s ease-out, transform 3s ease-out;
}

/* Class added via JavaScript when element is in view */
.Venture_container.fade-in {
    opacity: 3;
    transform: translateY(0);
}
  
  .Venture_grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
  
  }
  
  @media (min-width: 768px) {
    .Venture_grid {
        grid-template-columns: 1fr 1fr;
  
    }
  }
  
  .Venture_card {
    background-color: #fff1a6;
    padding: 32px;
    border-radius: 8px;
  
  }
  
  .Venture_title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    line-height: 1.2;
  
  }
  
  .Venture_title span {
    display: block;
    font-weight: 700;   
  }
  
  .Venture_description {
    font-size: 16px;
    color: #000000;
    margin-bottom: 32px;
  
  }
  
  .Venture_learn-more {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    transition: opacity 0.2s ease;
  
  }
  
  .Venture_learn-more:hover {
    opacity: 0.8;
  
  }
  
  .Venture_learn-more span {
    margin-right: 8px;
  
  }
  
  .Venture_arrow-icon {
    width: 20px;
    height: 20px;
  
  }
  
  
  /* About us 3rd section ends here */
  
  /* About us 4th section starts from here */
  
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    margin: 0 auto;
    
  }
  
  .Approches_service-section {
    border-top: 1px solid #257600;
    padding-top: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent;
    margin-top: -2rem;
   
    
  
  }
  
  .Approches_service-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .Approches_service-title span {
    color: #257600;
  }
  
  .Approches_service-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .Approches_service-content {
        flex-direction: row;
        align-items: flex-start;
    }
  }
  
  .Approches_service-description {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    flex-grow: 1;
  }
  
  .Approches_learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgb(0, 0, 0);
    background: transparent;
    border: 1px solid #257600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    white-space: nowrap;
  }
  
  .Approches_learn-more-btn:hover {
    background-color: #257600;
    color: #fff1a6;
    
  }
  
  .Approches_learn-more-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
  }
  
  .Approches_learn-more-btn:hover svg {
    transform: translate(2px, -2px);
  }

  /* Initial State - Hidden */
.Approches_service-heading,
.Approches_service-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 3s ease-out, transform 3s ease-out;
}

/* When in View */
.Approches_service-heading.fade-in,
.Approches_service-section.fade-in {
    opacity: 3;
    transform: translateY(0);
}

@media (max-width: 768px) {
  h1 {
      font-size: 2rem;
      text-align: center;
  }

  .Approches_service-section {
      padding: 1.5rem;
      margin-bottom: 3rem;
  }

  .Approches_service-title {
      font-size: 1.3rem;
      text-align: center;
  }

  .Approches_service-content {
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
  }

  .Approches_service-description {
      font-size: 15px;
      line-height: 1.5;
  }

  .Approches_learn-more-btn {
      align-self: center;
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
  }

  .Approches_learn-more-btn svg {
      width: 14px;
      height: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
      font-size: 1.8rem;
  }

  .Approches_service-title {
      font-size: 1.2rem;
  }

  .Approches_service-content {
      gap: 1rem;
  }

  .Approches_service-description {
      font-size: 14px;
  }

  .Approches_learn-more-btn {
      padding: 0.5rem 1rem;
      font-size: 0.85rem;
  }

  .Approches_learn-more-btn svg {
      width: 12px;
      height: 12px;
  }
}



  /* About us 4th section ends here */

  /* About us 5th section starts from here */

.Fifth_container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: center;
            padding: 2rem;

        }

        .Fifth_card {
            flex: 1;
            min-width: 300px;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
            
        }

        .Fifth_cards-main {
            color: rgb(63, 98, 63);
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 2rem;
            text-align: center;
            margin-top: 2rem;
        }

        .Fifth_card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1rem;
            
        }

        .Fifth_card-title {
            color: rgb(63, 98, 63);
            font-size: 24px;
            margin-bottom: 1rem;
            margin-top: 2rem;
            font-weight: 500;
        }

        .Fifth_card-description {
            color: rgb(0, 0, 0);
            line-height: 1.5;
            margin-bottom: 1rem;
            font-size: 16px;
        }

        .Fifth_key-benefits {
            color: rgb(63, 98, 63);
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .Fifth_benefits-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            list-style: none;
        }

        .Fifth_benefit-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgb(55, 65, 81);
            font-size: 14px;
            line-height: 1.4;
        }

        .Fifth_check-icon {
            width: 20px;
            height: 20px;
            min-width: 20px;
            border-radius: 50%;
            background: rgb(63, 98, 63);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease-in-out;
        }

        .Fifth_check-icon::before {
            content: "✓";
            color: #fff1a6;
            font-size: 12px;
        }

        .Fifth_check-icon:hover {
            background: #fff1a6;
            color: #354730;
        }

        /* .Fifth_check-icon::after {
            content: "✓";
            color: #354730;
            font-size: 12px;
        } */

        @media (max-width: 768px) {
            .Fifth_container {
                flex-direction: column;
                gap: 24px;
                align-items: center;
            }
            .Fifth_card {
                width: 100%;
                max-width: 400px;
                text-align: center;
                padding: 1.5rem;
                margin: 0 auto;

            }
        }

        .Fifth_container {
          opacity: 3;
          transform: translateY(50px);
          transition: opacity 3s ease-out, transform 3s ease-out;
      }
      
      .Fifth_container.visible {
          opacity: 3;
          transform: translateY(0);
      }
      

  /* About us 5th section ends here */

  /* About us 6th section starts from here */

  .testimonial-container {
    max-width: 1200px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    background-color: #fff1a6;
    border-radius: 10px;
    height: auto;

}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;


}

.testimonial {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px;
    min-width: 100%;
    flex-shrink: 0;

}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;

}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.logo-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}   
.content {
    flex: 1;

}

.content h1{
    color: #354730;
    font-size: 2rem;
    margin-bottom: 1rem;


}

.content h2 {
    color: #354730;
    font-size: 1.5rem;
    margin-bottom: 1rem;  

}

.content p {
    color: #354730;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}



.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #354730;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
    z-index: 10;

}

.nav-button:hover {
    opacity: 1;

}

.prev {
    left: 0;

}

.next {
    right: 0;

}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;

}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #354730;
    cursor: pointer;
    transition: background-color 0.3s;

}

.dot.active {
    background-color: #354730;

}

@media (max-width: 1024px) {
  .testimonial-container {
      padding: 15px;
  }

  .testimonial {
      flex-direction: column;
      text-align: center;
      gap: 20px;
  }

  .profile-image {
      width: 150px;
      height: 150px;
  }

  .logo-image {
      width: 80px;
      height: 80px;
  }

  .content h1 {
      font-size: 1.8rem;
  }

  .content p {
      font-size: 1rem;
      line-height: 1.4;
  }

  .content h2 {
      font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .testimonial-container {
      padding: 10px;
  }

  .testimonial {
      padding: 15px;
  }

  .profile-image {
      width: 120px;
      height: 120px;
  }

  .logo-image {
      width: 70px;
      height: 70px;
  }

  .content h1 {
      font-size: 1.5rem;
  }

  .content p {
      font-size: 0.9rem;
      line-height: 1.3;
  }

  .content h2 {
      font-size: 1.2rem;
  }

  .nav-button {
      font-size: 1.5rem;
      padding: 5px;
  }

  .dot {
      width: 10px;
      height: 10px;
  }
}



  /* About us 6th section ends here */

  /* whatsapp plugin section starts from here */
  .whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}


.whatsapp-logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    bottom: 10px;
    background-color: white;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-tooltip:after {
    content: '';
    position: absolute;
    right: -10px;
    bottom: 15px;
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.whatsapp-container:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

.whatsapp-container:hover .whatsapp-button {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Demo page styling */
.demo-content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.demo-text {
    font-size: 24px;
    color: #333;
    text-align: center;
}

/* whatsapp plugin section ends here */



   /*  Footer section starts from here */

  .footer {
    background-color: #354730;
    color: #ffffff;
    padding: 40px 0 20px;
    overflow-x: hidden;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff1a6;
    cursor: pointer; /* Added cursor pointer for mobile toggle */
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff1a6;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #fff1a6;
    font-size: 12px;
    color: #fff1a6; 
    padding: 2rem;
    line-height: 1.6;
}

.social-icons {
    margin-bottom: 15px;
}

.social-icon {
    display: inline-block;
    margin: 0 10px;
    color: #fff1a6;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-column ul {
        display: none;
    }
}
.back-to-top {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -15px; /* Adjust as needed */
  background-color: #fff1a6;
  color: #354730;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;

}

.back-to-top:hover {
  background-color: #ffffff;
  color: #354730;
}

.footer-bottom {
  position: relative;
  text-align: center;
  margin-top: 20px;
  padding-top: 40px; /* Increased padding for spacing */
  border-top: 1px solid #fff1a6;
  font-size: 12px;
  color: #fff1a6; 
  padding: 2rem;
  line-height: 1.6;
}


/* Footer section ends here */