/* ----------  RESET / ROOT  ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
    --main-color: #004063;
    --overlay-dark:rgba(0,0,0,.45);
    --nav-bg:rgba(0,0,0,.65);
    --section-pad:4.5rem;
    --primary-blue: #004080;
    --hover-blue: #003366;
    --light-blue: #e6f0ff;
    --off-white: #f8f9fa;
}

body {
  background-color: #004080; /* match theme-color */
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}


 * {
     scrollbar-width: thin;
     scrollbar-color: var(--primary-blue) #dfe9eb;
 }
 html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body{font-family:"Montserrat",sans-serif;color:#1b1b1b;line-height:1.55;background:#fff; overflow-x: clip;}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
h2{font-size:clamp(1.8rem,2.8vw,2.3rem);margin-bottom:.75rem}
p{max-width:70ch;margin-inline:auto}


/* Fullscreen loader wrapper */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* or dark #111 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

/* Loader animation (spinner) */
#loader {
  width: 50px;
  height: 50px;
  border: 6px solid #00408033;
  border-top: 6px solid #004080;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spinner animation keyframes */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Hidden state */
#loader-wrapper.fade-out {
  opacity: 0;
  pointer-events: none;
}



/* ----------  NAVBAR  ---------- */
 .navbar{
     background: var(--primary-blue);
     position: fixed;top:0;left:0;right:0;z-index:1000;
     display:flex;align-items:center;justify-content:space-between;
     padding:.75rem 1.5rem; transition:background .3s ease;
     color: #ffffff;
 }
 .navbar.scrolled{ backdrop-filter:saturate(200%) blur(12px);
     box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
     var(--tw-shadow, 0 25px 50px -12px rgba(0,0,0,.25)
     ); 
    }

.navbar.scrollh {
    color: #fff;
  }

.navbar__logo2.scrollh {
    display: none;
  }

 .navbar__logo.scrollh {
    display: block;
  }

 .navbar__logo2{display: none; width:58px;min-width:58px}
 .navbar__logo{width:58px;min-width:58px}
 .nav__links{list-style:none;display:flex;flex-wrap:wrap;gap:1.2rem;font-size:.95rem; backface-visibility: hidden;}

.nav__links a { position: relative; color: inherit;
            text-decoration: none;transition: color 0.2s;}

.nav__links a::after {content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
    background: #fff; transform: scaleX(0); transform-origin: center; transition: transform 0.3s cubic-bezier(.4,0,.2,1);}
 
.nav__links a:hover::after {
    transform: scaleX(1);
  }

.nav__links a:hover {
    font-weight: 700;
  }


.nav__links a.active {
    font-weight: 700;
  }

.nav__links a.active::after {
    transform: scaleX(1);
}


 /* ----------  NAVBAR  ---------- */
 .menu{
     background: transparent; border: none; color: white;
     font-size: 40px; display: none;
 }

.menu.scrollh{
    color: #fff;
}


 /* ----------  HERO  ---------- */
.hero{
    position:relative;min-height:90vh; padding:0 1rem;
    display:flex;flex-direction:column;justify-content:center;align-items:center;
    text-align:center;color:#fff;
    background:url("https://res.cloudinary.com/dwxzuotoy/image/upload/w_2000,q_auto,f_auto/v1754475687/6U8A1632_xthlpi.jpg") center/cover no-repeat;
}
.hero::before{content:"";position:absolute;inset:0;background:var(--overlay-dark);z-index:0}
.hero__inner{position:relative;z-index:1;max-width:950px}
.hero h1{margin-top: 5rem;  font-weight:1500 !important; font-size:4rem;line-height:1.2}
.hero .tagline{font-size:3rem;margin-bottom:7rem}


/* ----------  MID-PAGE SECTIONS  ---------- */
section{padding:var(--section-pad) 1rem;text-align:center}
.cta-btn{
    display:inline-block;margin-top:1.1rem;padding:.65rem 1.5rem;
    border-radius:2rem;background:var(--primary-blue);color:#fff;font-weight:600;
    transition:background .25s linear;
}
.cta-btn:hover{background:#6b1515}



/* alternating light / subtle-grey backgrounds */
.alt-bg{background:#f8f8f8}



/* ----------  RESPONSIVE NAV  ---------- */
 /* optionally hide on all small/mobile screens too */
 @media only screen and (max-width: 1024px) {
     .nav__links {
         display: none; position: absolute; top: 100%; left: 50%; right: 0; background: var(--primary-blue, #004080);
         flex-direction: column; align-items: flex-start; gap: 0; padding: 0.7rem 1.2rem 1.2rem 1.2rem;
         z-index: 999; box-shadow: 0 8px 32px rgba(0,64,128,0.10);
         transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s; max-height: 0; overflow: hidden;
         font-size: 0.98rem; border-radius: 0 0 12px 12px;
     }

     .nav__links.open {
         display: flex; max-height: 400px; padding: 0.7rem 1.2rem 1.2rem 1.2rem;
         transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
     }

     .nav__links li {
         width: 100%; margin: 0.2rem 0; opacity: 0;
         transform: translateY(-10px); animation: navLinkFade 0.45s forwards; animation-delay: calc(0.07s * var(--i));
     }

     .nav__links.open li {
         opacity: 1; transform: translateY(0);
     }

     .nav__links a {
         display: block; width: 100%; padding: 0.7rem 0; color: #fff; font-size: 1rem;
         border-bottom: 1px solid rgba(255,255,255,0.08); transition: background 0.2s, color 0.2s;
         border-radius: 6px;
     }

     .nav__links a:hover {
         background: var(--hover-blue, #003366); color: #fff;
     }

     .menu {
         display: block; z-index: 1001; font-size: 2.2rem;
     }

     .hero__inner h1{
         margin-top: 110px ; font-size: 50px;
     }

     .hero__inner .tagline{
         font-size: 25px;
     }
 }

 @media only screen and (max-width: 620px) {
     .hero__inner h1{
         margin-top: 110px ; font-size: 30px;
     }

     .hero__inner .tagline{
         font-size: 15px;
     }

 }

 @keyframes navLinkFade {
     from {
         opacity: 0; transform: translateY(-10px);
     }
     to {
         opacity: 1; transform: translateY(0);
     }
 }

 /* Apply Now Button (Hero Section) */
.contact-btn {
    display: inline-flex; align-items: center; background: var(--primary-blue); color: #fff;
    font-weight: 700; font-size: 1rem; padding: 0.5rem 1.2rem; border: none; border-radius: 2px;
    margin-top: 3.5rem; cursor: pointer; text-decoration: none; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.contact-btn .arrow {
    display: inline-flex; align-items: center; margin-left: 0.5rem; transition: transform 0.2s;
}

.contact-btn .arrow svg {
    display: block; width: 1.2em; height: 1.2em; stroke: #fff; transition: transform 0.2s;
}

.contact-btn:hover {
    background: var(--primary-blue); box-shadow: 0 4px 16px rgba(239,68,68,0.18); transform: translateY(-2px) scale(1.03);
}

.contact-btn:hover .arrow {
    transform: translateX(4px);
}
.contact-btn:hover .arrow svg {
    stroke: #fff;
}
  

/* ---------- ABOUT US SECTION ---------- */
.about-us-section {
  background: #fff; padding: 3rem 1rem 3rem 1rem; display: flex;
  justify-content: center; align-items: center; min-height: 350px;
}

.about-us-container {
  max-width: 1400px; width:100%; margin-left: 0px; background: #fff;
  border-radius: 18px; box-shadow: 0 6px 32px rgba(0,64,128,0.08);
  padding: 2.5rem 2.5rem 2rem 2.5rem; display: flex; flex-direction: column;
  align-items: flex-start;
}

.about-us-content h2{
  color: var(--primary-blue); font-size: 1.8rem; font-weight: 800;
  margin-bottom: 1.2rem; letter-spacing: 1px; text-align: center;
  padding-left: 110px; opacity: 0; transform: translateY(30px);
}

.about-us-content p{
  color: #333; font-size: 1.1rem; font-weight: 800; line-height: 1.7;
  text-align: center; margin-bottom: 0; max-width: 1200px; padding-left: 110px; opacity: 0;
  transform: translateY(30px);
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0; transform: translateY(30px);
  }
  100% {
    opacity: 1; transform: translateY(0);
  }
}

@media (max-width: 1400px) {
  .about-us-section {
    padding: 2rem 1rem 1.5rem 1rem; min-height: unset;
}
.about-us-container {
   /* padding: 1.2rem 0.5rem 1rem 0.5rem;*/
    margin-left: 0; padding: 2rem 1.2rem 1.2rem 1.2rem;
}
.about-us-content h2 {
    font-size: 1.4rem; padding-left: 0px;
}
.about-us-content p {
    font-size: 1rem; max-width: 75%; padding-left: 0px;
}

}

@media (max-width: 700px) {
  .about-us-section {
      padding: 2rem 1rem 1.5rem 1rem; min-height: unset;
  }
  .about-us-container {
      padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .about-us-content h2 {
      font-size: 1.2rem; padding-left: 0px;
  }
  .about-us-content p {
      font-size: 0.95rem; max-width: 100%; padding-left: 0px;
  }
}
/* ----------  STATICS SECTION  ---------- */
 /* layout & section styling */
 .stats-section {
     padding: 60px 20px; background-color: #f6f6f6; text-align: center;
 }

 .stats-container {
     max-width: 1200px; margin: 0 auto;
 }


 /* grid of cards */
 .stats-grid {
     display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px;
 }

 /* individual card */
 .stat-card {
     background-color: #ffffff; padding: 24px 16px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 }

 /* number styling */
 .stat-number {
     font-size: 28px; font-weight: 700; color: var(--primary-blue); margin-bottom: 8px;
 }

 /* label styling */
 .stat-label {
     font-size: 14px; color: #555555; text-transform: uppercase; letter-spacing: 0.5px;
 }

/* ---------- Responsive Behavior ---------- */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card {
    padding: 20px 14px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 13px;
  }
}

/* ---------- GALLERY SECTION  ---------- 
 /* -------- gallery wrapper -------- 
 .events-gallery {
     max-width: 100%;
     padding: 2rem;
     background: #ffffff;
     text-align: center;
 }
 .events-gallery h2 {
     font-size: 2rem;
     margin-bottom: 1.5rem;
     color: var(--primary-blue);
 }

 /* -------- slider container -------- 
 .slider {
     overflow: hidden;
     margin: 1rem 0;
     transform: translateZ(0);  /* force GPU layer 
     will-change: transform;
 }
 .slider.reverse .slide-track {
     animation-direction: reverse;
 }

 /* -------- animated track -------- 
 .slide-track {
     display: flex;
     width: max-content;             /* let flex size it 
     will-change: transform;         /* hint GPU 
     transform: translateZ(0) scale(1);       /* force composite layer 
     animation: scroll 35s linear infinite;
     padding: 10px;
     backface-visibility: hidden;
 }


 /* -------- individual cards -------- 
 .card {
     flex: 0 0 400px;         /* fixed width 
     margin-right: 16px;      /* gap 
     background: white;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(0,0,0,0.08);
     overflow: hidden;
     text-align: left;
 }
 .card img {
     display: block;
     width: 100%;
     height: 190px;
     object-fit: cover;
 }

 /* -------- keyframes -------- 
 @keyframes scroll-left {
     0%   { transform: translateX(0);       }
     100% { transform: translateX(-50%);   }
 }

 @keyframes scroll {
     0%   { transform: translate3d(0,    0, 0); }
     94%  { transform: translate3d(-50%, 0, 0); }
     100% { transform: translate3d(-50%, 0, 0); }
 }

 /* -------- Responsive: Tablets -------- 
@media (max-width: 1024px) {
  .card {
    flex: 0 0 300px;
  }
  .card img {
    height: 160px;
  }
}

/* -------- Responsive: Phones -------- 
@media (max-width: 620px) {
  
  .events-gallery {
    
    padding: 1rem;
    
}
.events-gallery h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

  .card {
    flex: 0 0 180px;
    margin-right: 12px;
  }
  .card img {
    height: 110px;
    
  }
  .slide-track {
    padding: 6px;
  }
}
/* -------- REVERSE animated track -------- 
.slide-track-reverse {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translateZ(0) scale(1);
  animation: scroll-reverse 35s linear infinite;
  padding: 10px;
  backface-visibility: hidden;
}

/* -------- Reverse scroll keyframes -------- 
@keyframes scroll-reverse {
  0%   { transform: translate3d(-50%, 0, 0); }
  94%  { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}


@media screen and (max-device-width: 820px) {
  .slider {
      backface-visibility: visible !important;
      -webkit-backface-visibility: visible !important;
      perspective: 1000;
  }
}
  */



/* ---------- GALLERY SECTION  ---------- */

/* -------- gallery wrapper -------- */
.events-gallery {
  max-width: 100%; padding: 2rem; background: #ffffff; text-align: center;
  overflow-x: hidden; position: relative; z-index: 1;
}

.events-gallery h2 {
  font-size: 2rem; margin-bottom: 1.5rem; color: var(--primary-blue);
}

/* -------- slider containers -------- */
.slider {
  overflow: hidden; margin: 1rem 0; transform: translateZ(0);
  will-change: transform; contain: layout style paint;
}

/* Additional isolation for second slider */
.slider-row2 {
  transform: translate3d(0, 0, 0); will-change: transform; contain: layout paint;
  perspective: 1000px; backface-visibility: hidden; -webkit-backface-visibility: hidden; position: relative;
}

/* -------- animated track -------- */
.slide-track {
  display: flex; width: fit-content; will-change: transform; transform: translateZ(0) scale(1);
  animation: scroll 35s linear infinite; padding: 10px; backface-visibility: hidden;
}

.slide-track-reverse {
  display: flex; width: fit-content; will-change: transform; transform: translateZ(0) scale(1);
  animation: scroll-reverse 35s linear infinite; padding: 10px; backface-visibility: hidden;
}

 /* -------- More Events Button --------*/ 
 .gallery-cta {
  margin-top: 2rem; text-align: center;
}

.gallery-btn {
  display: inline-block; padding: 0.8rem 2rem; background: var(--primary-blue);
  color: white; text-decoration: none; border-radius: 0rem;
  font-weight: 600; transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-btn:hover {
  background: var(--primary-blue); transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}


/* -------- individual cards -------- */
.card {
  flex: 0 0 400px; margin-right: 16px;
  background: white; border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); overflow: hidden; text-align: left;
}

.card img {
  display: block; width: 100%;
  height: 190px; object-fit: cover;
}

/* -------- keyframes -------- */
@keyframes scroll {
  0%   { transform: translate3d(0, 0, 0); }
  94%  { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes scroll-reverse {
  0%   { transform: translate3d(-50%, 0, 0); }
  94%  { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* -------- Responsive: Tablets -------- */
@media (max-width: 1024px) {
.card {
  flex: 0 0 300px;
}
.card img {
  height: 160px;
}
}

/* -------- Responsive: Phones -------- */
@media (max-width: 620px) {
.events-gallery {
  padding: 1rem;
}
.events-gallery h2 {
  font-size: 1.4rem;
}
.card {
  flex: 0 0 180px; margin-right: 12px;
}
.card img {
  height: 110px;
}
.slide-track,
.slide-track-reverse {
  padding: 6px;
}
}

/* -------- iOS fix for slider-row2 -------- */
@supports (-webkit-touch-callout: none) {
.slider-row2::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 1px; height: 1px; background: transparent;
  transform: translate3d(0, 0, 0); will-change: transform;
}
}


 /* ----------  QUOTE SECTION  ---------- */
 .quote {
     margin-left: 0rem; max-width: 2000px;
     background-color: var(--off-white);
 }

 .quote img {
     display: block;                  /* remove inline whitespace */
     max-width: 50px;                /* limit its size */
     width: 7%;                     /* but allow it to shrink */
     height: auto;   
     margin-left: 70px;                 /* keep aspect ratio */
 }

 .quote p{
     font-size:25px; text-align: start; font-style: italic;
     font-family: lato-black-italic, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI;
     font-size:25px; line-height: 30px; margin-top: 30px; margin-bottom: 30px; font-weight: bold; margin-left:140px ;
 }

 .quote .p2{
     font-size:18px; text-align: start; font-weight: 620;
     font-style: normal; margin: 0 0 0 140px;
 }

 .quote .p3{
     font-size:18px; font-style: normal; text-align: start;
     font-weight: normal; margin-top: 5px; margin: 0 0 0 140x;
 }
 @media (max-width: 1024px) {
  .quote p {
      font-size:20px; margin-bottom: 25px; max-width: 450px;
      width: 100%; margin-left: 90px;       
  }

  .quote .p2 {
   margin-left: 90px;
}
  .quote{
      /*margin-left: 50px;*/  padding-right: 100px;
      padding-left: 9px; padding: 1rem;
  }
  .quote img{
   margin-left: 30px;
  }
}


 @media (max-width: 620px) {
     .quote p {
         font-size:20px; margin-bottom: 25px; max-width: 200px;
         width: 100%; margin-left: 50px; 
    }

     .quote .p2 {
      margin-left: 50px;
    }
     .quote{
         /*margin-left: 50px;*/ padding-right: 100px;
         padding-left: 9px; padding: 1rem;
     }
     .quote img{
      margin-left: 30px;
     }
 }
 

 /* --------------------
 LEARN MORE SECTION
 /* ---------- Layout ---------- */

 /* ----- Section shell ----- */
 .learn-more {
     padding: 4rem 1rem; max-width: 1200px; margin: 0 auto;
 }

 .learn-more__title {
     text-align: center; margin-bottom: 2rem;
     color: var(--primary-blue); font-size: 2rem;
 }

 .learn-more__row {
     display: flex; gap: 1.5rem; margin-bottom: 1.5rem;
 }

 .learn-more__row--top .card:nth-child(1) { flex: 2; }
 .learn-more__row--top .card:nth-child(2) { flex: 3; }

 .learn-more__row--bottom .card { flex: 1; }

 .learn-more .card {
     position: relative; aspect-ratio: 16 / 9; border-radius: 0px;
     overflow: hidden; background-size: cover; background-position: center;
     transition: all 0.3s ease; cursor: pointer; transform: translateY(0);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 .learn-more .card:hover {
     transform: translateY(-10px) scale(1.02);
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
 }

 .learn-more .card::before {
     content: ''; position: absolute; inset: 0;
     background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2)); transition: opacity 0.3s ease;
 }

 .learn-more .card:hover::before {
     opacity: 0.8;
 }

 .learn-more .card__content {
     position: relative; z-index: 1; height: 100%;
     padding: 1.5rem; display: flex; flex-direction: column;
     justify-content: flex-end; color: white;
 }

 .learn-more .card__label {
     font-size: 1.5rem; font-weight: 600;
     margin-bottom: 0.5rem; transition: transform 0.3s ease;
 }

 .learn-more .card:hover .card__label {
     transform: translateY(-5px);
 }

 .learn-more .card__arrow {
     position: absolute; bottom: 1.5rem; right: 1.5rem;
     width: 24px; height: 24px; transition: transform 0.3s ease;
 }

 .learn-more .card:hover .card__arrow {
     transform: translate(5px, -5px);
 }

 .learn-more .card__arrow::after {
     content: '→'; font-size: 1.5rem; color: white;
 }

 /* ----- Placeholder images (swap with real URLs) ----- */
 .card--fair-labor     { background-image: url("Gallery/a1.jpg");     }
 .card--annual-reports { background-image: url("Gallery/a4.jpg"); }
 .card--board          { background-image: url("Gallery/b7.jpg");          }
 .card--staff          { background-image: url("Gallery/b1.jpg");          }
 .card--careers        { background-image: url("Gallery/Event.jpg");        }

 /* ----- Responsive: stack vertically on ≤ 992 px ----- */
 /*@media (max-width: 900px) {
     .learn-more__row {
         flex-direction: column;
     }
     .learn-more .card { aspect-ratio: 16 / 10; }
    .learn-more{
        margin: 0;
        padding: 0;
    }
     .learn-more__title {
        font-size: 30px;
    }
   
 }
*/
 /* ----- Responsive: stack vertically on ≤ 992 px ----- */
 /*@media (max-width: 1360px) {
    .learn-more__row{
        margin-left: 80px; margin-right: 80px;
    }
     .learn-more .card__label {
         font-size: 25px;
     }

    
 }

 @media (max-width: 1024px) {
     .learn-more .card__label {
         font-size: 20px;
     }
  
 }
*/
 .learn-more__row .card img{
     width: 100%; height: 100%;
     object-fit: cover; z-index: 0;
 }

 /* ----- Responsive: adapt font sizes on smaller screens ----- */
@media (max-width: 1024px) {
  .learn-more .card__label {
      font-size: 15px;      
  }

  .learn-more .card__arrow {
    display: none;
  }

  .learn-more__title {
    font-size: 1.8rem;
   }

   .learn-more__row {
    display: flex; gap: 0rem;
    margin-bottom: 0.5rem;
    }

    .learn-more .card__content {
      position: relative; z-index: 1;
      height: 100%; padding: 1.5rem;
      display: flex; flex-direction: column;
      justify-content: flex-end; color: white;
  }
 
}

@media (max-width: 768px) {
  .learn-more .card__label {
      font-size: 10px; margin-bottom: 0rem;  
  }

  .learn-more .card__arrow {
    display: none;
}

.learn-more__title {
  font-size: 1.2rem;
}


.learn-more__row {
  display: flex; gap: 0rem;
  margin-bottom: 0.7rem;
}

.learn-more .card__content {
  position: relative; z-index: 1; height: 100%; padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: white; padding-top: 2.5rem; margin-left: -1rem;
}


}

/* Modern Benefits Cards - styled like learn more cards */
.benefits-section {
  padding: 60px 0 40px 0; background: #f8f9fa; text-align: center;
}

.benefits-title {
  font-size: 2rem; color: var(--primary-blue); margin-bottom: 2.5rem; font-weight: 700;
}

.benefits-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; margin-bottom: 2.5rem;
}

.benefit-card {
  position: relative; width: 270px; min-height: 320px; background: var(gray);
  border-radius: 0px; box-shadow: 0 4px 18px rgba(0,64,128,0.10); overflow: hidden;
  display: flex; flex-direction: column; align-items: center; padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  cursor: pointer; transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s; color: var(--primary-blue);
}

.benefit-card::before {
  content: ''; position: absolute; inset: 0; z-index: 0; transition: opacity 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.03); box-shadow: 0 12px 32px rgba(0,64,128,0.18);
}

.benefit-icon {
  font-size: 2.5rem; margin-bottom: 1.2rem; color: var(--primary-blue);
  filter: drop-shadow(0 2px 8px rgba(255,215,0,0.18)); z-index: 1;
}

.benefit-title {
  font-size: 1.3rem; font-weight: 700; margin-bottom: 0.7rem; 
  letter-spacing: 0.01em; text-align: center; z-index: 1;
}

.benefit-desc {
  font-size: 1.05rem; color: var(--primary-blue); line-height: 1.5;
  text-align: center; z-index: 1; padding-bottom: 30px;
}

.benefit-card > * {
  position: relative; z-index: 1;
}

@media (max-width: 1024px) {
  .benefits-grid {
    gap: 18px;
  }

  .benefit-card {
    width: 200px; min-height: 220px;
    padding: 1.5rem 1rem 1rem 1rem;
  }

  .benefit-icon {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .benefits-title {
    font-size: 1.3rem;  
  }

  .benefits-grid {
    flex-wrap: wrap; gap: 12px;
  }

  .benefit-card {
    width: 45vw; min-width: 140px; max-width: 200px;
    min-height: 140px; padding: 1rem 0.5rem 0.5rem 0.5rem;
  }

  .benefit-icon {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    flex-direction: column; align-items: center;
  }

  .benefit-card {
    width: 90vw; max-width: 320px; min-height: 120px;
    padding: 0.8rem 0.3rem 0.3rem 0.3rem;
  }

  .benefit-icon {
    font-size: 1.2rem;
  }
}

 /* =====================
      Calendar Section
      ===================== */
      .calendar { padding: 5rem 10%;  background: #fff; margin-bottom: 2.5rem;}
      .calendar h2 { text-align: center; margin-bottom: 3rem; color: var(--primary-blue); font-size: 2rem; }
      .calendar-container {
        max-width: 1300px; width: 100%; margin: 0 auto; background: #fff; border-radius: 0px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1); padding: 2rem;
        display: flex;
        gap: 3rem;
      }
     
      .calendar-grid {
        flex: 1; min-width: 400px;
      }

      .calendar-header {
        display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem;
      }

      .calendar-header button {
        background: none; border: none; font-size: 1.2rem; color: var(--primary-blue);
        cursor: pointer; padding: .5rem; transition: transform .3s;
      }
      .calendar-header button:hover { transform: scale(1.1); }
      .calendar-header h3 { font-size: 1.5rem; color: var(--primary-blue); }
      .calendar-weekdays {
        display: grid; grid-template-columns: repeat(7,1fr); text-align: center; font-weight: bold;
        color: var(--primary-blue); margin-bottom: 1rem;
      }
      .calendar-days {
        display: grid; grid-template-columns: repeat(7,1fr); gap: .5rem;
      }
      .calendar-days div {
        aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
        border-radius: 50%; cursor: pointer; transition: .3s;
        position: relative;
      }
      .calendar-days div:hover { background: var(--light-blue); }
      .calendar-days .current { background: var(--primary-blue); color: #fff; }
      .calendar-days .has-event {
        position: relative;
      }
      .calendar-days .has-event::after {
        content: ''; position: absolute; bottom: 10px;
        width: 6px; height: 6px; background: var(--primary-blue); border-radius: 50%;
      }
      .calendar-days .has-event .event-tooltip {
        position: absolute; bottom: 100%; left: 50%;
        transform: translateX(-50%); background: var(--primary-blue);
        color: white; padding: 2px 16px; border-radius: 3px;
        font-size: 0.8rem; white-space: nowrap;
        opacity: 0; visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s; z-index: 1000;
        margin-bottom: 1px; box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        min-width: 120px; text-align: center; line-height: 1;
      }

      .calendar-days .has-event .event-tooltip::after {
        content: ''; position: absolute;
        top: 100%; left: 50%;
        transform: translateX(-50%); border-width: 6px;
        border-style: solid; border-color: var(--primary-blue) transparent transparent transparent;
      }
      .calendar-days .has-event:hover .event-tooltip {
        opacity: 1; visibility: visible;
      }

      .event-list {
        flex: 1; min-width: 400px; border-left: 1px solid #eee;
        padding-left: 2rem; text-align: left;
        
      }
      .event-list h3 { color: var(--primary-blue); margin-bottom: 1.5rem; }
      .event-items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      .event-item {
        display: flex; gap: 1rem; padding: 1rem; background: var(--off-white);
        border-radius: 0px; transition: transform .3s;
      }
      .event-item:hover { transform: translateX(10px); }
      .event-date {
        display: flex; flex-direction: column; align-items: center;
        justify-content: center; background: var(--primary-blue);
        color: #fff; padding: .5rem 1rem; border-radius: 8px; min-width: 60px;
      }
      .event-date .day { font-size: 1.5rem; font-weight: bold; }
      .event-date .month { font-size: .9rem; }
      .event-details h4 { color: var(--primary-blue); margin-bottom: .5rem; }
      .event-details p { color: #666; font-size: .9rem; }
      .event-popup {
        margin-top: 1.5rem; background: #f1f1f1; border-radius: 0px;
        padding: 1.5rem; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none; color: #333; opacity: 0;
        transform: translateY(-10px); transition: opacity 0.9s ease, transform 0.9s ease;
      }
      
      .event-popup.visible {
        opacity: 1; transform: translateY(0);
      }
      
      .event-popup h4 {
        margin-bottom: 0.5rem; color: var(--primary-blue);
      }
      
      .event-popup p {
        font-size: 0.95rem;
      }
      .event-location {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        margin-top: 0.3rem;
        color: #666;
        font-size: 0.85rem;
      }
      .event-location i {
        color: var(--primary-blue);
        font-size: 1.1rem;
      }

      @media (max-width: 1360px) {
        .calendar-container {
          flex-direction: column; gap: 2rem; padding: 1.5rem;
        }

        .calendar-grid, .event-list {
          min-width: 100%;
        }
        .event-list {
          border-left: none; border-top: 1px solid #eee;
          padding-left: 0; padding-top: 2rem;
        }
        
      }

      @media (max-width:768px) {
        .calendar-container { padding: 1rem; height: 50%; }
        .calendar-weekdays div { font-size: .8rem; }
        .calendar-days div { font-size: .9rem; }
        .event-item { flex-direction: column; width: 100%; height: 20%; }
        .event-date { flex-direction: row; gap: .5rem; width: fit-content; }
        .calendar-days .has-event::after {
          bottom: 0px; width: 5px; height: 5px;
        }
        
      }

      .more-events-btn {
        display: flex; align-items: center; justify-content: center; gap: 0.8rem; background: var(--primary-blue);
        color: #fff; padding: 1rem 1.5rem; border-radius: 0px; text-decoration: none;
        font-weight: 600; transition: all 0.3s ease; margin-top: 1rem;
    }
    
    .more-events-btn:hover {
        background: var(--dark-blue); transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15); color: var(--primary-blue);
    }
    
    .more-events-btn i {
        transition: transform 0.3s ease;
    }
    
    .more-events-btn:hover i {
        transform: translateX(4px);
    }

  

/* -----------------------------
   FAQ CTA SECTION
   ----------------------------- */
   .faq-cta {
    display: flex; align-items: center; text-align: start;
    justify-content: space-between; background-color: var(--off-white);
    max-width: 2000px; padding-left: 140px; margin-left: 0px;
}



/* Eyebrow / pre-title */
.faq-cta__eyebrow {
    margin-bottom: 8px;
    font-family: lato-black-italic, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI;
    font-size: 0.875rem;       /* 14px */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: #6b6b6b;
    margin-left: 0;

}

/* Main heading */
.faq-cta__heading {
    font-family: lato-black-italic, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI;
    font-size: 30px;           /* 32px */
    font-weight: 800;
    line-height: 1.2;
    color: #000000;

}

@media (max-width: 1157px) {
    .faq-cta__heading {
        font-size: 27px;
    }
}

@media (max-width: 984px) {
    .faq-cta__heading {
        font-size: 24px;
    }
}
@media (max-width: 884px) {
    .faq-cta__heading {
        font-size: 16px !important;
    }
    .faq-cta__button{
        font-size: 0.5rem;
    }
}

@media (max-width: 620px) {
    .faq-cta__heading {
        font-size: 11.5px; max-width: 600px; width: 100%;  
    }
    .faq-cta__eyebrow{
        font-size: 0.6rem; padding: 0 !important;
    }
    .faq-cta__button{
        font-size: 0.7888rem !important; margin-top: 0 !important; padding: 8px 16px !important;
    }
    .faq-cta {
      flex-direction: row; text-align: center; padding-left: 16px; justify-content: center;
  }
  .faq-cta__content {
      max-width: 100% !important; margin-bottom: 20px !important;
  }
}

/* Button */
.faq-cta__button {
    display: inline-block;
    padding: 12px 24px;        /* 0.75rem 1.5rem */
    font-family: Arial, sans-serif;
    font-size: 0.875rem;       /* 14px */
    font-weight: 600; text-decoration: none; color: var(--primary-blue);
    border: 2px solid var(--primary-blue); border-radius: 0px;
    transition: background-color 0.2s, color 0.2s; margin-top: 10px;
    margin-right: auto;
    
}

/* Optional hover state */
.faq-cta__button:hover {
    background-color: var(--primary-blue); color: #ffffff;
}

/* Responsive: stack on smaller screens */
/*@media (max-width: 768px) {
    .faq-cta {
        flex-direction: column;
        text-align: center;
        padding-right: 110px;
    }
    .faq-cta__content {
        max-width: 100% !important;;
        margin-bottom: 20px !important;;
    }
}
*/


/* =====================
      Footer
      ===================== */

   .footer-waves {
     display: block !important; width: 100%; height: 120px;
     overflow: hidden; margin-bottom: -4px; left: unset;
     right: unset; margin-left: 0; margin-right: 0;
   }
   .footer-content.footer-grid.footer-fullwidth {
     background-color: var(--primary-blue); display: grid;
     grid-template-columns: repeat(4, 1fr); gap: 2rem;
     align-items: start; padding: 3rem 2rem 1.5rem 2rem;
   }
   .footer-col {
     display: flex; flex-direction: column; gap: 1.2rem;
   }
   .footer-social-col {
     align-items: flex-start; justify-content: flex-start;
   }
   .footer-logo-col {
     align-items: flex-start;
   }
   .footer-logo-main {
     font-size: 1.3rem; font-weight: bold; letter-spacing: 1.5px; color: #fff; margin-bottom: 0.5rem;
   }
   .footer-logo-sub {
     font-size: 1rem; color: #fff;
   }
   .footer-map-logo {
     width: 80px; height: auto; margin-bottom: 0.5rem;
   }
   .footer-links-col {
     align-items: flex-start; border-right: 1.5px solid rgba(255,255,255,0.18);
     padding-right: 2rem; min-width: 160px; gap: 0.7rem;
   }
   .footer-links-col:last-child {
     border-right: none; padding-right: 0;
   }
   .footer-links-col a {
     color: #fff; font-weight: 500; text-decoration: none;
     font-size: 1.05rem; transition: color 0.2s;
   }
   .footer-links-col a:hover {
     color: #cbe6fa;
   }
   .footer-bottom-text {
     background: var(--primary-blue); color: #fff; text-align: center;
     font-size: 1rem; padding: 1.2rem 8% 1.5rem 8%; border-radius: 0;
     margin-top: 0; margin-bottom: 0; z-index: 2; position: absolute;
     width: 100vw; left: 50%; right: 50%;
     margin-left: -50vw; margin-right: -50vw; box-sizing: border-box;
   }
   .footer-bottom-text a {
     color: #fff; text-decoration: underline; font-weight: 500;
   }
   @media (max-width: 900px) {
     .footer-content.footer-grid.footer-fullwidth {
       grid-template-columns: 1fr 1fr; gap: 1.5rem;
     }
     .footer-logo-col {
       border-right: none; padding-right: 0; align-items: flex-start; margin-bottom: 1.5rem;
     }
     .footer-links-col {
       border-right: none; padding-right: 0; align-items: flex-start; min-width: 120px;
     }
   }
   @media (max-width: 600px) {
     .footer-content.footer-grid.footer-fullwidth {
       grid-template-columns: 1fr; gap: 1rem; padding: 2rem 1rem 1rem 1rem;
     }
     .footer-col {
       align-items: flex-start;
     }
     .footer-logo-col, .footer-links-col {
       margin-bottom: 2rem;
     }
     .footer-bottom-text {
       font-size: 0.95rem; padding: 1rem 2% 1.2rem 2%;
     }
   }

   .footer-social-heading {
    color: #fff; font-size: 1.15rem; font-weight: 700; margin-bottom: 1.1rem; letter-spacing: 0.03em;
  }
  .footer-col.footer-social-col .social-links {
    display: flex; gap: 1.2rem; margin-top: 0;
  }
  .footer-col.footer-social-col .social-links a {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 0%;
    font-size: 1.5rem; background: #fff; color: var(--primary-blue);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .footer-col.footer-social-col .social-links a.facebook { background: #4267B2; color: #fff; }
  .footer-col.footer-social-col .social-links a.instagram { background: #232323; color: #fff; }
  .footer-col.footer-social-col .social-links a.linkedin { background: #0077b5; color: #fff; }
  .footer-col.footer-social-col .social-links a.youtube { background: #FF0000; color: #fff; }
  .footer-col.footer-social-col .social-links a:hover {
    transform: translateY(-4px) scale(1.08); box-shadow: 0 4px 16px rgba(0,0,0,0.16); filter: brightness(1.1);
  }
  @media (max-width: 900px) {
    .footer-col.footer-social-col .social-links {
      gap: 0.8rem;
    }
    .footer-col.footer-social-col .social-links a {
      width: 38px; height: 38px; font-size: 1.2rem;
    }
  }
  @media (max-width: 600px) {
    .footer-social-heading {
      font-size: 1rem; margin-bottom: 0.7rem;
    }
    .footer-col.footer-social-col .social-links a {
      width: 32px; height: 32px; font-size: 1rem;
    }
  }

/* ---------- BACK TO TOP BUTTON ---------- */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px;
  background: var(--primary-blue); color: #fff; border: none;
  border-radius: 0; cursor: pointer; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; opacity: 0;
  visibility: hidden; transform: translateY(20px); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000; box-shadow: 0 4px 12px rgba(0, 64, 128, 0.2);
}

.back-to-top.show {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.back-to-top:hover {
  background: var(--hover-blue); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 64, 128, 0.3);
}

.back-to-top.in-footer {
  background: #fff; color: var(--primary-blue); border: 2px solid var(--primary-blue);
}

.back-to-top.in-footer:hover {
  background: var(--primary-blue); color: #fff;
}

.back-to-top i {
  transition: transform 0.2s;
}

.back-to-top:hover i {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px; right: 20px; width: 45px; height: 45px; font-size: 1rem;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}







