/* ============================================ */
/* GLOBAL RESET & VARIABLES */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-blue: #1A5F9E;
    --brand-dark-blue: #0A2A44;
    --brand-primary: #0075BC;
    --text-secondary:#444444;
    --brand-yellow: #F0B323;
    --brand-yellow-dark: #d49c1a;
    --text-dark: #1E293B;
    --text-muted: #444444;
    --text-light: #64748B;
    --border-light: #E2E8F0;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --radius-card: 6px;
    --black: #000000;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 2px 8px 0px rgba(0, 0, 0, 0.24);
    --transition: all 0.3s ease;
    --light-bg: #F5F8FC;           
    --body-bg: #F2F5F9;         
    --border-light: #E0E6ED;

}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.nav-menu a,
.btn,
label,
.filter-header-cta {
    font-family: 'Poppins', sans-serif;
}
html{
     font-size: 16px;
}

/* ============================================ */
/* GLOBAL HEADING STYLES */
/* ============================================ */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.875rem;
    font-family: 'Poppins', sans-serif;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

p {
    color: var(--text-light);
}

/* Responsive heading sizes */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    h4 {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}


/* ============================================ */
components
/* ============================================ */




/* Hover animation */
.card--hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}


/* Padding utilities */
.card--padding-lg {
    padding: 32px 24px;
}

.card--padding-md {
    padding: 24px;
}

.card--padding-sm {
    padding: 16px;
}

/* Alignment utilities */
.card--center {
    text-align: center;
}

/* Floating (overlay) cards */

.card {
    background: var(--white);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card--floating {
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 20;
}


.customdropdown{
    position: relative;
    width: 100%;

}
.customdropdown i{
    color: var(--text-dark);
    position: absolute;
    z-index: 999;
    right: 10px;
    top:42px;
    font-size: 12px;
}


.customdropdown select {
    appearance: none;
    -webkit-appearance: none; 
    -moz-appearance: none;    
}


.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================ */
/* HERO SLIDER - FULLY RESPONSIVE */
/* ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 520px;
    margin-top: 70px;
    overflow: hidden;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.slider-text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 650px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide-desc {
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 3.5rem;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.2s;
}



.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.05);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active {
    background: white;
    width: 28px;
}

/* ============================================ */
/* FILTER CARD - FULLY RESPONSIVE */
/* ============================================ */
.filter-card-wrapper {
    position: relative;
    z-index: 999 !important;
    margin-top: -92px !important;
    margin-bottom: 60px;
    padding: 0 20px;
}

.floating-filter-card {
    padding: 22px 32px 28px;
    max-width: 1200px;
    margin: 0 auto;

}

.filter-header-cta {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
    width: 100%
}

.filter-header-cta i {
    font-size: 1.4rem;
}

.filter-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-item {
    flex: 1;
    min-width: 180px;
}

.filter-item label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.dropdown-selected {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    height: 48px;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-selected:hover {
    border-color: var(--brand-primary);
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 8px 0;
    z-index: 50;
    display: none;
    margin-top: 4px;
}

.custom-dropdown.active .dropdown-options {
    display: block;
}

.dropdown-options li {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
}

.dropdown-options li:hover {
    background: var(--bg-light);
}

.houzez-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    height: 48px;
    font-size: 14px;
    transition: all 0.2s;
}

.houzez-input:focus, .form-control:focus {
    outline: none;
    border-color: var(--brand-primary) !important;
    box-shadow: none !important;
}

.filter-search-btn {
    min-width: 140px;
    background: var(--brand-primary);
    border: none;
    border-radius: var(--radius-card);
    font-weight: 700;
    color: white;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    transition: all 0.2s;
    font-size: 14px;
}

.filter-search-btn:hover {
    background: var(--brand-dark-blue);
    transform: translateY(-2px);
}

.error-message {
    background: #fee9e9;
    color: #b91c1c;
    padding: 12px 16px;
    border-radius: var(--radius-card);
    margin-top: 20px;
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.error-message.show {
    display: flex;
}

/* ============================================ */
/* SPOTLIGHT GRID - FULLY RESPONSIVE */
/* ============================================ */
.spotlight-grid {
    padding: 70px 0;
    background: linear-gradient(135deg, #0075BC 0%, #005a8f 100%);
    background-image: none !important;
}

.spotlight-grid .entry.bg-filler {
    background: none !important;
}

.spotlight-grid .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.spotlight-grid .item {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-lg);
    padding: 32px 24px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;

     @media (max-width: 1024px) {
      margin-bottom: 40px;
     }
}



.spotlight-grid .item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.25);
}

.spotlight-grid .icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 20px auto;
    box-shadow: var(--shadow-lg);
}

.spotlight-grid .icon i {
    font-size: 26px;
    color: var(--brand-primary);
}

.spotlight-grid .item-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 20px 0 12px;
    color: var(--text-dark);
}

.spotlight-grid .item-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-primary);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--brand-primary);
    padding: 10px 24px;
    border-radius: var(--radius-card);
    transition: all 0.2s;
    font-size: 14px;
}

.btn-text:hover {
    background: var(--brand-primary);
    color: white;
    gap: 12px;
    text-decoration: none;
}

/* ============================================ */
/* FEATURE SECTION - FULLY RESPONSIVE */
/* ============================================ */
.feature-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 60px 0 !important;
    flex-wrap: wrap;
}

.feature-text {
    flex: 1;
    min-width: 280px;
    margin-left: 60px !important;
   
}

.feature-text h3 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--brand-dark-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.feature-image {
    flex: 1;
    min-width: 280px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}

.feature-image:hover img {
    transform: scale(1.03);
}

.btn {
    display: inline-block;
    background: var(--brand-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-card);
    font-weight: 700;
    padding: 12px 32px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-yellow {
    background: var(--brand-yellow);
    color: var(--white);
    margin-left: 12px;
}

.btn-yellow:hover {
    background: var(--brand-yellow-dark);
    color: var(--white);
}

.btn:hover {
    background: var(--brand-dark-blue);
    transform: translateY(-2px);
}

/* ============================================ */
/* SPLIT SLIDER - FULLY RESPONSIVE */
/* ============================================ */

.vc-slide-wraper{
    background: linear-gradient(135deg, var(--brand-yellow) 0%, #e0a800 100%);
    padding: 80px 0;
}

 .page-template-school-search #content .vc-slide-wraper.panel .row .c1 .entry{
    padding: 0 !important;
 }

.vc-container {
    width: min(1200px, 97%) !important;
    margin: 0 auto;
}

.vc-slider {
    position: relative;
}

.vc-slider-viewport {
    overflow: hidden;
    border-radius: var(--radius-card);

}

.vc-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vc-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 100%;
background: linear-gradient(
 
180deg, rgba(255, 255, 255, 0.06), transparent);
    color: white;
    border-radius: var(--radius-card);
    overflow: hidden;
}

.vc-slide-content {
    padding: 50px 48px;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.vc-slide-heading {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
}

.vc-slide-desc {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 45px;
}

.vc-slide-media {
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

.vc-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.vc-slide:hover .vc-slide-media img {
    transform: scale(1.05);
}

.vc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.vc-prev {
    left: 0px;
}

.vc-next {
    right: 0px;
}

.vc-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.vc-dot {
    width: 10px;
    /* height: 10px; */
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.vc-dot[aria-selected="true"] {
    background: white;
    width: 32px;
}



/* ============================================ */
/* COMPREHENSIVE RESPONSIVE BREAKPOINTS */
/* ============================================ */
@media (max-width: 1100px) {
    .spotlight-grid .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .filter-row {
        flex-direction: column;
        gap: 16px;
    }

    .filter-item {
        width: 100%;
        min-width: 100%;
    }

    .filter-search-btn {
        width: 100%;
        margin-top: 8px;
    }

    .floating-filter-card {
        padding: 24px 20px;
    }
    .filter-card-wrapper{
     width:calc(100% - 20px);
     margin-left: auto;
     margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 480px;
    }

    .slider-text {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .btn-yellow {
        margin-left: 0;
        margin-top: 12px;
        display: inline-block;
    }

    .feature-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .feature-text {
        text-align: center;
        margin-right: 0;
        margin-left: 0 !important;
    }

    .spotlight-grid .grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .spotlight-grid .icon {
        margin-top: -55px;
    }

    .vc-slide {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vc-slide-content {
        padding: 40px 28px;
        text-align: center;
        align-items: center;
    }

    .vc-slide-media {
        order: -1;
        max-height: 260px;
    }

    .vc-nav {
        width: 40px;
        height: 40px;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 450px;
        margin-top: 65px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .floating-filter-card {
        padding: 20px 16px;
    }

    .filter-header-cta {
        font-size: 1.2rem;
    }

    .spotlight-grid .item {
        padding: 28px 20px 24px;
    }

    .feature-section {
        padding: 50px 0;
    }

    .vc-split-slider {
        padding: 50px 0;
    }

    .footer {
        padding: 40px 0 30px;
    }

    .footer-text {
        font-size: 11px;
        text-align: center;
    }

    .footer .container {
        align-items: center;
        text-align: center;
    }
}


.panel.bg-filler {
    background-image: none !important;
}

.page-template-school-search #content .panel .row .c1 .entry {
    background: none !important;
}


@media (max-width: 1024px) {
    .robo-gallery-slider-wrap .swiper-button-prev {
        left: 20px !important;
    }

    .robo-gallery-slider-wrap .swiper-button-next {
        right: 20px !important;
        left: auto !important;
    }

    html, body {
    overflow-x: hidden;
}

.hero-slider,
.robo-gallery-slider-wrap,
.vc-slider-viewport,
.vc-slider {
    overflow: hidden;
    position: relative;
}
}

.vc-slide-wraper.panel{
margin-bottom: 0;
}

.options {
    display: inline-block;
    padding: 0 0 0 10px;
    font-size: 12px;
}

a {
    color: #25550f;
    text-decoration: none;
}
