   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

html, body{
  max-width:100%;
  overflow-x:hidden;
  font-family: 'Poppins', sans-serif;
}


/* WhatsApp Icon */
#whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#whatsapp-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  padding: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}




/* =============================
   TITLE SCROLL ANIMATION ONLY
============================= */

.title-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.title-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* ========================
   Top Bar FIX
======================== */
.top-bar{
    background:#1f4ea3;
    color:#fff;
    font-size:14px;
    padding:6px 0;
}

/* full width layout */
.top-bar .container{
    max-width:1400px;
    width:95%;
    margin:auto;
}

/* keep everything in one row */
.flex-between{
    display:flex;
    justify-content:space-between;
    align-items:center;
    white-space:nowrap; /* 🔥 prevents wrapping */
}

/* spacing */
.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:18px;
}


/* ========================
   Navbar
======================== */
.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:40px 0;
}


/* Logo */
.logo img{
    height:48px;
    margin-left: 30px;
}


/* Menu */
.nav-menu{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
}

.nav-menu li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

.nav-menu li a:hover{
    color:#1f4ea3;
}

/* ===== Dropdown Fix ===== */

.dropdown{
    position:relative;
}

/* keep navbar visible for dropdown */
/* Navbar height control */
.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);

    min-height:90px;   /* 🔥 increase white bar height */
    display:flex;
    align-items:center;
}

/* spacing inside */
.nav-wrapper{
    padding:0;  /* remove old padding */
}

/* submenu */
.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:230px;
    background:#fff;
    border-radius:10px;

    box-shadow:0 10px 25px rgba(0,0,0,0.12);

    padding:10px 0;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:all .25s ease;

    z-index:9999;
}

/* items */
.dropdown-menu li{
    list-style:none;
}

.dropdown-menu li a{
    display:block;
    padding:10px 18px;
    color:#333;
    text-decoration:none;
    font-size:14px;
}

.dropdown-menu li a:hover{
    background:#f5f7fb;
    color:#1f4ea3;
}


/* 🔥 SHOW ON HOVER */
.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ========================
   Button
======================== */
.btn-start{
    background:#ff7a00;
    color:#fff !important;
    padding:10px 20px;
    border-radius:25px;
    font-weight:600;
}

.btn-start:hover{
    background:#e56700;
}


/* ========================
   Hamburger
======================== */
.hamburger{
    display:none;
    font-size:26px;
    cursor:pointer;
     margin-right: 30px;
}


/* ========================
   Mobile Drawer
======================== */
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;
    background:#fff;
    box-shadow:-4px 0 20px rgba(0,0,0,0.1);
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
    transition:0.4s;
    z-index:999;
}

.mobile-menu a,
.mobile-dropdown button{
    text-decoration:none;
    color:#333;
    font-size:16px;
    background:none;
    border:none;
    text-align:left;
    cursor:pointer;
}

.mobile-menu.active{
    right:0;
}

.close-menu{
    font-size:24px;
    align-self:flex-end;
    cursor:pointer;
}


/* mobile submenu */
.mobile-submenu{
    display:none;
    padding-left:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
}



/* ========================
   Responsive
======================== */
@media(max-width:992px){

    .nav-menu{
        display:none;
    }

    .hamburger{
        display:block;
    }

    /* hide blue bar on mobile */
    .top-bar{
        display:none;
    }
}


/* Celebrating Excellence Section */
.celebrating-excellence {
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(180deg, #2f5fb8 0%, #1c45a4 100%);
}

.excellence-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.excellence-content h1 span {
  color: #ff8c00; /* Orange highlight */
}

.excellence-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #e6edff;
  max-width: 620px;
  margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .celebrating-excellence {
    min-height: 220px;
    padding: 30px 16px;
  }

  .excellence-content h1 {
    font-size: 34px;
  }

  .excellence-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .excellence-content h1 {
    font-size: 28px;
  }

  .excellence-content p {
    font-size: 13px;
  }
}


/*section 2*/
.leader-profile-section{
  background:#ffffff;
  padding:90px 20px;
  text-align:center;
}

.leader-container{
  max-width:1100px;
  margin:auto;
}

/* Badge */
.leader-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#eef2ff;
  color:#2563eb;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  margin-bottom:20px;
}

.leader-badge svg{
  width:14px;
  height:14px;
  stroke:currentColor;
  fill:none;
}

/* Name */
.leader-name{
  font-size:44px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:10px;
}

.leader-name span{
  color:#f97316;
}

/* Role */
.leader-role{
  font-size:18px;
  font-weight:700;
  color:#2563eb;
  margin-bottom:20px;
}

/* Description */
.leader-description{
  max-width:820px;
  margin:0 auto 50px;
  font-size:15px;
  color:#64748b;
  line-height:1.7;
}

/* Cards */
.leader-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.leader-card{
  background:#fff;
  border:1px solid #e6eaf2;
  border-radius:14px;
  padding:20px;
  display:flex;
  align-items:center;
  gap:14px;
  text-align:left;
  box-shadow:0 8px 20px rgba(15,23,42,.08);
  transition:.3s ease;
}

.leader-card:hover{
  transform:scale(1.05);
  box-shadow:0 18px 40px rgba(15,23,42,.15);
}

/* Icon */
.card-icon{
  width:46px;
  height:46px;
  background:#2f66d6;
  border-radius:12px;
  display:grid;
  place-items:center;
  box-shadow:0 8px 16px rgba(47,102,214,.3);
  flex-shrink:0;
}

.card-icon svg{
  width:22px;
  height:22px;
  stroke:#fff;
  fill:none;
  stroke-width:2;
}

/* Text */
.leader-card p{
  font-size:13px;
  font-weight:500;
  color:#0f172a;
  margin:0;
  line-height:1.4;
}

/* Responsive */
@media(max-width:992px){
  .leader-cards{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:560px){
  .leader-name{font-size:30px;}
  .leader-role{font-size:15px;}
  .leader-description{font-size:14px;}
  .leader-cards{
    grid-template-columns:1fr;
  }
}

/*new section*/
/* =========================
   AWARDS SECTION
========================= */
/* ===============================
   AWARDS SECTION
================================ */

.awards-section{
  padding: 10px 40px;          /* more horizontal space */
  background: #ffffff;
}

.awards-container{
  max-width: 1400px;           /* 🔑 wider container */
  margin: 0 auto;
}

/* Header center only */
.awards-header{
  text-align: center;
  margin-bottom: 50px;
}

.awards-badge{
  display: inline-block;
  background: #eef2ff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  

}

.awards-title{
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
   text-align: center;  
}

.awards-title span{
  color: #f97316;
}

.awards-subtitle{
  max-width: 680px;
  margin: 10px auto 0;
  font-size: 15px;
  color: #64748b;
   text-align: center;  
   margin-bottom: 20px;
}

/* ===============================
   GRID — THIS IS THE KEY FIX
================================ */


  .awards-grid{
  column-count: 3;         /* 🔑 masonry columns */
  column-gap: 26px;
}

/* ===============================
   CARD
================================ */

.award-card{
  break-inside: avoid;     /* 🔑 prevents breaking */
  margin-bottom: 26px;    /* spacing between cards */
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
  transition: transform .35s ease, box-shadow .35s ease;
}

.award-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0,0,0,0.22);
}


/* ===============================
   IMAGE — NATURAL, NO CROPPING
================================ */

.award-card img{
  width: 100%;                 /* 🔑 fill column width */
  height: auto;                /* natural height */
  display: block;
  object-fit: contain;
  background: transparent;
}

/* ===============================
   BLACK TRANSPARENT OVERLAY
================================ */

.award-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  transition: opacity .3s ease;
}

.award-card:hover .award-overlay{
  opacity: 1;
}

.award-overlay p{
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}


/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1100px){
  .awards-grid{
    column-count: 2;
  }
}

@media (max-width: 640px){
  .awards-grid{
    column-count: 1;
  }
}



.stats-section{
  background:#2f63c8; /* exact blue feel */
  padding:60px 20px;
}

.stats-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
  color:#ffffff;
}

/* Number */
.stat-item h3{
  font-size:42px;
  font-weight:800;
  margin-bottom:6px;
}

/* Label */
.stat-item p{
  font-size:14px;
  font-weight:500;
  opacity:.9;
}

/* Responsive */
@media(max-width:768px){
  .stats-container{
    grid-template-columns:repeat(2,1fr);
    gap:30px 0;
  }
}

@media(max-width:480px){
  .stats-container{
    grid-template-columns:1fr;
    gap:24px;
  }

  .stat-item h3{
    font-size:36px;
  }
}

/* =============================
   Footer
============================= */
.bv-footer{
    background:#1f4ea3;
    color:#fff;
    padding-top:60px;
    font-size:14px;
}

/* container */
.footer-container{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap:50px;
}

/* logo */
.footer-logo{
    height:90px;
    margin-bottom:18px;
    margin-left: 20px;
}

/* about text */
.footer-about p{
    line-height:1.7;
    margin-bottom:20px;
    opacity:0.9;
}

/* headings */
.footer-col h3{
    margin-bottom:18px;
    font-size:16px;
    font-weight:600;
    position:relative;
}

/* list */
.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:10px;
}

/* links */
.footer-col a{
    color:#fff;
    text-decoration:none;
    opacity:0.9;
    transition:0.3s;
}

.footer-col a:hover{
    opacity:1;
    padding-left:6px;
}

/* social icons */
.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:0.3s;
}

.social-icons a:hover{
    background:#ff7a00;
}

/* contact icons */
.contact-info i{
    margin-right:8px;
}

/* bottom bar */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.2);
    margin-top:50px;
    padding:20px 5%;

    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
}

.footer-links{
    display:flex;
    gap:20px;
}


/* =============================
   Mobile Responsive
============================= */
@media(max-width:992px){

    .footer-container{
        grid-template-columns: 1fr 1fr;
        gap:40px;
    }
}

@media(max-width:600px){

    .footer-container{
        grid-template-columns: 1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}
/* =================================
   HERO SECTION MOBILE FIX
================================= */

@media (max-width:768px){

  /* container spacing */
  .hero,
  .hero-section,
  .banner,
  .home-hero{
    padding:80px 20px 60px !important;
    text-align:center;
  }

  /* big title */
  .hero h1,
  .hero-title{
    font-size:28px !important;
    line-height:1.3 !important;
    word-break:break-word;
  }

  /* subtitle text */
  .hero p,
  .hero-subtitle{
    font-size:15px !important;
    line-height:1.6;
  }

  /* badge pill */
  .hero-badge,
  .top-pill{
    font-size:13px;
    padding:8px 14px;
  }

  /* remove overflow */
  .hero *{
    max-width:100%;
  }

  /* fix left/right cut issue */
  body{
    overflow-x:hidden;
  }

  /* better button layout */
  .hero-buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:center;
  }

  .hero-buttons a{
    width:100%;
    max-width:260px;
  }

}


