body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0b3d91; /* blue */
    padding: 10px 20px;
    z-index: 100;
}

/* LEFT SIDE (LOGO + TITLE) */
.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    height: 50px;
    margin-right: 10px;
}

.logo-section h1 {
    color: white;
    font-size: 20px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    position: relative;
}

/* HOVER EFFECT */
.nav-links a:hover {
    background-color: #C94C4C;
    border-radius: 5px;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 150px;
    top: 100%;
    left: 0;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    z-index: 9999;
}

.dropdown-content a {
    color: black;
    display: block;
    padding: 10px;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-content {
    display: block;
}

/* BUTTON */
.sponsor-btn {
    background-color: #C94C4C;
    color: white;
    padding: 10px 15px;
    margin-left: 15px;
    border-radius: 5px;
    text-decoration: none;
}

.sponsor-btn:hover {
    background-color: darkred;
}


/* ===== SLIDER ===== */
.slider {
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 1.5s ease-in-out;
}

.slides img {
    width: 100%;
    flex: 0 0 100%;
    height: 60vh;
    object-fit: cover;
    object-position: 50% 20%;
    image-rendering: auto;
}

/* MOBILE */
@media(max-width:768px) {
    .slides img {
        height: 100vh;
    }
}

/* ARROWS */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}

.prev { left: 10px; }
.next { right: 10px; }

/* DOTS */
.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.dots span {
    height: 10px;
    width: 10px;
    margin: 5px;
    display: inline-block;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.dots span.active {
    background: #C94C4C;
}

/* ===== STATS SECTION ===== */
.stats-section {
    position: relative;
    background: url('bg1.jpeg') no-repeat center/cover;
    padding: 80px 20px;
    color: white;
    background-attachment: fixed;
    z-index: 1;
}

/* OVERLAY */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

/* CONTAINER */
.stats-container {
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* BOXES */
.stat-box {
    text-align: center;
    margin: 20px;
}

.stat-box h2 {
    font-size: 40px;
    color: #C94C4C;
}

.stat-box p {
    font-size: 18px;
}


/* SECTION */
.who-section {
    padding: 50px 20px;
    text-align: center;
}

/* TITLE */
.who-section h2 {
    font-size: 32px;
    color: #0b3d91;
    margin-bottom: 30px;
}

/* CONTAINER */
.who-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* VIDEO */
.video-box {
    flex: 1;
}

.video-box video {
    width: 100%;
    border-radius: 10px;
}

/* TEXT */
.text-box {
    flex: 1;
    text-align: left;
}

.text-box p {
    line-height: 1.6;
    font-size: 16px;
}

/* MOBILE VIEW */
@media(max-width:768px) {
    .who-container {
        flex-direction: column;
    }

    .text-box {
        text-align: center;
    }
}
/* SECTION */
.distinct-section {
   background-color: #0b3d91;
    color: white;
    padding: 70px 20px;
    text-align: center;
}

/* HEADING */
.distinct-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* INTRO TEXT */
.intro {
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* CONTAINER */
.distinct-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

/* BOX */
.distinct-box {
    max-width: 300px;
}

/* ICON */
.distinct-box img {
    width: 70px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* makes icons white */
}

/* TITLE */
.distinct-box h3 {
    margin-bottom: 15px;
    color: #C94C4C; /* your soft red */
}

/* TEXT */
.distinct-box p {
    font-size: 15px;
    line-height: 1.6;
}

/* MOBILE */
@media(max-width:768px){
    .distinct-container {
        flex-direction: column;
        align-items: center;
    }
}

/* SECTION */
.core-section {
    background: white;
    padding: 80px 20px;
    text-align: center;
}

/* TITLE */
.core-section h1 {
    font-size: 36px;
    color: #0b3d91;
    margin-bottom: 50px;
}

/* CONTAINER */
.core-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

/* CARD (3D BUTTON STYLE) */
.core-card {
    background: white;
    width: 260px;
    padding: 30px 20px;
    border-radius: 15px;
    
    /* 3D EFFECT */
 box-shadow: 
        0 10px 20px rgba(0,0,0,0.15),
        0 6px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
}

/* HOVER (LIFT EFFECT) */
.core-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ICON */
.core-card img {
    width: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

/* TITLE */
.core-card h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #8B1E3F; /* calm red */
}

/* TEXT */
.core-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* MOBILE */
@media(max-width:768px){
    .core-container {
        flex-direction: column;
        align-items: center;
    }
}

.blog-section {
  padding: 40px;
  text-align: center;
}

.filter-tabs button {
  margin: 5px;
  padding: 10px 15px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 20px;
}

.blog-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px;
}

.blog-card {
  min-width: 300px;
  max-width: 300px;
  background: #fff;
  border-radius: 15px;
  text-decoration: none;
  color: black;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.blog-card:hover {
  transform: scale(1.05);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.blog-content {
  padding: 15px;
}
.blog-button {
  margin-top: 20px;
}

.blog-button a {
  display: inline-block;
  padding: 12px 25px;
  background: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 16px;
  transition: 0.3s;
}

.blog-button a:hover {
  background: #0056b3;
  transform: scale(1.05);
}
/* =====================================================
   VIDEO SECTION — CONTINUOUS MARQUEE CAROUSEL
   ===================================================== */
.video-section {
    position: relative;
    overflow: hidden;
    padding: 75px 0 70px;
    background: #111827;
    color: #fff;
    text-align: center;
}

.video-section-header {
    max-width: 760px;
    margin: 0 auto 38px;
    padding: 0 20px;
}

.video-eyebrow { display: inline-block; margin-bottom: 10px; color: #C94C4C; font-size: 12px; font-weight: 800; letter-spacing: 1.8px; }
.video-section h2 { margin: 0 0 12px; font-size: 36px; line-height: 1.2; }
.video-section-header p { max-width: 650px; margin: 0 auto; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.7; }
.video-carousel-shell { position: relative; width: 100%; }
.video-carousel-viewport { position: relative; width: 100%; overflow: hidden; padding: 14px 0 28px; outline: none; cursor: grab; touch-action: pan-y; }
.video-carousel-viewport:focus-visible { outline: 3px solid rgba(255,255,255,.75); outline-offset: -3px; }
.video-carousel-viewport.is-dragging { cursor: grabbing; }
.video-carousel { display: flex; width: max-content; gap: 24px; padding: 0 24px; will-change: transform; }
.video-card { flex: 0 0 320px; width: 320px; overflow: hidden; border-radius: 14px; background: #fff; color: #20252b; text-align: left; box-shadow: 0 12px 30px rgba(0,0,0,.22); transition: transform .3s ease, box-shadow .3s ease; }
.video-card:hover, .video-card:focus-within { transform: translateY(-7px) scale(1.025); box-shadow: 0 18px 42px rgba(201,76,76,.25); }
.video-thumb { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; padding: 0; border: 0; overflow: hidden; background: #111; cursor: pointer; }
.video-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.video-card:hover .video-thumb img, .video-thumb:focus-visible img { transform: scale(1.06); filter: brightness(.72); }
.video-thumb:focus-visible { outline: 3px solid #C94C4C; outline-offset: -3px; }
.video-play { position: absolute; top: 50%; left: 50%; display: flex; align-items: center; justify-content: center; width: 62px; height: 62px; transform: translate(-50%, -50%); border-radius: 50%; background: rgba(201,76,76,.95); color: #fff; font-size: 22px; line-height: 1; padding-left: 4px; box-shadow: 0 8px 25px rgba(0,0,0,.35); transition: transform .3s ease, background .3s ease; }
.video-card:hover .video-play, .video-thumb:focus-visible .video-play { transform: translate(-50%, -50%) scale(1.12); background: #d85a5a; }
.video-card-overlay { position: absolute; inset: auto 0 0; padding: 30px 15px 12px; background: linear-gradient(transparent, rgba(0,0,0,.78)); color: #fff; font-size: 12px; font-weight: 700; opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease; }
.video-card:hover .video-card-overlay, .video-thumb:focus-visible .video-card-overlay { opacity: 1; transform: translateY(0); }
.video-card-content { padding: 16px 17px 18px; }
.video-card-label { display: block; margin-bottom: 6px; color: #C94C4C; font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.video-card-content h3 { margin: 0; font-size: 17px; line-height: 1.4; }
.video-fade { position: absolute; top: 0; bottom: 0; width: 130px; z-index: 3; pointer-events: none; }
.video-fade-left { left: 0; background: linear-gradient(to right, #111827, rgba(17,24,39,0)); }
.video-fade-right { right: 0; background: linear-gradient(to left, #111827, rgba(17,24,39,0)); }
.video-controls { display: flex; align-items: center; justify-content: center; gap: 15px; flex-wrap: wrap; margin-top: 6px; }
.video-pause { display: inline-flex; align-items: center; gap: 8px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 25px; background: rgba(255,255,255,.08); color: #fff; cursor: pointer; font-size: 13px; font-weight: 700; transition: background .25s ease, transform .25s ease; }
.video-pause:hover, .video-pause:focus-visible { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.video-pause:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.video-button a { display: inline-block; margin-top: 0; padding: 12px 25px; background: #C94C4C; color: white; border-radius: 25px; text-decoration: none; font-weight: 700; transition: .3s ease; }
.video-button a:hover, .video-button a:focus-visible { background: #a83b3b; transform: translateY(-2px); }
.video-modal { position: fixed; inset: 0; z-index: 100000; display: none; align-items: center; justify-content: center; padding: 25px; }
.video-modal.is-open { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.86); }
.video-modal-dialog { position: relative; z-index: 2; width: min(100%, 950px); padding: 12px; border-radius: 15px; background: #080b10; box-shadow: 0 25px 80px rgba(0,0,0,.55); }
.video-modal-player { overflow: hidden; aspect-ratio: 16 / 9; border-radius: 9px; }
.video-modal-player iframe { display: block; width: 100%; height: 100%; border: 0; }
.video-modal-close { position: absolute; top: -16px; right: -16px; z-index: 3; width: 42px; height: 42px; border: 0; border-radius: 50%; background: #fff; color: #111; font-size: 27px; line-height: 1; cursor: pointer; box-shadow: 0 5px 18px rgba(0,0,0,.3); }
.video-modal-close:focus-visible { outline: 3px solid #C94C4C; outline-offset: 3px; }
body.video-modal-open { overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* SECTION BACKGROUND (PARALLAX) */
.newsletter-section {
    background: url('para.jpeg') no-repeat center/cover;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
      object-position: 50% 20%;
  position: relative;
}

/* DARK OVERLAY (makes text readable) */
.newsletter-overlay {
  background: rgba(0,0,0,0.6);
  padding: 50px 20px;
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
  color: white;
  text-align: center;
}

/* TEXT */
.newsletter-overlay h2 {
  margin-bottom: 15px;
}

.newsletter-overlay p {
  margin-bottom: 25px;
  line-height: 1.6;
}

/* FORM */
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 12px;
  border-radius: 25px;
  border: none;
  width: 250px;
}

.newsletter-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  background: #007BFF;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #0056b3;
}
.footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-column h3 {
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #fff;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}
.icon-attribution {
  margin-top: 20px;
  font-size: 13px;
  color: #aaa;
  text-align: center;
}

.icon-attribution a {
  color: #00bfff;
  text-decoration: none;
}

.icon-attribution a:hover {
  text-decoration: underline;
}
/* =====================================================
   MOBILE RESPONSIVE DESIGN
   HOPE FOR FUTURE CBO
   ===================================================== */


/* -----------------------------------------------------
   BASIC RESPONSIVE SETTINGS
   ----------------------------------------------------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

img,
iframe,
video {
    max-width: 100%;
}


/* -----------------------------------------------------
   MOBILE MENU BUTTON
   ----------------------------------------------------- */

#mobile-menu {
    display: none;
}

.menu-icon {
    display: none;
}


/* -----------------------------------------------------
   TABLETS
   ----------------------------------------------------- */

@media (max-width: 900px) {

    /* NAVIGATION */

    .navbar {
        padding: 10px 18px;
        position: relative;
        z-index: 9999;
    }

    .logo-section img {
        height: 48px;
    }

    .nav-links {
        gap: 5px;
    }

    .nav-links a {
        padding: 9px 8px;
        font-size: 14px;
    }

}


/* =====================================================
   PHONE MODE
   ===================================================== */

@media (max-width: 768px) {


    /* -------------------------------------------------
       NAVBAR
       ------------------------------------------------- */

    .navbar {
        min-height: 70px;
        padding: 10px 15px;

        display: flex;
        justify-content: space-between;
        align-items: center;

        position: relative;
        z-index: 9999;
    }


    /* LOGO */

    .logo-section {
        display: flex;
        align-items: center;
    }

    .logo-section img {
        height: 48px;
        width: auto;
        display: block;
    }


    /* -------------------------------------------------
       HAMBURGER
       ------------------------------------------------- */

    .menu-icon {
        display: flex;

        width: 42px;
        height: 42px;

        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 5px;

        cursor: pointer;

        background: rgba(255,255,255,0.1);

        border-radius: 6px;
    }

    .menu-icon span {
        width: 24px;
        height: 3px;

        background: white;

        border-radius: 5px;

        transition: 0.3s;
    }


    /* -------------------------------------------------
       MOBILE NAVIGATION
       ------------------------------------------------- */

    .nav-links {

        display: none;

        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        background: #0b3d91;

        padding: 15px;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        box-shadow: 0 8px 20px rgba(0,0,0,0.25);

        z-index: 10000;
    }


    /* SHOW MENU */

    #mobile-menu:checked ~ .nav-links {
        display: flex;
    }


    /* -------------------------------------------------
       MOBILE LINKS
       ------------------------------------------------- */

    .nav-links > a,
    .dropdown > a {

        display: block;

        width: 100%;

        padding: 14px 15px;

        color: white;

        text-decoration: none;

        font-size: 16px;

        border-radius: 5px;
    }


    .nav-links > a:hover,
    .dropdown > a:hover {

        background: #C94C4C;
    }


    /* -------------------------------------------------
       MOBILE DROPDOWN
       ------------------------------------------------- */

    .dropdown {
        width: 100%;
        position: relative;
    }

    .dropdown-content {

        position: static;

        display: none;

        width: 100%;

        min-width: 0;

        background: #08306f;

        box-shadow: none;

        border-radius: 5px;

        padding: 5px 0;
    }


    /*
       On phone, tapping the dropdown title
       allows the dropdown to remain open.
    */

    .dropdown:focus-within .dropdown-content {
        display: block;
    }


    .dropdown-content a {

        display: block;

        width: 100%;

        color: white;

        padding: 12px 25px;

        font-size: 15px;

        text-decoration: none;
    }


    .dropdown-content a:hover {

        background: #C94C4C;
    }


    /* -------------------------------------------------
       SPONSOR BUTTON
       ------------------------------------------------- */

    .sponsor-btn {

        margin: 8px 0 0 0 !important;

        text-align: center;

        background: #C94C4C;

        padding: 13px !important;
    }


    /* -------------------------------------------------
       SLIDER
       ------------------------------------------------- */

    .slider {

        width: 100%;

        height: auto;

        overflow: hidden;
    }


    .slides {

        width: 100%;
    }


    .slides img {

        width: 100%;

        height: 48vh;

        min-height: 280px;

        max-height: 480px;

        object-fit: cover;

        /*
           This gives the photos better framing
           on narrow phone screens.
        */

        object-position: center center;
    }


    /* ARROWS */

    .prev,
    .next {

        padding: 8px 11px;

        font-size: 17px;

        top: 50%;

        background: rgba(0,0,0,0.45);

        border-radius: 50%;
    }

    .prev {
        left: 8px;
    }

    .next {
        right: 8px;
    }


    /* DOTS */

    .dots {
        bottom: 10px;
    }

    .dots span {

        width: 8px;

        height: 8px;

        margin: 3px;
    }


    /* -------------------------------------------------
       WHO WE ARE
       ------------------------------------------------- */

    .who-section {

        padding: 45px 18px;
    }

    .who-section h2 {

        font-size: 28px;

        margin-bottom: 25px;
    }

    .who-container {

        display: flex;

        flex-direction: column;

        gap: 25px;
    }

    .video-box {

        width: 100%;
    }

    .video-box iframe,
    .video-box video {

        width: 100% !important;

        height: auto;

        aspect-ratio: 16 / 9;

        border-radius: 10px;
    }

    .text-box {

        width: 100%;

        text-align: center;

        padding: 0 5px;
    }

    .text-box p {

        font-size: 15px;

        line-height: 1.7;
    }


    /* -------------------------------------------------
       STATS
       ------------------------------------------------- */

    .stats-section {

        padding: 55px 15px;

        background-attachment: scroll;

        background-position: center center;
    }


    .stats-container {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 15px;

        position: relative;
    }


    .stat-box {

        margin: 5px;

        padding: 15px 5px;
    }


    .stat-box h2 {

        font-size: 30px;

        margin: 5px 0;
    }


    .stat-box p {

        font-size: 14px;

        margin: 5px 0;
    }


    /* LAST STAT CENTERED */

    .stat-box:last-child {

        grid-column: 1 / -1;
    }


    /* -------------------------------------------------
       WHAT MAKES US DISTINCT
       ------------------------------------------------- */

    .distinct-section {

        padding: 55px 18px;
    }


    .distinct-section h1 {

        font-size: 28px;

        line-height: 1.2;
    }


    .intro {

        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 35px;
    }


    .distinct-container {

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 35px;
    }


    .distinct-box {

        width: 100%;

        max-width: 400px;

        padding: 0 10px;
    }


    .distinct-box img {

        width: 65px;
    }


    .distinct-box h3 {

        font-size: 20px;
    }


    .distinct-box p {

        font-size: 15px;

        line-height: 1.7;
    }


    /* -------------------------------------------------
       CORE VALUES
       ------------------------------------------------- */

    .core-section {

        padding: 55px 18px;
    }


    .core-section h1 {

        font-size: 28px;

        margin-bottom: 35px;
    }


    .core-container {

        display: grid;

        grid-template-columns: 1fr;

        gap: 25px;

        align-items: stretch;
    }


    .core-card {

        width: 100%;

        max-width: 400px;

        margin: auto;

        padding: 25px 18px;
    }


    .core-card img {

        width: 65px;
    }


    .core-card h2 {

        font-size: 18px;
    }


    .core-card p {

        font-size: 15px;

        line-height: 1.7;
    }


    /* -------------------------------------------------
       BLOG
       ------------------------------------------------- */

    .blog-section {

        padding: 45px 15px;
    }


    .blog-section h2 {

        font-size: 28px;
    }


    .filter-tabs {

        display: flex;

        overflow-x: auto;

        gap: 8px;

        padding: 10px 0;

        scrollbar-width: none;
    }


    .filter-tabs::-webkit-scrollbar {
        display: none;
    }


    .filter-tabs button {

        flex: 0 0 auto;

        white-space: nowrap;

        padding: 9px 13px;

        font-size: 13px;
    }


    .blog-carousel {

        display: flex;

        overflow-x: auto;

        gap: 15px;

        padding: 15px 5px 25px;

        scroll-snap-type: x mandatory;
    }


    .blog-card {

        flex: 0 0 85%;

        min-width: 0;

        max-width: none;

        scroll-snap-align: center;
    }


    .blog-card:hover {

        transform: none;
    }


    .blog-card img {

        height: 190px;
    }


    /* -------------------------------------------------
       VIDEOS
       ------------------------------------------------- */
    .video-section { padding: 55px 0 50px; }
    .video-section-header { margin-bottom: 25px; padding: 0 18px; }
    .video-section h2 { font-size: 28px; }
    .video-section-header p { font-size: 14px; }
    .video-carousel-viewport { padding: 10px 0 22px; }
    .video-carousel { gap: 14px; padding: 0 15px; }
    .video-card { flex-basis: min(82vw, 310px); width: min(82vw, 310px); }
    .video-card:hover, .video-card:focus-within { transform: none; box-shadow: 0 12px 30px rgba(0,0,0,.22); }
    .video-card-overlay { display: none; }
    .video-fade { width: 45px; }
    .video-controls { padding: 0 15px; }
    .video-modal { padding: 15px; }
    .video-modal-dialog { padding: 7px; }
    .video-modal-close { top: -13px; right: -7px; width: 38px; height: 38px; font-size: 24px; }

    /* -------------------------------------------------
       NEWSLETTER
       ------------------------------------------------- */

    .newsletter-section {

        padding: 55px 15px;

        background-attachment: scroll;

        background-position: center center;
    }


    .newsletter-overlay {

        padding: 35px 18px;

        border-radius: 10px;
    }


    .newsletter-overlay h2 {

        font-size: 25px;

        line-height: 1.3;
    }


    .newsletter-overlay p {

        font-size: 15px;

        line-height: 1.7;
    }


    .newsletter-form {

        flex-direction: column;

        align-items: stretch;

        gap: 10px;
    }


    .newsletter-form input {

        width: 100%;

        padding: 13px 16px;

        box-sizing: border-box;
    }


    .newsletter-form button {

        width: 100%;

        padding: 13px;
    }


    /* -------------------------------------------------
       FOOTER
       ------------------------------------------------- */

    .footer {

        padding: 45px 20px 20px;

        text-align: center;
    }


    .footer-container {

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 35px;
    }


    .footer-brand {

        width: 100%;

        max-width: 400px;
    }


    .footer-logo {

        width: 100px;
    }


    .footer-column {

        width: 100%;

        max-width: 400px;
    }


    .footer-column h3 {

        font-size: 19px;

        margin-bottom: 15px;
    }


    .footer-column ul {

        margin: 0;

        padding: 0;
    }


    .footer-column ul li {

        margin-bottom: 10px;

        font-size: 14px;
    }


    .footer-bottom {

        font-size: 12px;

        line-height: 1.6;
    }


    .icon-attribution {

        font-size: 11px;

        line-height: 1.5;
    }

}


/* =====================================================
   SMALL PHONES
   ===================================================== */

@media (max-width: 400px) {

    .logo-section img {
        height: 42px;
    }


    .navbar {
        padding: 9px 12px;
    }


    .menu-icon {
        width: 38px;
        height: 38px;
    }


    .slides img {

        height: 42vh;

        min-height: 250px;
    }


    .stat-box h2 {

        font-size: 26px;
    }


    .stat-box p {

        font-size: 13px;
    }


    .distinct-section h1,
    .core-section h1,
    .blog-section h2,
    .video-section h2 {

        font-size: 25px;
    }


    .blog-card {

        flex-basis: 90%;
    }

}

/* =========================================
   BLOG PAGE - STORY CARDS
========================================= */

.blog-cards-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
}

.blog-card-page {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-page:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.blog-card-page > img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h3 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #222;
}

.blog-card-content p {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.blog-card-content span {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    color: #777;
}

/* READ MORE BUTTON */

.read-more {
    display: inline-block;
    padding: 11px 22px;
    background: #e63946;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.read-more:hover {
    background: #c92f3b;
    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .blog-cards-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 25px;
    }

    .blog-card-page > img {
        height: 230px;
    }

    .blog-card-content {
        padding: 22px;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 480px) {

    .blog-cards-container {
        width: 100%;
        gap: 20px;
    }

    .blog-card-page > img {
        height: 200px;
    }

    .blog-card-content {
        padding: 18px;
    }

    .blog-card-content h3 {
        font-size: 21px;
    }

    .blog-card-content p {
        font-size: 15px;
    }

    .read-more {
        padding: 10px 18px;
        font-size: 14px;
    }

}

