@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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, 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);
  }
}

/* Community & Networking second section starts from here */

.community_container {
    max-width: 800px;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
  
  }
  
  .community_portal-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 20px;
    opacity: 0;
    transform: translateX(100px);
    transition: transform 3s ease-out, opacity 3s ease-out;
  
  }
  
  .community_title {
    font-size: 28px;
    color: #354730;
    font-weight: bold;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 3s ease-out, opacity 3s ease-out;
  
  }
  
  .community_title span {
    color: #354730;
  
  
  }
  
  .community_description, .community_details {
    font-size: 15px;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center; 
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 3s ease-out, opacity 3s ease-out;
  
  }
  .show {
    opacity: 1;
    transform: translateX(0);
}
  
  /* Community & Networking second section ends here */
  
  /* community & networking third section starts from here */
  
  .store-section {
    display: flex;
    align-items: center;
    max-width: 1200px;
    padding: 40px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
   
  }
  .store-text-content {
    flex: 1;
    padding-right: 40px;
    color: #000000;
  
  }
  .store-title {
    color: #354730;
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 3s ease-out, opacity 3s ease-out;
  }
  .store-description {
    color: #000000;
    line-height: 1.5;
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 3s ease-out, opacity 3s ease-out;
  
  }

  .store-features {
    color: #000000;
    font-size: 1rem;
    margin-top: 20px;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 3s ease-out, opacity 3s ease-out;
  
  }
  
  .store-features li {
    list-style: none;
    margin: 10px 0;
    font-size: 15px;
    color: #000000;
  }
  .store-features li::before {
    content: "\2022";
    color: rgb(0, 0, 0);
    margin-right: 10px;
  
  }
  
  .store-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    margin-left: -40px;
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 3s ease-out, opacity 3s ease-out;
  
  }
  .store-buttons img {
    width: 240px;
    cursor: pointer;
    height: auto;
  
  }
  .store-image-container {
    flex: 1;
    text-align: right;
    opacity: 0;
    transform: translateX(100px);
    transition: transform 3s ease-out, opacity 3s ease-out;
  
  }
  
  .show {
    opacity: 1;
    transform: translateX(0);
}


  .store-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
  
  }
  @media (max-width: 768px) {
    .store-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
  
    }
    .store-text-content {
        padding-right: 0;
        color: #000000;
  
    }
    .store-image-container {
        text-align: center;
        margin-top: 20px;
  
    }
  }
  
  /* community & networking third section ends here */
  
  /* community & networking fourth section starts from here */
  
  .community-stories {
    /* max-width: 900px; */
    position: relative;
    text-align: center;
    width: 100%;
    margin: 100px auto;
    /* background-color: #3C5730; */
    padding: 50px;
    margin-top: 1rem;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
  }
  
  .community-stories-heading {
    font-size: 2rem;
    color: #354730; /* Soft yellowish color */
    font-weight: bold;
    opacity: 0;
    transition: all 3s ease-out; 
    transform: translateX(100px);

  }
  
  hr {
    width: 50px;
    border: 0;
    height: 1px;
    background-color: #000000;
    margin: 10px auto 20px;
  }
  
  .community-stories-paragraph {
    font-size: 15px;
    line-height: 1.8;
    color: #354730;
     opacity: 0;
    transition: all 3s ease-out;
    transform: translateX(-100px);
  }
  
  /* Slant Effect */
  .community-stories-slant {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    /* background-color: #1F3019;  */
    transform: skewY(-3deg);
  }
  
  .testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    margin-top: -8rem;
    opacity: 0;
    transition: all 3s ease-out;
    transform: translateY(-50px);
  
  }

  .show {
    opacity: 1;
    transform: translateX(0) translateY(0);
}
  
  .testimonial {
    background-color: #f4f4f4;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
  
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  
  }
  
  .stars {
    color: #ffa41c;
    font-size: 24px;
    margin-bottom: 1rem;
  
  }
  
  .quote {
    color: #354730;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  
  }
  
  .profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  
  }
  
  .profile-image {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1px solid #354730;
  
  }
  
  .profile-image img {
    width: 80px;
    height: 80px;
    border-radius: 1px solid #354730;
  
  }
  
  .profile-info {
    text-align: left;
  
  }
  
  .profile-name {
    font-weight: 600;
    color: #354730;
  
  }
  
  .profile-title {
    color: #354730;
    font-size: 0.9rem;
  
  }
  
  @media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
  
    }
  }
  
  /* community & networking fourth section ends here */
  
  /* community & networking fifth section starts from here */
  
  .community_investment-section {
    padding: 50px;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    height: auto;
    
    
  }
  
  .community_sub-heading {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
    color: #354730;
    opacity: 0;
    transform: translateX(100px);
    transition: transform 3s ease-out, opacity 3s ease-out;
  
  }
  
  .community1_main-heading {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0;
    color: #354730;
    opacity: 0;
    transform: translateX(100px);
    transition: transform 3s ease-out, opacity 3s ease-out;
  
  
  }

  /* Initial hidden states */
.community_sub-heading, 
.community1_main-heading, 
.community_content {
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 3s ease-out, opacity 3s ease-out;
}

.community_small-heading, 
.community_highlight-heading, 
.community_paragraph {
    opacity: 0;
    transform: translateX(100px);
    transition: transform 3s ease-out, opacity 3s ease-out;
}

/* Class to trigger animation */
.show {
    opacity: 1;
    transform: translateX(0);
}

  
  .community1_main-heading {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0;
    color: #354730;
  
  }
  
  .community_content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
  
  }
  
  .community_images {
    display: flex;
    gap: 20px;
  
  }
  
  .community_images img {
    width: 250px;
    height: auto;
    border-radius: 5px;
    border: 1px solid #354730;
  
  }
  
  .community_text {
    text-align: left;
    max-width: 400px;
  
  }
  
  .community_small-heading {
    font-size: 18px;
    font-weight: bold;
    color: #354730;
    margin-bottom: 10px;
  
  }
  
  .community_highlight-heading {
    font-size: 24px;
    font-weight: bold;
    color: #354730;
    margin-bottom: 10px;
  
  }
  
  .community_paragraph {
    font-size: 16px;
    line-height: 1.5;
  
  }

  @media (max-width: 1024px) {
    .community_content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .community_text {
        text-align: center;
        max-width: 100%;
    }

    .community_images {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .community_investment-section {
        padding: 30px;
    }

    .community1_main-heading {
        font-size: 24px;
    }

    .community_images {
        flex-direction: column;
        align-items: center;
    }

    .community_images img {
        width: 90%;
        max-width: 250px;
    }

    .community_small-heading {
        font-size: 16px;
    }

    .community_highlight-heading {
        font-size: 20px;
    }

    .community_paragraph {
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .community_investment-section {
        padding: 20px;
    }

    .community1_main-heading {
        font-size: 20px;
    }

    .community_images img {
        width: 100%;
        max-width: 220px;
    }

    .community_small-heading {
        font-size: 14px;
    }

    .community_highlight-heading {
        font-size: 18px;
    }

    .community_paragraph {
        font-size: 13px;
    }
}

  
  /* community & networking fifth 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 */