/* --- NOTICE BOARD WIDGET STYLES --- */
.nb-main-wrapper { 
    text-align: center; 
    padding: 50px 0; 
    background: #fff; 
    width: 100%;
}

.nb-title { color: #C30573; font-size: 36px; font-weight: 800; text-transform: uppercase; margin-bottom: 5px; }
.nb-divider { width: 60px; height: 5px; background: #C30573; margin: 0 auto 40px; border-radius: 50px; }

.nb-slider-container { 
    padding: 20px 70px; 
    max-width: 1200px; 
    margin: 0 auto; 
    position: relative;
}

.nb-card-link {
    text-decoration: none;
    display: block;
    padding: 15px; 
}

.nb-card {
    background: #fff; 
    border-radius: 20px; 
    padding: 20px;
    display: flex; 
    align-items: center; 
    border: 1px solid #fce4ec; 
    height: 120px; 
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: all 0.3s ease-in-out;
}

.nb-card-link:hover .nb-card {
    box-shadow: 0 8px 20px rgba(195, 5, 115, 0.15);
    transform: translateY(-5px);
    border-color: #C30573;
}

.nb-date-circle {
    border: 2px solid #d5d5d5;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
    flex-shrink: 0;
    background: #f9f9f9;
    transition: 0.3s;
}

.nb-card-link:hover .nb-date-circle {
    border: 2px solid #C30573; 
    background: #fff;
}

.nb-up-text { font-size: 9px; color: #888; text-transform: uppercase; line-height: 1; margin-bottom: 2px; }
.nb-day { font-size: 26px; font-weight: bold; color: #C30573; line-height: 1; }
.nb-month { font-size: 10px; font-weight: bold; color: #333; text-transform: uppercase; }

.nb-info { flex-grow: 1; overflow: hidden; }
.nb-item-title { 
    color: #C30573; font-size: 18px; font-weight: 700; margin: 0; 
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.nb-meta { font-size: 13px; color: #777; font-style: italic; margin-top: 5px; }

/* Owl Navigation */
.nb-slider-container .owl-nav {
    position: absolute; top: 50%; width: 100%; left: 0;
    transform: translateY(-50%); pointer-events: none;
}
.nb-slider-container .owl-nav button {
    background: #C30573; color: #fff;
    width: 40px; height: 40px; border-radius: 50%;
    font-size: 20px; pointer-events: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.nb-slider-container .owl-nav .owl-prev { position: absolute; left: 10px; }
.nb-slider-container .owl-nav .owl-next { position: absolute; right: 10px; }

.nb-footer { margin-top: 40px; }
.nb-btn {
    display: inline-block; background: #C30573; color: #fff;
    padding: 14px 45px; border-radius: 50px; font-weight: bold;
    text-decoration: none; transition: 0.3s;
}
.nb-btn:hover { background: #a1045e; transform: scale(1.05); }


/* Editor Specific Slider Fix */
.nb-slider-container {
    display: block; opacity: 1; visibility: visible;
}
.owl-carousel .owl-item img {
    width: auto; display: inline-block;
}


/* --- ABOUT US WIDGET STYLES (Magenta Theme) --- */
.wings-about-wrapper { padding: 60px 0; font-family: 'Poppins', sans-serif; }
.wings-about-row { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }

.wings-about-images { flex: 1; display: flex; gap: 20px; min-width: 300px; }
.wings-img-box img { 
    width: 100%; border-radius: 40px; object-fit: cover; 
    box-shadow: 0 10px 30px rgba(195, 5, 115, 0.05);
}
.wings-img-box.img-1 { margin-top: -30px; }
.wings-img-box.img-2 { margin-top: 30px; }

.wings-about-content { flex: 1.5; min-width: 300px; text-align: left; }
.wings-top-title { color: #C30573; font-weight: 800; letter-spacing: 1.5px; margin: 0; text-transform: uppercase; }
.wings-main-subtitle { font-size: 32px; font-weight: 800; color: #333; margin: 5px 0; line-height: 1.2; }
.wings-divider { width: 60px; height: 5px; background: #C30573; margin-bottom: 30px; border-radius: 50px; }

.wings-quote { 
    font-style: italic; color: #444; font-weight: 600; font-size: 22px; 
    line-height: 1.5; margin-bottom: 25px; 
    border-left: 5px solid #C30573; padding-left: 20px;
}
.wings-desc { color: #555; line-height: 1.7; margin-bottom: 25px; }

.wings-checklist { list-style: none; padding: 0; margin-bottom: 30px; }
.wings-checklist li { display: flex; align-items: center; margin-bottom: 12px; font-weight: 600; color: #333; }
.wings-checklist li i { color: #C30573; margin-right: 12px; font-size: 18px; }

/* Stats Grid Fix */
.wings-stats-grid { 
    display: flex; flex-wrap: wrap; gap: 20px; 
    border-top: 1px solid #eee; padding-top: 30px; 
}
.wings-stat-item { display: flex; align-items: center; gap: 15px; flex: 1; min-width: 150px; }

.wings-stat-icon {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.wings-stat-icon i, .wings-stat-icon svg { 
    font-size: 35px; color: #C30573; fill: #C30573;
    width: 35px; height: 35px; display: block;
}

.wings-stat-info h4 { margin: 0; font-size: 24px; font-weight: 800; color: #C30573; }
.wings-stat-info p { margin: 0; font-size: 13px; color: #777; font-weight: 600; }


/* --- MESSAGE SECTION FINAL FIX --- */
.wings-msg-section { padding: 80px 0; transition: 0.3s; }
.wings-msg-container { max-width: 1200px; margin: 0 auto; display: flex; gap: 50px; align-items: flex-start; }

/* Left Icons Fix */
.wings-msg-left { flex: 0 0 300px; }
.wings-facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; text-align: center; }
.wings-fac-icon { width: 60px; height: 60px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; }
.wings-fac-icon i, .wings-fac-icon svg { font-size: 50px; width: 50px; height: 50px; }

/* Right Content Fix */
.wings-msg-right { flex: 1; text-align: left; }
.wings-msg-label { font-size: 32px; font-weight: 800; margin: 0; background: transparent; }
.wings-msg-tabs { display: flex; gap: 30px; margin-top: 15px; cursor: pointer; border-bottom: 1px solid rgba(255,255,255,0.2); }
.wings-tab-btn { font-weight: 600; font-size: 13px; padding-bottom: 10px; background: transparent; }
.wings-tab-btn.active { border-bottom: 3px solid #fff; }
.wings-msg-divider { width: 60px; height: 4px; margin: 25px 0; border-radius: 10px; }

/* Tab Visibility Logic */
.wings-tab-content { display: none; background: transparent; }
.wings-tab-content.active { display: block; animation: wingsFadeIn 0.5s ease; }
.wings-msg-body p { font-size: 18px; line-height: 1.8; margin-bottom: 25px; background: transparent; }
.wings-msg-footer h4 { margin: 30px 0 0; font-size: 24px; font-weight: 800; background: transparent; }
.wings-msg-footer p { font-size: 14px; font-weight: 700; background: transparent; }

/* Photo Logic */
.wings-msg-photo { flex: 0 0 400px; }
.wings-msg-photo img { display: none; width: 100%; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.2); }
.wings-msg-photo img.active { display: block; animation: wingsZoom 0.4s ease; }

@keyframes wingsFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes wingsZoom { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* Mobile Responsive */
@media (max-width: 991px) {
    .wings-msg-container { flex-direction: column; padding: 0 20px; text-align: center; }
    .wings-msg-right { text-align: center; width: 100%; }
    .wings-msg-tabs { justify-content: center; }
    .wings-msg-divider { margin: 20px auto; }
    .wings-msg-photo { width: 100%; order: -1; margin-bottom: 30px; }
}

/* --- UPDATED: VERTICAL FACILITIES GRID (Pixel & Expansion Fix) --- */
/* --- VERTICAL FACILITIES GRID: NO-COLLAPSE FIX --- */

/* Elementor container ke width issue ko fix karna */
.elementor-widget-wings_facilities, 
.elementor-widget-wings_facilities .elementor-widget-container {
    width: 100%;
    display: block;
}

.wings-facilities-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.wings-facilities-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; /* Ek hi line mein force karega */
    width: 100%;
    height: 600px; /* Fixed Layout height */
    background: #000;
}

.wings-facility-strip {
    position: relative;
    height: 100%;
    /* 1px width issue fix: Width aur Min-width PHP se control ho rahi hai */
    flex-shrink: 0;
    flex-grow: 1; 
    cursor: pointer;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.3, 1);
    box-sizing: border-box;
    
    /* Background Image settings */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-right: 1px solid rgba(255,255,255,0.1);
}

/* Hover expansion: Items stretch honge */

/* Branding Overlay */
.wings-facility-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.85));
    transition: 0.4s;
    z-index: 1;
}

.wings-facility-strip:hover .wings-facility-overlay {
    background: rgba(195, 5, 115, 0.35); /* Magenta Brand Overlay */
}

.wings-facility-content {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    z-index: 10;
    padding: 0 10px;
}

/* Icon size and Magenta branding */
.wings-facility-icon i, 
.wings-facility-icon svg {
    font-size: 45px;
    width: 45px;
    height: 45px;
    color: #fff;
    fill: #fff;
    margin-bottom: 15px;
}

.wings-facility-title {
    color: #fff ;
    font-size: 18px ;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap; /* Title ko collapse hone se rokna */
}

.wings-facility-line {
    width: 50px;
    height: 4px;
    background: #C30573; /* Brand Magenta Color */
    margin: 10px auto 0;
    border-radius: 10px;
}

/* Mobile responsive layout */
@media (max-width: 991px) {
    .wings-facilities-grid {
        flex-direction: column ;
        height: auto ;
    }
    .wings-facility-strip {
        height: 250px;
        width: 100% ;
        min-width: 100% ;
    }
}

/* --- ADMISSION WIDGET: FINAL PROFESSIONAL REPAIR --- */
/* --- WINGS ADMISSION: SLEEK & PROFESSIONAL REPAIR --- */

.wings-adm-premium-card {
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 50px; /* High-end rounded corners */
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.wings-adm-flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    min-height: 440px;
}

/* Image Side: Collapse Fix */
.wings-adm-visual-area {
    position: relative;
    flex: 1 0 54%; /* Width locked for premium look */
    width: 54%;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.wings-adm-bottom-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.wings-adm-motto-box {
    position: absolute;
    bottom: 40px;
    left: 45px;
    right: 45px;
    z-index: 5;
    color: #ffffff;
}

.wings-adm-motto-h2 {
    font-size: 28px ;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wings-adm-motto-p {
    font-size: 18px;
    font-weight: 600;
    margin-top: 8px;
    opacity: 0.9;
}

/* Info Side: Sleek Spacing */
.wings-adm-info-area {
    flex: 1 0 46%;
    width: 46%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: #fff;
    text-align: center;
}

.wings-adm-main-head {
    color: #EAB308; /* Gold Yellow */
    font-size: 52px;
    font-weight: 900;
    margin: 0;
    letter-spacing: 1px;
}

.wings-adm-sub-head {
    color: #333;
    font-size: 32px;
    font-weight: 800;
    margin: 8px 0 15px;
}

.wings-adm-gold-bar {
    width: 90px;
    height: 9px;
    background: #D97706; /* Professional Accent Bar */
    margin: 0 auto 40px;
    border-radius: 20px;
}

/* SLEEK CTA BUTTON */
.wings-adm-cta-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FACC15;
    color: #000;
    padding: 22px 35px;
    border-radius: 18px;
    font-size: 21px;
    font-weight: 800;
    text-decoration: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.3);
    transition: all 0.3s ease;
}

.wings-adm-cta-main:hover {
    background: #EAB308;
    transform: translateY(-4px);
}

.wings-adm-arrow {
    font-size: 28px;
    font-weight: 400;
}

.wings-adm-footer-guideline {
    display: block;
    margin-top: 30px;
    color: #71717a;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .wings-adm-flex-container { flex-direction: column; }
    .wings-adm-visual-area { width: 100%; min-height: 300px; }
    .wings-adm-info-area { width: 100%; padding: 50px 20px; }
    .wings-adm-main-head { font-size: 42px; }
}
