/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

html,
body{
    width: 100%;
    overflow-x: hidden;
}

/* Top Title Bar */
.clstoptitle {
    display: inline-block;
    width: 100%;
    background-color: #C7B2E0;
    box-shadow: none;
    text-transform: none;
}


.clslefttitle {
    text-align: left;
    color: #FFF;
    padding: 15px 100px;
    font-size: 18px;
    display: inline-block;
}


@media (max-width: 550px) {

  .clslefttitle {
      text-align: left;
      color: #FFF;
      padding: 15px 25px;
      font-size: 10px;
      display: inline-block;
  }
}

:root {
  /* Colors */
  --color-primary: #4CAF50;
  --color-primary-light: #8BC34A;
  --color-primary-dark: #2E7D32;
  --color-primary-50: #E8F5E9;
  --color-primary-100: #C8E6C9;
  --color-primary-600: #43A047;
  --color-primary-700: #388E3C;
  --color-primary-800: #2E7D32;
  
  --color-white: #fff;
  --color-black: #000;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--color-gray-800);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-600);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary-700);
  border: 1px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary-50);
}

/* Header & Navigation */
.header {
  
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  
}

.logo-icon {
  width: 10rem;
  height: 6rem;
  position: relative;
  margin-left: 100px;
}

.logo-text h1 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-800);
  margin: 0;
}

.logo-text p {
  font-size: 0.875rem;
  color: var(--color-primary-600);
  line-height: 1.2;
  margin: 0;
}

.nav-links {
  display: none;
}

.header-buttons {
  display: none;
}

.mobile-menu-btn {
  display: block;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--color-gray-700);
  transition: all 0.3s ease-in-out;
}

.mobile-menu {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}

.mobile-menu.active {
  height: auto;
}

.mobile-nav-links {
  padding: 1rem 0;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-gray-700);
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  background-color: var(--color-primary-50);
  color: var(--color-primary-700);
}

.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1rem 1rem;
}

.mobile-buttons .btn {
  width: 100%;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 0;
  height: 4px;
  border-radius: 20px;
  background-color: var(--color-primary);
  transition: width 0.4s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link[href="/"]::after {
  width: 100%;
}

/* On hover, other links show underline */
.nav-link:not([href="/"]):hover::after {
  width: 100%;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-link {
    color: var(--color-gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  
  .header-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
 
}
@media (max-width: 768px){
  .logo-icon {
  width: 10rem;
  height: 6rem;
  position: relative;
  margin-left: 10px;
}
}




/* Hero Section */

body {
  overflow-x: hidden;
}

/* Animation keyframes */
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Base image styles */
.image_container {
  position: relative;
  width: 100%;
  height: auto;
}

.image_container img {
  width: 100%;
  height: auto;
  display: block;
  animation: slideInRight 1s ease-out forwards;
}

/* Base text styles */
.image_container .text {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  text-align: left;
  color: white;
  animation: slideInRight 1s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
  padding: 0 130px;
}

.image_container .text h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
  line-height: 50px;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  opacity: 0;
  animation: slideInRight 1s ease-out forwards;
  animation-delay: 0.6s;
}

.image_container .text .coloring {
  //color: #57f180;
  color: green;
  //animation-delay: 0.8s;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
  .image_container .text {
    top: 15%;
    text-align: center;
    padding: 0 1rem;
  }

  .image_container .text h2 {
    font-size: 1.25rem;
    line-height: 1.4;
    padding: 0;
  }
}
@media (max-width: 320px){
.image_container img {
    height: 400px; /* You can adjust this value */
    object-fit: cover; /* Keeps the image nicely cropped */
  }

}

/* section 2 */


.info-section {
  text-align: center;
  padding: 4rem 1rem;
}

.info-section h2 {
  font-size: 1.8rem;
  color: #2c2c4a;
}

.underline {
  width: 100px;
  height: 3px;
  background-color: #24b34b;
  margin: 0.5rem auto 1rem;
}

.info-section p {
  color: #666;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.card-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.card {
  flex: 1 1 250px;
  max-width: 300px;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
  text-align: center;
}

.card i {
  font-size: 6rem;
  color: #24b34b;
  margin-bottom: 1rem;
}

.card h3 {
  color: #24b34b;
  margin-bottom: 1rem;
}

.card button {
  background-color: #24b34b;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.card button:hover {
  background-color: #1a8a37;
}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
  flex: 1 1 250px;
  width: 250px;
  max-width: 300px;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
  text-align: center;
}
}

@media (max-width: 300px) {
 .card {
  width: 100%;
}

    .feature .feature-item{
    flex-direction: column;
    /* align-items: center;
    justify-items: center; */
    text-align: center;
    }

}

/* 3rd section */

.populated{
  display: flex;
background: linear-gradient(to bottom, #28a745, #67c28d);
color: white;
  width: 100%;
  min-height: 300px;
}

.choose{
  flex-basis: 50%;
  padding: 70px 80px ;
  
}
.choose h1{
  font-size: 32px;
}

.choose p{
  font-size: 18px;
}
.feature{
  flex-basis: 50%;
  padding: 70px 80px;
}
.feature .feature-item{
display: flex;
align-items: center;
line-height: 50px;

}

.feature .feature-item i{
  margin-right: 10px;
  font-size: 36px;
}

@media (max-width: 768px) {
  .feature .feature-item{
display: flex;
align-items: center;
line-height: 20px;
margin: 20px 2px;

}
.choose{
  padding: 60px 30px ;
  
}
}

@media (max-width: 550px) {
.populated{
  display: flex;
  flex-direction: column;
}

.choose{
 text-align: center;
  
}
}




/* Section 4 */
 .benefits-section {
      text-align: center;
      padding: 60px 20px;
    }

    .benefits-section h2 {
      color: #28a745;
      font-size: 28px;
      margin-bottom: 10px;
    }

    .benefits-section h2::after {
      content: "";
      display: block;
      margin: 8px auto 20px;
      width: 60px;
      height: 3px;
      background-color: #28a745;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto 40px;
      align-items: center;
    }

    .benefit-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 10px;
    }

    .benefit-icon img {
      height: 80px;
      margin-bottom: 20px;
    }

    .benefit-text {
      font-weight: bold;
      color: #1c2e4a;
      font-size: 16px;
      line-height: 1.5;
    }

    .more-btn {
      background-color: #28a745;
      color: #fff;
      padding: 12px 24px;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .more-btn:hover {
      background-color: #218838;
    }

    @media (max-width: 600px) {
      .benefit-icon img {
        height: 60px;
      }

      .benefit-text {
        font-size: 14px;
      }

      .more-btn {
        font-size: 14px;
        padding: 10px 20px;
      }
    }


    /* Section 5 */
    
.profile-section {
  padding: 50px 5px 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.profile-text {
  flex: 1 1 400px;
  max-width: 600px;
}

.profile-text h1 {
  color: #24b34b;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.profile-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 0 10px 0 10px;
}

.buttons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.btn-outline,
.btn-fill {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid #24b34b;
  transition: all 0.3s ease;
}

.btn-outline {
  background-color: #fff;
  color: #24b34b;
}

.btn-outline:hover {
  background-color: #24b34b;
  color: #fff;
}

.btn-fill {
  background-color: #24b34b;
  color: #fff;
}

.btn-fill:hover {
  background-color: #24b34b;
}

.profile-image img {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  flex: 1 1 300px;
}

hr {
  border: none;
  height: 1px;
  background-color: rgb(224, 214, 214); /* green line */
  width: 85%;
  margin: 30px auto;
}
/* Responsive */
@media (max-width: 768px) {
  .profile-section {
    flex-direction: column;
    text-align: center;
  }

  .buttons {
    justify-content: center;
  }

  .profile-text h1 {
    font-size: 2rem;
  }
}



/* Footer */

footer {
      background-color: #383f5b;
      color: white;
      padding: 40px 20px 20px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-section {
      flex: 1 1 250px;
    }

    .footer-section img {
      max-width: 180px;
      margin-bottom: 10px;
    }

    .footer-section a {
      color: #2acfcf;
      text-decoration: none;
    }

    .footer-section a:hover {
      text-decoration: underline;
    }

    .footer-icons {
      margin-top: 15px;
    }

    .footer-icons a {
      margin-right: 10px;
      color: white;
      font-size: 20px;
    }
    .newsletter {
      line-height: 2.6;
    }

    .newsletter input[type="email"] {
      padding: 10px;
      border: none;
      width: 70%;
      max-width: 250px;
      border-radius: 4px 0 0 4px;
    }

    .newsletter button {
      padding: 10px 15px;
      border: none;
      background-color: #28a745;
      color: white;
      cursor: pointer;
      border-radius: 0 4px 4px 0;
    }

    .footer-bottom {
      text-align: center;
      font-size: 14px;
      margin-top: 40px;
      border-top: 1px solid #444;
      background-color: #373d57;
      padding-top: 15px;
    }

    .times{
      line-height: 3.6;
    }
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-section p{
        font-size: large;
      }
      .footer-section h3{
        font-size: large;
    }
    .footer-section {
    flex: 1 1 140px;
}
footer {
    background-color: #383f5b;
    color: white;
    padding: 40px 40px 20px;
}
  }
  
  .blackColor{
    color: black;
  }
  