@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');

body {
    font-family: "Roboto Serif", serif;
}
:root {
    --base-font-size: 16px;
    --font-scale: 1;
}

html {
    font-size: var(--base-font-size);
}

/* Optional fine-tuning */
body {
    line-height: 1.6;
}


/* ---------- Top bar container ---------- */
.top-border {
    background: #00000000;
    /* black background */
    color: #fff;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
}

/* nav list styles */
.top-border .top-list {
    display: flex;
    gap: 0;
    /* use separators not gaps */
    align-items: center;
    justify-content: end;
    padding: 0 8px;
    margin: 0;
    list-style: none;
    /* allow horizontal scroll on small screens */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 0 20px;
    padding-right: 20px;
}

/* each nav item */
.top-border .top-item {
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    text-decoration: none;
    border-right: 0;
    line-height: 33px;
}

button.btn.btn-outline-light img {
    height: 24px;
}

/* icon circle to the left */
.top-border .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    margin-right: 10px;
    flex: 0 0 22px;
    font-size: 12px;
    color: #fff;
}

/* vertical separators between items */
.top-border .top-item+.top-item {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

/* small subtle hover */
.top-border .top-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
}



/* optional: hide labels on extra-small screens and show only icons */
/* Uncomment if you want icon-only experience at very small widths */
/*
    @media (max-width: 360px) {
      .top-border .label-text { display:none; }
      .top-border .top-item { padding-left:10px; padding-right:10px; }
    }
    */

/* remove focus outline but keep accessible focus style */
.top-border .top-item:focus {
    outline: 3px solid rgba(255, 255, 255, 0.12);
    outline-offset: 2px;
}

.top-border {
    position: absolute;
    top: 0;
    z-index: 1030;
    width: 100%;
}

/* Hero background - update the path if needed */
.hero {
    background-image: linear-gradient(to bottom, rgb(0 0 0 / 95%) 0%, rgba(0, 0, 0, 0) 30%), url('../images/banner.png');
    background-size: cover;
    background-position: top;
    min-height: 700px;
    height: 100vh;
    position: relative;
    color: #fff;
    overflow: hidden;
}

/* top header overlay */
.top-bar {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
}

/* centered circular logo */
.brand-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
    z-index: 11;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    font-weight: 700;
    text-align: center;
}

.brand-center img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.top-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: .06em;
    margin: 0 14px;
    position: relative;
}

.top-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.top-nav a:hover::after {
    width: 100%;
}


/* vertical pills on the right */
.right-pills {
    position: absolute;
    right: 28px;
    top: 30%;
    z-index: 12;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: auto;
}

.pill-btn {
    width: 36px;
    height: 36px;
    border-radius: 18px;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* nursery registration button bottom right */
.register-btn {
    position: absolute;
    right: 32px;
    bottom: 24px;
    z-index: 12;
    background: #b22222;
    color: #fff;
    padding: 18px 28px;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    cursor: pointer;
}



/* ---------- News Ticker Section ---------- */
section.news-section {
    width: 100%;
    background: transparent;
    /* keeps parent neutral */
    padding: 0.5rem 0;
    padding-top: 0;
}

.news-ticker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #b22222;
    /* dark red background */
    border-radius: 0;
    overflow: hidden;
    color: #fff;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Scrolling content */
.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
}



@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker-left {
    flex: 1;
    overflow: hidden;
    padding-left: 1rem;
}


.new-badge {
    background: #ff0;
    color: #000;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 8px;
}

.important-badge {
    background: #fff;
    color: red;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 8px;
}

/* Yellow right side */
.ticker-right {
    background-color: #ff0;
    color: #000;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 0;
    white-space: nowrap;
    font-size: 1rem;
}

/* Hover pause */
.ticker-left:hover .ticker-content {
    animation-play-state: paused;
}





section.partners-section {
    background: #fff;
    padding: 20px 0 0;
    border-bottom: solid 1px #E9E9E9;
}

/* ---------- Flex / grid container ---------- */
.partners-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

/* ---------- Each tile ---------- */
.partner-tile {
    flex: 0 0 auto;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    padding: 10px 16px;
    transition: transform .15s ease;
}

.partner-tile:last-child {
    border-right: none;
}

.partner-tile img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
}

.partner-tile:hover {
    transform: scale(1.05);
}

/* ---------- Hide horizontal scrollbar (optional aesthetic) ---------- */
.partners-row::-webkit-scrollbar {
    height: 6px;
}

.partners-row::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.partners-row::-webkit-scrollbar-track {
    background: transparent;
}



/* SECTION WRAPPER */
section.hero-circle {
    position: relative;
    color: #0b2340;
    padding: 70px 0 70px 0;
    overflow: hidden;
}

/* Add centered logo image behind content */
section.hero-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
    background-size: auto;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

/* ensure content stays above the logo */
section.hero-circle>* {
    position: relative;
    z-index: 1;
}


/* central circular logo */
/* .hero-circle .circle {
    position: relative;
    width: min(700px, 90vw);
    height: min(700px, 90vw);
    margin: 0 auto;
    border-radius: 50%;
    background-image: url('../images/ips-school-logo2.png');

    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* content container over the circle */
.hero-content {
    position: relative;
    left: 0;
    transform: 0;
    width: 100%;
    top: 0;
    transform: 0;
    text-align: center;
    padding: 50px 16px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: clamp(
        calc(28px * var(--font-scale)),
        calc(4.4vw * var(--font-scale)),
        calc(50px * var(--font-scale))
    );
    /* responsive headline */
    margin: 0 0 8px;
    color: #07324e;
    /* deep blue */
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
    line-height: 1.05;
}

.hero-content p {
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: rgba(0, 0, 0, 0.85);
    /* paragraph dark */
    font-size: clamp(12px, 1.6vw, 16px);
    margin: 0 auto;
    max-width: 100%;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.0);
    /* transparent by default */
}

/* small circular badge/logo at top center of the big circle */
.hero-badge {
    position: relative;
    left: 0;
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    z-index: 5;
}

.hero-badge img {
    max-width: 78px;
    max-height: 78px;
    display: block;
}

/* CTA Button centered near bottom of circle */
.hero-cta {
    position: relative;
    left: 0;
    transform: 0;
    bottom: 0;
    z-index: 6;
    pointer-events: auto;
    margin-top: 30px;
}

.btn-cta {
    background: #2b2b2b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 28px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
    border: none;
    transition: all 0.3s ease-in-out;
}

.btn-cta:hover {
    background: #063f61 !important;
    color: #fff !important;
}


/* accessibility focus style */
.btn-cta:focus {
    outline: 3px solid rgba(255, 255, 255, 0.15);
    outline-offset: 3px;
}

/* ---------- Section wrapper ---------- */
section.feature-strip {
    background: #063f61;
    /* main dark blue base */
    color: #fff;
    padding: 48px 0 40px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    position: relative;
    overflow: hidden;
}

/* background image layer */
section.feature-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    /* shorthand for top:0; right:0; bottom:0; left:0; */
    background: url('../images/bg-polygon.png') no-repeat center center;
    background-size: cover;
    opacity: 0.7;
    z-index: 0;
    top: 30%;
}

/* make sure text/content stays above the image */
section.feature-strip>* {
    position: relative;
    z-index: 1;
}

/* centered top icon */
.feature-icon {
    width: 120px;
    height: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 52px;
}

/* headline row on top of cards */
.feature-headlines {
    display: grid;
    grid-auto-flow: column;
    gap: 24px;
    align-items: start;
    margin-bottom: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}

.feature-headlines .headline {
    min-width: 200px;
    scroll-snap-align: start;
    font-weight: 700;
    font-family: "Georgia", serif;
    font-size: 1.25rem;
    color: rgba(230, 245, 255, 0.98);
    line-height: 1.05;
}

/* feature row (slider container) */
.feature-row {
    display: flex;
    align-items: flex-end;
    gap: 0;
    /* remove gap to avoid partial next card */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    /* no padding to avoid side peeks */
    scroll-behavior: smooth;
}

/* hide scrollbar */
.feature-row::-webkit-scrollbar {
    display: none;
}

/* each card */
.feature-card {
    flex: 0 0 100%;
    /* show one card fully at a time */
    scroll-snap-align: start;
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

/* image styling */
.feature-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    border-top: none;
    border-bottom: none;
}

.navigation-icon {
    text-align: center;
}

.navigation-icon button {
    background: #fff;
    border-radius: 20px;
}

/* custom image heights (optional) */
.feature-card .img1 {
    height: 370px;
}

.feature-card .img2 {
    height: 380px;
}

.feature-card .img3 {
    height: 390px;
}

.feature-card .img4 {
    height: 400px;
}

/* desktop layout */
@media (min-width: 768px) {
    .feature-row {
        flex-wrap: wrap;
        justify-content: center;
        overflow: visible;
        scroll-snap-type: none;
        gap: 20px;
        padding-bottom: 12px;
    }

    .feature-card {
        flex: 0 1 calc(20% - 20px);
    }
}



.headline {
    color: #C5E7FF;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}





/* accessibility focus */
.feature-card:focus {
    outline: 3px solid rgba(255, 255, 255, 0.12);
    outline-offset: 4px;
}

/* hide default scrollbar but still allow scroll (optional) */
.feature-row::-webkit-scrollbar,
.feature-headlines::-webkit-scrollbar {
    height: 8px;
}

.feature-row::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.explore-section {
    padding: 48px 0;
}

/* Main layout */

section.explore-row {
    padding: 60px 0;
    background-color: #f8f9fb;
}

/* Left blue panel with angled shape */
.explore-panel {
    background: linear-gradient(135deg, #004372 0%, #02548d 100%);
    color: #fff;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 20px 20px 0;
    clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 98%);
}

/* Decorative faint icon in background */
.explore-panel::after {
    content: "";
    position: absolute;
    top: -7px;
    right: 0;
    width: 200px;
    height: 200px;
    background: url('../images/gallery-icon.svg') no-repeat center center;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
}

/* Keep content above background elements */
.explore-panel>* {
    position: relative;
    z-index: 2;
}

/* Heading */
.explore-panel h2 {
    font-family: Georgia, serif;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.1;
    margin: 0 0 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Paragraph */
.explore-panel p {
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 24px;
    max-width: 280px;
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA link */
.explore-panel a.cta-link {
    color: #b6ffb1;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.explore-panel a.cta-link:hover {
    color: #fff;
    text-decoration: underline;
    transform: translateX(4px);
}



/* right cards container */
.cards-wrap {
    display: flex;
    gap: 24px;
    align-items: start;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
}

/* each card */
.gallery-card {
    flex: 0 0 320px;
    /* width on small screens */
    background: #fff;
    border: 6px solid #CDCDCD;
    box-shadow: 0 14px 30px rgba(2, 8, 20, 0.35);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 350px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 3/4;
}

/* red badge top-left of image */
.img-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    background: #BA231F;
    color: #FFFEC7;
    padding: 10px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    z-index: 5;
    border: solid 2px #FFFEC7;
}

.img-badge small {
    color: #FFFFFF;
    display: block;
    font-weight: 500;
    font-size: 14px;
    opacity: .95;
    text-transform: uppercase;
}

/* caption overlay at bottom */
.card-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18));
    color: #fff;
    padding: 22px;
    text-align: center;
    z-index: 4;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.card-caption h3 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.card-caption .divider {
    height: 2px;
    width: 60%;
    margin: 10px auto 0;
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 768px) {
    .mobile-slider-wrapper {
        display: flex;
        align-items: center;
        position: relative;
        flex-direction: column;
    }

    .cards-wrap {
        display: flex;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        flex: 1;
        /* takes remaining space between buttons */
        padding: 10px 0;
    }

    .gallery-card {
        flex: 0 0 80%;
        scroll-snap-align: start;
        border: 6px solid #CDCDCD;
        box-shadow: 0 14px 30px rgba(2, 8, 20, 0.35);
        min-height: 350px;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }

    .slider-prev,
    .slider-next {
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 10px 14px;
        cursor: pointer;
        font-size: 18px;
        border-radius: 50%;
        z-index: 10;
    }

    .slider-prev:hover,
    .slider-next:hover {
        background: #BA231F;
    }
}

/* Desktop: buttons hidden */
@media (min-width: 769px) {

    .slider-prev,
    .slider-next {
        display: none;
    }
}






/* accessibility focus */
.gallery-card:focus {
    outline: 3px solid rgba(255, 255, 255, 0.12);
    outline-offset: 6px;
}

/* Section wrapper: centered and constrained */
section.video-hero {
    display: flex;
    justify-content: center;
    padding: 40px 12px;
    background: #F1F1F1;
}

/* The pill-shaped stage */
.hero-stage {
    position: relative;
    width: min(1200px, 96vw);
    height: min(520px, 58vh);
    border-radius: 519px;
    overflow: hidden;
    box-shadow: var(--shadow);
    outline: 10px solid rgba(255, 255, 255, 0.95);
    /* white border like screenshot */
    outline-offset: 10px;
    background: url('../images/school-img.png');
}

/* Video fills the stage */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.95) contrast(.95);
}

/* Soft overlay so text/card reads easily */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 10, 18, 0.06), rgba(4, 10, 18, 0.06));
    pointer-events: none;
}

/* Play button (left center) */
.play-btn {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: var(--play-size);
    height: var(--play-size);
    border-radius: 50%;
    background: rgba(203, 50, 50, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .45);
    cursor: pointer;
    z-index: 6;
    border: 6px solid rgba(255, 255, 255, 0.06);
}

.play-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.18);
    outline-offset: 4px;
}

.play-btn svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

/* White content card on the right */
.hero-card {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: min(var(--card-width), 42%);
    background: #fff;
    color: #111;
    padding: 32px;
    box-shadow: 0 12px 30px rgba(2, 8, 20, 0.2);
    border-radius: 6px;
    z-index: 7;
}

.hero-card h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(20px, 2.6vw, 36px);
    margin-bottom: 12px;
    letter-spacing: .6px;
}

.hero-card p {
    margin: 0;
    color: #333;
    line-height: 1.65;
}


.section.video-hero {
    background-color: #f4f4f4;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 40px 12px;
}

.section-video .hero-stage {
    position: relative;
    width: auto;
    height: 100%;
    display: flex;
    border-radius: 519px;
    padding: 70px 50px;
    overflow: hidden;
    box-shadow: var(--shadow);
    outline: 0;
    outline-offset: 0;
    background: url('../images/school-img.png');
    align-items: center;
    justify-content: center;
}

.video-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-bg {
    object-fit: cover;
    height: 100%;
    border-radius: 0;
}

.play-btn {
    position: absolute;
    border: 6px solid #fff;
    background: #BA231F;
    color: #b3201e;
    box-shadow: 0 0 19px 9px #ba231fc4;
    font-size: 3rem;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-btn:hover {
    background: #b3201e;
    color: white;
    box-shadow: 0 0 26px 9px #212529c7;
    /* transform: scale(1.1); */
}

.content-box {
    box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
    padding: 50px 44px;
}










/* full-width section */
section.directions {
    position: relative;
    padding: 48px 0 64px;
    overflow: hidden;
}

/* background image with subtle faded overlay */
.directions .bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/form-bg.png');
    background-size: cover;
    background-position: center;
    filter: contrast(.98) saturate(.9);
    z-index: 0;
}

/* content sits above bg */
.directions .content {
    position: relative;
    z-index: 2;
}

/* headline */
.directions h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: clamp(26px, 3.8vw, 44px);
    text-align: center;
    color: #2b1f1b;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

/* input-style wrapper */
.direction-bar {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(3, 19, 30, 0.12);
    background: var(--box-bg);
    overflow: hidden;
    border: 1px solid rgba(3, 19, 30, 0.06);
}

/* left icon block */
.direction-bar .left {
    flex: 0 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #035937;
    color: #fff;
    font-size: 20px;
}

/* middle area (acts like input/display) */
.direction-bar .mid {
    flex: 1 1 auto;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    color: #363636;
    font-size: 1.05rem;
    background: transparent;
    border: 0;
}

/* right send button */
.direction-bar .right {
    flex: 0 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #BA231F;
    color: #fff;
    cursor: pointer;
    border: none;
}

.direction-bar .right:focus,
.direction-bar .left:focus {
    outline: 3px solid rgba(0, 0, 0, 0.06);
    outline-offset: -3px;
}



footer.site-footer {
    background: #090909;
    color: #fff;
    padding: 100px 0 0;
    position: relative;
}

/* Main container */

.footer-row {
    display: grid;
    grid-template-columns: 360px 1fr 1fr 320px;
    gap: 36px;
    align-items: start;
}

/* Left arched panel */
.footer-arch {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    padding-top: 48px;
    padding-bottom: 48px;
    text-align: center;
    color: #cfcfcf;
    overflow: visible;
    border-radius: 0 0 220px 220px;
    /* large bottom radii to create arch feel */
}

.footer-arch .logo {
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.footer-arch .logo img {
    max-width: 74%;
    height: auto;
    display: block;
}

.footer-arch p {
    font-family: "Raleway", sans-serif;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 260px;
}

/* Headline for link blocks */
.footer-headline {
    font-weight: 500;
    letter-spacing: 0.6px;
    color: #FEFCC2;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-size: 16px;
}

.footer-headline::after {
    content: "";
    display: block;
    height: 3px;
    width: 100px;
    background: #E4E2AE;
    margin-top: 8px;
}

/* link lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
}

.footer-links li {
    margin: 10px 0;
}

.footer-links a {
    font-family: "Raleway", sans-serif;
    color: #FFFFFF;
    font-weight: 300;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #e4e2ae;
    text-decoration: none;
}

.contact-info a {
    font-family: "Raleway", sans-serif;
    color: #FFFFFF;
    font-weight: 300;
    text-decoration: none;
    font-size: 14px;
}

.contact-info a:hover {
    color: #e4e2ae;
    text-decoration: none;
}

/* contact block */
.contact-info {
    color: #d7d7d7;
    font-size: 14px;
}

.ci-item {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
}

.ci-item .icon {
    flex: 0 0 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d7d7d7;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* bottom copyright bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px 0;
    color: #cfcfcf;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom a {
    color: #cfcfcf;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

section.directions-cta {
    position: relative;
    padding: 0;
    padding-top: 20px;
    padding-bottom: 15px;
    overflow: hidden;
    margin-bottom: -46px;
    z-index: 1;
}

.box-cta {
    background: #004372;
    border-radius: 60px;
    padding: 20px 70px;
    box-shadow: 5px 5px #285372;
}

.box-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.box-cta-content h3 {
    font-size: 30px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
}

.box-cta-content p {
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    font-weight: 100;
}

.box-cta-link {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.box-cta-link a {
    color: #000;
    text-decoration: none;
    background: #fff;
    padding: 8px 26px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.box-cta-link .text-cta {
    background-color: #FBFCB2;
}

.box-cta-link a:hover {
    color: #ffffff;
    text-decoration: none;
    background: #000000a1;
    padding: 8px 26px;
    border-radius: 20px;
    box-shadow: 0 0 5px 2px #fbfcb257;
}

.offcanvas {
    background: #111111;
    color: #fff;
    transition: transform 0.35s ease-out, opacity 0.25s ease-out;
    opacity: 0;


}

.offcanvas.show {
    transform: translateX(0);
    opacity: 1;
}

.offcanvas.offcanvas-end {
    width: 100%;
    max-width: 100%;
    transform: translateX(100%);
}

.offcanvas-backdrop.show {
    opacity: 0.8;
    transition: opacity 0.2s ease-out;
}

.offcanvas-header {
    padding: 40px 30px;
}

.btn-close {
    --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
    filter: var(--bs-btn-close-white-filter);
    opacity: 1;
}

.btn-cta:hover {
    color: #ffffff;
    background-color: #063f61;
    border: 1px solid #063f61;
    padding: 10px 20px;
    border-radius: 28px;
}

.side-img {
    position: absolute;
    left: 0;
}

.side-img img {
    width: 100%;
}

.nav-social-links {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offcanvas p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
}

.list-group-item {
    position: relative;
    display: block;
    padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
    color: #ffffff;
    text-decoration: none;
    background-color: #ffffff00;
    border: 0;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    position: relative;
    font-weight: 500;
    padding-left: 26px;
    margin-bottom: 10px;
    color: #fff;
}

.menu-list li a {
    color: rgb(255 255 255);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3 ease-in-out;
}

.menu-list li a:hover {
    color: #F6FEA9;
    text-decoration: none;
    font-weight: 400;
}

.menu-list li::before {
    content: "◉";
    position: absolute;
    left: 0;
    color: #F6FEA9;
    font-size: 21px;
    top: -3px;
}

/* Dropdown arrow */
.menu-item.has-dropdown {
    cursor: pointer;
}

.menu-item.has-dropdown>.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #F6FEA9;
}

/* Submenu */
.submenu {
    list-style: none;
    padding: 10px;
    padding-left: 18px;
    margin-top: 6px;
    display: none;
    background: #e3dada21;
    border-radius: 3px;
}

.submenu li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 14px;
}

.submenu li:last-child {
    margin-bottom: 0;
}

.submenu li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background-color: #F6FEA9;
    border-radius: 32px;
}

/* Active state */
.menu-item.active>.submenu {
    display: block;
}

.menu-item.active .menu-arrow {
    transform: rotate(180deg);
}


.bottom-links {
    background: #1a1a1a;
    padding: 0 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    margin-top: 204px;
    display: flex;
    gap: 50px;
    justify-content: flex-end;
    align-items: center;
}

.bottom-links a {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 23px;

}

.bottom-links span {
    width: 1px;
    height: 72px;
    background: #ffffff1f;
}

.bottom-links .btn-danger {
    background: #d63232;
    border: none;
    border-radius: 0;
    padding: 25px 31px;
    transition: all 0.3 ease-in-out;
}

.bottom-links .btn-danger:hover {
    background: #111111;
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #f8f9fa26;
    border-color: var(--bs-btn-hover-border-color);
}



.tab-wrapper {
    text-align: center;
    display: block;
    margin: auto;
    max-width: 500px;
}

.tabs {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.tab-link {
    margin: 0 1%;
    list-style: none;
    padding: 10px 40px;
    cursor: pointer;
    font-weight: 700;
    transition: all ease 0.5s;
    border-bottom: solid 3px rgba(255, 255, 255, 0);
    letter-spacing: 1px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: rgba(0, 0, 0, 0.85);
}

.tab-link:hover {
    color: #999;
    border-color: #999;
}

.tab-link.active {
    color: #333;
    border-color: #333;
}

.tab-link:nth-of-type(1).active {
    color: #BA231F;
    border-color: #BA231F;
}

.tab-link:nth-of-type(2).active {
    color: #004372;
    border-color: #004372;
}

.content-wrapper {
    padding: 40px 10px;
}

.tab-content {
    display: none;
    text-align: center;
    color: #888;
    font-weight: 300;
    font-size: 15px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards;
}

.tab-content.active {
    display: block;
}

.vision-section .tab-ul {
    padding-left: 17px;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.vision-section .tab-ul li {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: start;
    font-size: 16px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: rgba(0, 0, 0, 0.85);
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.vision-section .tab-ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/right.svg");
}

.tab-inner-img img {
    width: auto;
    height: auto;
}

section.vision-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/bg-polygon.png) no-repeat center center !important;
    background-size: cover;
    opacity: 0.7;
    z-index: 0;
    top: 30%;
}

.vision-section p {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: start;
    font-size: 16px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: rgba(0, 0, 0, 0.85);
}

.vision-section h5 {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: start;
    font-size: 17px;
    font-weight: 600;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #BA231F;
}

.vision-section {
    padding: 70px 0 70px 0;
    position: relative;
    background: #f3f4fd;
}

.table-section {
    padding: 70px 0 70px 0;
    position: relative;
}

.table-section .content-box {
    box-shadow: 0 5px 18px hsl(202deg 88% 20% / 10%);
    padding: 50px 44px;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}

.table-container {
    border: 1px solid #00427263;
    border-radius: 5px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-section table {
    width: 100%;
    border-collapse: collapse;
    margin-inline: auto;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    min-width: 600px;
}

.table-section table th,
.table-section table td,
.table-section table caption {
    padding: 1rem;
    text-align: center;
    white-space: nowrap;
}

table th:nth-child(1) {
    background: #fffaee;
    border-radius: 5px 0 0 0;
    border-right: 7px solid #fff;
}

table th:nth-child(2) {
    background: #e5f4fb;
}

table th:nth-child(3) {
    background: #e3f4df;
    border-left: 7px solid #fff;
}

table th:nth-child(4) {
    background: #dfedf4;
    border-radius: 0 5px 0 0;
    border-left: 7px solid #fff;
}

table td {
    border-bottom: 1px dashed #0042722d;
    font-weight: 400;
    font-size: 16px;
    color: #686868;
}

table tr:last-child td {
    border-bottom: none;
}

table col:nth-child(2) {
    background: #f4feff;
}

caption,
th,
td {
    text-align: center;
}

.news-slider .register-btn {
    position: relative;
    z-index: 12;
    background: #b22222;
    color: #fff;
    padding: 18px 28px;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    cursor: pointer;
    margin: 20px;
    right: 0;
    bottom: 0;
}



@media (max-width: 650px) {

    td:nth-of-type(1)::before {
        background: #e3f4df;
    }

    td:nth-of-type(2)::before {
        background: #e5f4fb;
    }

    td:nth-of-type(3)::before {
        content: attr(data-cell);
        background: #fffaee;
    }
}

#news-slider {
    margin-top: 20px;
}

.news-marquee-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: transparent;
}

.news-marquee {
    display: flex;
    flex-wrap: nowrap;
    animation: scroll-left linear infinite;
    will-change: transform;
}

.post-slide {
    flex: 0 0 400px;
    /* fixed width */
    margin-right: 0;
    box-sizing: border-box;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

    /* move half the total width for seamless loop */
}

/* Pause on hover */
.news-marquee:hover {
    animation-play-state: paused;
}

@media (max-width: 600px) {
    .post-slide {
        flex: 0 0 300px;
        margin-right: 15px;
    }
}


.post-slide {
    margin: 20px 15px 20px;
    border-radius: 15px;
    padding-top: 1px;
    box-shadow: 0px 8px 18px -9px #bbcbd878;

}

.post-slide .post-img {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 0;
    margin: 0;
    margin-left: 0;
}

.post-slide .post-img img {
    width: 100%;
    height: auto;
    transform: scale(1, 1);
    transition: transform 0.2s linear;
}

.post-slide:hover .post-img img {
    transform: scale(1.1, 1.1);
}

.post-slide .over-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: linear-gradient(-45deg, rgba(6, 190, 244, 0.75) 0%, rgba(45, 112, 253, 0.6) 100%);
    transition: all 0.50s linear;
}

.post-slide:hover .over-layer {
    opacity: 1;
    text-decoration: none;
}

.post-slide .over-layer i {
    position: relative;
    top: 45%;
    text-align: center;
    display: block;
    color: #fff;
    font-size: 25px;
}

.post-slide .post-content {
    padding: 20px 40px;
    border-radius: 15px;
    background: linear-gradient(45deg, #e5f4fb, #f3f4fd);
    color: #fff;
    height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-slide .post-title a {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    display: inline-block;
    text-transform: capitalize;
    transition: all 0.3s ease 0s;
}

.post-slide .low-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.post-slide .post-title a:hover {
    text-decoration: none;
    color: #3498db;
}

.post-slide .post-description {
    line-height: 24px;
    color: #808080;
    margin-bottom: 25px;
}

.post-slide .post-date {
    color: #a9a9a9;
    font-size: 14px;
    display: flex;
}

.post-slide .post-date i {
    font-size: 20px;
    margin-right: 8px;
    color: #CFDACE;
}

.post-slide .read-more {
    padding: 7px 20px;
    float: right;
    font-size: 12px;
    background: #004372;
    color: #ffffff;
    box-shadow: 0px 10px 20px -10px #1376c5;
    border-radius: 25px;
    text-transform: capitalize;
    text-decoration: none;
}

.post-slide .read-more:hover {
    background: #3498db;
    text-decoration: none;
    color: #fff;
}

.owl-controls .owl-buttons {
    text-align: center;
    margin-top: 20px;
}

.owl-controls .owl-buttons .owl-prev {
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 0 18px 0 15px;
    border-radius: 50px;
    box-shadow: 3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-next {
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 0 15px 0 18px;
    border-radius: 50px;
    box-shadow: -3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
    content: "\f104";
    font-family: FontAwesome;
    color: #333;
    font-size: 30px;
}

.owl-controls .owl-buttons .owl-next:after {
    content: "\f105";
}

.news-link {
    color: #BA231F;
    border-bottom: 1px solid #BA231F;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

@media only screen and (max-width:1280px) {
    .post-slide .post-content {
        padding: 0px 15px 25px 15px;
    }
}

/*section.head_bg.desk_menu {*/
/*     background: linear-gradient(180deg, rgb(0 0 0 / 9%), transparent); */
    /*background-image: linear-gradient(#e7534b, #e02b20);*/
/*}*/
section.head_bg.desk_menu {
    background: linear-gradient(180deg, rgb(0 0 0 / 9%), transparent);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
section.head_bg.desk_menu.scrolled {
    background: rgb(0 0 0 / 23%);
    backdrop-filter: blur(30px);
    border-bottom: 2px solid #4b4a4ae3;
}



.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.logo-text {
    font-size: 24px;
    text-align: left;
    line-height: 25px;
    color: white;
    font-family: "Roboto Serif", serif;
    font-weight: 400;
    margin-bottom: 8px;
}

.logo-text-sm {
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    color: white;
    font-family: "Roboto Serif", serif;
    margin-bottom: 0;
}

.logo-text-lg {
    font-size: 12px;
    text-align: start;
    color: white;
    font-family: "Roboto Serif", serif;
    font-weight: 400;
    margin-bottom: 0;
    border-left: 1px solid #8080805e;
    padding: 13px 0;
    padding-left: 20px;
}

.logo-wrap img {
    /*width: 100px;*/
    height: 100px;
}

.logo-wrap-all {
    display: flex;
    align-items: center;
    gap: 25px;
}

.desk-menu {
    padding: 15px 0;
}

.dashboard-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: #ffffff;
    /*margin-top: 129px;*/
    margin-top: 0;
}

.dashboard-hero header.hero {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    height: auto;
    background: transparent !important;
    color: #fff;
    z-index: 60;
    pointer-events: none;
    margin: 0;
    padding-bottom: 0;
}

.dashboard-hero header.hero .top-border,
.dashboard-hero header.hero .top-bar,
.dashboard-hero header.hero .brand-center,
.dashboard-hero header.hero .right-pills,
.dashboard-hero header.hero .register-btn {
    pointer-events: auto;
}

.dashboard-hero header.hero .top-border {
    padding: 10px 0;
    padding-right: 20px;
    /*background: rgb(0 0 0 / 25%);*/
    /*backdrop-filter: blur(7px);*/
    top: 126px;
    transition:
        background-color 0.3s ease,
        backdrop-filter 0.3s ease,
        transform 0.3s ease;
}

.dashboard-hero header.hero .top-border.scrolled {
    background: rgb(0 0 0 / 23%);
    transform: translateY(0);
    backdrop-filter: blur(30px);
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: ease;
    z-index: 0;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 6%;
    /*background: linear-gradient(90deg, rgba(16, 22, 58, 0.62) 0%, rgba(16, 22, 58, 0.15) 42%, rgba(16, 22, 58, 0) 100%);*/
    background: linear-gradient(180deg, rgb(0 0 0 / 36%) 0%, rgb(0 0 0 / 15%) 42%, rgba(16, 22, 58, 0) 100%), linear-gradient(180deg, rgb(0 0 0 / 33%), #00000000);
    z-index: 30;
}

.hero-slide-content {
    max-width: 720px;
    color: #ffffff;
    position: relative;
    z-index: 99;
    padding-top: 50px;
}

.hero-slide-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 70;
}

.hero-slide-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
    z-index: 70;
}

.hero-slide-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    z-index: 70;
}

.hero-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.9rem;
    border-radius: 999px;
    background: #ba231f;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    z-index: 99;
}

.hero-slide-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(186, 35, 31, 0.28);
    color: #ffffff;
}


.top-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-list .nav-link {
    display: block;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.dropdown-toggle::after {
    display: none !important;
}

.nav-link.dropdown-toggle i {
    font-size: 14px;
    transition: transform 0.25s ease;
}

/* .nav-link.dropdown-toggle[aria-expanded="true"],
.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
} */

/* Chevron default */
.nav-link.dropdown-toggle i {
    font-size: 14px;
    transition: transform 0.25s ease;
}

/* Rotate ONLY the icon */
.nav-link.dropdown-toggle[aria-expanded="true"] i,
.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}


.top-list .dropdown-menu li {
    position: relative;
    border-bottom: 1px solid rgb(186 35 31 / 10%);
    margin: 0 10px;
}

.top-list .dropdown-menu li:last-child {
    border-bottom: none;
}

.top-list li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 260px;
    padding: 10px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #222;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
}

/* Hover (Desktop) */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Active (Click) */
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.active>.dropdown-menu {
    display: block;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 0;
    justify-content: center;
}

.tool-item {
    display: flex;
    align-items: center;
}

.font-controls {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Trigger button */
.font-controls .font-trigger {
    background: transparent;
    border: 1px solid #ba231f61;
    color: #fff;
    border-radius: 30px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}
.font-controls .font-trigger  {
    border: 1px solid #ba231f;
    background: #ffffff;
    color: #fff;
    font-size: 14px;
    padding: 4px 17px;
    margin-left: 0;
    cursor: pointer;
}

/* A icon */
.font-icon {
    font-size: 20px;
    font-weight: 600;
    color: #ba231f;
}

/* Arrows */
.arrows {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.arrow {
    width: 6px;
    height: 6px;
    border-right: 2px solid #ba231f;
    border-bottom: 2px solid #ba231f;
}

.arrow.up {
    transform: rotate(-135deg);
    color: #ba231f;
}

.arrow.down {
    transform: rotate(45deg);
}

/* Dropdown */
.font-dropdown {
    position: absolute;
    top: 42px;
    right: 0;
    background: #fff;
    color: #000;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 6px 0;
    width: 140px;
    list-style: none;
    display: none;
    z-index: 10;
}

/* Dropdown items */
.font-dropdown li {
    padding: 6px 14px;
    cursor: pointer;
    font-size: 14px;
}

/* Hover */
.font-dropdown li:hover {
    background: #f2f2f2;
}

/* Active */
.font-dropdown li.active {
    background: #ffe7e6;
    font-weight: 600;
}

/* Show dropdown */
.font-controls.open .font-dropdown {
    display: block;
}




/* Search */
.search-wrapper {
    position: relative;
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
}

.search-icon img {
    width: 40px;
}

.search-input {
    position: absolute;
    right: 42px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    opacity: 0;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Active state */
.search-wrapper.active .search-input {
    width: 200px;
    opacity: 1;
    pointer-events: auto;
}


/* Font size */
.font-controls button {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 14px;
    padding: 4px 8px;
    margin-left: 0;
    cursor: pointer;
}

.font-controls button.active {
    background: #fff;
    color: #d63031;
}

/* ERP */
.erp-btn {
    background: #ba231f;
    color: #fff;
    padding: 7px 25px;
    text-decoration: none;
    border-radius: 999px;
    margin-bottom: 0;
    border: 1px solid #ffcccc3b;
    font-family: "Roboto Serif", serif;
    font-weight: 400;
}

body {
    top: 0 !important;
    position: static !important;
}

.translate-box {
    position: relative;
    cursor: pointer;
}

.translate-panel {
    position: absolute;
    top: 42px;
    right: 30px;
    left:10px;
    background: #ffffff;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    display: none;
    z-index: 10000;
    min-width: 210px;
}

.translate-box.active .translate-panel {
    display: block;
}

.translate-panel select.goog-te-combo {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #fff;
    color: #000;
}

.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0;
    margin: 0;
}

.goog-te-banner-frame {
    display: none !important;
}

.rts-section-gap {
    padding: 60px 0;
}

.pre-title {
    text-transform: uppercase;
    color: #00a39c;
    font-size: 14px;
}

.title {
    font-family: Georgia, serif;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.1;
    margin: 0 0 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.single-testimonials-style {
    background: rgba(186, 35, 31, 0.051);
    padding: 20px;
    border-radius: 12px;
    height: 100%;
    border: 1px solid #ba231f;
    box-shadow: 2px 2px 14px rgb(186 35 31 / 9%);
    display: flex;
    flex-direction: column;
    min-height: 290px;
}

.single-testimonials-style .disc {
    margin: 15px 0;
    color: rgb(0 0 0);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    text-align: center;
    line-height: 25px;
}

.single-testimonials-style .name {
    margin-top: 20px;
    font-weight: 600;
    color: #ba231f;
}

.stars-area i {
    color: #ff9f1c;
}

/* VIDEO CARD */
.video-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    display: block;
    height: 248px;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* SWIPER */
.swiper-container-h1 {
    width: 100%;
    padding-bottom: 64px !important;
    overflow: hidden;
}

.swiper-slide {
    height: auto;
}

/* limit pagination width to exactly 3 bullets */
.swiper-pagination {
    margin: 30px auto 0;
    overflow: hidden;
    white-space: nowrap;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #000;
    opacity: 0.2;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ba231f !important;
    width: 15px !important;
    height: 7px !important;
    border-radius: 7px !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}

.ts-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.ts-video-modal.is-open {
    display: flex;
}

.ts-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.ts-video-modal__dialog {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 90%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.ts-video-modal__close {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 2;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tsVideoIframe {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial-tabs {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #ba231f;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
}

.tab-btn.active {
    background: #ba231f;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.quick-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.qc-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.qc-btn.whatsapp {
    background: #25D366;
}

.qc-btn.call {
    background: #0b5ed7;
}

.qc-btn.enquiry {
    background: #ffbf00;
}

.enquiry-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 360px;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 10000;
}

.enquiry-panel.active {
    right: 0;
}

.enquiry-header {
    display: flex;
    justify-content: space-between;
    padding: 29px 20px;
    background: #ffffff;
    color: #ba231f;
    border-bottom: 2px solid #ba231f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.enquiry-header h4 {
    margin-bottom: 0;
    font-size: 28px;
    line-height: 37px;
}

.enquiry-panel form {
    padding: 16px;
    padding-top: 30px;
}

.enquiry-panel input,
.enquiry-panel select,
.enquiry-panel textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid #d3d3d3;
    border-radius: 7px;

}

.help-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0b1f33;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
}

.btn-submit {
    background: #ba231f;
    border: 0;
    border-radius: 40px;
    padding: 9px 21px;
}

#closeEnquiry {
    background: #ba231f;
    color: #fff;
    font-size: 33px;
    line-height: 10px;
    border-radius: 34px;
    padding: 11px 8px;
}

.enquiry-note {
    margin: 14px;
    font-size: 14px;
    color: #676767;
    line-height: 1.5;
    border-top: 1px dashed #ddd;
    padding: 16px 0;
}


.academics-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.section-header {
    max-width: 800px;
    margin-bottom: 50px;
}

.section-header .pre-title {
    font-size: 14px;
    color: #ba231f;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-header .pre-title::before {
    content: "";
    position: relative;
    display: inline-block;
    width: 15px;
    height: 4px;
    border-radius: 17px;
    background-color: #ba231f;
    margin-right: 10px;
    bottom: 4px;
}

.section-header h2 {
    font-family: Georgia, serif;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.1;
    margin: 0 0 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-header p {
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: rgba(0, 0, 0, 0.85);
    font-size: clamp(12px, 1.6vw, 16px);
    margin: 0 auto;
    max-width: 100%;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.0);
    font-size: 16px;
    padding-top: 10px;
}

/* Grade Grid */
.grade-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.grade-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grade-card:hover {
    transform: translateY(-4px);
    border: 1px solid #ba231f;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.grade-card h4 {
    color: #ba231f;
    margin-bottom: 4px;
}

.grade-card span {
    font-size: 13px;
    color: #777;
}

.grade-card p {
    margin: 12px 0;
    font-size: 16px;
    color: #555;
    line-height: 23px;
}

.grade-card ul {
    padding-left: 18px;
}

.grade-card ul li {
    font-size: 16px;
    margin-bottom: 6px;
    color: #444;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-wrap {
    background: #fff;
    padding: 22px;
    border-radius: 5px;
    border-left: 4px solid #ba231f;
}

.feature-wrap h5 {
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-wrap p {
    font-size: 16px;
    line-height: 23px;
    color: #555;
}

.feature-wrap--image {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-wrap--image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

/* Image container */
.feature-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-bottom: 20px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Text content */
.feature-wrap--image h5 {
    font-size: 16px;
    margin: 14px 16px 6px;
    color: #111;
}

.feature-wrap--image p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 16px 18px;
}

.school-location-section {
    padding: 60px 0 30px;
    background: #f9f9f9;
}

/* Title */
.location-title {
    text-align: center;
    margin-bottom: 30px;
}

.location-title .pre-title {
    display: block;
    font-size: 14px;
    color: #ba231f;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
}

.location-title h2 {
    font-family: Georgia, serif;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.1;
    margin: 0 0 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Full-width map */
.location-map-full {
    width: 100%;
    height: 420px;
}

.location-map-full iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* CTA */
.location-cta {
    text-align: center;
    margin-top: 30px;
}

.map-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ba231f;
    color: #fff;
    border-radius: 30px;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.map-btn:hover {
    background: #9f1d1a;
}

.virtual-tour-section {
    padding: 60px 0;
    background: #ffffff;
}

.virtual-tour-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Text side */
.virtual-tour-content .pre-title {
    color: #ba231f;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.virtual-tour-content h2 {
    font-size: 36px;
    margin: 10px 0 16px;
}

.virtual-tour-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
}

.tour-points {
    list-style: none;
    padding: 0;
    margin-bottom: 26px;
}

.tour-points li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}

.tour-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ba231f;
    font-size: 20px;
    line-height: 1;
}

.tour-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #ba231f;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
}

.street-view-frame {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

/* Iframe */
.street-view-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Soft overlay helper */
.street-view-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  pointer-events: none;
}

 .header-hero {
    margin-top: 0;
    background-image: linear-gradient(to bottom, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 32%) 30%), url(../images/banner.png);
    background-position: center;
    min-height: 520px;
    height: auto;
    position: relative;
    color: #fff;
    overflow: hidden;
}
 .header-hero .register-btn {
    position: absolute;
    right: 80px;
    bottom: 24px;
    z-index: 12;
    background: #b22222;
    color: #fff;
    padding: 18px 28px;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    cursor: pointer;
}

.breadcrumbs {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 60px;
            z-index: 11;
            width: auto;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            text-align: center;
        }
.breadcrumbs h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: clamp(28px, 4.4vw, 56px);
    margin: 0 0 8px;
    color: #ffffff;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
    line-height: 1.05;
}
        .about-us .hero-content {
            position: relative;
            left: 0;
            transform: 0;
            width: 100%;
            top: 0;
            transform: 0;
            text-align: left;
            padding: 0 16px;
            pointer-events: none;
            display: flex;
            flex-direction: column;
            align-items: start;
        }
        section.about-us::before {
            background: none;
        }
         .about-us .hero-img img {
            width: 100%;
            height: auto;
        }
        .news-marquee-wrap {
            padding-left: 0 !important;
            margin-left: 0 !important;
            padding-right: 0 !important;
            margin-right: 0 !important;
        }
        #news-marquee {
            position: relative;
            left: 0 !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
        }
        #news-marquee .post-slide:first-child {
            margin-left: 0 !important;
        }
        .news-marquee-wrap .container-fluid,
        .news-marquee-wrap .row,
        .news-marquee-wrap .col-md-12 {
            padding-left: 0 !important;
            margin-left: 0 !important;
        }
        
        /* Modal overlay */
.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Modal box */
.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #fff;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
}

/* Image */
.image-modal-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Close button */
.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    background: #c00000;
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 0;
}

.modal-close:hover {
    background: #900000;
}
.social-link-dev{
    padding: 30px 0;
}
.social-links  {
    border-radius: 27px;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    padding: 8px 0px;
    background:#BA231F;
} 
.social-links i{
    width: 36px;
    height: 36px;
    border-radius: 18px;
    border: none;
    color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

.feature-container{
    max-width: 1600px;
}

/* Open button */
.open-btn {
  padding: 10px 20px;
  background: #35BCF3;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup box */
.popup-form {
  background: #fff;
  padding: 25px;
  width: 100%;
  max-width: 700px;
  border-radius: 10px;
  position: relative;
    margin: 15px;
    transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.35s ease;
}
.popup-overlay.active .popup-form {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.popup-form h3{
    padding: 20px 0;
}
/* Close button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 39px;
  cursor: pointer;
}

/* Form */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Submit button */
.submit-btn {
  width: 100%;
  padding: 10px;
  background: #BA231F;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #e63946; /* change to your brand color */
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: #c62828;
}
/*.fb-wrapper {*/
/*  max-width: 380px;*/
/*  width: 100%;*/
/*}*/

.fb-wrapper iframe {
  width: 100% !important;
}
/*.yt-wrapper {*/
/*  max-width: 380px;*/
/*  width: 100%;*/
/*}*/

.yt-wrapper iframe {
  width: 100% !important;
  height: 344px; /* 16:9 ratio */
  border-radius: 6px;
}
