/* ===== FONT DEFINITIONS ===== */
/* 
   Design fonts from Figma:
   - MyriadPro-Regular: Nav links, search (using Source Sans Pro as web alternative)
   - CenturyGothic / CenturyGothic-Bold: Body text, paragraphs, headings
   - BentonSans-Black: Feature card titles, big headings (using Century Gothic Bold as fallback)
*/

@font-face {
    font-family: 'Century Gothic';
    src: url('/fonts/centurygothic.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('/fonts/centurygothic_bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html, body {
    font-family: 'Century Gothic', 'Questrial', sans-serif;
}

/* Nav links use Myriad Pro (Source Sans Pro as web fallback) */
.nav-link-main,
.top-bar-link,
.mobile-nav-link {
    font-family: 'Source Sans Pro', 'Myriad Pro', sans-serif;
}

/* Section headings use Century Gothic Bold */
.section-heading,
.hero-title,
h1, h2, h3, h4, h5, h6 {
    font-family: 'Century Gothic', sans-serif;
    font-weight: 700;
}

/* Feature card titles use BentonSans-Black style (bold condensed look) */
.feature-title,
.feature-title-small {
    font-family: 'Century Gothic', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1:focus {
    outline: none;
}

/* School-themed colors */
a, .btn-link {
    color: #0066cc;
}

.btn-primary {
    color: #fff;
    background-color: #0066cc;
    border-color: #0052a3;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #0066cc;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

/* ===== NEW DESIGN SYSTEM ===== */

/* Hero Section */
.owps-hero-section {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    background-image: url('/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 991px) {
    .owps-hero-section {
        min-height: 60vh;
    }
}

@media (max-width: 576px) {
    .owps-hero-section {
        min-height: 50vh;
        padding: 3rem 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 0;
    color: #ffffff;
    max-width: 500px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.btn-owps-primary {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-owps-primary:hover {
    background-color: #333333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-owps-secondary {
    background-color: transparent;
    color: #f1f2f2;
    border: 2px solid #f1f2f2;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-owps-secondary:hover {
    background-color: #f1f2f2;
    color: #2c3e50;
    transform: translateY(-2px);
}

.btn-play-video {
    background-color: transparent;
    border: none;
    padding: 1rem 2rem;
    color: #ffffff;
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-play-video:hover {
    transform: scale(1.05);
}

.btn-play-video img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Hero content mobile positioning */
@media (max-width: 991px) {
    .hero-content .row {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content .col-lg-7,
    .hero-content .col-lg-5 {
        width: 100%;
        justify-content: center !important;
    }
    
    .hero-content .col-lg-5 {
        margin-top: 2rem;
    }
    
    .hero-title {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .btn-play-video {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .btn-play-video img {
        width: 48px;
        height: 48px;
    }
    
    .hero-content .col-lg-5 {
        margin-top: 1.5rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}


/* Main Content Wrapper */

.star-content {
    padding: 16px;
}
/* Open Day Banner */
.open-day-banner {
    background: #ffffff;
    /* padding: 16px; */
}

.open-day-banner .row {
    gap: 0;
}

.open-day-image-wrapper,
.queen-esther-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.open-day-image-wrapper img,
.queen-esther-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Feature Grid Section */
.feature-grid-section {
    padding: 21px;
    background: #ffffff;
}

.feature-grid-container {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: stretch;
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.feature-card-large,
.feature-card {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
}

.feature-card-large {
    width: calc((100% - 20px) / 3);
    flex-shrink: 0;
}

.feature-card {
    /* Small card aspect ratio: 208x149 = ~1.4:1 */
    aspect-ratio: 1.4 / 1;
    flex: 1;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    transition: all 0.3s ease;
}

.feature-card-large:hover .feature-overlay,
.feature-card:hover .feature-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.feature-title-small {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Placeholder backgrounds for features */
.feature-our-school {
    background-image: url('/images/feature-our-school.jpg');
}

.feature-academics {
    background-image: url('/images/feature-academics.jpg');
}

.feature-sports {
    background-image: url('/images/feature-sports.jpg');
}

.feature-culture {
    background-image: url('/images/feature-arts-culture.jpg');
}

.feature-school-life {
    background-image: url('/images/feature-school-life.jpg');
}

/* Headmaster Section */
.headmaster-section {
    padding: 16px;
}

.headmaster-section .col-lg-7 {
    padding: 3rem 4rem 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-heading {
    font-family: 'Source Sans Pro', 'Myriad Pro', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.greeting-text {
    font-family: 'Source Sans Pro', 'Myriad Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.welcome-text {
    font-family: 'Source Sans Pro', 'Myriad Pro', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: #ffffff;
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 0;
}

.signature-text {
    font-family: 'Source Sans Pro', 'Myriad Pro', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #ffffff;
    margin-top: 1.5rem;
    line-height: 1.7;
}

.signature-text strong {
    font-weight: bold;
}

.btn-headmaster {
    background-color: rgba(230, 231, 232, 0.81);
    color: #000000;
    border: none;
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-headmaster:hover {
    background-color: rgba(230, 231, 232, 1);
    color: #000000;
}

.headmaster-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.headmaster-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    flex: 1;
}

.headmaster-image-wrapper .btn-headmaster {
    position: absolute;
    bottom: 5rem;
    left: 60%;
    transform: translateX(-50%);
}

.headmaster-bg {
    background-image: url('/images/headmaster-bg.png');
}
/* Executive Section */
.executive-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.executive-section .container {
    max-width: 1400px;
}

.executive-section .section-heading {
    font-weight: 700;
    color: #808285;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.executive-section .row {
    gap: 0;
}

.executive-section .col-lg-3 {
    flex: 0 0 auto;
    width: 23%;
    padding: 0 10px;
}

.executive-bio-card {
    background: #f8f9fa;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.executive-bio-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.executive-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #e0e0e0;
    border-radius: 8px 8px 0 0;
    flex-shrink: 0;
}

.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.executive-bio-card:hover .executive-image img {
    transform: scale(1.08);
}

.executive-info {
    padding: 1.5rem 1.25rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.executive-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.75rem;
}

.executive-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #6d6e71;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Executive Section Responsive */
@media (max-width: 1199px) {
    .executive-image {
        height: 280px;
    }
    
    .executive-section .col-lg-3 {
        width: 24%;
    }
}

@media (max-width: 991px) {
    .executive-image {
        height: 260px;
    }
    
    .executive-section .section-heading {
        font-size: 1.3rem;
    }
    
    .executive-section .col-lg-3 {
        width: 48%;
        margin-bottom: 1.5rem;
    }
    
    .executive-info {
        padding: 1.25rem 1rem;
    }
}

@media (max-width: 767px) {
    .executive-image {
        height: 300px;
    }
    
    .executive-section .col-lg-3 {
        width: 100%;
        max-width: 380px;
        margin: 0 auto 1.5rem;
    }
    
    .executive-section {
        padding: 3rem 0;
    }
}

@media (max-width: 575px) {
    .executive-image {
        height: 280px;
    }
    
    .executive-name {
        font-size: 1rem;
    }
    
    .executive-description {
        font-size: 0.8rem;
    }
    
    .executive-section .col-lg-3 {
        max-width: 320px;
    }
}

/* Campus Tour Section */
.campus-tour-section {
    background: #414042;
    padding: 4rem 0;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.campus-tour-section .container {
    width: 100%;
}

.campus-tour-section .section-heading {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.campus-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 80px;
    min-height: 300px;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 100%;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 7.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav-btn:hover {
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.campus-gallery {
    flex: 1;
    overflow: hidden;
}

.campus-gallery .row {
    flex-wrap: nowrap;
    margin: 0 -8px;
}

.campus-gallery .col-lg-3 {
    flex: 0 0 25%;
    padding: 0 8px;
}

.campus-image-card {
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.campus-image-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.campus-image-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.campus-image-card:hover img {
    transform: scale(1.05);
}

/* Campus Tour Responsive */
@media (max-width: 1199px) {
    .campus-image-card img {
        height: 240px;
    }
}

@media (max-width: 991px) {
    .campus-carousel-wrapper {
        padding: 0 50px;
    }
    
    .campus-gallery .col-lg-3 {
        flex: 0 0 50%;
    }
    
    .campus-gallery .row {
        flex-wrap: wrap;
        gap: 16px 0;
    }
    
    .campus-image-card img {
        height: 220px;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .campus-carousel-wrapper {
        padding: 0 40px;
    }
    
    .campus-image-card img {
        height: 200px;
    }
    
    .campus-tour-section .section-heading {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .campus-gallery .col-lg-3 {
        flex: 0 0 100%;
    }
    
    .campus-image-card img {
        height: 220px;
    }
    
    .carousel-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 1.5rem;
    }
    
    .campus-carousel-wrapper {
        padding: 0 35px;
    }
}

/* News Section */
.news-section {
    background-color: #f5f5f5;
    padding: 3rem 0;
}

.news-card-modern {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e0e0e0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 1.25rem;
}

.news-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #6d6e71;
    margin-bottom: 1rem;
}

.btn-read-more {
    background-color: transparent;
    color: #6d6e71;
    border: 1px solid #a7a9ac;
    padding: 0.4rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background-color: #4a4a4a;
    border-color: #4a4a4a;
    color: #ffffff;
}

/* ===== END NEW DESIGN SYSTEM ===== */

/* Hero Section for Home Page */
.hero-section {
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 0;
}

/* Card Enhancements */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid #e0e0e0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-title {
    color: #0066cc;
    font-weight: bold;
}

/* Footer */
.footer {
    border-top: 1px solid #e0e0e0;
    margin-top: 3rem;
}

/* Alert Customization */
.alert {
    border-radius: 0.5rem;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
}

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #0066cc;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
    color: #0066cc;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

code {
    color: #c02d76;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}
/* Page Header Styling */
.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #0066cc;
}

.page-header h1 {
    color: #0066cc;
    font-weight: bold;
    font-size: 2.5rem;
}

.page-header .lead {
    color: #666;
    font-size: 1.2rem;
}

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.announcement-banner h3 {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Feature Cards */
.feature-card {
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #0066cc;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Welcome Section */
.welcome-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0066cc;
}

.signature {
    font-style: italic;
    margin-top: 2rem;
}

/* Executive Preview */
.executive-preview {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
}

.executive-card {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.executive-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.executive-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto;
}

/* News Cards */
.news-card {
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* Sidebar Menu */
.sidebar-menu, .quick-links {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-menu ul li, .quick-links ul li {
    margin-bottom: 0.75rem;
}

.sidebar-menu ul li a, .quick-links ul li a {
    color: #0066cc;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-menu ul li a:hover, .quick-links ul li a:hover {
    color: #004c99;
    text-decoration: underline;
}

/* Bio Card */
.bio-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0066cc;
}

/* Subject List */
.subject-list {
    list-style: none;
    padding-left: 0;
}

.subject-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.subject-list li:last-child {
    border-bottom: none;
}

/* Program Cards */
.program-card {
    border-left: 4px solid #ff6b35;
}

/* Facility Cards */
.facility-card, .cultural-card, .download-card, .quick-link-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.facility-card:hover, .cultural-card:hover, .download-card:hover, .quick-link-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.facility-card h5, .cultural-card h5, .download-card h5, .quick-link-card h5 {
    color: #0066cc;
    font-weight: bold;
}

/* Facility List */
.facility-list {
    list-style: none;
    padding-left: 0;
}

.facility-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #e0e0e0;
}

.facility-list li:last-child {
    border-bottom: none;
}

/* Admissions Specific Styles */
.announcement-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
}

.open-day-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid #0066cc;
}

.quick-info {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid #e0e0e0;
}

.info-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
}

/* Process Cards */
.process-card {
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0066cc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Document List */
.document-list {
    list-style: none;
    padding-left: 0;
}

.document-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid #e0e0e0;
}

.document-list li:last-child {
    border-bottom: none;
}

/* Contact Info */
.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0066cc;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .executive-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Search Box Styling */
.search-box {
    flex-grow: 0;
    max-width: 300px;
    margin: 0 1rem;
}

.search-box .input-group {
    flex-wrap: nowrap;
}

.search-box .search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.search-box .search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box .search-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Search Page Styling */
.search-section {
    margin-top: 2rem;
}

.search-section .search-input {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
}

.search-section .search-input:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
}

.search-results {
    margin-top: 2rem;
}

.search-result-item {
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    border-left: 4px solid #0066cc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-result-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.result-title {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.result-title a {
    color: #0066cc;
    text-decoration: none;
}

.result-title a:hover {
    text-decoration: underline;
}

.result-url {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.result-snippet {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.no-results {
    margin-top: 2rem;
}

/* Responsive Search Box */
@media (max-width: 768px) {
    .search-box {
        display: none;
    }
}

/* Hero Section for Home Page */
.hero-section {
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 0;
}

/* Card Enhancements */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid #e0e0e0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-title {
    color: #0066cc;
    font-weight: bold;
}

/* Footer */
.footer {
    border-top: 1px solid #e0e0e0;
    margin-top: 3rem;
}

/* Alert Customization */
.alert {
    border-radius: 0.5rem;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
}

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #0066cc;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
    color: #0066cc;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

code {
    color: #c02d76;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}
/* Page Header Styling */
.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #0066cc;
}

.page-header h1 {
    color: #0066cc;
    font-weight: bold;
    font-size: 2.5rem;
}

.page-header .lead {
    color: #666;
    font-size: 1.2rem;
}

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.announcement-banner h3 {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Feature Cards */
.feature-card {
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #0066cc;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Welcome Section */
.welcome-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0066cc;
}

.signature {
    font-style: italic;
    margin-top: 2rem;
}

/* Executive Preview */
.executive-preview {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
}

.executive-card {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.executive-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.executive-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto;
}

/* News Cards */
.news-card {
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* Sidebar Menu */
.sidebar-menu, .quick-links {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-menu ul li, .quick-links ul li {
    margin-bottom: 0.75rem;
}

.sidebar-menu ul li a, .quick-links ul li a {
    color: #0066cc;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-menu ul li a:hover, .quick-links ul li a:hover {
    color: #004c99;
    text-decoration: underline;
}

/* Bio Card */
.bio-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0066cc;
}

/* Subject List */
.subject-list {
    list-style: none;
    padding-left: 0;
}

.subject-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.subject-list li:last-child {
    border-bottom: none;
}

/* Program Cards */
.program-card {
    border-left: 4px solid #ff6b35;
}

/* Facility Cards */
.facility-card, .cultural-card, .download-card, .quick-link-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.facility-card:hover, .cultural-card:hover, .download-card:hover, .quick-link-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.facility-card h5, .cultural-card h5, .download-card h5, .quick-link-card h5 {
    color: #0066cc;
    font-weight: bold;
}

/* Facility List */
.facility-list {
    list-style: none;
    padding-left: 0;
}

.facility-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #e0e0e0;
}

.facility-list li:last-child {
    border-bottom: none;
}

/* Admissions Specific Styles */
.announcement-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
}

.open-day-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid #0066cc;
}

.quick-info {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid #e0e0e0;
}

.info-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
}

/* Process Cards */
.process-card {
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0066cc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Document List */
.document-list {
    list-style: none;
    padding-left: 0;
}

.document-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid #e0e0e0;
}

.document-list li:last-child {
    border-bottom: none;
}

/* Contact Info */
.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0066cc;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .executive-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Search Box Styling */
.search-box {
    flex-grow: 0;
    max-width: 300px;
    margin: 0 1rem;
}

.search-box .input-group {
    flex-wrap: nowrap;
}

.search-box .search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.search-box .search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box .search-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Search Page Styling */
.search-section {
    margin-top: 2rem;
}

.search-section .search-input {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
}

.search-section .search-input:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
}

.search-results {
    margin-top: 2rem;
}

.search-result-item {
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    border-left: 4px solid #0066cc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-result-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.result-title {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.result-title a {
    color: #0066cc;
    text-decoration: none;
}

.result-title a:hover {
    text-decoration: underline;
}

.result-url {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.result-snippet {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.no-results {
    margin-top: 2rem;
}

/* Responsive Search Box */
@media (max-width: 768px) {
    .search-box {
        display: none;
    }
}
