/* Import Exact Figma Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;800&family=League+Spartan:wght@400;800&family=Montserrat:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&family=League+Spartan:wght@400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@700;800&family=Montserrat:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;800&family=League+Spartan:wght@300;800&display=swap');
/* ==========================================================================
   Global Root Variables & Design System Tokens
   ========================================================================== */

:root {
    /* ----------------------------------------------------------------------
       1. Global Typography
       ---------------------------------------------------------------------- */
    --font-heading: 'Spartan', sans-serif; /* Unified Heading Font across whole site */
    --font-spartan: 'Spartan', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;

    /* Section-Scoped Typography Mapping (Inherits Global Spartan) */
    --bos-events-font-heading: var(--font-heading);
    --bos-events-font-body: var(--font-montserrat);
    
    --bos-about-font-spartan: var(--font-heading);
    --bos-about-font-inter: var(--font-inter);
    
    --bos-classes-font: var(--font-heading);
    --events-classes-font: var(--font-heading);
    
    --events-admin-font-heading: var(--font-heading);
    --events-admin-font-body: var(--font-montserrat);
    
    --events-facilities-font-heading: var(--font-heading);

    /* ----------------------------------------------------------------------
       2. Brand & Core Palette
       ---------------------------------------------------------------------- */
    --brand-red: #B82328;
    --brand-orange: #E54818;

    /* ----------------------------------------------------------------------
       3. News & Events Section
       ---------------------------------------------------------------------- */
    --bos-events-orange: #E54818;
    --bos-events-black: #000000;
    --bos-events-card-bg: #F5F8FF; /* Light soft blue card background */
    --bos-events-blue-arrow: #2B6CB0;

    /* ----------------------------------------------------------------------
       4. About Us Section
       ---------------------------------------------------------------------- */
    --bos-about-color-red: #CF1605;
    --bos-about-color-mission-blue: #343985;
    --bos-about-color-focus-blue: #3771C8;
    --bos-about-color-dark-title: #181818;
    --bos-about-color-text-gray: #808080;

    /* ----------------------------------------------------------------------
       5. Classes Offered Section
       ---------------------------------------------------------------------- */
    --bos-classes-bg-blue: #343985; /* Deep Navy Blue Background */
    --bos-classes-text-black: #000000;
    --events-classes-bg-blue: #303883; /* Deep Navy Blue */
    --events-classes-text-black: #000000;
    --events-brand-orange: #E54818;

    /* ----------------------------------------------------------------------
       6. School Administrations Section
       ---------------------------------------------------------------------- */
    --events-admin-primary-blue: #3262CC;
    --events-admin-orange: #D84D10;
    --events-admin-dark: #121212;
    --events-admin-gray: #757575;
    --events-admin-badge-blue: #3771C8; /* Exact Figma Frame 15461 Blue */
    --events-admin-bg-gradient: linear-gradient(179.94deg, #FFFFFF 0.05%, #DCE9F9 107.86%);

    /* ----------------------------------------------------------------------
       7. Our Facilities Section
       ---------------------------------------------------------------------- */
    --events-facilities-orange: #E54818;
    --events-facilities-yellow: #FFC812;
}

/* Base Heading Style Application */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}


body {
    margin: 0;
    padding: 0;
    font-family: var(--font-inter);
    overflow-x: hidden;
}



/* ==========================================
   Global Section Variables & Overlay
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: auto;
    background: linear-gradient(180.21deg, #FFC0A6 -22.29%, #FFFFFF 101.62%);
    padding-bottom: 40px;
    overflow: hidden;
}

/* Background Diagonal Grid Lines Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1728px;
    height: 100%;
    background-image: repeating-linear-gradient(
        60deg,
        transparent,
        transparent 120px,
        rgba(255, 255, 255, 0.31) 120px,
        rgba(255, 255, 255, 0.31) 121px
    );
    pointer-events: none;
    z-index: 1;
}

/* ==========================================
   Top Header Bar
   ========================================== */
.top-bar {
    font-size: 13px;
    font-weight: 500;
}

.top-info span {
    color: #000000;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-image-icon {
    display: block;
    height: 18px;
    width: auto;
    transition: opacity 0.3s ease;
}

.social-icons a:hover .social-image-icon {
    opacity: 0.7;
}

/* ==========================================
   Main Navigation Bar
   ========================================== */
.custom-navbar {
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
}

.school-logo {
    max-height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    padding: 6px 12px !important;
}

.navbar-nav .nav-link.active {
    color: #DB4101;
    font-weight: 700;
    border-bottom: 2px solid #DB4101;
}

.btn-contact {
    background-color: #DB4101;
    color: #FFFFFF !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: none;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-contact:hover {
    transform: translateY(-1px);
    background-color: #b83300;
}

/* ==========================================
   Left Content Frame
   ========================================== */
.frame-15454 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 542px;
}

/* Welcome Badge */
.frame-15406 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 16px;
    height: 33px;
    background: #FFF2EF;
    border: 1px solid #FFFFFF;
    border-radius: 30px;
}

.welcome-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #000000;
    white-space: nowrap;
}

/* Responsive Main Heading */
.hero-main-title {
    font-family: 'League Spartan', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 50px);
    line-height: 1.15;
    color: #000000;
    margin: 0;
}

.hero-main-title .sub-title {
    display: block;
    font-weight: 300;
    font-size: clamp(24px, 4vw, 42px);
    letter-spacing: 0.5px;
}

/* Enrollment Card */
.frame-15409 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 6px 15px 6px 6px;
    gap: 12px;
    width: fit-content;
    max-width: 100%;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.04);
}

.frame-15408 {
    display: flex;
    align-items: center;
}

.ellipse-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    object-fit: cover;
}

.ellipse-avatar:not(:first-child) {
    margin-left: -14px;
}

.enrollment-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, 2vw, 15px);
    color: #000000;
}

.enrollment-text .highlight {
    font-weight: 800;
    font-size: clamp(16px, 2.5vw, 18px);
}

/* ==========================================
   Right Image Frame & Floating Indicators
   ========================================== */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 799px;
    margin: 0 auto;
}

.frame-15475 {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(352.84deg, rgba(255, 255, 255, 0.2) 5.24%, rgba(0, 0, 0, 0.2) 93.31%), #FFFFFF;
    border: 8px solid #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vertical Carousel Dots Indicator */
.frame-15410 {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    z-index: 3;
}

.dot {
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot-active {
    width: 18px;
    height: 18px;
    background: #F9AD0B;
}

.dot-inactive {
    width: 14px;
    height: 14px;
    background: #FFFFFF;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   Bottom Stats Card
   ========================================== */
.stats-card {
    background: #000000 !important;
}

.stat-number {
    font-family: 'League Spartan', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 3.5vw, 36px);
    color: #FFFFFF;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
}

.stats-item {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================
   Responsive Breakpoint Adjustments
   ========================================== */
   /* ==========================================
   Header & Navbar Fixes
   ========================================== */
.custom-navbar {
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
}

.school-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    padding: 8px 16px !important;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #DB4101;
    font-weight: 700;
}

/* Contact Button */
.btn-contact {
    background-color: #DB4101;
    color: #FFFFFF !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: none;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-contact:hover {
    transform: translateY(-1px);
    background-color: #b83300;
}

/* ==========================================
   Mobile-Specific Menu Drawer Overrides
   ========================================== */
@media (max-width: 991.98px) {
    /* Retain pill shape on mobile container */
    .custom-navbar {
        border-radius: 50px !important;
    }

    /* Offcanvas Slide-Out Drawer Customization */
    .offcanvas {
        max-width: 280px;
        background-color: #ffffff;
    }

    .offcanvas-body .navbar-nav .nav-link {
        font-size: 18px;
        padding: 12px 0 !important;
        border-bottom: 1px solid #f2f2f2;
    }

    .offcanvas-body .navbar-nav .nav-link.active {
        border-bottom: 2px solid #DB4101;
    }

    /* Custom hamburger toggle styling */
    .navbar-toggler-icon {
        width: 22px;
        height: 22px;
    }
}
/* ==========================================
   Floating Custom Navbar Base
   ========================================== */
.custom-navbar {
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.school-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    padding: 8px 16px !important;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #DB4101;
    font-weight: 700;
}

.btn-contact {
    background-color: #DB4101;
    color: #FFFFFF !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: none;
    transition: transform 0.2s, background-color 0.2s;
}

/* ==========================================
   Mobile Dropdown Overlay Fixes (Max-Width 991px)
   ========================================== */
@media (max-width: 991.98px) {
    /* Position the expanded collapse as an absolute float card */
    .custom-mobile-collapse {
        position: absolute;
        top: calc(100% + 10px); /* Hangs right below the main pill bar */
        left: 0;
        right: 0;
        width: 100%;
        background-color: #FFFFFF !important; /* Solid background so text isn't see-through */
        border-radius: 20px;
        padding: 10px 20px;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15); /* Clean drop-shadow overlay */
        z-index: 9999 !important;
    }

    .custom-mobile-collapse .nav-link {
        font-size: 16px;
        padding: 10px 0 !important;
        border-bottom: 1px solid #F0F0F0;
    }

    .custom-mobile-collapse .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}
@media (max-width: 991.98px) {
    .hero-image-wrapper {
        padding-right: 20px;
    }
    .frame-15410 {
        right: 0px;
    }
    .stats-item {
        border-right: none;
    }
}

@media (max-width: 575.98px) {
    .frame-15475 {
        border-width: 5px;
    }
    .frame-15410 {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 12px;
    }
    .hero-image-wrapper {
        padding-right: 0;
    }
    .frame-15409 {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }
}
/* end  */


/* ==========================================
Map Card Container
========================================== */




/* footer css  */
/* Main Wrapper & Font */
/* ==========================================================================
   FOOTER STYLES WITH UPWARD GLOW OVERLAP
   ========================================================================== */

.footer-wrapper {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding-top: 0;
  font-family: 'Spartan', sans-serif;
  background-color: transparent; /* Allows blur background to blend smoothly */
  overflow: visible !important;   /* Crucial: Allows blurs to bleed into the section above */
}

/* Background Blurs (Positioned negative-top to reach the section above) */
.footer-blur-left {
  position: absolute;
  width: min(750px, 50vw);
  height: min(750px, 50vw);
  left: -80px;
  top: -320px; /* Pulls the orange glow behind the video card above */
  background: #FFC0A6;
  filter: blur(140px);
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}

.footer-blur-right {
  position: absolute;
  width: min(750px, 50vw);
  height: min(750px, 50vw);
  right: -80px;
  top: -280px; /* Pulls the purple/blue glow behind the video card above */
  background: #C3C2FF;
  filter: blur(140px);
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}

/* White Floating Footer Card */
.footer-card {
  position: relative;
  z-index: 3; /* Keeps white card above the ambient blur background */
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
}

/* Custom Element Details */
.footer-center-logo {
  max-height: 55px;
  object-fit: contain;
}

.footer-intro-text,
.about-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
}

.social-image-icon {
  width: 32px;
  height: 32px;
  display: block;
  transition: transform 0.2s ease;
}

.social-image-icon:hover {
  transform: translateY(-2px);
}

.contact-title,
.column-heading {
  font-size: 14px;
  line-height: 140%;
}

.column-heading {
  color: #DB4101;
}

.address-block,
.phone-email-block,
.link-item {
  font-size: 14px;
  line-height: 140%;
}

.link-item {
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-item:hover,
.link-item.active {
  font-weight: 700;
  color: #DB4101;
}

.copyright-bar {
  width: 100%;
}

.copyright-bar span {
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .footer-blur-left {
    top: -220px;
    filter: blur(100px);
  }
  .footer-blur-right {
    top: -200px;
    filter: blur(100px);
  }
}
.bos-contact-section{
    position: relative;
    background: transparent !important; /* Lets the footer blur show through behind it */
    z-index: 2; /* Sits above the blur background, but below the white footer card */
    padding-bottom: 60px;
}
.bos-life-section {
    position: relative;
    background: transparent !important; /* Lets the footer blur show through behind it */
    z-index: 2; /* Sits above the blur background, but below the white footer card */
    padding-bottom: 60px;
}

/* abuout page css */
/* ABOUT US Badge */

/* ==========================================
   Section Base
   ========================================== */
.bos-about-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

.bos-about-relative-z {
    position: relative;
    z-index: 2;
}

/* ==========================================
   Left Column: Header & Paragraph Block
   ========================================== */
.bos-about-frame-15427 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    max-width: 615px;
}

.bos-about-frame-15426 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

/* Frame 15415 (ABOUT US Badge) */
.bos-about-frame-15415 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
    background: rgba(207, 22, 5, 0.1);
    border-radius: 30px;
    width: fit-content;
}

.bos-about-badge-text {
    font-family: var(--bos-about-font-inter);
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--bos-about-color-red);
}

/* Title & Description */
.bos-about-main-title {
    font-family: var(--bos-about-font-spartan);
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 36px);
    line-height: 140%;
    color: var(--bos-about-color-dark-title);
    margin: 0;
}

.bos-about-main-title .bos-about-highlight-red {
    color: var(--bos-about-color-red);
}

.bos-about-description-text {
    font-family: var(--bos-about-font-spartan);
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: var(--bos-about-color-text-gray);
    margin: 0;
}

/* ==========================================
   Feature Cards Stack (Frame 15438)
   ========================================== */
.bos-about-frame-15438 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.bos-about-feature-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 11px;
    box-shadow: 0px 1px 16.5px rgba(0, 0, 0, 0.11);
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bos-about-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.bos-about-card-inner-flex {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.bos-about-icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 49px;
    border-radius: 100px;
}

/* Local SVG Image Styling inside Icon Circles */
.bos-about-svg-icon {
    width: 40px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.bos-about-card-title-text {
    font-family: var(--bos-about-font-spartan);
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: var(--bos-about-color-dark-title);
    margin: 0 0 10px 0;
}

.bos-about-card-body-text {
    font-family: var(--bos-about-font-spartan);
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--bos-about-color-text-gray);
    margin: 0;
}

/* Specific Figma Card Widths & Background Colors */
/* Frame 15428: Mission */
.bos-about-card-mission {
    width: 100%;
    max-width: 370px;
    background: rgba(52, 57, 133, 0.05);
    border: 1px solid var(--bos-about-color-mission-blue);
}
.bos-about-icon-bg-mission {
    background: var(--bos-about-color-mission-blue);
}

/* Frame 15430: Focus */
.bos-about-card-focus {
    width: 100%;
    max-width: 430px;
    background: rgba(55, 113, 200, 0.05);
    border: 1px solid var(--bos-about-color-focus-blue);
}
.bos-about-icon-bg-focus {
    background: var(--bos-about-color-focus-blue);
}

/* Frame 15429: Vision */
.bos-about-card-vision {
    width: 100%;
    max-width: 657px;
    background: rgba(207, 22, 5, 0.05);
    border: 1px solid var(--bos-about-color-red);
}
.bos-about-icon-bg-vision {
    background: var(--bos-about-color-red);
}

/* ==========================================
   Right Column: Images & Dot Matrices
   ========================================== */
/* Container Wrapper matching exact Figma Group 418 relative proportions */
.bos-about-image-composition {
    position: relative;
    width: 100%;
    max-width: 763px;
    height: 734px;
    margin: 0 auto;
}

/* Mint Circle Element (Frame 15424) */
.bos-about-mint-circle {
    position: absolute;
    width: 162px;
    height: 161px;
    right: 40px;
    top: 0px;
    background: rgba(16, 185, 129, 0.26);
    border-radius: 100px;
    z-index: 1;
}

/* Base Dot Matrix Styles */
.bos-about-dot-matrix {
    position: absolute;
    display: flex;
    flex-direction: row;
    gap: 12px;
    height: 226px;
    z-index: 1;
}

.bos-about-dot-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0.31;
}

.bos-about-dot-col span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
}

/* Top-Left Dots (Frame 15425) */
.bos-about-matrix-white {
    top: 30px;
    left: 0px;
}

.bos-about-matrix-white .bos-about-dot-col span {
    background: #CCCCCC; /* Dot color visible against white background */
}

/* Bottom-Left Yellow Dots (Frame 15416) */
.bos-about-matrix-yellow {
    bottom: 20px;
    left: 0px;
}

.bos-about-matrix-yellow .bos-about-dot-col span {
    background: #F9AD0B;
}

/* Top Image Frame (Rectangle 168) */
.bos-about-top-img-box {
    position: absolute;
    width: 473px;
    height: 473px;
    left: 45px;
    top: 60px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
}

/* Bottom Overlapping Image Frame (Rectangle 169) */
.bos-about-bottom-img-box {
    position: absolute;
    width: 393px;
    height: 393px;
    left: 325px; /* Overlaps precisely from right edge */
    top: 320px; /* Overlaps vertically */
    border-radius: 10px;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.12);
}

.bos-about-composition-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Rectangle 170 (White Inset Border) */
.bos-about-white-border-inset {
    position: absolute;
    width: 329px;
    height: 341px;
    top: 26px;
    left: 32px;
    border: 5px solid #FFFFFF;
    border-radius: 2px;
    pointer-events: none;
    z-index: 4;
}

/* ==========================================
   Responsive Scaling Down
   ========================================== */
@media (max-width: 1200px) {
    .bos-about-image-composition {
        max-width: 600px;
        height: 580px;
    }

    .bos-about-top-img-box {
        width: 380px;
        height: 380px;
        left: 30px;
        top: 40px;
    }

    .bos-about-bottom-img-box {
        width: 310px;
        height: 310px;
        left: 250px;
        top: 240px;
    }

    .bos-about-white-border-inset {
        width: 260px;
        height: 270px;
        top: 20px;
        left: 25px;
    }
}

@media (max-width: 991.88px) {
    .bos-about-image-composition {
        max-width: 500px;
        height: 480px;
        margin-top: 30px;
    }

    .bos-about-top-img-box {
        width: 320px;
        height: 320px;
        left: 20px;
        top: 30px;
    }

    .bos-about-bottom-img-box {
        width: 260px;
        height: 260px;
        left: 200px;
        top: 200px;
    }

    .bos-about-white-border-inset {
        width: 210px;
        height: 220px;
        top: 20px;
        left: 20px;
        border-width: 4px;
    }

    .bos-about-mint-circle {
        width: 120px;
        height: 120px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .bos-about-image-composition {
        height: 380px;
    }

    .bos-about-top-img-box {
        width: 240px;
        height: 240px;
        left: 10px;
        top: 20px;
    }

    .bos-about-bottom-img-box {
        width: 200px;
        height: 200px;
        left: 130px;
        top: 150px;
    }

    .bos-about-white-border-inset {
        width: 160px;
        height: 170px;
        top: 15px;
        left: 15px;
        border-width: 3px;
    }

    .bos-about-dot-matrix {
        display: none;
    }
}

/* abuout page css */

/* news and events page css  */
.bos-events-section {
    background-color: #FFFFFF;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Header Title */
.bos-events-title {
    font-family: var(--bos-events-font-heading);
    font-weight: 800;
    font-size: clamp(24px, 3.5vw, 36px);
    letter-spacing: 1px;
    color: var(--bos-events-black);
    margin: 0;
    text-transform: uppercase;
}

.bos-events-title .bos-events-highlight {
    color: var(--bos-events-orange);
}

/* Carousel Outer Track Container with Touch Snap */
/* Carousel Outer Track Container */
.bos-events-carousel-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 15px 0 30px 0;
    
    /* Touch Snapping */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    
    /* Hide Scrollbars */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.bos-events-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

/* Horizontal Track Flexbox - Centered Fix */
.bos-events-track {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: max-content;
    
    /* FIX: Centers cards on ultra-wide / zoomed-out screens */
    min-width: 100%;
    justify-content: center;
    
    padding-left: clamp(15px, 4vw, 50px);
    padding-right: clamp(15px, 4vw, 50px);
    box-sizing: border-box;
}

/* Fallback for left-alignment when scrolling on smaller screens */
@media (max-width: 1600px) {
    .bos-events-track {
        justify-content: flex-start;
    }
}

.bos-events-carousel-wrapper:active {
    cursor: grabbing;
}

.bos-events-carousel-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}


/* Individual Event Card Structure */
.bos-events-card {
    box-sizing: border-box;
    width: clamp(230px, 70vw, 280px); /* Responsive fluid width */
    min-height: 200px;
    background: var(--bos-events-card-bg);
    border-radius: 14px;
    padding: 22px 20px 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-shrink: 0;
    scroll-snap-align: start; /* Touch Snap Anchor */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bos-events-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(219, 65, 1, 0.2);
}

/* Date Subtitle */
.bos-events-date {
    font-family: var(--bos-events-font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--bos-events-orange);
    margin-bottom: 8px;
    display: block;
}

/* Main Event Title */
.bos-events-card-title {
    font-family: var(--bos-events-font-heading);
    font-weight: 800;
    font-size: 15px;
    line-height: 1.35;
    color: var(--bos-events-black);
    margin: 0 0 8px 0;
}

/* Event Duration Detail */
.bos-events-duration {
    font-family: var(--bos-events-font-body);
    font-size: 11px;
    font-weight: 500;
    color: #666666;
    margin: 0;
}

/* Bottom Navigation Arrow Link */
.bos-events-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 15px;
    align-self: flex-start;
    transition: transform 0.2s ease;
}

.bos-events-arrow-btn:hover {
    transform: translateX(5px);
}

.bos-events-arrow-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Mobile Devices (max-width: 575px) */
@media (max-width: 575.98px) {
    .bos-events-track {
        gap: 14px;
    }
    .bos-events-card {
        width: 82vw; /* Takes optimal card width on small screens */
        padding: 18px 16px;
    }
    .bos-events-card-title {
        font-size: 14px;
    }
}

/* Tablet Devices (576px - 991px) */
@media (min-width: 576px) and (max-width: 991.98px) {
    .bos-events-card {
        width: 260px;
    }
}
/* news and events page css  */


/* Outer Section */
/* ==========================================
   CLASSES OFFERED SECTION
   ========================================== */

.events-classes-section {
    background-color: var(--events-classes-bg-blue);
    padding-top: 60px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}


/* ==========================================
   SECTION TITLE
   ========================================== */

.events-classes-title {
    font-family: var(--events-classes-font);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 38px);
    letter-spacing: 0.5px;
}


/* ==========================================
   CARD COLUMN
   ========================================== */

.events-classes-section .row > [class*="col-"] {
    display: flex;
}


/* ==========================================
   ALL CARDS - SAME SIZE
   ========================================== */

.events-classes-card {
    width: 100%;
    height: 380px;

    background: #ffffff;

    border-radius: 4px;

    overflow: hidden;

    box-shadow:
        0px 10px 25px rgba(0, 0, 0, 0.25);

    display: flex;
    flex-direction: column;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

    position: relative;

    z-index: 1;
}


/* ==========================================
   HOVER - ANY CARD BECOMES BIGGER
   ========================================== */

.events-classes-card:hover {

    transform: scale(1.08);

    box-shadow:
        0px 18px 40px rgba(0, 0, 0, 0.35);

    z-index: 10;
}


/* ==========================================
   IMAGE
   ========================================== */

.events-classes-img-wrapper {
    width: 100%;
    height: 310px;

    overflow: hidden;

    background-color: #f0f0f0;

    flex-shrink: 0;
}


.events-classes-img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.4s ease;
}


/* Image slightly zooms when card grows */

.events-classes-card:hover .events-classes-img {
    transform: scale(1.04);
}


/* ==========================================
   LABEL
   ========================================== */

.events-classes-label-box {
    width: 100%;
    height: 70px;

    background-color: #ffffff;

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

    padding: 12px 10px;

    box-sizing: border-box;

    flex-shrink: 0;
}


/* ==========================================
   LINK
   ========================================== */

.events-classes-link {
    font-family: var(--events-classes-font);

    font-size: 18px;
    font-weight: 700;

    color: var(--events-classes-text-black);

    text-decoration: underline;

    text-underline-offset: 4px;

    transition:
        color 0.2s ease;
}


.events-classes-link:hover {
    color: var(--events-brand-orange);
}


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

@media (max-width: 991.98px) {

    .events-classes-section {
        padding-top: 50px;
        padding-bottom: 65px;
    }

    .events-classes-card {
        height: 340px;
    }

    .events-classes-img-wrapper {
        height: 275px;
    }

    .events-classes-label-box {
        height: 65px;
    }

    .events-classes-link {
        font-size: 17px;
    }

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


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 767.98px) {

    .events-classes-section {
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .events-classes-section .row {
        align-items: center;
    }

    .events-classes-section .row > [class*="col-"] {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .events-classes-card {
        width: min(100%, 380px);
        height: 340px;
    }

    .events-classes-img-wrapper {
        height: 275px;
    }

    .events-classes-label-box {
        height: 65px;
    }

    .events-classes-card:hover {
        transform: scale(1.03);
    }
}


/* ==========================================
   SMALL MOBILE
   ========================================== */

@media (max-width: 400px) {

    .events-classes-card {
        height: 320px;
    }

    .events-classes-img-wrapper {
        height: 255px;
    }

    .events-classes-label-box {
        height: 65px;
    }

    .events-classes-link {
        font-size: 16px;
    }

    .events-classes-card:hover {
        transform: scale(1.02);
    }
}

/* School Administrations Section */
/* Background Container with Gradient & Watermark */
/* ==========================================================================
   School Administrations Section Styles (Scoped: events-)
   ========================================================================== */

/* Outer Section Box & Figma Linear Gradient */
.events-admin-section {
    background: var(--events-admin-bg-gradient);
    padding: 85px 0 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Circular Seal Watermark (Positioned higher up as per Figma) */
.events-admin-watermark {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 622px;
    height: 622px;
    background: url('../images/bg/administration-bg.png') no-repeat center center;
    background-size: contain;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

/* Dot Pattern Matrix (Top-Left) */
.events-admin-dots {
    position: absolute;
    top: 60px;
    left: 6%;
    width: 150px;
    border-radius: 34%;
    height: 126px;
    background-image: radial-gradient(#DB4101 3px, transparent 3px);
    background-size: 18px 18px;
    opacity: 0.31;
    pointer-events: none;   
}

/* Section Title */
.events-admin-title {
    font-family: var(--events-admin-font-heading, 'League Spartan', 'Spartan', sans-serif);
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: var(--bos-events-black, #000000);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.events-admin-title span {
    color: var(--brand-orange, #E54818);
}

/* --------------------------------------------------------------------------
   Card Layout Structure (Figma Group 417 Structure)
   -------------------------------------------------------------------------- */

.events-admin-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 428px;
    margin: 0 auto;
    filter: drop-shadow(0px 7px 34px rgba(0, 0, 0, 0.12));
    z-index: 1;
}

/* LAYER 1: IMAGE BOX (Figma Mask Group / Rectangle 172) */
.events-admin-img-box {
    position: relative;
    width: 87.5%; /* 374px / 428px ratio in Figma */
    height: 287px;
    border-radius: 100px 4px 4px 4px; /* Exact Figma Top-Left Curve */
    overflow: hidden;
    z-index: 2; /* Sits over the top of the white card */
    background: transparent;
}

.events-admin-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* FLOATING "CHAIRMAN" BADGE (Figma Frame 15461) */
.events-admin-badge {
    position: absolute;
    top: 254px; /* Figma Top offset */
    left: 42%;
    transform: translateX(-50%);
    background-color: var(--events-admin-badge-blue, #3771C8);
    color: #FFFFFF;
    font-family: var(--events-admin-font-heading, 'League Spartan', 'Spartan', sans-serif);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 4px 24px;
    border-radius: 0;
    z-index: 4;
    white-space: nowrap;
}

/* LAYER 2: WHITE CONTENT CARD (Figma Frame 15455) */
.events-admin-content-card {
    background: #FFFFFF;
    width: 100%; /* Spans full 428px width */
    margin-top: -124px; /* Sits partially behind the image box (287px - 163px = 124px offset) */
    padding: 155px 20px 30px 20px; /* Padding-top accommodates the image overlay */
    text-align: center;
    border-radius: 4px 4px 100px 4px; /* Exact Figma Bottom-Right Curve */
    position: relative;
    z-index: 1;
}

/* Member Name */
.events-admin-name {
    font-family: var(--events-admin-font-heading, 'League Spartan', 'Spartan', sans-serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: var(--bos-events-black, #000000);
    margin-bottom: 8px;
}

/* Member Description */
.events-admin-desc {
    font-family: var(--events-admin-font-heading, 'League Spartan', 'Spartan', sans-serif);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--bos-about-color-text-gray, #808080);
    margin: 0;
}

/* Hover Effect */
.events-admin-card-wrapper:hover {
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

/* Responsive Scaling for Small Displays */
@media (max-width: 575.98px) {
    .events-admin-img-box {
        height: 240px;
    }
    .events-admin-badge {
        top: 215px;
    }
    .events-admin-content-card {
        margin-top: -110px;
        padding-top: 135px;
    }
}
/* end  */
/* ==========================================================================
   OUR FACILITIES Carousel Section Styles (Scoped: events-facilities-)
   ========================================================================== */

/* Scoped Root Color Additions */
/* Outer Section Container */
/* Strict Section Clipping to prevent page-level horizontal scrolling */
.events-facilities-section {
    position: relative;
    width: 100%;
    max-width: 100vw;
    padding: clamp(40px, 6vw, 70px) 0 clamp(70px, 9vw, 110px) 0;
    overflow: hidden !important; /* Prevents horizontal scrollbar on body */
    background: linear-gradient(180deg, #E6F3FB 0%, #F8FCFF 50%, #83BD38 90%, #5E991D 100%);
}

/* Grass Field Edge-to-Edge Cover */
.events-facilities-grass-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(100px, 15vw, 180px);
    background: url('../images/bg/our-facilities-section.jpg') no-repeat bottom center;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Header Title Marquee
   -------------------------------------------------------------------------- */

.events-facilities-header-wrapper {
    width: 100%;
    /* overflow: hidden !important; */
    white-space: nowrap;
    margin-bottom: clamp(20px, 4vw, 35px);
    position: relative;
    z-index: 2;
}

.events-facilities-title {
    font-family: var(--events-facilities-font-heading);
    font-size: clamp(36px, 7vw, 90px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    width: max-content;
    animation: facilitiesTitleMarquee 35s linear infinite;
    will-change: transform;
}

@keyframes facilitiesTitleMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.events-facilities-text-fill {
    color: var(--events-facilities-orange);
}

.events-facilities-text-stroke {
    color: transparent;
    -webkit-text-stroke: 2px var(--events-facilities-orange);
    opacity: 0.8;
}

/* --------------------------------------------------------------------------
   Infinite Carousel Rows
   -------------------------------------------------------------------------- */

.events-facilities-carousel-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden !important;
}

.events-facilities-track-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden !important;
    user-select: none;
}

/* Row 1: Moves Left (0% to -50%) */
.events-facilities-track-1 {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: facilitiesMarqueeLeft 32s linear infinite;
    will-change: transform;
}

/* Row 2: Moves Right (-50% to 0%) */
.events-facilities-track-2 {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: facilitiesMarqueeRight 32s linear infinite;
    will-change: transform;
}

@media (hover: hover) {
    .events-facilities-track-1:hover,
    .events-facilities-track-2:hover {
        animation-play-state: paused;
    }
}

@keyframes facilitiesMarqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes facilitiesMarqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* --------------------------------------------------------------------------
   Facility Cards
   -------------------------------------------------------------------------- */

.events-facilities-card {
    position: relative;
    width: 280px;
    height: 190px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    background-color: #111111;
}

.events-facilities-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.events-facilities-card:hover .events-facilities-img {
    transform: scale(1.06);
}

.events-facilities-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 10px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    box-sizing: border-box;
}

.events-facilities-label {
    font-family: var(--events-facilities-font-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--events-facilities-yellow);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.9);
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 575.98px) {
    .events-facilities-card {
        width: 210px;
        height: 145px;
    }
    .events-facilities-label {
        font-size: 14px;
    }
}
/* end  */
/* ==========================================================================
   OUR SCHOOL GALLERY Section Styles (Scoped: events-gallery-)
   ========================================================================== */

/* ==========================================================================
   OUR SCHOOL GALLERY Section Styles (Scoped: bos-gallery-)
   ========================================================================== */

/* Main Outer Section */
/* ==========================================================================
   OUR SCHOOL GALLERY Section Styles (Scoped: bos-gallery-)
   ========================================================================== */

.bos-gallery-section {
    position: relative;
    padding: 60px 0 70px 0;
    background-color: #FFFFFF;
    overflow: hidden;
    width: 100%;
}

/* SVG Mask Definition (Hidden SVG Container) */
.bos-gallery-svg-mask-def {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Top Header Text (Positioned over Top-Right Cutout Space)
   -------------------------------------------------------------------------- */

.bos-gallery-header-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: clamp(-90px, -6vw, -50px);
    position: relative;
    z-index: 5;
}

.bos-gallery-header-box {
    max-width: 520px;
    text-align: left;
    padding-left: 10px;
}

.bos-gallery-title {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: #000000;
    text-transform: uppercase;
    margin: 0 0 6px 0;
}

.bos-gallery-title span {
    color: var(--brand-orange, #E54818);
}

.bos-gallery-subtitle {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: clamp(12px, 1.4vw, 14px);
    font-weight: 500;
    line-height: 1.4;
    color: #808080;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Hero Banner Box with SVG Cutout Notch (Group 426)
   -------------------------------------------------------------------------- */

.bos-gallery-banner-container {
    position: relative;
    width: 100%;
    max-width: 1475px;
    height: clamp(340px, 40vw, 590px);
    margin: 0 auto;
    z-index: 1;
    filter: drop-shadow(0px 7px 34px rgba(0, 0, 0, 0.12));
}

.bos-gallery-banner-inner {
    position: relative;
    width: 100%;
    height: 100%;
    clip-path: url(#bosGalleryNotchMask);
    -webkit-clip-path: url(#bosGalleryNotchMask);
    overflow: hidden;
    background-color: #111111;
}

.bos-gallery-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tagline Overlay (Group 430) */
.bos-gallery-banner-content {
    position: absolute;
    top: clamp(30px, 8vw, 100px);
    left: clamp(20px, 4vw, 40px);
    z-index: 3;
    max-width: 80%;
}

/* Orange Highlight Box with Left White Border */
.bos-gallery-badge {
    background-color: #DB4101;
    border-left: clamp(4px, 0.5vw, 6px) solid #FFFFFF;
    padding: clamp(6px, 1.2vw, 10px) clamp(14px, 2vw, 24px);
    display: inline-block;
    margin-bottom: 8px;
}

.bos-gallery-badge-text {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: clamp(16px, 2.5vw, 36px);
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: uppercase;
}

.bos-gallery-tagline {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: clamp(18px, 2.6vw, 36px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    margin: 6px 0 0 0;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.6);
}

/* --------------------------------------------------------------------------
   Full-Width Edge-to-Edge Carousel Track (Frame 15516)
   -------------------------------------------------------------------------- */

.bos-gallery-carousel-fullwidth {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: clamp(-180px, -22vw, -320px); /* Overlaps lower half of hero banner */
    z-index: 4;
    overflow: hidden;
    padding: 15px 0 35px 0;
}

/* Continuous Infinite Track */
.bos-gallery-track {
    display: flex;
    gap: clamp(12px, 1.8vw, 20px);
    width: max-content;
    animation: bosGalleryMarqueeLoop 35s linear infinite;
    will-change: transform;
}

@media (hover: hover) {
    .bos-gallery-carousel-fullwidth:hover .bos-gallery-track {
        animation-play-state: paused;
    }
}

@keyframes bosGalleryMarqueeLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --------------------------------------------------------------------------
   Figma Card Design
   -------------------------------------------------------------------------- */

.bos-gallery-card {
    width: clamp(260px, 30vw, 469px);
    height: clamp(210px, 25vw, 394px);
    background: #FFFFFF;
    border-radius: clamp(14px, 1.8vw, 25px); /* Responsive outer radius */
    padding: clamp(8px, 1vw, 14px); /* Responsive inner border frame padding */
    flex-shrink: 0;
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.bos-gallery-card:hover {
    transform: translateY(-6px);
}

.bos-gallery-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: clamp(8px, 1vw, 12px);
    display: block;
}

/* --------------------------------------------------------------------------
   Responsive Adjustments for Mobile & Tablet
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
    .bos-gallery-header-wrapper {
        justify-content: center;
        margin-bottom: 20px;
    }
    .bos-gallery-header-box {
        text-align: center;
        padding-left: 0;
    }
    .bos-gallery-banner-inner {
        clip-path: none !important;
        -webkit-clip-path: none !important;
        border-radius: 16px;
    }
    .bos-gallery-carousel-fullwidth {
        margin-top: -120px;
    }
}
/* end  */

/* ==========================================================================
   PARENTS & STUDENT REVIEWS Section Styles (Scoped: bos-reviews-)
   ========================================================================== */

/* Main Section Outer Box */
.bos-reviews-section {
    position: relative;
    padding: 70px 0 90px 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

/* Background Soft Pink Circle Watermark */
.bos-reviews-bg-circle {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background-color: #FDECE7;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Section Heading */
.bos-reviews-title {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #000000;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    margin-bottom: 45px;
}

.bos-reviews-title span {
    color: var(--brand-orange, #E54818);
}

/* --------------------------------------------------------------------------
   Carousel Viewport & Track
   -------------------------------------------------------------------------- */

.bos-reviews-carousel-viewport {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    padding: 15px 10px 25px 10px;
}

.bos-reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --------------------------------------------------------------------------
   Review Cards (Figma Spec)
   -------------------------------------------------------------------------- */

.bos-reviews-card {
    flex: 0 0 calc(50% - 15px); /* Displays 2 cards side-by-side */
    background: #FFFFFF;
    border-radius: 35px 0px 35px 0px; /* Exact Figma Asymmetric Radius */
    padding: 30px 32px 30px 32px;
    box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    box-sizing: border-box;
}

/* Logo Header */
.bos-reviews-logo-box {
    margin-bottom: 16px;
}

.bos-reviews-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* Review Text Body */
.bos-reviews-text {
    font-family: var(--font-montserrat, 'Montserrat', sans-serif);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: #707070;
    margin: 0 0 20px 0;
}

/* Bottom Profile & Rating Row */
.bos-reviews-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bos-reviews-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bos-reviews-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.bos-reviews-user-details {
    display: flex;
    flex-direction: column;
}

.bos-reviews-user-name {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 14px;
    font-weight: 800;
    color: #000000;
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: uppercase;
}

.bos-reviews-user-role {
    font-family: var(--font-montserrat, 'Montserrat', sans-serif);
    font-size: 11px;
    font-weight: 500;
    color: #909090;
    margin: 2px 0 0 0;
    text-transform: uppercase;
}

/* Star Rating Stars */
.bos-reviews-stars {
    display: flex;
    gap: 4px;
    color: #FFB800; /* Gold/Yellow Stars */
    font-size: 18px;
}

.bos-reviews-star-empty {
    color: #E0E0E0;
}

/* --------------------------------------------------------------------------
   Navigation Arrows Controls
   -------------------------------------------------------------------------- */

.bos-reviews-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    position: relative;
    z-index: 3;
}

.bos-reviews-arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: none;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
}

.bos-reviews-arrow-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #1a1a1a;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s ease;
}

.bos-reviews-arrow-btn:hover {
    background-color: var(--brand-orange, #E54818);
    transform: translateY(-2px);
    box-shadow: 0px 8px 22px rgba(229, 72, 24, 0.3);
}

.bos-reviews-arrow-btn:hover svg {
    stroke: #FFFFFF;
}

.bos-reviews-arrow-btn:active {
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive Layout Fixes
   -------------------------------------------------------------------------- */

@media (max-width: 820px) {
    .bos-reviews-card {
        flex: 0 0 100%; /* Shows 1 card at a time on mobile/tablet */
    }
    
    .bos-reviews-bg-circle {
        width: 280px;
        height: 280px;
    }
}
/* end  */

/* ==========================================================================
   WHY CHOOSE US Section Styles (Scoped: bos-whyus-)
   ========================================================================== */

/* Outer Section Box */
.bos-whyus-section {
    position: relative;
    padding: 70px 0 90px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F3FF 100%);
    overflow: hidden;
}

/* Section Heading */
.bos-whyus-title {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 800;
    color: #000000;
    text-transform: none;
    margin-bottom: 50px;
}

.bos-whyus-title span {
    color: var(--brand-orange, #E54818);
}

/* --------------------------------------------------------------------------
   Photo Grid & Center Emblem Badge Area
   -------------------------------------------------------------------------- */

.bos-whyus-grid-container {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
}

.bos-whyus-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.bos-whyus-photo-box {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.bos-whyus-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Specific Asymmetric Corner Radii for 2x2 Grid */
.bos-whyus-photo-1 {
    border-radius: 50px 10px 10px 10px;
}

.bos-whyus-photo-2 {
    border-radius: 10px 50px 10px 10px;
}

.bos-whyus-photo-3 {
    border-radius: 10px 10px 10px 50px;
}

.bos-whyus-photo-4 {
    border-radius: 10px 10px 50px 10px;
}

/* Center Floating Badge Seal */
.bos-whyus-center-emblem {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 3;
    pointer-events: none;
}

.bos-whyus-emblem-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 8px 20px rgba(0, 0, 0, 0.15));
}

/* --------------------------------------------------------------------------
   Right Side Content Column
   -------------------------------------------------------------------------- */

.bos-whyus-content-col {
    padding-left: 20px;
}

.bos-whyus-heading {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
}

.bos-whyus-desc {
    font-family: var(--font-montserrat, 'Montserrat', sans-serif);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    color: #757575;
    margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   Bottom 5-Card Feature Grid
   -------------------------------------------------------------------------- */

.bos-whyus-feature-row {
    margin-top: 60px;
}

.bos-whyus-feature-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px 18px;
    text-align: center;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bos-whyus-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.08);
}

.bos-whyus-icon-box {
    margin-bottom: 16px;
    color: #3B71CA; /* Soft Academic Blue */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bos-whyus-icon-box svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bos-whyus-feature-title {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.bos-whyus-feature-desc {
    font-family: var(--font-montserrat, 'Montserrat', sans-serif);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    color: #858585;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .bos-whyus-content-col {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .bos-whyus-photo-box {
        height: 180px;
    }
    
    .bos-whyus-center-emblem {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 575.98px) {
    .bos-whyus-photo-box {
        height: 150px;
    }
    
    .bos-whyus-center-emblem {
        width: 130px;
        height: 130px;
    }
}
/* end  */
/* ==========================================================================
   FREQUENTLY ASKED QUESTIONS Section Styles (Scoped: bos-faq-)
   ========================================================================== */

/* Outer Section Container */
.bos-faq-section {
    position: relative;
    padding: 80px 0 100px 0;
    background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 50%, #FFFDFB 100%);
    overflow: hidden;
}

/* Background Watermark Seal */
.bos-faq-watermark {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    background: url('images/svgs/administration-bg.png') no-repeat center center;
    background-size: contain;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

/* Section Title */
.bos-faq-title {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 800;
    color: #000000;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.bos-faq-title span {
    color: var(--brand-orange, #E54818);
}

/* --------------------------------------------------------------------------
   Accordion Grid & Item Styling
   -------------------------------------------------------------------------- */

.bos-faq-grid {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: 0 auto;
}

.bos-faq-item {
    background: #FFFFFF;
    border-radius: 4px;
    margin-bottom: 16px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.bos-faq-item:hover {
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

/* Accordion Header / Button */
.bos-faq-header {
    width: 100%;
    padding: 16px 22px;
    background: #FFFFFF;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.bos-faq-question {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
}

/* Chevron Icon */
.bos-faq-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #000000;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform 0.3s ease, stroke 0.25s ease;
}

/* Accordion Answer Body */
.bos-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
    background: #FFFFFF;
    padding: 0 22px;
}

.bos-faq-answer {
    font-family: var(--font-montserrat, 'Montserrat', sans-serif);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    color: #808080;
    text-align: center;
    margin: 0;
    padding: 16px 0 20px 0;
}

/* --------------------------------------------------------------------------
   ACTIVE STATE STYLING (Figma Orange Header Match)
   -------------------------------------------------------------------------- */

.bos-faq-item.active {
    box-shadow: 0px 10px 30px rgba(229, 72, 24, 0.15);
}

.bos-faq-item.active .bos-faq-header {
    background-color: var(--brand-orange, #E54818);
}

.bos-faq-item.active .bos-faq-question {
    color: #FFFFFF;
}

.bos-faq-item.active .bos-faq-icon {
    stroke: #FFFFFF;
    transform: rotate(180deg); /* Flips chevron upward */
}

.bos-faq-item.active .bos-faq-body {
    max-height: 300px; /* Expands smoothly */
}

/* Responsive Fixes */
@media (max-width: 767.98px) {
    .bos-faq-watermark {
        width: 340px;
        height: 340px;
    }
    
    .bos-faq-question {
        font-size: 14px;
    }
    
    .bos-faq-header {
        padding: 14px 18px;
    }
}

/* end  */

/* ==========================================================================
   OUR LATEST BLOGS Section Styles (Scoped: bos-blogs-)
   ========================================================================== */

/* Main Section Outer Box */
.bos-blogs-section {
    position: relative;
    padding: 70px 0 90px 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

/* Header Area Alignment */
.bos-blogs-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 45px;
    flex-wrap: wrap;
    gap: 20px;
}

.bos-blogs-header-content {
    max-width: 650px;
}

.bos-blogs-title {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 12px;
}

.bos-blogs-title span {
    color: var(--brand-orange, #E54818);
}

.bos-blogs-subtitle {
    font-family: var(--font-montserrat, 'Montserrat', sans-serif);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: #808080;
    margin: 0;
}

/* "View all blogs" CTA Button */
.bos-blogs-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-orange, #E54818);
    color: #FFFFFF;
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
}

.bos-blogs-btn-primary:hover {
    background-color: #c93b10;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Blog Cards Grid
   -------------------------------------------------------------------------- */

.bos-blogs-card {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.bos-blogs-card:hover {
    transform: translateY(-4px);
}

/* Card Image Box */
.bos-blogs-img-box {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    background-color: #f0f0f0;
}

.bos-blogs-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.bos-blogs-card:hover .bos-blogs-img {
    transform: scale(1.04);
}

/* Metadata Bar (Category Badge + Author Info) */
.bos-blogs-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.bos-blogs-badge {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 10px;
    font-weight: 800;
    color: var(--brand-orange, #E54818);
    border: 1px solid var(--brand-orange, #E54818);
    padding: 3px 8px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bos-blogs-author-date {
    font-family: var(--font-montserrat, 'Montserrat', sans-serif);
    font-size: 11px;
    color: #808080;
    margin: 0;
}

.bos-blogs-author-date strong {
    color: #000000;
    font-weight: 700;
}

/* Card Title */
.bos-blogs-card-title {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    color: #000000;
    margin-bottom: 10px;
}

/* Excerpt Text */
.bos-blogs-card-desc {
    font-family: var(--font-montserrat, 'Montserrat', sans-serif);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    color: #808080;
    margin-bottom: 14px;
}

/* "Read blog >" Link */
.bos-blogs-link {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 12px;
    font-weight: 800;
    color: #000000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    transition: color 0.2s ease;
}

.bos-blogs-link:hover {
    color: var(--brand-orange, #E54818);
}

/* Responsive Fixes */
@media (max-width: 767.98px) {
    .bos-blogs-header-row {
        flex-direction: column;
    }
    .bos-blogs-img-box {
        height: 200px;
    }
}
/* end  */
/* ==========================================================================
   CONTACT US & GET IN TOUCH Section Styles (Scoped: bos-contact-)
   ========================================================================== */

/* Main Section Outer Container */
.bos-contact-section {
    position: relative;
    padding: 80px 0 90px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FBFD 50%, #FFFFFF 100%);
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Left Column: Orbit & Contact Cards Layout
   -------------------------------------------------------------------------- */

.bos-contact-left-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
}

/* Orbit Graphic Container */
.bos-contact-orbit-container {
    position: relative;
    width: 100%;
    padding-bottom: 142px;
}

/* Orbit SVG Line Background */
.bos-contact-orbit-svg {
position: absolute;
    bottom: -82px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 650px;
    height: 329px;
    pointer-events: none;
    z-index: 1;
}

/* Orbit Avatars along the Arc */
.bos-contact-avatar {
    position: absolute;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFFFFF;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.12);
    z-index: 2;
    background-color: #E0E0E0;
}

/* Specific Positions along Orbit Arc */
.bos-contact-avatar-1 { left: 8%;  bottom: 120px; }
.bos-contact-avatar-2 { left: 20%; bottom: 20px;  }
.bos-contact-avatar-3 { left: 40%; bottom: -15px; }
.bos-contact-avatar-4 { left: 60%; bottom: 15px;  }
.bos-contact-avatar-5 { left: 82%; bottom: 110px; }

/* Banner Card (Top Left) */
.bos-contact-banner-card {
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    box-shadow: 0px 7px 34px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 28px 24px;
    position: relative;
    margin-bottom: 24px;
    z-index: 3;
}

.bos-contact-banner-title {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.2;
}

.bos-contact-banner-title span {
    color: var(--brand-orange, #DB4101);
}

.bos-contact-banner-desc {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 13px;
    font-weight: 500;
    color: #808080;
    line-height: 1.5;
    max-width: 360px;
    margin: 0;
}

/* Floating Image Overlay on Banner */
.bos-contact-floating-img-box {
    position: absolute;
    top: -35px;
    right: 20px;
    width: 170px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 4;
}

.bos-contact-floating-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Cards Grid (Address, Email, Phone) */
.bos-contact-info-card {
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.03);
    height: 100%;
    position: relative;
    z-index: 3;
}

.bos-contact-icon-wrapper {
    color: var(--brand-orange, #DB4101);
    margin-bottom: 10px;
    display: inline-block;
}

.bos-contact-icon-wrapper svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.bos-contact-card-title {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-orange, #DB4101);
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-bottom: 6px;
}

.bos-contact-card-bold {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.bos-contact-card-text {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 12px;
    font-weight: 500;
    color: #555555;
    margin: 0;
    line-height: 1.4;
}

/* Centered Phone Card Offset */
.bos-contact-phone-col {
    max-width: 320px;
    margin: 20px auto 0 auto;
}

/* --------------------------------------------------------------------------
   Right Column: "Get in touch" Form (Contact Form 2)
   -------------------------------------------------------------------------- */

.bos-contact-form-card {
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    box-shadow: 0px 7px 34.3px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 40px 36px;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.bos-contact-form-title {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
}

.bos-contact-form-group {
    margin-bottom: 20px;
}

.bos-contact-label {
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    display: block;
}

.bos-contact-input {
    width: 100%;
    height: 52px;
    background: #F1F1F1;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 0 20px;
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 14px;
    color: #000000;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.bos-contact-input:focus {
    background: #FFFFFF;
    border-color: var(--brand-orange, #DB4101);
}

/* Email Suffix Input Wrapper */
.bos-contact-email-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.bos-contact-email-suffix {
    position: absolute;
    right: 20px;
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 500;
    color: #808080;
    pointer-events: none;
}

/* Phone Field Prefix Box */
.bos-contact-phone-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.bos-contact-phone-prefix {
    position: absolute;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: #808080;
    pointer-events: none;
}

.bos-contact-flag-icon {
    width: 22px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.bos-contact-input-phone {
    padding-left: 90px;
}

/* Message Textarea */
.bos-contact-textarea {
    width: 100%;
    height: 130px;
    background: #F1F1F1;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 16px 20px;
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 14px;
    color: #000000;
    outline: none;
    resize: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.bos-contact-textarea:focus {
    background: #FFFFFF;
    border-color: var(--brand-orange, #DB4101);
}

/* Send Message Button */
.bos-contact-submit-btn {
    background: var(--brand-orange, #DB4101);
    color: #FFFFFF;
    font-family: var(--font-spartan, 'Spartan', sans-serif);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 38px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    margin: 28px auto 0 auto;
    transition: background-color 0.25s ease, transform 0.2s ease;
    box-shadow: 0px 4px 15px rgba(219, 65, 1, 0.25);
}

.bos-contact-submit-btn:hover {
    background: #b83300;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Bottom Map Container (Frame 15489)
   -------------------------------------------------------------------------- */

.bos-contact-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1472px;
    height: 420px;
    margin: 70px auto 0 auto;
    border: 10px solid #FFFFFF;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 2;
}

.bos-contact-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Scaling */
@media (max-width: 991.98px) {
    .bos-contact-floating-img-box {
        display: none; /* Hides overlapping image on smaller screens */
    }
    .bos-contact-banner-desc {
        max-width: 100%;
    }
    .bos-contact-form-card {
        margin-top: 50px;
    }
    .bos-contact-avatar {
        width: 50px;
        height: 50px;
    }
    .bos-contact-map-wrapper {
        height: 320px;
        margin-top: 50px;
    }
}