@charset "utf-8";
/* ==========================================================================
   Modern Fluid Layout Architecture - Full Width & HTML5 Compatible
   ========================================================================== */

/* Universal Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    background-color: #fcfdfe;
    color: #2b2b2b;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

/* 1. Full Width Global Header Base */
.main-header {
    background: #ffffff;
    border-bottom: 4px solid #971C1F;
    padding: 15px 0;
    width: 100%;
}

.header-container {
    max-width: 1440px; /* Enhanced wide width frame desktop design standard */
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.logo-area img {
    max-height: 90px;
}

.header-right {
    text-align: right;
}

.contact-info {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 6px;
}

.contact-info span {
    color: #971C1F;
    font-weight: 800;
}

.top-nav-links {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.top-nav-links a {
    color: #555;
    margin: 0 8px;
    font-weight: 600;
}

.top-nav-links a:hover {
    color: #971C1F;
}

.marquee-wrapper {
    background: #971C1F;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 4px;
    max-width: 500px;
    margin-left: auto;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}

/* 2. Sticky 100% Navbar Component */
.navigation-bar {
    background: #1c5a80;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 18px 24px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu > li:hover > a {
    background: #123b54;
}

/* Dropdown Flyouts Layout */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 250px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: none;
    list-style: none;
    border-top: 3px solid #971C1F;
}

.submenu li a {
    display: block;
    padding: 14px 20px;
    color: #333333;
    font-size: 0.88rem;
    border-bottom: 1px solid #f1f1f1;
    font-weight: 500;
}

.submenu li a:hover {
    background: #f5f8fa;
    color: #1c5a80;
    padding-left: 26px;
}

.has-submenu:hover .submenu {
    display: block;
}

.menu-toggle, .menu-toggle-label {
    display: none;
}

/* 3. True 100% Full-Width Edge Slider Engine Box */
.full-width-slider-outer {
    width: 100%;
    background: #000000;
    position: relative;
}

/* Custom styled arrow control buttons */
.jssora11l, .jssora11r {
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s;
}

.jssora11l::before, .jssora11r::before {
    content: '';
    position: absolute;
    top: 16px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
}

.jssora11l::before {
    left: 19px;
    transform: rotate(-45deg);
}

.jssora11r::before {
    right: 19px;
    transform: rotate(135deg);
}

.jssora11l:hover, .jssora11r:hover {
    background: #971C1F;
    border-color: #ffffff;
    scale: 1.1;
}

/* Custom beautiful Radio-style Dots indicators */
.jssorb05 div {
    position: absolute;
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}
.jssorb05 div:hover, .jssorb05 .av {
    background: #971C1F !important;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

/* 4. Home Features Dashboard Grid Layout (No Tables) */
.features-section {
    padding: 50px 30px;
    background: #f4f7f9;
    width: 100%;
}

.features-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 35px;
    border-radius: 8px;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

.card-red { background: #971C1F; }
.card-blue { background: #1c5a80; }
.card-green { background: #236c26; }

.card-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-block;
}

.card-links a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.smartclass-banner img {
    margin-top: 15px;
    border-radius: 6px;
    border: 3px solid #ffffff;
}

/* 5. Institutional Content Section Layout */
.welcome-section {
    background: #ffffff;
    padding: 70px 30px;
    width: 100%;
}

.welcome-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    align-items: center;
}

.welcome-content-text h2 {
    color: #1c5a80;
    font-size: 1.9rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.welcome-content-text h3 {
    color: #555555;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.welcome-content-text p {
    line-height: 1.8;
    color: #444444;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.cta-readmore {
    display: inline-block;
    background: #971C1F;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(151,28,31,0.3);
}

.cta-readmore:hover {
    background: #7a1518;
}

.welcome-media-frame img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* 6. Deep Dark CSS Grid Responsive Footer Components */
.site-main-footer {
    background: #141414;
    color: #b3b3b3;
    padding: 60px 30px 20px 30px;
    width: 100%;
}

.footer-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    border-bottom: 1px solid #262626;
    padding-bottom: 40px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 20px;
    border-left: 4px solid #1c5a80;
    padding-left: 12px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #999999;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.social-integration {
    margin-top: 20px;
}

.social-integration img {
    display: inline-block;
    margin-right: 12px;
    margin-top: 10px;
    width: 36px;
}

.footer-bottom-bar {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

.branding-credits {
    margin-top: 10px;
}

.branding-credits a {
    color: #1c5a80;
    font-weight: bold;
}

/* ==========================================================================
   Smartphone & Tablet Adaptation Breakpoints (< 992px)
   ========================================================================== */
@media (max-width: 991px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .header-right {
        text-align: center;
    }
    .marquee-wrapper {
        margin: 12px auto 0 auto;
    }
    .welcome-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Pure CSS Mobile Navigation Menu Toggle Engine */
    .menu-toggle-label {
        display: block;
        padding: 16px 20px;
        color: #ffffff;
        background: #123b54;
        font-weight: bold;
        cursor: pointer;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-menu > li > a {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .submenu {
        position: static;
        box-shadow: none;
        background: #123b54;
        display: block;
    }
    
    .submenu li a {
        color: #e1e1e1;
        padding-left: 35px;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        display: flex;
    }
    
    /* Auto adjust height handling variables for slider on smartphone viewports */
    #slider1_container {
        height: 320px !important;
    }
    div[u="slides"] {
        height: 320px !important;
    }
    
    .jssora11l, .jssora11r {
        width: 38px;
        height: 38px;
    }
    .jssora11l::before { top: 11px; left: 14px; }
    .jssora11r::before { top: 11px; right: 14px; }
}