@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
  }
  
  body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

 
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 0 80px;
  position: fixed;  
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  align-items: center;
  width: 100%;
  max-width: 10000px;
  z-index: 1000;
  margin-bottom: 20px;
  background-color: #3498db;
  transition: .5s ease-in;
}

/* Center nav links */
.navbar .center ul {
  display: flex;
  list-style: none;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  width: fit-content;
  height: fit-content;
}

.navbar .center ul li a {
  color: white;
  text-decoration: none;
  margin: 15px;
  font-size: 1em;
  font-weight: 400;
  text-transform: capitalize;
  display: inline-block;
  position: relative;
}

.center ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #fdfdfd;
  transition: width 0.3s ease;
}

.center ul li a:hover::after {
  width: 100%;
}

/* Left logo */
.left img {
  cursor: pointer;
  font-family: "Righteous";
  margin-top: 5px;
}

.left img:hover {
  text-shadow: 0 0 2px white;
  transition: 0.2s;
}

/* Right buttons */
.right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.right button {
  background-color: transparent;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 1em;
  text-transform: capitalize;
  cursor: pointer;
  white-space: nowrap;
}

.right button:hover {
  color: rgb(0, 255, 255);
}

.right button:nth-child(2) {
  font-weight: 500;
  font-size: 1em;
  padding: 5px;
  margin-left: 15px;
  background-color: white;
  color: black;
  border: none;
  border-radius: 15px;
  width: 120px;
  height: fit-content;
  cursor: pointer;
  text-transform: capitalize;
}

.right button:nth-child(2):hover {
  background-color: rgb(0, 255, 255);
  color: rgb(0, 0, 0);
  transition: 0.5s;
}

/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 30px;
    height: auto;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 35px;
    right: 40px;
    z-index: 1100;
  }

  .navbar .center,
  .navbar .right {
    display: none;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-radius: 10px;
    margin-top: 20px;
  }

  .navbar .center.active,
  .navbar .right.active {
    display: flex;
  }

  .navbar .center ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .navbar .center ul li a {
    margin: 10px 0;
  }

  .navbar .right {
    flex-direction: row; /* Ensure buttons stay in row */
    justify-content: center;
    gap: 15px;
  }

  .navbar .right button {
    margin: 10px 0;
  }
}



.big-header {
    width: 100%;
    background-image: url(/assets/bgi2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding: 30px 15px;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.6);
    margin-bottom: 20px;
    margin-top:100px;
  }
  .intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: #333;
  }


    /* Section Styling */
    .health-benefits {
        padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 2rem);
        max-width: 1200px;
        margin: 0 auto;
    }

    .benefits-container {
        background: white;
        border-radius: 12px;
        padding: clamp(1.5rem, 5vw, 3rem);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .section-header {
        text-align: center;
        margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    }

    .section-title {
        font-size: clamp(1.75rem, 3vw, 2.5rem);
        color: #1e3a8a;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: clamp(1rem, 1.5vw, 1.25rem);
        color: #64748b;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Paragraph Styling */
    .benefits-content {
        display: grid;
        gap: 1.5rem;
        font-size: clamp(1rem, 1.1vw, 1.125rem);
    }

    .benefits-content p {
        text-align: justify;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
    }

    .highlight {
        font-weight: 600;
        color: #2563eb;
        background-color: #dbeafe;
        padding: 0.15rem 0.3rem;
        border-radius: 4px;
    }

    /* Responsive Enhancements */
    @media (max-width: 768px) {
        .benefits-content {
            text-align: left;
        }
        
        .benefits-content p {
            text-align: left;
            hyphens: none;
            -webkit-hyphens: none;
            -ms-hyphens: none;
        }
    }

    /* Decorative Elements */
    .benefits-container::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background: #2563eb;
        margin: 2rem auto 0;
        border-radius: 2px;
    }
  .scheme-card {
    transition: transform 0.2s;
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    background: white;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top:2.5rem;
  }

  .scheme-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }
  .scheme-card img {
    width: 100%;
    height:auto;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
  }
  .scheme-form {
    max-width: 900px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    margin: 30px auto;
  }




  /* footer  */

/* footer  */

.footer {
  background-color: #f0f0f5;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  border-top: 1px solid #ccc;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-about, .footer-links, .footer-contact {
  flex: 1 1 300px;
  margin: 10px;
}

.footer h3, .footer h4 {
  color: #2a2a72;
  margin-bottom: 15px;
}

.footer p, .footer li {
  font-size: 16px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li a {
  color: #333;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #007BFF;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #777;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-about, .footer-links, .footer-contact {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer {
    text-align: left;
    padding: 30px 15px;
  }

  .footer-bottom {
    text-align: center;
  }
}
