body {
    background-color: #fff;
    padding-top: 65px; /* Reduced padding to account for fixed navbar */
}

 .principal-value-section {
     background-color: #f0f8ff;
     padding: 20px;
     border-radius: 10px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     margin: 20px 0;
 }

 .principal-value-section h2 {
     font-size: 2rem;
     color: #003366;
     margin-bottom: 15px;
 }

 .principal-value-section p {
     font-size: 1rem;
     color: #333;
     line-height: 1.5;
 }

/* Principal Value cards */
.pv-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pv-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(2,32,71,0.06);
    padding: 1.75rem;
    text-align: center;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    border: 1px solid rgba(2,32,71,0.04);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pv-card:hover,
.pv-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(2,32,71,0.12);
}

.pv-img-space {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9f0fb 0%, #f6fbff 100%);
}

.pv-img-space img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pv-icon {
    font-size: 2.25rem;
    margin-top: 0.25rem;
}

.pv-title {
    color: #003e78;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0.25rem 0;
}

.pv-desc {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: auto; /* push description to bottom if needed */
}

/* Accent colored icons for variety */
.pv-icon.accent-blue { color: #2563eb; }
.pv-icon.accent-green { color: #10b981; }
.pv-icon.accent-gold  { color: #f59e0b; }
.pv-icon.accent-red   { color: #ef4444; }
.pv-icon.accent-indigo{ color: #6366f1; }
.pv-icon.accent-cyan  { color: #06b6d4; }

@media (max-width: 520px) {
    .pv-img-space { height: 110px; }
    .pv-card { padding: 1.25rem; }
    .principal-value-section { padding: 2.5rem 1rem; }
}
/* FSCS NAVBAR DESKTOP STYLES */
.fscs-navbar {
    background: white;
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border: 0.3rem solid rgb(0, 62, 120);
}
.fscs-navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.3rem 2.5rem;
    min-height: 60px;
    position: relative;
}
.fscs-navbar-logo {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0.5rem;
    padding: 0.2rem 0;
}
.fscs-logo-img {
    display: block;
    height: 40px;
    width: auto;
    margin: 0;
    object-fit: contain;
}
.fscs-logo-text {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
}
.fscs-navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.fscs-navbar-menu li {
    position: relative;
}
.fscs-navbar-menu a {
    color: rgb(0, 62, 120);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.2rem 0.7rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    
}
.fscs-navbar-menu a:hover, .fscs-navbar-menu a.active {
    background: rgba(255, 255, 255, 0.13);
    color: #ffe600;
}
.fscs-navbar-contact {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: none;
}
.fscs-navbar-phone-icon {
    background: rgb(0, 62, 120);
    color: #ffffff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.3rem;
}
.fscs-navbar-phone-text {
    color: rgb(0, 62, 120);
    font-weight: 700;
    letter-spacing: 1px;
}
@media (max-width: 900px) {
    .fscs-navbar-container {
        padding: 0.3rem 1rem;
    }
    .fscs-logo-text {
        font-size: 1.1rem;
    }
    .fscs-navbar-menu {
        gap: 1rem;
    }
    .fscs-logo-img {
        height: 36px;
    }
}

@media (max-width: 500px) {
    .fscs-logo-img {
        height: 32px;
    }
}

@media (max-width: 700px) {
    .fscs-navbar-menu {
        display: none !important;
    }
    .fscs-navbar-contact:not(.navbar-contact-mobile .fscs-navbar-contact) {
        display: none !important;
    }
}

/* Unique Navbar Style */
.unique-navbar {
    background: white;
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
    border-radius: 0 0 32px 32px;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.unique-navbar .fscs-navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.unique-navbar .fscs-navbar-logo img {
    height: 48px;
}
.unique-navbar .fscs-navbar-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.unique-navbar .fscs-navbar-menu li a {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}
.unique-navbar .fscs-navbar-menu li a:hover {
    background: #fff;
    color: #204d0c;
}
.unique-navbar .fscs-navbar-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    padding: 0.3rem 1rem;
    border-radius: 20px;
}
.unique-navbar .fscs-navbar-phone-icon svg {
    vertical-align: middle;
}
.unique-navbar .fscs-navbar-phone-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}
@media (max-width: 900px) {
    .unique-navbar .fscs-navbar-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    .unique-navbar .fscs-navbar-menu {
        gap: 1rem;
        flex-wrap: wrap;
    }
}

/* Unique Dropdown Styles */
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0,62,120,0.13);
    border-radius: 0 0 16px 16px;
    padding: 0.5rem 0;
    z-index: 2000;
    transition: all 0.2s;
    list-style: none;
}
.dropdown-menu li {
    width: 100%;
}
.dropdown-menu a {
    color: rgb(0, 62, 120);
    padding: 0.6rem 1.2rem;
    display: block;
    border-radius: 0;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    border-bottom: none;
}
.dropdown-menu a:hover {
    background: rgb(0, 62, 120);
    color: #fff;
}
.dropdown:hover > .dropdown-menu {
    display: block;
}

/* Navbar Buttons Section */
.navbar-buttons-section {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.7rem 0 0rem 0;
    background: #f7fafc;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 2px 12px rgba(0,62,120,0.07);
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
    position: relative;
}
.navbar-btn {
    background: rgb(0, 62, 120);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,62,120,0.10);
}
.navbar-btn:hover {
    background: #ffe600;
    color: rgb(0, 62, 120);
    box-shadow: 0 4px 16px rgba(0,62,120,0.13);
}

/* Mobile Navbar Styles */
@media (max-width: 700px) {
    .navbar-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2001;
        margin-left: auto;
    }
    .navbar-hamburger span {
        display: block;
        width: 28px;
        height: 4px;
        margin: 4px 0;
        background: rgb(0, 62, 120);
        border-radius: 2px;
        transition: 0.3s;
    }
    .fscs-navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100vw;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0,62,120,0.13);
        z-index: 2000;
        padding: 1rem 0;
        border-radius: 0 0 18px 18px;
        animation: slideDown 0.3s;
    }
    .fscs-navbar-menu.active {
        display: flex !important;
    }
    .fscs-navbar-menu li {
        width: 100%;
        text-align: left;
        margin: 0;
    }
    .fscs-navbar-menu a {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        color: rgb(0, 62, 120);
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    .fscs-navbar-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f7fafc;
        border-radius: 0 0 12px 12px;
        margin: 0 0 0 1rem;
        padding: 0.5rem 0;
        display: none;
    }
    .fscs-navbar-menu .dropdown.open > .dropdown-menu {
        display: block;
    }
    .fscs-navbar-contact {
        display: none;
    }
    .fscs-navbar-contact.active {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        padding: 1rem 2rem;
        border-radius: 0 0 18px 18px;
        box-shadow: 0 8px 24px rgba(0,62,120,0.13);
    }
    .navbar-buttons-section {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.7rem 0.5rem 0.7rem 0.5rem;
        border-radius: 0 0 12px 12px;
        margin-bottom:0.8rem;
    }
    .navbar-btn {
        width: auto;
        min-width: 0;
        font-size: 0.98rem;
        padding: 0.7rem 1.1rem;
    }
}

@media (max-width: 450px) and (min-width: 412px) {
    .navbar-buttons-section {
        gap: 0.4rem;
        padding: 0.5rem 0.4rem;
        flex-direction: row;
    }
    .navbar-btn {
        font-size: 0.88rem;
        padding: 0.5rem 0.9rem;
        border-radius: 18px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 365px) and (min-width: 320px) {
    .navbar-buttons-section {
        gap: 0.2rem;
        padding: 0.3rem 0.2rem;
    }
    .navbar-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
        border-radius: 16px;
        letter-spacing: 0.5px;
    }}

/* Contact Form Sheet Styles */
.contact-forms-wrapper {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.contact-actions {
    display: flex;
    gap: 10px;
}

.action-button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.export-btn {
    background-color: #4CAF50;
    color: white;
}

.print-btn {
    background-color: #2196F3;
    color: white;
}

.action-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.contact-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.contact-table th,
.contact-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.contact-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.contact-table tr:hover {
    background-color: #f5f5f5;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 500;
}

.status-new {
    background-color: #e3f2fd;
    color: #1976d2;
}

.status-pending {
    background-color: #fff3e0;
    color: #f57c00;
}

.status-resolved {
    background-color: #e8f5e9;
    color: #388e3c;
}

.message-preview {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.action-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    background-color: #6200ea;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: #5000d3;
}

@media print {
    body * {
        visibility: hidden;
    }
    
    #contact-forms-section,
    #contact-forms-section * {
        visibility: visible;
    }
    
    #contact-forms-section {
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .action-btn,
    .contact-actions {
        display: none;
    }
}


/* Show contact only in mobile menu hamburger */
.navbar-contact-mobile {
    display: none;
}
@media (min-width: 701px) {
    /* Desktop-specific styles */
    .navbar-contact-mobile {
        display: none !important;
    }
    
    /* Simplified desktop layout */
    .fscs-navbar-container {
        max-width: 1400px;
        padding: 0.5rem 2rem;
    }
    
    .fscs-navbar-menu {
        gap: 1.5rem;
    }
    
    .fscs-navbar-menu a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .fscs-navbar-contact {
        padding: 0.5rem 1.2rem;
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    
    .fscs-navbar-phone-text {
        color: white;
    }
    
    .fscs-navbar-phone-icon {
        background: rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 700px) {
    .navbar-contact-mobile {
        display: block;
        text-align: center;
        margin: 0.8rem 1rem 1.5rem 1rem;
        position: relative;
    }
    .navbar-contact-mobile .fscs-navbar-contact {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        background: rgb(0, 62, 120);
        color: #fff;
        border-radius: 12px;
        padding: 0.6rem 1rem;
        box-shadow: 0 2px 12px rgba(0, 62, 120, 0.15);
        gap: 0.8rem;
        transition: all 0.3s ease;
    }

    .navbar-contact-mobile .fscs-navbar-phone-icon {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px;
        transition: all 0.3s ease;
    }
    .navbar-contact-mobile .fscs-navbar-phone-text {
        color: #fff;
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    /* Smaller screens adjustments */
    @media (max-width: 365px) {
        .navbar-contact-mobile {
            margin: 0.6rem 0.8rem 1.2rem 0.8rem;
        }
        .navbar-contact-mobile .fscs-navbar-contact {
            padding: 0.5rem 0.8rem;
            gap: 0.6rem;
        }
        .navbar-contact-mobile .fscs-navbar-phone-icon {
            width: 24px;
            height: 24px;
            padding: 4px;
        }
        .navbar-contact-mobile .fscs-navbar-phone-text {
            font-size: 0.85rem;
        }
    }
}

/* Medium-small screen adjustments */
@media (max-width: 450px) and (min-width: 412px) {
    .navbar-buttons-section {
        gap: 0.4rem;
        padding: 0.5rem 0.4rem;
        flex-direction: row;
    }
    .navbar-btn {
        font-size: 0.88rem;
        padding: 0.5rem 0.9rem;
        border-radius: 18px;
        letter-spacing: 0.5px;
    }
}

/* Small-medium screen adjustments */
@media (max-width: 411px) and (min-width: 366px) {
    .navbar-buttons-section {
        gap: 0.3rem;
        padding: 0.4rem 0.3rem;
        flex-direction: row;
    }
    .navbar-btn {
        font-size: 0.82rem;
        padding: 0.45rem 0.75rem;
        border-radius: 17px;
        letter-spacing: 0.5px;
    }
}

/* Very small screen adjustments */
@media (max-width: 365px) and (min-width: 320px) {
    .navbar-buttons-section {
        gap: 0.2rem;
        padding: 0.3rem 0.2rem;
    }
    .navbar-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
        border-radius: 16px;
        letter-spacing: 0.5px;
    }
}


/* Unique Hamburger Animation and Style */
.navbar-hamburger {
    display: none !important;
    position: relative;
    background: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    transition: none;
    justify-content: center;
    align-items: center;
}
.bar {
    display: block;
    position: absolute;
    left: 9px;
    width: 26px;
    height: 4px;
    background: linear-gradient(90deg, #204d0c 0%, #6dbb43 100%);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(.4,2,.6,1);
}
.bar1 { top: 13px; }
.bar2 { top: 20px; }
.bar3 { top: 27px; }
.navbar-hamburger.active .bar1 {
    transform: translateY(7px) rotate(45deg);
    background: #204d0c;
}
.navbar-hamburger.active .bar2 {
    opacity: 0;
}
.navbar-hamburger.active .bar3 {
    transform: translateY(-7px) rotate(-45deg);
    background: #204d0c;
}
@media (max-width: 700px) {
    .navbar-hamburger {
        display: flex !important;
    }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, rgb(0, 62, 120) 0%, rgb(0, 45, 90) 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('pattern.png') repeat;
    opacity: 0.1;
}

.contact-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.contact-subheading {
    font-size: 1.2rem;
    opacity: 0.9;
}

.campus-locations {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.locations-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 62, 120, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgb(0, 62, 120);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 62, 120, 0.15);
}

.location-card:hover::before {
    transform: scaleX(1);
}

.location-title {
    color: rgb(0, 62, 120);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.location-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgb(0, 62, 120);
    border-radius: 2px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.location-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-info i {
    color: rgb(0, 62, 120);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.location-info p {
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 2.5rem;
    }
    
    .contact-subheading {
        font-size: 1rem;
    }
    
    .campus-locations {
        padding: 3rem 1rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-heading {
        font-size: 2rem;
    }
    
    .locations-container {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Styles */
.contact-form-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 62, 120, 0.05);
    overflow: hidden;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgb(0, 62, 120);
    color: white;
}

.form-header h2 {
    color: rgb(0, 62, 120);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-header p {
    color: #4a5568;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 62, 120, 0.08);
}

.contact-info-sidebar {
    background: rgb(0, 62, 120);
    padding: 2rem;
    color: white;
}

.contact-info-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-header i {
    font-size: 1.5rem;
}

.info-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.contact-info-card p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-form {
    padding: 2rem 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

/* Simplified form styles for desktop */
@media (min-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: rgb(0, 62, 120);
        box-shadow: 0 0 0 2px rgba(0, 62, 120, 0.1);
    }

    .submit-button {
        background: rgb(0, 62, 120);
        color: white;
        padding: 0.8rem 2rem;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.2s ease;
    }

    .submit-button:hover {
        background: rgb(0, 45, 90);
        transform: translateY(-2px);
    }
}

.form-group label {
    display: block;
    color: rgb(0, 62, 120);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Placeholder Styles */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
    opacity: 0.8;
}

/* Placeholder styles for select */
.form-group select {
    color: #94a3b8;
}

.form-group select option:not(:first-child) {
    color: #1e293b;
}

/* Adjust input padding for different screen sizes */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 0.9rem;
        font-size: 0.9rem;
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(0, 62, 120);
    box-shadow: 0 0 0 3px rgba(0, 62, 120, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: rgb(0, 62, 120);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.submit-button:hover {
    background: rgb(0, 45, 90);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 62, 120, 0.2);
}

.submit-button i {
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .contact-info-card {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .form-header h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 3rem 1rem;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .contact-info-sidebar {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Social Icons Bar Styles */
.social-icons-bar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5px;
}

/* Admission Form Styles */
.admission-section {
    padding: 4.5rem 2rem;
    background: linear-gradient(135deg,#f8fafc 0%, #ffffff 100%);
}

.admission-container {
    max-width: 1200px;
    margin: 0 auto;
}

.admission-header {
    text-align: center;
    margin-bottom: 2rem;
}

.admission-header h1 {
    color: rgb(0,62,120);
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.admission-header p { color: #4a5568; max-width: 800px; margin: 0 auto; }

.admission-form-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

.admission-form {
    background: white;
    padding: 2.2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,62,120,0.06);
}

.admission-form .row { display: flex; gap: 1.2rem; margin-bottom: 1rem; }
.admission-form .col { flex: 1; display:flex; flex-direction:column; }
.admission-form .col-full { width:100%; }

.admission-form label { font-weight:600; color: rgb(0,62,120); margin-bottom:0.4rem; }
.admission-form input[type="text"],
.admission-form input[type="tel"],
.admission-form input[type="date"],
.admission-form select,
.admission-form textarea,
.admission-form input[type="file"] {
    padding: 0.95rem 1rem;
    border: 2px solid #e6eef6;
    border-radius: 10px;
    font-size: 1rem;
    color: #0f172a;
}

.admission-form textarea { min-height:90px; resize:vertical; }

.admission-form input[type="file"] { padding: 0.6rem 0.75rem; }

.admit-submit {
    background: rgb(0,62,120);
    color: #fff;
    border: none;
    padding: 0.95rem 1.2rem;
    border-radius: 10px;
    font-weight:700;
    font-size:1rem;
    cursor:pointer;
    width: 100%;
    margin-top: 0.6rem;
}

.admit-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,62,120,0.12); }

.admission-side .side-box {
    background: linear-gradient(180deg, rgb(0,62,120), #193f74);
    color: #fff;
    padding: 1.6rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,62,120,0.08);
}

.admission-side .side-box h3 { margin-top:0; margin-bottom:0.6rem; }
.admission-side .side-box p { margin:0 0 0.8rem 0; color: rgba(255,255,255,0.92); }
.admission-side .side-box ul { padding-left: 1rem; margin:0; }
.admission-side .side-box ul li { margin-bottom: 0.45rem; }

/* File row tweaks */
.file-row .col { display:flex; flex-direction:column; }

/* Responsive */
@media (max-width: 1000px) {
    .admission-form-wrap { grid-template-columns: 1fr; }
    .admission-form { padding: 1.6rem; }
}

@media (max-width: 480px) {
    .admission-section { padding: 2.2rem 1rem; }
    .admission-header h1 { font-size:1.6rem; }
    .admission-form .row { flex-direction: column; gap: 0.6rem; }
    .admission-form input[type="text"], .admission-form select, .admission-form textarea { padding: 0.7rem 0.85rem; }
    .admit-submit { padding: 0.9rem; }
}


.social-icons-bar .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgb(0, 62, 120);
}

.social-icons-bar .social-icon:hover {
    width: 50px;
    box-shadow: 5px 0 10px rgba(0,0,0,0.2);
}

.social-icons-bar .social-icon i {
    color: white;
}

.social-icons-bar .facebook {
    background: #3b5998;
}

.social-icons-bar .twitter {
    background: #1DA1F2;
}

.social-icons-bar .linkedin {
    background: #0077b5;
}

.social-icons-bar .youtube {
    background: #FF0000;
}

.social-icons-bar .whatsapp {
    background: #25D366;
    /* WhatsApp green color */
}

.social-icons-bar .envelope {
    background: #333333;
}

@media (max-width: 768px) {
    .social-icons-bar {
        position: fixed;
        left: 0;
        width: auto;
        top: 65%;  /* Move icons lower on mobile */
        transform: translateY(-50%);
    }

    .social-icons-bar .social-icon {
        width: 35px;  /* Slightly smaller on mobile */
        height: 35px;
    }

    .social-icons-bar .social-icon:hover {
        width: 40px;  /* Smaller expansion on mobile */
    }
}
/* Unique Slider Styles */
.unique-slider {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 62, 120, 0.15);
    transition: box-shadow 0.4s ease;
    margin: 2rem auto;
    max-width: 1400px;
}

.unique-slider .slider-container {
    display: flex;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.unique-slider .slide {
    position: relative;
    min-width: 100%;
    opacity: 0.92;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.unique-slider .slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.85) contrast(1.1);
}

.unique-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

.unique-slider .slide.active img {
    transform: scale(1.04);
    filter: brightness(0.9) contrast(1.15) saturate(1.1);
}

.unique-slider .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.unique-slider .slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.unique-slider .slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.unique-slider .slide-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.unique-slider .slide-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgb(0, 62, 120);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.unique-slider .slide-btn:hover {
    background: #ffe600;
    color: rgb(0, 62, 120);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Welcome Slider Unique Styles */
.welcome-slider {
    width: 100vw;
    max-width: 100vw;
    margin: 0 0 2rem 0;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    border-radius: 0;
    box-shadow: none;
    position: relative;
    height: calc(70vh - 80px);
    min-height: 500px;
}

.welcome-slider .slider-container {
    height: 100%;
}

.welcome-slider .slide {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.welcome-slider .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,62,120,0.85) 0%, rgba(0,62,120,0.4) 100%);
    z-index: 1;
}

.welcome-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-slider .slide.active img {
    transform: scale(1);
}

.welcome-slider .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 900px;
    padding: 0 1rem;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.welcome-slider .slide.active .slide-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* Quicker animations on mobile */
@media (max-width: 480px) {
    .welcome-slider .slide-content,
    .welcome-slider .welcome-tag,
    .welcome-slider .slide-content h2,
    .welcome-slider .slide-content p,
    .welcome-slider .slide-buttons {
        transition-duration: 0.4s;
    }
}

.welcome-slider .welcome-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 230, 0, 0.9);
    color: rgb(0, 62, 120);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    transform: translateY(-26px); /* moved higher */
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.welcome-slider .slide.active .welcome-tag {
    transform: translateY(0);
    opacity: 1;
}

.welcome-slider .slide-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 0.8rem;
    line-height: 1.2;
    max-width: 800px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.welcome-slider .slide.active .slide-content h2 {
    transform: translateY(0);
    opacity: 1;
}

.welcome-slider .slide-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    margin: 0 auto 1.5rem;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.welcome-slider .slide.active .slide-content p {
    transform: translateY(0);
    opacity: 1;
}

.welcome-slider .slide-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transform: translateY(0px); /* buttons moved up */
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.welcome-slider .slide.active .slide-buttons {
    transform: translateY(0);
    opacity: 1;
}

.welcome-slider .slide-btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    min-width: 160px;
    text-align: center;
    transition: all 0.3s ease;
}

.welcome-slider .slide-btn.primary {
    background: #ffe600;
    color: rgb(0, 62, 120);
    border: 2px solid #ffe600;
}

.welcome-slider .slide-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.welcome-slider .slide-btn.primary:hover {
    background: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.welcome-slider .slide-btn.secondary:hover {
    background: white;
    color: rgb(0, 62, 120);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
    .welcome-slider {
        height: calc(100vh - 60px);
        min-height: 800px;
    }

    .welcome-slider .slide-content {
        top: 25%;
    }

    .welcome-slider .slide-content h2 {
        font-size: 2.5rem;
    }

    .welcome-slider .slide-content p {
        font-size: 1.1rem;
    }

    .welcome-slider .welcome-tag {
        font-size: 1rem;
        padding: 0.4rem 1.2rem;
    }

    .welcome-slider .slide-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .welcome-slider .slide-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .welcome-slider {
        height: 100vh;
        min-height: 750px;
        margin-bottom: 2rem;
    }
    
    .welcome-slider .slide-content {
        top: 50%;
        padding: 0 0.8rem;
        width: 100%;
        gap: 0.8rem;
        transform: translate(-50%, -55%); /* Slight adjustment for mobile balance */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .welcome-slider .slide img {
        height: 100%;
        object-fit: cover;
    }

    .welcome-slider .slide-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
        padding: 0 0.3rem;
    }

    .welcome-slider .slide-content p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
        padding: 0 0.8rem;
        opacity: 0.9;
    }

    .welcome-slider .welcome-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.7rem;
        margin-bottom: 0.5rem;
        border-radius: 12px;
    }

    .welcome-slider .slide-buttons {
        margin-top: 1rem;
        gap: 0.6rem;
    }

    .welcome-slider .slide-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        min-width: 140px;
        border-radius: 20px;
    }
    
    /* Make buttons stack vertically with less space */
    .welcome-slider .slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .welcome-slider .slide-btn.primary,
    .welcome-slider .slide-btn.secondary {
        width: auto;
        min-width: 200px;
        margin: 0;
    }
}


/* Achievement Slider Unique Styles */
.achievement-slider {
    background: linear-gradient(45deg, rgb(0, 62, 120), #1a4b8c);
    padding: 2rem;
    border-radius: 32px;
    margin: 4rem auto;
}

.achievement-slider .slide {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.achievement-slider .slide img {
    height: 300px;
    opacity: 0.85;
    mix-blend-mode: overlay;
}

.achievement-slider .achievement-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffe600;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.achievement-slider .slide-content {
    background: linear-gradient(0deg, rgba(0,62,120,0.95) 0%, rgba(0,62,120,0.7) 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.achievement-slider .slide-content h2 {
    color: white;
    font-size: 1.8rem;
    margin: 0.8rem auto;
    max-width: 300px;
    font-weight: 600;
}

.achievement-slider .slide-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0 auto 1.5rem;
    max-width: 280px;
    line-height: 1.5;
}

.achievement-slider .slide-btn {
    background: #ffe600;
    color: rgb(0, 62, 120);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    min-width: 140px;
    text-align: center;
    display: inline-block;
}

.achievement-slider .slide-btn:hover {
    background: white;
    transform: translateY(-3px);
}

.achievement-slider .slide.active {
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.achievement-slider .slide.active .achievement-number {
    animation: countUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Program Cards Section */
.program-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 2rem;
    max-width: 1400px;
    margin: -5rem auto 2rem;
    position: relative;
    z-index: 10;
}

.program-cards .card {
    background: #fff;
    border-radius: 35px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    position: relative;
}

.program-cards .card.foundation {
    background: #8B2500;
    color: #fff;
}

.program-cards .card.primary {
    background: #4B0082;
    color: #fff;
}

.program-cards .card.secondary {
    background: #FF8C00;
    color: #fff;
}

.program-cards .card.distinct {
    background: #006400;
    color: #fff;
}

.program-cards .card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.program-cards .card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    opacity: 0.9;
}

.program-cards .read-more-btn {
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
    width: fit-content;
    align-self: flex-start;
}

/* Specific button styles for each card */
.program-cards .card.foundation .read-more-btn {
    background: #2196F3;
    color: #fff;
}

.program-cards .card.primary .read-more-btn {
    background: #FFA000;
    color: #fff;
}

.program-cards .card.secondary .read-more-btn {
    background: #00E5FF;
    color: #000;
}

.program-cards .card.distinct .read-more-btn {
    background: #FF5252;
    color: #fff;
}

.program-cards .card.foundation .read-more-btn {
    background: #2196F3;
    color: #fff;
}

.program-cards .card.primary .read-more-btn {
    background: #FFA000;
    color: #fff;
}

.program-cards .card.secondary .read-more-btn {
    background: #00BCD4;
    color: #fff;
}

.program-cards .card.distinct .read-more-btn {
    background: #FF5252;
    color: #fff;
}

.program-cards .card {
    position: relative;
    overflow: hidden;
}

/* Add light rings to cards */
.program-cards .card::before,
.program-cards .card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Large ring in top-right */
.program-cards .card::before {
    width: 180px;
    height: 180px;
    top: -90px;
    right: -90px;
    border: 25px solid rgba(255, 255, 255, 0.1);
}

/* Small ring in bottom-left */
.program-cards .card::after {
    width: 120px;
    height: 120px;
    bottom: -60px;
    left: -60px;
    border: 20px solid rgba(255, 255, 255, 0.08);
}

/* Additional middle ring for depth */
.program-cards .card .middle-ring {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    right: 20px;
    bottom: 40px;
    border: 15px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.program-cards .card:hover {
    transform: translateY(-5px);
}

.program-cards .card:hover::before {
    transform: scale(1.1) rotate(5deg);
}

.program-cards .card:hover::after {
    transform: scale(1.1) rotate(-5deg);
}

.program-cards .card:hover .middle-ring {
    transform: scale(1.15);
}

.program-cards .card::before,
.program-cards .card::after,
.program-cards .card .middle-ring {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-cards .read-more-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 1200px) {
    .program-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 1.5rem;
        margin-top: -3rem;
    }
    
    .program-cards .card {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .program-cards {
        grid-template-columns: 1fr;
        padding: 1rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .program-cards .card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .program-cards .card h3 {
        font-size: 1.8rem;
    }

    .welcome-slider {
        height: 50vh;
        min-height: 300px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .program-cards {
        margin-top: 4rem;
        padding: 0.8rem;
        position: relative;
        z-index: 1;
    }

    .program-cards .card {
        padding: 1.2rem 1rem;
        margin-bottom: 1rem;
        min-height: 200px;
        height: auto;
    }

    .program-cards .card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .program-cards .card p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .program-cards .read-more-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .welcome-slider {
        margin-bottom: 3rem;
    }
    
    .program-cards .card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .program-cards .card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .program-cards .read-more-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .welcome-slider {
        height: 45vh; /* Even shorter on smaller screens */
        min-height: 280px;
    }

    .welcome-slider .slide-content {
        padding: 1rem;
    }
}

/* Responsive design for program cards */
@media (max-width: 1200px) {
    .program-cards {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
        margin-top: -2rem;
    }
}

/* Chairman image - unique framed style */
.chairman-figure {
    --frame-size: 14px;
    max-width: 520px;
    margin: 0 auto;
    perspective: 1400px;
}
.chairman-figure .chairman-image {
    position: relative;
    border-radius: 18px;
    overflow: visible;
    transform-style: preserve-3d;
    transition: transform 0.45s cubic-bezier(.2,.9,.2,1), box-shadow 0.45s;
}
.chairman-figure .chairman-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
    transform: translateZ(12px);
}
.chairman-figure::before {
    /* colorful gradient frame */
    content: '';
    position: absolute;
    inset: calc(-1 * var(--frame-size));
    z-index: -2;
    border-radius: 22px;
  background-color: #e6f0ff;
    filter: blur(10px) saturate(1.1);
    opacity: 0.95;
}
.chairman-figure::after {
    /* subtle paper card underlay for depth */
    content: '';
    position: absolute;
    left: 18px;
    top: 28px;
    right: 18px;
    bottom: 18px;
    z-index: -3;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.04));
    transform: rotateX(12deg) translateZ(-20px);
    box-shadow: 0 18px 40px rgba(2,6,23,0.18);
}
.chairman-figure .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* keep click on button */
}
.chairman-figure .play-button {
    pointer-events: auto;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
    box-shadow: 0 10px 30px rgba(2,6,23,0.2), 0 2px 6px rgba(0,0,0,0.12) inset;
    transform: translateZ(30px) scale(1);
    transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.25s;
    color: #204d0c;
    border: 3px solid rgba(32,77,12,0.06);
}
.chairman-figure .play-button:focus,
.chairman-figure .play-button:hover {
    transform: translateZ(34px) scale(1.08);
    box-shadow: 0 18px 44px rgba(2,6,23,0.28);
}
.chairman-figure .play-button i { font-size: 1.2rem; }
.chairman-figure .caption {
    margin-top: .8rem;
    text-align: center;
    color: #14331a;
    font-weight: 700;
}
.chairman-figure .caption small {
    display: block;
    margin-top: 0.2rem;
    color: #3f5a42;
    font-weight: 600;
}

/* hover tilt */
.chairman-figure:hover .chairman-image { transform: rotateX(6deg) rotateY(-6deg) translateZ(8px); box-shadow: 0 30px 70px rgba(2,6,23,0.25); }

/* responsive tweaks */
@media (max-width: 768px) {
    .chairman-figure { max-width: 100%; --frame-size: 10px; }
    .chairman-figure .play-button { width: 62px; height: 62px; }
}


/* Branch Section Styles */
.branches-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.branches-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: rgb(0, 62, 120);
    margin-bottom: 3rem;
    font-weight: 700;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.branch-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 62, 120, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 62, 120, 0.15);
}

.branch-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.branch-card:hover .branch-image {
    transform: scale(1.05);
}

.branch-content {
    padding: 1.5rem;
}

.branch-title {
    color: rgb(0, 62, 120);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.branch-description {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.branch-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgb(0, 62, 120);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.branch-link:hover {
    background: #ffe600;
    color: rgb(0, 62, 120);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .branches-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .branches-grid {
        gap: 1.5rem;
    }
    
    .branch-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .branches-section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .branch-content {
        padding: 1.2rem;
    }
    
    .branch-title {
        font-size: 1.3rem;
    }
    
    .branch-description {
        font-size: 0.9rem;
    }
}

/* Downloads section styles */
.downloads-section { padding: 2rem 1rem 4rem 1rem; }
.downloads-section .section-title { font-size: 2rem; color: rgb(0,62,120); margin-bottom: 0.25rem; }
.downloads-section .section-sub { color: #475569; margin-bottom: 1rem; }
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
}
.download-card {
    background: #fff;
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(2,6,23,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}
.download-card h3 { margin: 0 0 0.5rem 0; color: rgb(0,62,120); }
.download-card p { margin: 0 0 0.75rem 0; color: #475569; font-size: 0.95rem; }
.card-actions { display:flex; justify-content:flex-start; }
.download-btn {
    display:inline-flex;
    align-items:center;
    gap:0.5rem;
    background: rgb(0,62,120);
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    text-decoration:none;
    font-weight:600;
}
.download-btn:hover { background: #13406b; transform: translateY(-2px); }

@media (max-width: 1000px) {
    .downloads-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .downloads-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .program-cards {
        grid-template-columns: 1fr;
        padding: 1rem;
        margin-top: -1rem;
    }

    .program-cards .card {
        min-height: auto;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .achievement-slider {
        padding: 1rem;
        margin: 2rem auto;
    }
    
    .achievement-slider .slide img {
        height: 300px;
    }
    
    .achievement-slider .achievement-number {
        font-size: 3rem;
    }
    
    .achievement-slider .slide-content {
        padding: 2rem 1.5rem;
    }
    
    .achievement-slider .slide-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .achievement-slider {
        padding: 0.5rem;
        margin: 1.5rem auto;
    }
    
    .achievement-slider .slide img {
        height: 250px;
    }
    
    .achievement-slider .achievement-number {
        font-size: 2.5rem;
    }
    
    .achievement-slider .slide-content {
        padding: 1.5rem 1rem;
    }
    
    .achievement-slider .slide-content h2 {
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .achievement-slider .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .achievement-slider .slide-btn {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }
}

/* Achievements Section */
.achievements-section {
    position: relative;
    background: rgb(32, 93, 151);
    color: #fff;
    padding: 1.6rem 0.6rem; /* reduced vertical and horizontal padding */
    overflow: hidden;
}

.achievements-section .achievements-bg {
    position: absolute;
    inset: 0;
    background-image: url('college-bg.jpg'); /* add an image named college-bg.jpg to project */
    background-size: cover;
    background-position: center right;
    opacity: 0.12;
    filter: blur(2px) saturate(0.9);
    z-index: 0;
}

.achievements-section .achievements-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0.6rem;
}

/* layout: left image card, right stats */
.achievements-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem; /* tighten gap */
    align-items: center;
}

.achieve-card {
    display: flex;
    justify-content: center;
}

.achieve-image {
    width: 100%;
    max-width: 420px; /* slightly larger */
    height: 260px; /* slightly taller */
    border-radius: 10px;
    background-color: transparent; /* remove white card background */
    background-size: cover; /* fill and crop to focus */
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
    border: 0; /* remove border so image blends */
}

.achievements-stats h2 {
    font-size: 1.3rem; /* smaller heading */
    margin: 0 0 6px 0;
    font-weight: 700;
    text-align: left;
    color: #fff;
}
.achieve-sub {
    color: rgba(255,255,255,0.9);
    text-align: left;
    margin-bottom: 0.8rem; /* tighter spacing */
    font-size: 0.95rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.stat-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 1rem 0.8rem; /* reduced padding */
    border-radius: 8px;
    text-align: center;
    min-height: 100px; /* smaller boxes */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-num {
    font-size: 2.2rem; /* smaller numbers */
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .achievements-wrapper { grid-template-columns: 1fr; gap: 0.8rem; }
    .achieve-image { max-width: 400px; height: 220px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .achievements-wrapper { gap: 0.6rem; }
    .achieve-image { max-width: 340px; height: 180px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-box { min-height: 80px; padding: 0.6rem 0.6rem; }
    .stat-num { font-size: 1.8rem; }
    .achievements-stats h2 { font-size: 1.05rem; }
    .achieve-sub { font-size: 0.82rem; margin-bottom: 0.6rem; }
}

@media (max-width: 400px) {
    .achieve-image { max-width: 280px; height: 160px; }
    .stat-num { font-size: 1.6rem; }
    .stat-label { font-size: 0.82rem; }
    .achievements-section { padding: 1rem 0.4rem; }
}

/* Animations and Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
    80% {
        opacity: 1;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation classes */
.animate {
    opacity: 0;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.animate.fade-in-up {
    animation-name: fadeInUp;
}

.animate.fade-in-left {
    animation-name: fadeInLeft;
}

.animate.fade-in-right {
    animation-name: fadeInRight;
}

.animate.scale-in {
    animation-name: scaleIn;
}

.animate.bounce-in {
    animation-name: bounceIn;
}

.animate.slide-in-bottom {
    animation-name: slideInBottom;
}

/* Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }
.delay-900 { animation-delay: 0.9s; }
.delay-1000 { animation-delay: 1s; }

/* Section Specific Animations */
.process-card {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.process-card:nth-child(1) { animation-delay: 0.1s; }
.process-card:nth-child(2) { animation-delay: 0.2s; }
.process-card:nth-child(3) { animation-delay: 0.3s; }
.process-card:nth-child(4) { animation-delay: 0.4s; }
.process-card:nth-child(5) { animation-delay: 0.5s; }
.process-card:nth-child(6) { animation-delay: 0.6s; }

.process-number {
    opacity: 0;
    animation: bounceIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

.process-title {
    opacity: 0;
    animation: fadeInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

.process-description {
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.5s;
}

/* Intersection Observer Trigger Class */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Process Cards Section */
.process-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    width: calc(33.333% - 1rem);
    min-width: 280px;
    box-shadow: 0 15px 35px rgba(0, 62, 120, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 62, 120, 0.1);
}

.process-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 62, 120, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 62, 120, 0.15);
}

.process-card:hover::before {
    transform: scale(1.2);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(0, 62, 120);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.process-number::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: #ffe600;
    bottom: -5px;
    left: 0;
    border-radius: 2px;
}

.process-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgb(0, 62, 120);
    margin-bottom: 1rem;
}

.process-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.process-step {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 62, 120, 0.1);
    color: rgb(0, 62, 120);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Progress Line */
.process-progress {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 62, 120, 0.1);
    z-index: 0;
}

.process-progress::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 11px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 62, 120, 0.2) 30%,
        rgba(0, 62, 120, 0.2) 70%,
        transparent 100%
    );
    border-radius: 6px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .process-card {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .process-cards {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .process-card {
        width: 100%;
        padding: 1.5rem;
    }
    
    .process-number {
        font-size: 2.5rem;
    }
    
    .process-title {
        font-size: 1.2rem;
    }
    
    .process-progress {
        display: none;
    }
}

/* Achievements Section – Unique look overrides */
.achievements-section {
    background: rgb(0, 62, 120);
    position: relative;
    overflow: hidden;
}
.achievements-section::before,
.achievements-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.18;
    pointer-events: none;
}
.achievements-section::before {
    width: 420px; height: 420px; left: -140px; top: -160px; background: radial-gradient(circle, #ffe600 0%, transparent 60%);
}
.achievements-section::after {
    width: 520px; height: 520px; right: -200px; bottom: -200px; background: radial-gradient(circle, #1de9b6 0%, transparent 65%);
}

.achievements-wrapper { gap: 1.6rem; align-items: stretch; }
.achieve-card { align-items: center; }
.achieve-image {
    max-width: 500px;
    height: 300px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: saturate(1.1);
}

.achievements-stats h2 {
    font-size: 1.6rem;
    letter-spacing: 1px;
}
.achieve-sub { font-size: 1rem; opacity: 0.95; }

.stats-grid { gap: 1.2rem; }
.stat-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 12px 24px rgba(0,0,0,0.18);
    border-radius: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.stat-box:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), 0 20px 40px rgba(0,0,0,0.25);
}
.stat-num { color: #ffe600; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.stat-label { color: #e9f1ff; opacity: 0.95; letter-spacing: 1.2px; }

@media (max-width: 900px) {
    .achieve-image { max-width: 460px; height: 260px; }
}
@media (max-width: 600px) {
    .achieve-image { max-width: 360px; height: 200px; }
}

/* Fee Structure Styling */
.fee-structure-section {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.fee-structure-section:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.fee-structure-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fee-structure-header {
    text-align: center;
    margin-bottom: 3rem;
}

.fee-structure-title {
    color: rgb(0, 62, 120);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.fee-structure-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgb(0, 62, 120);
    border-radius: 2px;
}

.fee-structure-subtitle {
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 500;
}

.fee-table-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 62, 120, 0.08);
    overflow: hidden;
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fee-table-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 62, 120, 0.12);
}

.fee-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.fee-table thead {
    background: rgb(0, 62, 120);
    color: white;
}

.fee-table th {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    text-align: left;
    font-size: 1.1rem;
    white-space: nowrap;
}

.fee-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    transition: all 0.3s ease;
}

.fee-table tbody tr:hover td {
    background: #f8fafc;
    color: rgb(0, 62, 120);
}

.fee-table tbody tr:last-child td {
    border-bottom: none;
}

.total-row {
    background: #f8fafc;
    font-weight: 600;
}

.total-row td {
    color: rgb(0, 62, 120) !important;
}

.fee-amount {
    font-weight: 600;
    color: rgb(0, 62, 120);
}

.fee-notes {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 62, 120, 0.05);
}

.fee-notes h3 {
    color: rgb(0, 62, 120);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fee-notes h3 i {
    font-size: 1.2rem;
    color: rgb(0, 62, 120);
}

.fee-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.fee-notes li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fee-notes li:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 62, 120, 0.08);
    transform: translateY(-2px);
}

.fee-notes li i {
    color: rgb(0, 62, 120);
    margin-top: 0.3rem;
}

.fee-notes-extra {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 62, 120, 0.03);
    border-radius: 8px;
    border-left: 4px solid rgb(0, 62, 120);
}

.fee-notes-extra h4 {
    color: rgb(0, 62, 120);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.fee-notes-extra p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-info {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 62, 120, 0.05);
}

.contact-info h3 {
    color: rgb(0, 62, 120);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.contact-info strong {
    color: rgb(0, 62, 120);
}

/* Activities Section (two-column with red panel and green bullets) */
.activities-section {
    padding: 2.5rem 0.8rem;
    background: #fff;
}
.activities-inner { max-width: 1200px; margin: 0 auto; }
.activities-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.activities-left {
    background: rgb(0, 62, 120);
    color: #fff;
    padding: 1.6rem 1.2rem;
    position: relative;
}
.activities-left::after {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    right: -120px; top: 30px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    border-radius: 50%;
}
.activities-left h2 { margin: 0 0 1rem 0; font-size: 1.4rem; }
.activities-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; }
.activity-item { display: grid; grid-template-columns: auto 1fr; gap: 0.8rem; align-items: start; }
.activity-icon {
    width: 38px; height: 38px; border-radius: 50%;
    background: #130449;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(10,126,42,0.35);
}
.activity-icon i { color: #fff; font-size: 16px; }
.activity-content h3 { margin: 0; font-size: 1rem; }
.activity-content p { margin: 0.2rem 0 0 0; font-size: 0.9rem; line-height: 1.5; opacity: 0.95; }

.activities-right {
    min-height: 280px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 900px) {
    .activities-layout { grid-template-columns: 1fr; }
    .activities-right { min-height: 240px; }
}

/* Welcome slider unique polish */
.welcome-slider { box-shadow: 0 20px 60px rgba(0,0,0,0.18); }
.welcome-slider .slide::before {
    background: linear-gradient(60deg, rgba(0,62,120,0.85) 0%, rgba(0,62,120,0.35) 55%, rgba(0,0,0,0.15) 100%);
}
.welcome-slider .slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 220px at 10% 10%, rgba(255,230,0,0.2), transparent 60%),
                radial-gradient(900px 260px at 90% 90%, rgba(255,255,255,0.12), transparent 65%);
    mix-blend-mode: screen;
    pointer-events: none;
}
.welcome-slider .slide-content {
    backdrop-filter: blur(2px);
}
.welcome-slider .slide-content h2 { text-shadow: 0 8px 28px rgba(0,0,0,0.45); }
.welcome-slider .slide-content p { text-shadow: 0 6px 20px rgba(0,0,0,0.4); }

/* Dots for slider (from JS-created .slider-dots) */
.unique-slider .slider-dots {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 3;
}
.unique-slider .slider-dot {
    width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.9);
    background: transparent; cursor: pointer; opacity: 0.8; transition: all 0.2s ease;
}
.unique-slider .slider-dot:hover { transform: scale(1.15); opacity: 1; }
.unique-slider .slider-dot.active { background: #ffe600; border-color: #ffe600; box-shadow: 0 0 0 4px rgba(255,230,0,0.25); }

/* Buttons refinement */
.welcome-slider .slide-btn { box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
.welcome-slider .slide-btn.secondary { border-color: rgba(255,255,255,0.9); }
.welcome-slider .slide-btn.secondary:hover { background: rgba(255,255,255,0.95); }

/* FSCS Navbar – Unique style overrides */
.fscs-navbar {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px) saturate(1.15);
    -webkit-backdrop-filter: blur(10px) saturate(1.15);
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Hide slider dots as requested */
.unique-slider .slider-dots { display: none !important; }

/* News & Events */
.news-events { background: #f7f7f7; padding: 2.4rem 0.8rem; position: relative; }
.news-events::before{
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(900px 300px at 10% -80px, rgba(0,62,120,0.06), transparent 60%),
                radial-gradient(900px 300px at 90% 110%, rgba(0,62,120,0.05), transparent 60%);
    pointer-events: none;
}
.ne-inner { max-width: 1200px; margin: 0 auto; }
.ne-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-items: start; }
.ne-title { font-size: 1.5rem; margin: 0 0 1rem 0; color: #0f2942; letter-spacing: .3px; }

/* News list */
.news-list { background: #fff; border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,0.06); padding: 0.6rem; border: 1px solid rgba(0,0,0,0.05); }
.news-item { display: grid; grid-template-columns: 110px 1fr auto; gap: 0.8rem; align-items: center; padding: 0.65rem; border-bottom: 1px dashed #e6e6e6; }
.news-item:last-child { border-bottom: 0; }
.news-thumb { width: 110px; height: 68px; object-fit: cover; border-radius: 8px; box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.news-body { display: flex; flex-direction: column; gap: 0.2rem; }
.news-link { color: #0f2942; text-decoration: none; font-weight: 700; }
.news-link:hover { text-decoration: underline; }
.news-date { font-size: 0.8rem; color: #7a8b99; }
.news-btn { background: #fff3cd; color: #7a5600; padding: 0.38rem 0.8rem; border-radius: 999px; text-decoration: none; font-weight: 800; font-size: 0.78rem; box-shadow: 0 8px 18px rgba(255,230,0,0.18); border: 1px solid rgba(255,200,0,0.45); transition: transform .15s ease, box-shadow .15s ease; }
.news-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255,230,0,0.25); }
.ne-actions { padding: 0.6rem 0.2rem 0 0.2rem; }
.ne-actions.right { text-align: right; }
.ne-viewmore { display: inline-block; background: #e6f0ff; color: rgb(0, 62, 120); padding: 0.4rem 1rem; border-radius: 999px; text-decoration: none; font-weight: 800; font-size: 0.82rem; border: 1px solid rgba(0,62,120,0.15); }

/* Events */
.events-list { display: flex; flex-direction: column; gap: 1rem; }
.event-item { background: #fff; border-radius: 14px; box-shadow: 0 10px 24px rgba(0,0,0,0.06); padding: 0.8rem; display: grid; grid-template-columns: 120px 1fr; gap: 0.9rem; border: 1px solid rgba(0,0,0,0.05); position: relative; }
.event-item::after{ content:''; position:absolute; left: -1px; top:0; bottom:0; width: 4px; border-radius:14px 0 0 14px; background: linear-gradient(180deg, rgb(0,62,120), #212a5c); }
.event-date { border: 2px solid rgba(0,0,0,0.06); border-radius: 12px; padding: 0.6rem; text-align: center; color: #333; background: #fafafa; }
.event-day { font-size: 1.2rem; font-weight: 800; }
.event-month { font-size: 0.9rem; color: #333; }
.event-year { font-size: 0.8rem; color: #333; }
.event-link { color: #0f2942; text-decoration: none; font-weight: 800; }
.event-link:hover { text-decoration: underline; }
.event-meta { font-size: 0.85rem; color: #6f7e8a; margin-top: 0.2rem; }

@media (max-width: 900px) { .ne-grid { grid-template-columns: 1fr; } }

/* Campus Gallery */
.campus-gallery { padding: 2.2rem 0.8rem; background: #ffffff; }
.cg-inner { max-width: 1200px; margin: 0 auto; }
.cg-title { font-size: 1.6rem; margin: 0 0 1rem 0; color: #0f2942; text-align: center; }
.cg-viewer { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 0.6rem; align-items: center; }
.cg-viewport { overflow: hidden; border-radius: 14px; box-shadow: 0 14px 36px rgba(0,0,0,0.12); }
.cg-slides { display: flex; transition: transform .35s ease; }
.cg-slide { min-width: 100%; }
.cg-slide img { display: block; width: 100%; height: 420px; object-fit: cover; }
.cg-arrow { width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(0,0,0,0.5); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 6px 16px rgba(0,0,0,0.2); transition: transform .15s ease, background .15s ease; }
.cg-arrow:hover { transform: translateY(-2px); background: rgba(0,0,0,0.65); }
.cg-thumbs { margin-top: 0.8rem; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
.cg-thumb { height: 64px; border-radius: 10px; background-size: cover; background-position: center; border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease; }
.cg-thumb:hover { transform: translateY(-2px); }
.cg-thumb.active { border-color: #ffe600; box-shadow: 0 6px 16px rgba(255,230,0,0.25); }

@media (max-width: 900px) {
  .cg-slide img { height: 320px; }
}
@media (max-width: 480px) {
  .cg-slide img { height: 240px; }
  .cg-thumbs { grid-template-columns: repeat(5, 64px); overflow-x: auto; padding-bottom: 0.2rem; }
}

/* Campus Mini slider */
.campus-mini { padding: 1.6rem 0.8rem; background: #f7fafc; }
.cm-inner { max-width: 1200px; margin: 0 auto; }
.cm-slider { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 0.5rem; align-items: center; }
.cm-viewport { overflow: hidden; border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.cm-slides { display: flex; transition: transform .35s ease; }
.cm-slide { min-width: 100%; position: relative; }
.cm-slide img { width: 100%; height: 260px; object-fit: cover; display: block; }
.cm-caption { position: absolute; left: 10px; bottom: 10px; background: rgba(0,0,0,0.5); color: #fff; padding: 0.25rem 0.6rem; border-radius: 12px; font-size: 0.85rem; }
.cm-arrow { width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(0,0,0,0.5); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 6px 16px rgba(0,0,0,0.2); transition: transform .15s ease, background .15s ease; }
.cm-arrow:hover { transform: translateY(-2px); background: rgba(0,0,0,0.65); }

@media (max-width: 900px){ .cm-slide img { height: 220px; } }
@media (max-width: 480px){ .cm-slide img { height: 180px; } }

/* Activities Gallery - Same as Campus Mini */
.activities-gallery { padding: 1.6rem 0.8rem; background: #f7fafc; }
.ag-inner { max-width: 1200px; margin: 0 auto; }
.ag-title { font-size: 1.3rem; margin: 0 0 0.6rem 0; color: #0f2942; text-align: center; }
.ag-subtitle { font-size: 0.9rem; margin: 0 0 1rem 0; color: #64748b; text-align: center; }
.ag-slider { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 0.5rem; align-items: center; }
.ag-viewport { overflow: hidden; border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.ag-slides { display: flex; transition: transform .35s ease; }
.ag-slide { min-width: 100%; position: relative; }
.ag-slide img { width: 100%; height: 260px; object-fit: cover; display: block; }
.ag-caption { position: absolute; left: 10px; bottom: 10px; background: rgba(0,0,0,0.5); color: #fff; padding: 0.25rem 0.6rem; border-radius: 12px; font-size: 0.85rem; }
.ag-arrow { width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(0,0,0,0.5); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 6px 16px rgba(0,0,0,0.2); transition: transform .15s ease, background .15s ease; }
.ag-arrow:hover { transform: translateY(-2px); background: rgba(0,0,0,0.65); }

@media (max-width: 900px){ .ag-slide img { height: 220px; } }
@media (max-width: 480px){ .ag-slide img { height: 180px; } }

/* Video Section - Professional & Unique Design */
.video-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(800px 400px at 20% 20%, rgba(255,255,255,0.1), transparent 60%),
        radial-gradient(600px 300px at 80% 80%, rgba(255,193,7,0.15), transparent 60%);
    pointer-events: none;
}

.video-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-content {
    text-align: center;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 1rem 0;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.video-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin: 0 0 3rem 0;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    background: #000;
}

.video-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.play-button:hover {
    transform: scale(1.1);
    background: #fff;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.play-button i {
    font-size: 2rem;
    color: #1e3c72;
    margin-left: 4px;
}

.video-info {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.video-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3c72;
    margin: 0 0 1rem 0;
    text-align: center;
}

.video-info p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    text-align: center;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(30,60,114,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(30,60,114,0.1);
}

.feature-item:hover {
    background: rgba(30,60,114,0.1);
    transform: translateX(5px);
    border-color: rgba(30,60,114,0.2);
}

.feature-item i {
    font-size: 1.5rem;
    color: #1e3c72;
    width: 24px;
    text-align: center;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3c72;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 3rem 1rem;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .video-wrapper iframe {
        height: 300px;
    }
    
    .video-info {
        padding: 1.5rem;
    }
    
    .video-info h3 {
        font-size: 1.5rem;
    }
    
    .video-features {
        gap: 0.8rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 2rem 0.8rem;
    }
    
    .video-title {
        font-size: 1.8rem;
    }
    
    .video-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .video-wrapper iframe {
        height: 250px;
    }
    
    .video-info {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .video-info h3 {
        font-size: 1.3rem;
    }
    
    .video-info p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        padding: 0.6rem;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

/* Footer - Unique Professional Design */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(600px 300px at 20% 20%, rgba(59,130,246,0.1), transparent 60%),
        radial-gradient(500px 250px at 80% 80%, rgba(16,185,129,0.08), transparent 60%);
    pointer-events: none;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: contain;
    background: rgba(255,255,255,0.1);
    padding: 8px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.footer-logo .logo-img:hover {
    transform: scale(1.05);
    border-color: rgba(59,130,246,0.5);
    box-shadow: 0 8px 25px rgba(59,130,246,0.2);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0 0 1.5rem 0;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59,130,246,0.3);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem 0;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #3b82f6;
    padding-left: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-item i {
    font-size: 1.1rem;
    color: #3b82f6;
    margin-top: 0.2rem;
    width: 16px;
    text-align: center;
}

.contact-item div span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.contact-item div p {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

.copyright a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #3b82f6;
}

.footer-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(16,185,129,0.1);
    color: #10b981;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(16,185,129,0.2);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(16,185,129,0.2);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        padding: 2rem 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        padding: 1.5rem 0.8rem 0;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo .logo-img {
        width: 70px;
        height: 70px;
    }
    
    .footer-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title {
        font-size: 1rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .copyright {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* About Us Page - Unique Professional Styles */

/* About Hero Section */
.about-hero {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        box-shadow: inset 0 0 50px rgba(255,255,255,0.1);
    }
    100% {
        box-shadow: inset 0 0 80px rgba(255,255,255,0.2);
    }
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(800px 400px at 20% 20%, rgba(255,255,255,0.1), transparent 60%),
        radial-gradient(600px 300px at 80% 80%, rgba(255,193,7,0.15), transparent 60%);
    pointer-events: none;
}

.about-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin: 0 0 2rem 0;
    font-weight: 500;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    animation: statPulse 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-item:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes statPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    animation: imageFloat 6s ease-in-out infinite;
    filter: brightness(1.1) contrast(1.05);
    transition: all 0.3s ease;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

/* Our History Section */
.our-history {
    padding: 4rem 1rem;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.our-history::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(800px 400px at 10% 20%, rgba(59,130,246,0.05), transparent 60%),
        radial-gradient(600px 300px at 90% 80%, rgba(16,185,129,0.05), transparent 60%);
    pointer-events: none;
    animation: historyGlow 10s ease-in-out infinite alternate;
}

@keyframes historyGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

.our-history-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3c72;
    margin: 0 0 1rem 0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.history-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin: 0 0 2rem 0;
}

.history-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(59,130,246,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: rgba(59,130,246,0.2);
}

.feature-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 0.2rem;
    width: 24px;
    text-align: center;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3c72;
    margin: 0 0 0.5rem 0;
}

.feature-item p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}


/* ICMS Mission Section */
.icms-mission {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    animation: missionPulse 12s ease-in-out infinite alternate;
}

@keyframes missionPulse {
    0% {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    100% {
        background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    }
}

.icms-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(600px 300px at 20% 20%, rgba(255,255,255,0.1), transparent 60%),
        radial-gradient(500px 250px at 80% 80%, rgba(255,193,7,0.15), transparent 60%);
    pointer-events: none;
}

.icms-mission-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.mission-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin: 0 0 2rem 0;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: valueFloat 6s ease-in-out infinite;
}

.value-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: valueRotate 8s linear infinite;
    opacity: 0;
}

.value-item:hover::after {
    opacity: 1;
}

@keyframes valueFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes valueRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.value-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(10px);
}

.value-item i {
    font-size: 1.5rem;
    color: #fff;
    width: 24px;
    text-align: center;
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.3rem 0;
}

.value-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.mission-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mission-img-1, .mission-img-2 {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.mission-img-1:hover, .mission-img-2:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Our Vision Section */
.our-vision {
    padding: 4rem 1rem;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.our-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(600px 300px at 30% 10%, rgba(34,197,94,0.03), transparent 60%),
        radial-gradient(500px 250px at 70% 90%, rgba(168,85,247,0.03), transparent 60%);
    pointer-events: none;
    animation: visionGlow 15s ease-in-out infinite alternate;
}

@keyframes visionGlow {
    0% {
        opacity: 0.2;
    }
    100% {
        opacity: 0.6;
    }
}

.our-vision-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3c72;
    margin: 0 0 1.5rem 0;
}

.vision-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin: 0 0 1.5rem 0;
}

.vision-goals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.goal-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(16,185,129,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: goalBounce 4s ease-in-out infinite;
}

.goal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(16,185,129,0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.goal-item:hover::before {
    transform: translateX(100%);
}

@keyframes goalBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.goal-item:hover {
    transform: translateX(10px);
    border-color: rgba(16,185,129,0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.goal-item i {
    font-size: 1.2rem;
    color: #10b981;
    width: 20px;
    text-align: center;
}

.goal-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3c72;
}

.vision-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.vision-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    animation: visionFloat 8s ease-in-out infinite;
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    transition: all 0.3s ease;
}

@keyframes visionFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        filter: brightness(1.05) contrast(1.1) saturate(1.1) drop-shadow(0 0 20px rgba(168,85,247,0.2));
    }
    50% {
        transform: translateY(-8px) rotate(0.5deg);
        filter: brightness(1.1) contrast(1.15) saturate(1.2) drop-shadow(0 0 30px rgba(168,85,247,0.4));
    }
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vision-image:hover .vision-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.play-button:hover {
    transform: scale(1.1);
    background: #fff;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.play-button i {
    font-size: 2rem;
    color: #1e3c72;
    margin-left: 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-inner,
    .history-content,
    .mission-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 1rem;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-title,
    .vision-title {
        font-size: 2rem;
    }
    
    .our-history,
    .icms-mission,
    .our-vision {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 2rem 0.8rem;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .mission-title,
    .vision-title {
        font-size: 1.8rem;
    }
    
    .our-history,
    .icms-mission,
    .our-vision {
        padding: 2rem 0.8rem;
    }
    
    .feature-item,
    .value-item,
    .goal-item {
        padding: 1rem;
    }
}

/* Chairman's Message Page - Unique Simple Professional Styles */

/* Chairman Header Section */
.chairman-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.chairman-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(600px 300px at 20% 20%, rgba(255,255,255,0.05), transparent 60%),
        radial-gradient(500px 250px at 80% 80%, rgba(52,152,219,0.1), transparent 60%);
    pointer-events: none;
}

.chairman-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.chairman-header-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 1.5rem 0;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .separator {
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

.breadcrumb .current {
    color: #fff;
    font-weight: 600;
}

/* Chairman Welcome Section */
.chairman-welcome {
    padding: 4rem 1rem;
    background: #fff;
}

.chairman-welcome-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.chairman-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.chairman-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.chairman-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    animation: chairmanGlow 5s ease-in-out infinite alternate;
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    transition: all 0.3s ease;
}

@keyframes chairmanGlow {
    0% {
        filter: brightness(1.05) contrast(1.1) saturate(1.1) drop-shadow(0 0 20px rgba(52,152,219,0.3));
    }
    100% {
        filter: brightness(1.1) contrast(1.15) saturate(1.2) drop-shadow(0 0 30px rgba(52,152,219,0.5));
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chairman-image:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(231,76,60,0.4);
    animation: playPulse 2s ease-in-out infinite;
    position: relative;
}

.play-button::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(231,76,60,0.3);
    border-radius: 50%;
    animation: playRipple 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(231,76,60,0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(231,76,60,0.6);
    }
}

@keyframes playRipple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.play-button:hover {
    transform: scale(1.1);
    background: #c0392b;
    box-shadow: 0 12px 32px rgba(231,76,60,0.5);
}

.play-button i {
    font-size: 2rem;
    color: #fff;
    margin-left: 4px;
}

.chairman-text {
    padding: 1rem 0;
}

.chairman-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    margin: 0 0 2rem 0;
    border-radius: 2px;
}

.chairman-message {
    margin-bottom: 2rem;
}

.chairman-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin: 0 0 1.5rem 0;
}

.chairman-signature {
    border-top: 1px solid #ecf0f1;
    padding-top: 1.5rem;
}

.signature-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.3rem 0;
}

.signature-title {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 0;
    font-weight: 500;
}

/* CEO Message Section */
.ceo-message {
    padding: 4rem 1rem;
    background: #f8f9fa;
}

.ceo-message-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.ceo-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.ceo-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    animation: ceoGlow 5s ease-in-out infinite alternate;
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    transition: all 0.3s ease;
}

@keyframes ceoGlow {
    0% {
        filter: brightness(1.05) contrast(1.1) saturate(1.1) drop-shadow(0 0 20px rgba(46,204,113,0.3));
    }
    100% {
        filter: brightness(1.1) contrast(1.15) saturate(1.2) drop-shadow(0 0 30px rgba(46,204,113,0.5));
    }
}

.ceo-text {
    padding: 1rem 0;
}

.ceo-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ceo-message-content {
    margin-bottom: 2rem;
}

.ceo-message-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin: 0 0 1.5rem 0;
}

.ceo-signature {
    border-top: 1px solid #ecf0f1;
    padding-top: 1.5rem;
}

/* Chairman Mission Section */
.chairman-mission {
    padding: 4rem 1rem;
    background: #f8f9fa;
}

.chairman-mission-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin: 0 0 2rem 0;
}

.mission-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.highlight-item i {
    font-size: 1.3rem;
    color: #3498db;
    width: 24px;
    text-align: center;
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.mission-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mission-img-1, .mission-img-2 {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.mission-img-1:hover, .mission-img-2:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .chairman-content,
    .ceo-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chairman-image img,
    .ceo-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .chairman-header {
        padding: 2rem 1rem;
    }
    
    .chairman-header-title {
        font-size: 2.2rem;
    }
    
    .breadcrumb {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .chairman-welcome,
    .ceo-message,
    .chairman-mission {
        padding: 3rem 1rem;
    }
    
    .chairman-title,
    .ceo-title,
    .mission-title {
        font-size: 1.8rem;
    }
    
    .chairman-image img,
    .ceo-image img {
        height: 350px;
    }
    
    .mission-image-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .chairman-header {
        padding: 1.5rem 0.8rem;
    }
    
    .chairman-header-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .breadcrumb a,
    .breadcrumb .current {
        font-size: 0.9rem;
    }
    
    .chairman-welcome,
    .ceo-message,
    .chairman-mission {
        padding: 2rem 0.8rem;
    }
    
    .chairman-title,
    .ceo-title,
    .mission-title {
        font-size: 1.6rem;
    }
    
    .chairman-message p,
    .ceo-message-content p,
    .mission-description {
        font-size: 1rem;
    }
    
    .chairman-image img,
    .ceo-image img {
        height: 300px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .highlight-item {
        padding: 0.8rem 1rem;
    }
}
.fscs-navbar::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -3px; height: 3px;
    background: linear-gradient(90deg, rgb(32,93,151), #000000, #070707, rgb(32,93,151));
    opacity: 0.9;
}
.fscs-navbar-container { max-width: 1300px; }
.fscs-navbar-logo .fscs-logo-img { height: 44px; }
.fscs-navbar-menu a {
    position: relative;
    padding: 0.4rem 0.9rem;
    border-radius: 10px;
}
.fscs-navbar-menu a::after {
    content: '';
    position: absolute;
    left: 10px; right: 10px; bottom: 6px; height: 2px;
    background: rgb(0, 62, 120);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.fscs-navbar-menu a:hover::after,
.fscs-navbar-menu a.active::after { transform: scaleX(1); }
.fscs-navbar-menu a:hover { background: rgba(32,93,151,0.08); color: rgb(32,93,151); }


.fscs-navbar-phone-icon { background: rgb(32,93,151); }
.fscs-navbar-phone-text { color: rgb(32,93,151); }

@media (max-width: 700px) {
    .fscs-navbar::after { display: none; }
    .fscs-navbar-menu a { padding: 1rem 1.4rem; border-radius: 0; }
    .fscs-navbar-menu a::after { left: 0; right: 0; bottom: 0; height: 1px; background: rgba(32,93,151,0.3); }
}

/* Facilities Unique (new design) */
.facilities-unique {
    position: relative;
    padding: 3rem 1rem;
    background: radial-gradient(1200px 400px at 50% -100px, rgba(0,62,120,0.08), transparent 60%), #f7fafc;
}
.facilities-unique::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('facilities-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
}
.fu-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.fu-heading {
    text-align: center;
    font-size: 1.9rem;
    color: rgb(0, 62, 120);
    margin: 0 0 1.6rem 0;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.fu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.fu-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fu-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(0,0,0,0.12); }
.fu-media {
    height: 180px;
    background-size: cover;
    background-position: center;
    filter: saturate(1.05) contrast(1.02);
    transition: transform 0.5s cubic-bezier(.2,.9,.3,1);
}
.fu-card:hover .fu-media { transform: scale(1.06); }
.fu-body {
    padding: 1rem 1rem 1.4rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.fu-body h3 { margin: 0; font-size: 1.05rem; letter-spacing: 0.6px; color: #0b2b1a; }
.fu-body p { margin: 0; font-size: 0.92rem; color: #46515c; line-height: 1.55; }
.fu-btn {
    display: inline-block;
    margin-top: 0.6rem;
    background: linear-gradient(180deg,#ff8c00,#ffb347);
    color: #fff;
    padding: 0.5rem 1.05rem;
    border-radius: 22px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.4px;
    box-shadow: 0 8px 20px rgba(255,140,0,0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fu-btn:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(255,140,0,0.14); }

@media (max-width: 900px) { .fu-grid { grid-template-columns: repeat(2, 1fr); } .fu-media { height: 160px; } }
@media (max-width: 480px) { .fu-grid { grid-template-columns: 1fr; } .fu-media { height: 140px; } }

/* New Campus Gallery Section - Unique Design */
.campus-gallery-new {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.campus-gallery-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(800px 400px at 20% 20%, rgba(0,62,120,0.08), transparent 60%),
        radial-gradient(600px 300px at 80% 80%, rgba(255,230,0,0.06), transparent 60%);
    pointer-events: none;
}

.cg-new-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cg-new-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgb(0, 62, 120);
    margin: 0 0 0.8rem 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cg-new-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin: 0 0 3rem 0;
    font-weight: 500;
}



.simple-info-section {
  background: #f8fafc;
  padding: 3rem 0;
}
.simple-info-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,62,120,0.08);
  background: #fff;
  padding: 2rem;
}
.simple-info-image img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,62,120,0.10);
}
.simple-info-content {
  flex: 1;
}
.simple-info-title {
  font-size: 2rem;
  font-weight: 700;
  color: #204d0c;
  margin-bottom: 1rem;
}
.simple-info-desc {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.2rem;
}
.simple-info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.simple-info-list li {
  font-size: 1rem;
  color: #204d0c;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.simple-info-list i {
  color: #2196F3;
  margin-right: 0.7rem;
}
.simple-info-btn {
  display: inline-block;
  background: #2196F3;
  color: #fff;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.simple-info-btn:hover {
  background: #204d0c;
}
@media (max-width: 800px) {
  .simple-info-container {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }
  .simple-info-image img {
    width: 100%;
    height: 180px;
    margin-bottom: 1rem;
  }
}

 
    .campus-section {
        padding: 4rem 2rem;
        background: #f8fafc;
    }
    .campus-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .section-title {
        text-align: center;
        color: rgb(0, 62, 120);
        margin-bottom: 3rem;
        position: relative;
        padding-bottom: 1rem;
    }
    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: rgb(0, 62, 120);
    }
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
        padding: 1rem;
    }
    .gallery-item {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 62, 120, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        aspect-ratio: 4/3;
        background: white;
    }
    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 62, 120, 0.2);
    }
    .gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    .gallery-item:hover .gallery-img {
        transform: scale(1.1);
    }
    .gallery-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem;
        background: linear-gradient(to top, rgba(0,62,120,0.9), transparent);
        color: white;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    .gallery-item:hover .gallery-caption {
        transform: translateY(0);
    }
    .gallery-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    @media (max-width: 768px) {
        .gallery-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .campus-section {
            padding: 3rem 1rem;
        }
    }

    
    .branches-section {
        padding: 4rem 2rem;
        background: #f8fafc;
    }
    .branches-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .section-title {
        text-align: center;
        color: rgb(0, 62, 120);
        margin-bottom: 3rem;
        font-size: 2.5rem;
        font-weight: 600;
        position: relative;
        padding-bottom: 1rem;
    }
    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: rgb(0, 62, 120);
    }
    .branches-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    .branch-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 62, 120, 0.1);
        transition: all 0.3s ease;
    }
    .branch-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(0, 62, 120, 0.2);
    }
    .branch-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
    .branch-content {
        padding: 1.5rem;
    }
    .branch-title {
        color: rgb(0, 62, 120);
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }
    .branch-description {
        color: #4a5568;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .branch-link {
        display: inline-block;
        padding: 0.5rem 1.25rem;
        background: rgb(0, 62, 120);
        color: white;
        text-decoration: none;
        border-radius: 6px;
        transition: background 0.3s ease;
    }
    .branch-link:hover {
        background: rgb(0, 82, 150);
    }
    @media (max-width: 768px) {
        .branches-section {
            padding: 3rem 1rem;
        }
        .branches-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
    }

.video-section {
        padding: 5rem 2rem;
        position: relative;
        overflow: hidden;
    }

    .video-section:nth-child(odd) {
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    }

    .video-section:nth-child(even) {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    }

    .video-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .section-title {
        text-align: center;
        color: rgb(0, 62, 120);
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
        padding-bottom: 1rem;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: rgb(0, 62, 120);
        border-radius: 2px;
    }

    .section-description {
        text-align: center;
        color: #4a5568;
        max-width: 800px;
        margin: 0 auto 3rem;
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .video-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 62, 120, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
    }

    .video-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 62, 120, 0.12);
    }

    .video-frame {
        width: 100%;
        aspect-ratio: 16/9;
        border: none;
    }

    .video-info {
        padding: 1.5rem;
    }

    .video-title {
        color: rgb(0, 62, 120);
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .video-description {
        color: #4a5568;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section-icon {
        font-size: 2rem;
        color: rgb(0, 62, 120);
        margin-bottom: 1rem;
        display: block;
        text-align: center;
    }

    @media (max-width: 768px) {
        .video-section {
            padding: 3rem 1rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .video-grid {
            gap: 1.5rem;
        }

        .video-info {
            padding: 1.2rem;
        }
    }
     .facilities-section {
        padding: 5rem 2rem;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    }

    .facilities-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-title {
        color: rgb(0, 62, 120);
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
        padding-bottom: 1rem;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: rgb(0, 62, 120);
        border-radius: 2px;
    }

    .facilities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .facility-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 62, 120, 0.08);
        transition: all 0.3s ease;
        position: relative;
        height: 380px;
        display: flex;
        flex-direction: column;
    }

    .facility-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 30px rgba(0, 62, 120, 0.15);
    }

    .facility-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: rgb(0, 62, 120);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        transform-origin: left;
    }

    .facility-card:hover::before {
        transform: scaleX(1);
    }



    .facility-content {
        padding: 2rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .facility-title {
        color: rgb(0, 62, 120);
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        text-align: center;
    }

    .facility-description {
        color: #4a5568;
        line-height: 1.7;
        font-size: 1rem;
        text-align: center;
    }

    @media (max-width: 768px) {
        .facilities-section {
            padding: 3rem 1rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .facilities-grid {
            gap: 1.5rem;
        }

        .facility-content {
            padding: 1.5rem;
        }

        .facility-title {
            font-size: 1.3rem;
        }
    }