*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    scrollbar-color: #408500 #012041;
      -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
    outline: none; 
}
:root{
  color-scheme: light;
    --bigger-font: clamp(28px, 6vw, 30px);
    --big-font: clamp(14px, 2vw, 18px);
    --normal-font: clamp(8px, 1vw, 10px);
    --font-family: "BBH Bogle", sans-serif;
    --font-2: "Ubuntu", sans-serif;
    --main-color: #408500;
    --another-color: #003062;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.header-1{
  padding: 4px 0;
    font-family: sans-serif;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    font-size: var(--normal-font);
    width: 100%;
    display: flex;
    background-color: #408500;
    box-shadow: 0 8px 16px rgba(0, 22, 1, 0.623);
}
.header-1 h1{
    font-weight: 700;
    font-size: var(--big-font);
    
}
.header-1 a{
  border-radius: 6px;
    border: 3px solid #000;
    color: #000;
    margin-left: 20px;
    font-size: var(--big-font);
    font-weight: 700;
    padding: 2px;
}
.header-2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 70px;
    font-family: sans-serif;
    height: 70px;
    font-size: var(--normal-font);
    width: 100%;
    background-color: #003062;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.479);
}
.header-2 h2{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
  margin-top: 7px;
  border-radius: 5px;
    height: 70px; 
    max-width: 100%;
}
.header-cta {
    display: flex;
    align-items: center;
    left: 200px;
    gap: 16px;
    flex-wrap: wrap;
}
.cta-txt {
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
}
.cta-btn {
  color: var(--main-color);
  border-radius: 6px;
  border: 2px solid var(--main-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  transition: all 0.3s ease;

   padding: 8px 12px;
    font-size: 12px;
}
.cta-btn:hover {
  background-color: var(--main-color);
  color: #000;
  border: 1px solid #408500;
}




.topnav {

  align-items: center;
  overflow: hidden;
  background-color: #012041;
  font-family: var(--font-2);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.795);
  padding: 0 40px;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.active {

  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;

  
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.dropdown-content {
  border-radius: 0px 0px 6px 6px;
  display: none;
  position: absolute;
  background-color: #012041;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.973);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: white;
  padding: 12px 40px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.topnav a.icon i{
  font-size: 27px;
  margin-top: -10px;
}
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: var(--main-color);
  border-radius: 6px;
  color: white;
}
.topnav a.icon:hover {
  background-color: transparent;
}
.dropdown-content a:hover {
  background-color: #2f6101;
  color: white;
}

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

.whatsapp-float {
    position: fixed;
    bottom: clamp(0px, 30vw, 20px);
    right: clamp(7px, 1.7vw, 10px);
    width: clamp(50px, 6vw, 60px);
    height: clamp(50px, 6vw, 60px);
    background-color: #25D366;
    color: #fff;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: clamp(24px, 3vw, 30px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}
.whatsapp-float::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    z-index: -1;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;

}
#hero-section{
   padding: 200px 0px 0px 0px;
}
.hero-text{
  padding: 0px 70px 40px 70px;
}
.hero-text-container{
  border-radius: 20px;
  border: 1px solid #002f624f;
  background-color: #ffffffb0;
    padding: 20px 40px 20px 40px;
    width: 70%;
}
.biostrength-logo {
    font-family: "Arial Black", "Montserrat", sans-serif;
    font-size: clamp(70px, 10vw, 80px);
    font-weight: 900;
    letter-spacing: -3px;
}
.hero-p{
    font-size: var(--bigger-font);
    font-family: var(--font-2);
    font-weight: 900;
    max-width: 700px;
    text-align: left;
    color: #012041;
}
.bio {

  background: linear-gradient(180deg, #9aeb4e, #2f6101);
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.strength {
    background: linear-gradient(180deg, #2c7ed6, #012041);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.scroll-down i{
  margin: 10px auto o auto;
  color: var(--main-color);
  font-size: 5rem;
  font-weight: 900;
}
#cta-webinars{
  padding: 40px 0px 30px 0px;
  background-color: whitesmoke;
}
#cta-webinars h1{
  font-size: var(--bigger-font);
    font-family: var(--font-2);
    font-weight: 800;
    color: var(--another-color);
    text-align: center;
    justify-content: center;
}
.cta-webinars {
  background-color: whitesmoke;
  padding: 50px 70px;
 display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* CHANGED: auto-fill for better grid */
  gap: 25px; /* ADJUSTED: Balanced gap */
  padding-bottom: 40px;
}

.course-card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.213); /* IMPROVED: Softer shadow */
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #002f624f;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-2);
  color: var(--another-color);
  line-height: 1.4; /* ADDED: Better readability */
}

.course-card p {
  margin-top: 10px;
  font-family: var(--font-2);
  color: #010e1d;
   /* CHANGED: Better contrast */
  font-size: 14px;
  font-weight: 500;
}
.course-card p i{
  font-size: var(--big-font);
  margin-right: 7px;
  color: var(--main-color);
}
.course-card a{
  text-align: center;
  font-family: var(--font-2);
  margin-top: 30px;
  background-color: var(--main-color);
    color: black;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); /* IMPROVED: Enhanced hover */
}
.cta-buttonn{
    margin: 0 40px;
    color: var(--main-color);
    font-size: var(--bigger-font);
    padding: 10px;
    font-weight: 600;
    font-family: var(--font-2);
    border:2px solid var(--main-color);
}
#about-section{
    background-color: white;
    padding: 80px 100px 100px 100px;
}
.abt-tte{

    margin-bottom: 0px;
    font-size: var(--bigger-font);
    font-family: var(--font-2);
    font-weight: 800;
    color: var(--another-color);
    text-align: center;
    justify-content: center;
}
#about-section img{
  margin: -3px auto -30px auto;
  align-items: center;
  justify-content: center;
   height: 340px; 
    max-width: 100%;
  display: block;
}
.abt-txt{
    font-family: var(--font-2);
        font-size: 1.4rem;
        color: #011730;
  line-height: 1.4; 
        text-align: center;
}
#about-section a{
  border-radius: 6px;
  display: flex;
  padding: 10px 0px;
  font-weight: 700;
  color: #000;
  justify-content: center;
  text-align: center;
  width: 20%;
  margin: 40px auto 0px auto;
  background-color: var(--main-color);
  font-size: var(--big-font);
  font-family: var(--font-2);
}
#about-section a i{
  margin: auto 7px;
}
 .values-container {
            max-width: 1280px;
            width: 100%;
            margin: 0 auto;
        }

        .section-header h2 {
            font-size: 2.4rem;
            font-weight: 700;
            color: #0a1e3c;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #3a4f6d;
            max-width: 650px;
            margin: 0 auto;
        }

        /* ----- 3-COLUMN GRID – fully responsive ----- */
        .vision-mission-values {
          background-color: white;
            display: grid;
            padding: 20px 70px 70px 70px;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        /* ----- CARD STYLING (clean, modern, accessible) ----- */
        .carder {
            background: white;
            font-family: var(--font-2);
            padding: 2.2rem 1.8rem 1rem 1.8rem;
            border-radius: 20px;
            box-shadow: 0 20px 35px -8px rgba(0, 20, 45, 0.096), 0 8px 12px -6px rgba(0,0,0,0.02);
            transition: all 0.25s ease;
            border: 1px solid rgba(255, 255, 255, 0.055);
            backdrop-filter: blur(2px);
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid #002f624f;
        }

        

        /* icon circle – unified style with distinct brand colors */
        .icon-wrapper {
            width: 72px;
            height: 72px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.8rem;
            font-size: 2.2rem;
            color: white;
            transition: 0.2s;
        }

        .carder:hover .icon-wrapper {
            scale: 1.03;
        }

        /* VISION icon – compass / eye (foresight) */
        .icon-vision {
            background: #408500;
           
        }

        /* MISSION icon – bullseye / target (purpose) */
        .icon-mission {
            background: var(--main-color);
            
        }

        /* VALUES icon – shield (integrity, protection) */
        .icon-values {
            background: var(--main-color);
            
        }

        /* typography inside cards */
        .carder h3 {
            font-size: 1.8rem;
            font-weight: 650;
            letter-spacing: -0.02em;
            color: #0b2a4a;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .carder p {
            color: #012041;
            font-size: 1.05rem;
            margin-bottom: 1.6rem;
            flex-grow: 1;
        }

        /* tiny decorative list for values – clean checkmarks */
        .values-list {
            list-style: none;
            padding: 0;
            margin-top: 0.4rem;
        }

        .values-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.85rem;
            font-weight: 450;
            color: #012041;
        }

        .values-list i {
            color: var(--main-color);
            font-size: 1.1rem;
            width: 1.4rem;
            text-align: center;
            font-weight: 900;
        }

        /* subtle accent border */
        .card-border {
            width: 50px;
            height: 4px;
            background: #e2e8f0;
            border-radius: 4px;
            margin-top: 0.8rem;
            transition: 0.2s;
        }

        .carder:hover .card-border {
            background: #2563eb;
            width: 70px;
        }





#why{
  padding: 20px 70px;
  font-family: var(--font-2);
  background-color: whitesmoke;
}

 h2{
       font-size: var(--bigger-font);
    font-family: var(--font-2);
    font-weight: 800;
    color: var(--another-color);
    text-align: center;
    justify-content: center;
      margin-bottom: 40px;
      
    }

    h2 i {
      color: var(--main-color);
      margin-right: 10px;
    }

    .grid-2col, .grid-3col, .grid-4col, .discipline-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 28px;
    }

    .badge-list {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 24px;
    }

    .badge-item {
      background: white;
      padding: 4px 0px 4px 0px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
      box-shadow: 0 2px 6px rgba(0,40,40,0.04);
    }

    .badge-item i {
      color: var(--main-color);
      font-size: 0.9rem;
    }

    /* cards */
    .card {
      background: white;
      border-radius: 20px;
      padding: 28px 24px;
      box-shadow: 0 8px 24px rgba(0,65,80,0.04);
      transition: all 0.2s ease;
      border: 1px solid #002f624f;
    }
    .whyh3{
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--another-color);
    }
     .card h3 i{
      color: #408500;
    }
    .card ul {
      list-style: none;
    }

    .card li {
      margin-bottom: 10px;
      display: flex;
      align-items: baseline;
      gap: 10px;
      font-size: 0.98rem;
      color: #1f3f4f;
    }

    .card li i {
      color: #0e7c5e;
      font-size: 0.8rem;
      margin-top: 5px;
    }


#services{
  font-family: var(--font-2);
  padding: 20px 70px;
  background-color: whitesmoke;
}
    .discipline-section {
      background: white;
      border: 1px solid #002f624f;
      border-radius: 32px;
      padding: 32px 32px;
      margin-bottom: 36px;
    }

    .discipline-section h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--another-color);
      margin-bottom: 28px;
      padding-left: 20px;
    }

    .compact-tags {
      align-content: center;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .compact-tag {
      background: whitesmoke;
      padding: 10px 18px;
      border-radius: 40px;
      font-size: 0.95rem;
      font-weight: 500;
      color: #003062;
      box-shadow: 0 2px 6px rgba(0,0,0,0.02);
      border: 1px solid #002f622c;
      transition: 0.1s ease;
    }

    .compact-tag i {
      margin-right: 8px;
      color: #408500;
    }

    .two-col-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .impact-highlight {
      background: linear-gradient(145deg, #ffffff, #f3faf8);
      border-radius: 24px;
      padding: 32px;
      border: 1px solid #d7ede5;
    }



#cpd{
  padding: 20px 70px 70px 70px;
  font-family: var(--font-2);
  background-color: whitesmoke;
}
#cpd h2{
    margin-top: 70px;

    font-size: var(--bigger-font);
    font-family: var(--font-2);
    font-weight: 800;
    color: var(--another-color);
    text-align: center;
    justify-content: center;
}
    .cpd-card {
      background: #ffffff;
      border-radius: 24px;
      padding: 28px;
      border-left: 6px solid #408500;
      box-shadow: 0 8px 18px rgba(0,60,70,0.04);
    }

    .btn {
      background: #0b6e4f;
      color: white;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      border: none;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: 0.2s;
      text-decoration: none;
    }

 



#ourwork{
  font-family: var(--font-2);
  padding: 40px 70px 70px 70px;
 background-color: white; 
}






#programs{
    background-color: white;
    padding: 20px 70px 20px 70px;
}
#programs h1{
  margin-top: 70px;
  font-size: var(--bigger-font);
    font-family: var(--font-2);
    font-weight: 800;
    color: var(--another-color);
    text-align: center;
    justify-content: center;
}
.p-grid{
    display: grid;
    padding-top: 80px;
    padding-bottom: 40px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.p-card{
  border-radius: 20px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.103);
     border: 1px solid #002f624f;
    display: flex;
    flex-direction: column;
}
.p-card img{
    border-radius: 12px 12px 0 0;
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.p-card .tag{
    font-family: var(--font-2);
    font-size: 12px;
    font-weight: 200;
    padding: 12px 16px 0;
}
.p-card h3{
  color: #011730;
    font-family: var(--font-2);
    padding: 12px 16px 20px;
    font-size: var(--big-font);
    font-weight: 700;
    line-height: 1;
    flex-grow: 1;
}
.cta{
 border-radius: 6px;
  display: flex;
  padding: 10px 40px;
  font-weight: 700;
  color: #000;
  justify-content: center;
  text-align: center;
  width: 48%;
  margin: 0px auto 20px auto;
  background-color: var(--main-color);
  font-size: var(--big-font);
  font-family: var(--font-2);
}
.cta i{
  margin: auto 4px;
}
#team{
    padding: 40px 70px 0px 70px;
    background-color: whitesmoke;
}
#team-tte{

    font-size: 2rem;
    font-family: var(--font-2);
    font-weight: 900;
    color: var(--another-color);
    text-align: center;
    justify-content: center;
}
#team p{
      letter-spacing: 0px;
    margin-top: 20px;
     font-family: sans-serif;
        font-size: var(--big-font);
        color: #011730;
  line-height: 1.4; 
        text-align: center;
}
.team-grid {
    padding: 20px 0px 70px 0px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.team-card  {
   border-radius: 20px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.075);
   border: 1px solid #002f624f;
    background: #fff;
    padding: 30px 20px;
    text-align: center;
}
.team-card-2{
    background: white;
    padding: 10px 0px;
   text-align: center;
}
.team-card-3 {
    background: white;
    padding: 10px 0px;
    text-align: center;
}
#hero-names{
    margin-bottom: 10px;
    text-align: center;
    color: #003062;
    font-size: var(--bigger-font);
    letter-spacing: 1px;
    font-family: var(--font-2);
}
.team-card img {
  border-radius: 6px;
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  align-items: center;
  justify-content: center;
}
.team-card-2 img {
  width: 70%;
  height: 300px;
  object-fit: cover;
}
.team-card-3 img {
  width: 70%;
  height: 300px;
  object-fit: cover;
}
.btn-link{
  border-radius: 6px;
  display: flex;
  padding: 10px 0px;
  font-weight: 700;
  color: #000;
  justify-content: center;
  text-align: center;
  width: 40%;
  margin: 20px auto 0px auto;
  background-color: var(--main-color);
  font-size: var(--big-font);
  font-family: var(--font-2);
}
.btn-link i{
  margin: auto 4px;
}



#faqs{
  padding: 50px 10px 70px 10px;
  background-color: #fff;
}
#faqs h1{
  font-size: var(--bigger-font);
  font-family: var(--font-2);
  text-align: center;
  color: var(--another-color);
  margin-bottom: 40px;
}
 .faq-container { 
    width: 100%; 
    max-width: 950px; /*Set the container to full width as needed. */
    margin: auto; 
  }
  .faq-item { padding: 0; }
  .faq-question { 
    background: none;
    border: none;
    padding: 10px; 
    color: #012041;
    font-family: var(--font-2);
    width: 100%;
    text-align: left;
    font-size: 1.7rem; 
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .faq-answer { 
    display: none; 
    padding: 15px;
    font-family: var(--font-2);
    font-size: 1.4rem;
    color: #333;
  }
  .faq-answer p {
    margin: 10px 0; /* Added spacing between paragraphs */
  }
  .faq-divider {
    height: 1px;
    background: #408500bf;
    margin: 5px 0;
  }
  .faq-question .arrow {
    font-size: 1.7rem;
    transition: transform 0.3s ease;
    color: var(--main-color);
  }
  .faq-question.active .arrow {
    transform: rotate(90deg);
  }



#contact-section{
  font-family: var(--font-2);
  padding: 80px 80px;
  background-color: var(--another-color);
}
#contact-section h1{
    margin-bottom: 10px;
    font-size: var(--bigger-font);
    font-family: var(--font-2);
    font-weight: 800;
    color: var(--main-color);
    text-align: center;
    justify-content: center;
}
#contact-section h2{
    color: whitesmoke;
    text-align: center;
    font-weight: 700;

    font-size: var(--big-font);
    margin-bottom: 40px;
    font-family: var(--font-2);
}
.contact-container{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contact-left-tittle h2{
    font-weight: 600;
    border-radius: 10px;
    margin-bottom: 20px;

}
.contact-left-tittle hr{
    border: none;
    width: 120px;
    height: 5px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contacts-inputs{
  background-color: #dadada;
  border-radius: 6px;
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-size: var(--big-font);
    font-family: var(--font-2);
    font-weight: 500;
    color: #011730;
}
.contact-left textarea{
    height: 140px;
    padding-top: 15px;
}
.contacts-inputs:focus{
    border: 2px solid var(--main-color);
}
.contacts-inputs::placeholder{
    color: #003062;
}
.contact-left button{
  border-radius: 6px;
  font-family: var(--font-2);
    display: flex;
    align-items: center;
    padding: 10px 30px;
    font-size: 16px;
    color: #000;
    font-weight: 800;
    gap: 10px;
    border: none;
    background: var(--main-color);
    cursor: pointer;
}
.contact-left button img{
  height: 15px;
}
.contact-right img{
    width: 500px;
}
#footer{
  background-color: #011730;
}
.footer-div{
  background: #011730;
  color: #fff;
  padding: 60px 5% 30px;
  font-family: Arial, sans-serif;
}
.footer-top{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 40px;
}
.footer-col h4 {
  font-size: var(--big-font);
  font-weight: 400;
  font-family: var(--font-family);
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 8px;
}
.footer-col h5 {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-2);
  margin-bottom: 10px;

}
.footer-col ul {
    font-family: var(--font-2);
    font-weight: 400;
    font-size: var(--normal-font);
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.biostrength-logo-2{
    font-size: clamp(27px, 4vw, 34px);
    font-weight: 900;
    letter-spacing: 3px;
}
.bio-2 {
  background: linear-gradient(180deg, #9aeb4e, #2f6101);
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.strength-2 {
    background: linear-gradient(180deg, #2c7ed6, #012041);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-col img{
    margin-top: 7px;
  border-radius: 5px;
    height: 70px; 
    max-width: 100%
}

.footer-col a:hover {
  text-decoration: underline;
  color: var(--main-color);
}
.footer-cta p {
  font-size: 14px;
  margin-bottom: 15px;
}
.footer-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 12px 18px;
  font-weight: bold;
  text-decoration: none;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  font-size: 13px;
  gap: 20px;
}
.footer-legal a {
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  margin: 0 6px;
}
.footer-legal span {
    opacity: 0.5;
}
.footer-social {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-social a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}
.footer-social a i {
    margin: 0 10px;
    color: #fff;
    font-size: clamp(18px, 2.5vw, 27px);
}


@media screen and (max-width: 1024px) {
            .vision-mission-values {
                gap: 1.5rem;
            }
            .card {
                padding: 1.8rem 1.5rem;
            }
            .card h3 {
                font-size: 1.6rem;
            }
        }
@media(max-width:800px){
  .hero-text-container{
    padding: 20px 30px;
    width: 100%;
  }
    .contacts-inputs{
        width: 80vw;
    }
  .contact-right{
        display: none;
  }
  .after-section {
    gap: 10px 0px;
  }
   #why{
  padding: 20px 50px;
}
  .vision-mission-values {
    grid-template-columns: repeat(2, 1fr);  /* tablet: 2 columns */
  }
  .two-col-layout {
    grid-template-columns: 1fr;
  }

  
}

@media screen and (max-width: 600px) {
  .logo img {
    height: 58px; 
    border-radius: 3px;
    max-width: 100%;
  }
  .active{
    border-bottom: none;
  }
  .header-2{
    padding: 10px 0px;
  }
 .header-cta{
  gap: 5px;
 }
 .cta-btn {
  padding: 4px 8px;
 }
  .topnav{
    padding: 4px 20px;
  }
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
    border-bottom: none;
  }
.login-btn {
  display: none;
}
  .biostrength-logo{
    letter-spacing: 0.7px;
    font-size: clamp(35px, 8vw, 45px);
  }
  .abt-txt{
    padding: 0 22px;
    text-align: left;
  }
  #about-section a{
  border-radius: 6px;
  display: flex;
  padding: 10px 0px;
  font-weight: 700;
  color: #000;
  justify-content: center;
  text-align: center;
  width: 40%;
  margin: 40px 0 0px 20px;
  background-color: var(--main-color);
  font-size: var(--big-font);
  font-family: var(--font-2);
}
   .vision-mission-values {
                grid-template-columns: 1fr;  /* mobile: stacked */
                gap: 1.4rem;
                padding: 20px 20px 50px 20px;
            }
            
          
            
            .carder {
                padding: 2rem 1rem;
                border-radius: 20px;
            }
            
            .section-header h2 {
                font-size: 1.9rem;
            }
            
            .icon-wrapper {
                width: 64px;
                height: 64px;
                font-size: 1.9rem;
                border-radius: 20px;
  }
  #why{
  padding: 20px 20px;
}
 .whyh3{
      font-size: 1rem;

    }
#services{
  padding: 20px 20px;
}
 .discipline-section {
      border-radius: 20px;
      padding: 20px 20px;
      margin-bottom: 36px;
    }
    .compact-tags {
      padding: 4px 4px;
      font-size: 0.9rem;
    }
    
#corousel{
  padding: 20px 20px;
}
#cpd{
  padding: 20px 20px 70px 20px;
}
#ourwork{
  padding: 20px 20px 70px 20px;
}
  #team p{
    font-size: var(--big-font);
  }
  .cta-webinars {
     grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 20px;
  }
  #faqs{
    padding: 20px 20px 44px 20px;
  }
  .faq-question{
    font-size: 18px;
  }
  .faq-answer { 
    font-size: 16px;
  }
   .faq-question .arrow {
    font-size: 20px;
   }
}
@media screen and (max-width: 600px) {

  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
  .login-btn-modal{
    float: none;
    width: 30%;
    text-align: center;
  }
}









@media (max-width: 500px) {
  .header-1{
    display: none;
  }
  .header-2{
    padding: 30px 20px;
  }
  .biostrength-logo {
    font-family: "Arial Black", "Montserrat", sans-serif;
    font-size: clamp(37px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: -2px;
}
#hero-section{
  padding-top: 130px;
}
   .hero-text{
  padding: 0px 20px 40px 20px;
}
  .hero-text-container{
    padding: 40px 10px 100px 20px;
    width: 100%;
  }
  .scroll-down i{
    font-size: 4rem;
  }
   .after-section{
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      padding: 30px 0px;
    }
    .after-section h4{
      margin-top: -2px;
      font-size: var(--big-font);
    }
    .stats-container{
      padding: 0px;
      margin: 10px 0px;
    }
    .stats-container i{
  margin-bottom: -20px;
  color: var(--main-color);
  font-size: 2rem;

}
    .count-darcual{
      margin-top: 0px;
    }
   #about-section{
    padding: 40px 20px 40px 20px;
  }
  .abt-txt{
font-size: 1rem;
  }
  #impact-section{
    padding: 70px 10px;
  }

    #programs{
        padding: 20px 30px 0px 30px;
    }
    #programs h1{
      margin-top: 30px;
    }
    .p-grid{
      padding-top: 40px;
    }
    #team{
        padding: 20px 0px;
    }
    .team-grid{
        padding: 20px 20px;
    }
    .team-grid img{
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    }
    #contact-section{
      padding: 40px 20px;
    }
}

