﻿/* ═══════════════════════════════════════════════════════════════════
   PREMIUM COLOR THEME – F58634 (ORANGE) & ED353A (RED)
   ═══════════════════════════════════════════════════════════════════ */

:root {
    --primary-orange: #F58634;
    --primary-red: #ED353A;
    --orange-dark: #E07A2A;
    --orange-light: #F9A85C;
    --red-dark: #D62D32;
    --red-light: #F55A62;
    --gradient-primary: linear-gradient(135deg, #F58634 0%, #ED353A 100%);
    --gradient-reverse: linear-gradient(135deg, #ED353A 0%, #F58634 100%);
    --gradient-light: linear-gradient(135deg, rgba(245, 134, 52, 0.1) 0%, rgba(237, 53, 58, 0.1) 100%);
    --text-dark: #1a1a1a;
    --text-light: #555;
    --text-muted: #999;
}

/* ═══════════════════════════════════════════════════════════════════
   Footer Pages Links - Fix white box appearance and line wrapping
   ═══════════════════════════════════════════════════════════════════ */
.pages-links-section {
    overflow-x: auto;
}

.pages-links-section .d-flex {
    flex-wrap: nowrap !important;
    white-space: nowrap;
}

.pages-links-section .page-link {
    background: transparent !important;
    padding: 0 !important;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 500;
    display: inline-block;
    border: none !important;
    flex-shrink: 0;
}

.pages-links-section .page-link:hover {
    color: #fbbf24 !important;
}

/* Responsive: Allow wrapping on smaller screens */
@media (max-width: 768px) {
    .pages-links-section .d-flex {
        flex-wrap: wrap !important;
        white-space: normal;
    }
}
/* PREMIUM CONTACT PAGE REDESIGN
   
Contact Info Cards */
.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 134, 52, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    box-shadow: 0 20px 50px rgba(245, 134, 52, 0.25);
    transform: translateY(-8px);
    border-color: #F58634;
    border-color: var(--primary-orange);
}

.contact-info-card:hover::before {
    top: -30%;
    right: -30%;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 25px rgba(245, 134, 52, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(245, 134, 52, 0.4);
}

.contact-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Poppins', Arial, sans-serif;
    position: relative;
    z-index: 1;
}

.contact-card-link,
.contact-card-text {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    z-index: 1;
    word-break: break-word;
}

.contact-card-link:hover {
    color: var(--primary-orange);
    text-decoration: none;
}

.contact-card-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.contact-card-link:hover::after {
    width: 100%;
}

/* Premium Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(245, 134, 52, 0.1);
}

.premium-form-input {
    background: #f8f9fa;
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    font-size: 0.95rem !important;
    color: var(--text-dark) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    font-family: 'Poppins', Arial, sans-serif !important;
}

.premium-form-input::placeholder {
    color: var(--text-muted) !important;
}

.premium-form-input:focus {
    background: white !important;
    border-color: var(--primary-orange) !important;
    box-shadow: 0 0 0 4px rgba(245, 134, 52, 0.1) !important;
    outline: none !important;
}

.premium-form-input:hover {
    border-color: var(--orange-light) !important;
}

.premium-submit-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    padding: 14px 35px !important;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 25px rgba(245, 134, 52, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.premium-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.premium-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 134, 52, 0.4);
}

.premium-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.premium-submit-btn:active {
    transform: translateY(-1px);
}

.premium-submit-btn i {
    transition: transform 0.3s ease;
}

.premium-submit-btn:hover i {
    transform: translateX(3px);
}

/* Location Wrapper */
.location-wrapper {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(245, 134, 52, 0.1);
}

.address-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(245, 134, 52, 0.05) 0%, rgba(237, 53, 58, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
}

.address-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(245, 134, 52, 0.3);
}

.address-content {
    flex: 1;
}

.address-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'Poppins', Arial, sans-serif;
}

.address-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 12px 30px rgba(245, 134, 52, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
}

/* Social Media Section */
.social-section {
    padding: 20px 0;
}

.social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-icon-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: 0;
}

.social-icon-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-icon-btn:hover i {
    transform: scale(1.2);
}

.social-icon-btn:hover::before {
    width: 200px;
    height: 200px;
}

/* Facebook */
.social-icon-btn.facebook {
    background: white;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.social-icon-btn.facebook:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(245, 134, 52, 0.3);
}

/* Instagram */
.social-icon-btn.instagram {
    background: white;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.social-icon-btn.instagram:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(245, 134, 52, 0.3);
}

/* Twitter */
.social-icon-btn.twitter {
    background: white;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.social-icon-btn.twitter:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(245, 134, 52, 0.3);
}

/* LinkedIn */
.social-icon-btn.linkedin {
    background: white;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.social-icon-btn.linkedin:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(245, 134, 52, 0.3);
}

/* YouTube */
.social-icon-btn.youtube {
    background: white;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.social-icon-btn.youtube:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(245, 134, 52, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-form-wrapper,
    .location-wrapper {
        padding: 30px 20px;
    }

    .contact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-card-title {
        font-size: 1.1rem;
    }

    .contact-card-link,
    .contact-card-text {
        font-size: 0.9rem;
    }

    .address-section {
        gap: 15px;
        padding: 15px;
    }

    .address-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .address-title {
        font-size: 1rem;
    }

    .address-text {
        font-size: 0.9rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .social-icon-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .social-icons-wrapper {
        gap: 15px;
    }
}

/* Ensure contact cards row displays inline */
.row.mb-5.pb-3 {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.row.mb-5.pb-3 > [class*='col-'] {
    display: flex;
    flex-direction: column;
    padding-right: 12px;
    padding-left: 12px;
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 25px 15px;
    }

    .contact-form-wrapper,
    .location-wrapper {
        padding: 20px 15px;
    }

    .contact-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .contact-card-title {
        font-size: 1rem;
    }

    .contact-card-link,
    .contact-card-text {
        font-size: 0.85rem;
    }

    .premium-form-input {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
    }

    .premium-submit-btn {
        padding: 12px 25px !important;
        font-size: 0.9rem;
    }

    .address-section {
        gap: 12px;
        padding: 12px;
    }

    .address-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .address-title {
        font-size: 0.95rem;
    }

    .address-text {
        font-size: 0.85rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .social-icon-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .social-icons-wrapper {
        gap: 12px;
    }

    .social-section {
        padding: 15px 0;
    }
}
/* Remove padding from slider so it displays full-width */
.main > .owl-carousel {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: linear-gradient(135deg, #333 0%, #222 100%);
}

/* Home hero slider — standardized height (XL/LG/MD/SM/XS via data-dynamic-height) */
.main > .owl-carousel.skh-home-slider {
    margin-top: 0 !important;
}

.main > .owl-carousel.skh-home-slider .owl-stage-outer,
.main > .owl-carousel.skh-home-slider .owl-stage {
    height: 100%;
}

.main > .owl-carousel.skh-home-slider .owl-item {
    min-height: 100%;
}

/* Ensure owl carousel maintains aspect ratio */
.owl-carousel {
    background: linear-gradient(135deg, #333 0%, #222 100%);
}

.owl-carousel.owl-loaded {
    background: linear-gradient(135deg, #333 0%, #222 100%);
}

.owl-carousel .owl-stage-outer {
    background: linear-gradient(135deg, #333 0%, #222 100%);
}

/* Slider items - ensure smooth transitions */
.owl-item {
    background: linear-gradient(135deg, #333 0%, #222 100%);
    background-size: cover;
    background-position: center;
}

.owl-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Active item shows the background image/content */
.owl-item.active {
    background-color: transparent;
}

/* Prevent flickering during transitions */
.owl-stage {
    transition: all 0.5s ease !important;
}

/* Remove gaps between items during carousel transition */
.owl-carousel .owl-item {
    padding: 0 !important;
    margin: 0 !important;
}



/* LOGO STICKY MARGIN
   */
.logo-sticky {
    margin-left: 25px !important;
}

/* SECTION TITLES - RESPONSIVE SIZING
   */
.section-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.section-title-large {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

/* PREMIUM COLOR THEME â€” F58634 (ORANGE) & ED353A (RED)
   


/* ERP LOGIN BUTTON - COOL UI
   */
.erp-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #E04622;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    height: fit-content;
}

.erp-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 70, 34, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.erp-login-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
    border-color: rgba(224, 70, 34, 0.3);
}

.erp-login-btn:hover::before {
    left: 100%;
}

.erp-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.erp-login-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.erp-login-btn:hover i {
    transform: scale(1.1);
}

.erp-login-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .erp-login-btn {
        padding: 5px 10px;
        font-size: 10px;
        gap: 5px;
    }

    .erp-login-btn i {
        font-size: 10px;
    }

    .erp-login-text {
        font-size: 9px;
    }
}

@media (max-width: 576px) {
    .erp-login-btn {
        padding: 4px 8px;
        font-size: 9px;
        gap: 4px;
    }

    .erp-login-btn i {
        font-size: 9px;
    }

    .erp-login-text {
        font-size: 8px;
    }
}

/* SECTION SPACING - CONSISTENT GAP BETWEEN SECTIONS
  */
.section-spacing {
    margin-top: 80px !important;
    margin-bottom: 0 !important;
}

/* Responsive spacing for tablets */
@media (max-width: 768px) {
    .section-spacing {
        margin-top: 60px !important;
    }

    .skh-home-stats-wrap + .about-home-section.section-spacing {
        margin-top: 52px !important;
    }

    .about-home-section + .skh-programs-heading-block {
        margin-top: 64px !important;
    }

    .skh-programs-ecosystem + .skh-placement-home.section-spacing,
    .skh-programs-ecosystem + .placement-banner-section.section-spacing {
        margin-top: 108px !important;
    }

    .skh-placement-home + section.section-spacing {
        margin-top: 60px !important;
    }
}

/* Responsive spacing for mobile devices */
@media (max-width: 576px) {
    .section-spacing {
        margin-top: 40px !important;
    }

    .skh-placement-home + section.section-spacing {
        margin-top: 40px !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .section-spacing {
        margin-top: 30px !important;
    }

    .skh-home-stats-wrap + .about-home-section.section-spacing {
        margin-top: 16px !important;
    }

    .about-home-section + .skh-programs-heading-block {
        margin-top: 40px !important;
    }

    .skh-programs-ecosystem + .skh-placement-home.section-spacing,
    .skh-programs-ecosystem + .placement-banner-section.section-spacing {
        margin-top: 64px !important;
    }

    .skh-placement-home + section.section-spacing {
        margin-top: 30px !important;
    }
}

/* GALLERY SECTION â€” PREMIUM CARD LAYOUT WITH HOVER EFFECTS
   */

.gallery-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.gallery-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.gallery-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-card:hover .gallery-card-image {
    transform: scale(1.08);
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 70, 34, 0.85) 0%, rgba(139, 69, 69, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-icon {
    color: white;
    font-size: 2.5rem;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card-icon {
    transform: scale(1.2) rotate(90deg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    padding: 40px 0;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        padding: 30px 0;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 0;
    }
}

.gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* Legacy gallery item styles for backward compatibility */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover {
    box-shadow: 0 20px 50px rgba(245, 134, 52, 0.3);
    transform: translateY(-5px);
}

.gallery-item img {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.2);
}


/* ADMISSION ENQUIRY MODAL — premium SKH pop card */
#admissionEnquiryModal.skh-enquiry-modal-wrap {
    z-index: 1060 !important;
}

#admissionEnquiryModal .modal-dialog {
    max-width: min(400px, calc(100vw - 32px)) !important;
    width: 100% !important;
    margin: 1rem auto !important;
    pointer-events: auto !important;
    z-index: 1061 !important;
}

.skh-enquiry-modal.admission-modal-content {
    position: relative;
    overflow: hidden !important;
    border: none !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    box-shadow:
        0 24px 56px rgba(21, 61, 102, 0.18),
        0 8px 20px rgba(21, 61, 102, 0.08) !important;
    z-index: 1062 !important;
    pointer-events: auto !important;
}

.skh-enquiry-modal__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #153d66 0%, #c45100 100%);
    z-index: 2;
}

.skh-enquiry-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(21, 61, 102, 0.14);
    border-radius: 50%;
    background: #ffffff !important;
    color: #153d66;
    font-size: 0.95rem;
    line-height: 1;
    opacity: 1 !important;
    box-shadow: 0 2px 8px rgba(21, 61, 102, 0.1);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.skh-enquiry-modal__close i {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: inherit;
}

.skh-enquiry-modal__close:hover {
    background: #153d66 !important;
    border-color: #153d66;
    color: #ffffff;
}

.skh-enquiry-modal__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 52px 18px 22px;
    border-bottom: 1px solid rgba(21, 61, 102, 0.08);
}

.skh-enquiry-modal__logo-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    padding: 7px;
    border: 1px solid rgba(21, 61, 102, 0.1);
    box-shadow: 0 4px 14px rgba(21, 61, 102, 0.1);
}

.skh-enquiry-modal__logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.skh-enquiry-modal__intro {
    min-width: 0;
    text-align: left;
}

.skh-enquiry-modal__head .modal-title {
    font-family: 'DM Serif Display', Georgia, serif !important;
    font-size: 1.28rem !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    color: #153d66 !important;
    margin: 0 0 4px !important;
}

.skh-enquiry-modal__subtitle {
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 0.84rem;
    font-weight: 400;
    line-height: 1.45;
    color: #64748b;
    margin: 0;
}

.skh-enquiry-modal__body {
    padding: 18px 22px 22px !important;
    max-height: calc(85vh - 140px) !important;
    overflow-y: auto !important;
    background: #ffffff !important;
}

.skh-enquiry-modal__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skh-enquiry-modal__field {
    margin: 0;
}

.skh-enquiry-modal__input.admission-form-control {
    width: 100%;
    background: #f8fafc !important;
    border: 1px solid rgba(21, 61, 102, 0.14) !important;
    border-radius: 8px !important;
    color: #1e293b !important;
    padding: 11px 12px !important;
    font-family: 'DM Sans', 'Poppins', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.skh-enquiry-modal__input.admission-form-control::placeholder {
    color: #94a3b8 !important;
}

.skh-enquiry-modal__input.admission-form-control:focus {
    background: #ffffff !important;
    border-color: #c45100 !important;
    box-shadow: 0 0 0 3px rgba(196, 81, 0, 0.1) !important;
    outline: none !important;
    color: #1e293b !important;
}

.skh-enquiry-modal__select.admission-form-control {
    appearance: none;
    color: #1e293b !important;
    background-color: #f8fafc !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23153d66' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    padding-right: 36px !important;
}

.skh-enquiry-modal__select.admission-form-control option {
    background: #ffffff;
    color: #1e293b;
}

.skh-enquiry-modal__textarea.admission-form-control {
    min-height: 68px;
    resize: none;
    line-height: 1.45;
}

.skh-enquiry-modal__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 4px;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    background: #153d66;
    color: #ffffff;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.skh-enquiry-modal__submit:hover {
    background: #c45100;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(196, 81, 0, 0.22);
}

.skh-enquiry-modal__alert {
    margin-bottom: 0 !important;
    border-radius: 8px !important;
    font-size: 0.84rem !important;
    padding: 10px 12px !important;
}

.modal-backdrop.fade {
    background-color: rgba(15, 30, 50, 0.62) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    pointer-events: auto !important;
    z-index: 1055 !important;
    display: block !important;
}

.modal-backdrop.show {
    background-color: rgba(15, 30, 50, 0.62) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    opacity: 1 !important;
    z-index: 1055 !important;
    display: block !important;
}

.modal.fade {
    pointer-events: auto !important;
    z-index: 1060 !important;
    display: none !important;
}

.modal.show {
    display: block !important;
    z-index: 1060 !important;
    pointer-events: auto !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.modal-dialog {
    pointer-events: auto !important;
    z-index: 1061 !important;
}

@media (max-width: 576px) {
    #admissionEnquiryModal .modal-dialog {
        max-width: calc(100vw - 24px) !important;
    }

    .skh-enquiry-modal__head {
        padding: 18px 48px 16px 18px;
        gap: 12px;
    }

    .skh-enquiry-modal__logo-badge {
        width: 46px;
        height: 46px;
        padding: 6px;
    }

    .skh-enquiry-modal__body {
        padding: 16px 18px 18px !important;
    }
}





/* MODERN PAGINATION STYLING
    */

.pagination-modern {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pagination-modern .page-item {
    margin: 0;
}

/* Disabled state */
.pagination-modern .page-item.disabled .page-link-disabled {
    background: #f0f0f0;
    color: #999;
    border: 2px solid #e0e0e0;
    cursor: not-allowed;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 40px;
    height: 40px;
}

/* FACILITIES PAGE - ANIMATIONS & STYLING
   */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.facility-filter-btn:hover {
    background: #cc3e1d !important;
    transform: translateX(5px);
}

.category-toggle:hover {
    background: #f0f0f0 !important;
    border-color: #E04622 !important;
    color: #E04622 !important;
}

.facility-item-btn {
    transition: all 0.3s ease !important;
}

.facility-item-btn:hover {
    background: #e8e8e8 !important;
    color: #E04622 !important;
    padding-left: 16px;
}

.facility-item-btn.active {
    background: #E04622 !important;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(224, 70, 34, 0.3) !important;
}

.facility-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .facilities-sidebar {
        position: static !important;
        margin-bottom: 30px;
    }
}

/* Navigation links (Previous/Next) */
.pagination-modern .page-link-nav {
    background: white;
    color: #E04622;
    border: 2px solid #E04622;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    gap: 0;
}

.pagination-modern .page-link-nav:hover {
    background: linear-gradient(135deg, #E04622 0%, #cc3e1d 100%);
    color: white;
    border-color: #cc3e1d;
    box-shadow: 0 8px 20px rgba(224, 70, 34, 0.3);
    transform: translateY(-2px);
}

.pagination-modern .page-link-nav:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(224, 70, 34, 0.2);
}

/* Page number links */
.pagination-modern .page-link-number {
    background: white;
    color: #E04622;
    border: 2px solid #E04622;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pagination-modern .page-link-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #E04622;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: -1;
}

.pagination-modern .page-link-number:hover {
    color: white;
    border-color: #E04622;
    box-shadow: 0 6px 16px rgba(224, 70, 34, 0.25);
    transform: translateY(-2px);
}

.pagination-modern .page-link-number:hover::before {
    width: 100%;
    height: 100%;
}

.pagination-modern .page-link-number:active {
    transform: translateY(0);
}

/* Active page number */
.pagination-modern .page-item.active .page-link-active {
    background: linear-gradient(135deg, #E04622 0%, #cc3e1d 100%);
    color: white;
    border: 2px solid #cc3e1d;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(224, 70, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.pagination-modern .page-item.active .page-link-active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 8px;
    pointer-events: none;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .pagination-modern {
        gap: 6px;
    }

    .pagination-modern .page-link-nav {
        padding: 8px 10px;
        font-size: 0.9rem;
        width: 36px;
        height: 36px;
    }

    .pagination-modern .page-link-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .pagination-modern .page-link-active {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .pagination-modern .page-link-disabled {
        padding: 8px 10px;
        font-size: 0.9rem;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .pagination-modern {
        gap: 4px;
    }

    .pagination-modern .page-link-nav {
        padding: 6px 8px;
        font-size: 0.85rem;
        width: 32px;
        height: 32px;
    }

    .pagination-modern .page-link-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .pagination-modern .page-link-active {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .pagination-modern .page-link-disabled {
        padding: 6px 8px;
        font-size: 0.85rem;
        width: 32px;
        height: 32px;
    }
}

/* Accessibility improvements */
.pagination-modern .page-link-nav:focus,
.pagination-modern .page-link-number:focus,
.pagination-modern .page-link-active:focus {
    outline: 2px solid #E04622;
    outline-offset: 2px;
}

/* Smooth transitions for all pagination elements */
.pagination-modern .page-item {
    transition: all 0.3s ease;
}

.pagination-modern .page-link-nav,
.pagination-modern .page-link-number,
.pagination-modern .page-link-active,
.pagination-modern .page-link-disabled {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



    .social-icons-wrapper {
        gap: 12px;
    }

    .social-section {
        padding: 15px 0;
    }

/* ============================================
   ABOUT US PAGE - PREMIUM DESIGN
   ============================================ */

/* Hero Section */
.about-hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 80px;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(245, 134, 52, 0.3) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
}

.about-hero-text {
    color: white;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Poppins', Arial, sans-serif;
    letter-spacing: -2px;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', Arial, sans-serif;
}

/* Mission & Vision Section */
.about-mission-vision-section {
    padding: 80px 0;
    background: white;
}

.about-mission-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-mission-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-mission-image-wrapper:hover .about-mission-image {
    transform: scale(1.05);
}

.about-mission-content {
    padding: 20px 0;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-family: 'Poppins', Arial, sans-serif;
    position: relative;
    padding-bottom: 20px;
}

.about-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.about-mission-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    font-family: 'Poppins', Arial, sans-serif;
}

.about-mission-text p {
    margin-bottom: 15px;
}

.about-mission-text p:last-child {
    margin-bottom: 0;
}

/* Statistics Section */
.about-statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-stat-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.about-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(245, 134, 52, 0.2);
    border-color: var(--primary-orange);
}

.about-stat-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.about-stat-card:hover .about-stat-icon {
    transform: scale(1.2) rotate(10deg);
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Poppins', Arial, sans-serif;
}

.about-stat-number span {
    font-size: 1.8rem;
    color: var(--primary-orange);
}

.about-stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Poppins', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* History Timeline Section */
.about-history-section {
    padding: 80px 0;
    background: white;
}

.about-timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.about-timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-orange) 0%, rgba(245, 134, 52, 0.3) 100%);
    transform: translateX(-50%);
}

.about-timeline-item {
    margin-bottom: 60px;
    position: relative;
}

.about-timeline-item.left {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
    padding-right: 60px;
}

.about-timeline-item.right {
    margin-left: 50%;
    margin-right: 0;
    text-align: left;
    padding-left: 60px;
}

.about-timeline-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 4px solid var(--primary-orange);
}

.about-timeline-item.right .about-timeline-content {
    border-left: 4px solid var(--primary-orange);
}

.about-timeline-item.left .about-timeline-content {
    border-right: 4px solid var(--primary-orange);
    border-left: none;
}

.about-timeline-content:hover {
    box-shadow: 0 15px 40px rgba(245, 134, 52, 0.2);
    transform: translateY(-5px);
}

.about-timeline-year {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-family: 'Poppins', Arial, sans-serif;
}

.about-timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Poppins', Arial, sans-serif;
}

.about-timeline-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    font-family: 'Poppins', Arial, sans-serif;
}

.about-timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary-orange);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 5;
    transition: all 0.3s ease;
}

.about-timeline-item:hover .about-timeline-dot {
    width: 28px;
    height: 28px;
    top: 26px;
    box-shadow: 0 0 0 8px rgba(245, 134, 52, 0.1);
}

.about-timeline-arrow {
    position: absolute;
    left: 50%;
    top: 70px;
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary-orange) 0%, transparent 100%);
    transform: translateX(-50%);
}

.about-timeline-arrow::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--primary-orange);
}

/* Leadership Section */
.about-leadership-section {
    padding: 40px 0 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-leadership-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.about-leadership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(245, 134, 52, 0.2);
    border-color: var(--primary-orange);
}

.about-leadership-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.about-leadership-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-leadership-card:hover .about-leadership-image {
    transform: scale(1.1);
}

.about-leadership-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.about-leadership-info {
    padding: 30px;
    text-align: center;
}

.about-leadership-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'Poppins', Arial, sans-serif;
}

.about-leadership-designation {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', Arial, sans-serif;
}

.about-leadership-bio {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    font-family: 'Poppins', Arial, sans-serif;
}

/* CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ed353a 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    font-family: 'Poppins', Arial, sans-serif;
}

.about-cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-family: 'Poppins', Arial, sans-serif;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-btn {
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Poppins', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-cta-btn.btn-primary {
    background: white;
    color: var(--primary-orange);
    border: 2px solid white;
}

.about-cta-btn.btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-cta-btn.btn-outline-primary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.about-cta-btn.btn-outline-primary:hover {
    background: white;
    color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 3rem;
    }

    .about-section-title {
        font-size: 2rem;
    }

    .about-timeline-wrapper::before {
        left: 30px;
    }

    .about-timeline-item.left,
    .about-timeline-item.right {
        margin-left: 0;
        margin-right: 0;
        padding-left: 100px;
        text-align: left;
    }

    .about-timeline-dot {
        left: 20px;
    }

    .about-timeline-arrow {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        height: 60vh;
        margin-bottom: 50px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-mission-vision-section,
    .about-statistics-section,
    .about-history-section,
    .about-leadership-section {
        padding: 50px 0;
    }

    .about-stat-card {
        padding: 30px 20px;
    }

    .about-section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .about-cta-title {
        font-size: 2rem;
    }

    .about-cta-subtitle {
        font-size: 1rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .about-timeline-item {
        margin-bottom: 40px;
    }

    .about-timeline-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        height: 50vh;
        margin-bottom: 30px;
    }

    .about-hero-title {
        font-size: 1.5rem;
    }

    .about-hero-subtitle {
        font-size: 0.9rem;
    }

    .about-mission-vision-section,
    .about-statistics-section,
    .about-history-section,
    .about-leadership-section {
        padding: 30px 0;
    }

    .about-stat-card {
        padding: 20px 15px;
    }

    .about-stat-number {
        font-size: 2rem;
    }

    .about-stat-icon {
        font-size: 2rem;
    }

    .about-section-title {
        font-size: 1.5rem;
    }

    .about-cta-section {
        padding: 50px 0;
    }

    .about-cta-title {
        font-size: 1.5rem;
    }

    .about-timeline-wrapper::before {
        left: 20px;
    }

    .about-timeline-dot {
        left: 15px;
        width: 16px;
        height: 16px;
    }

    .about-timeline-arrow {
        left: 15px;
    }

    .about-timeline-item.left,
    .about-timeline-item.right {
        padding-left: 60px;
    }

    .about-timeline-content {
        padding: 15px;
    }

    .about-timeline-year {
        font-size: 1.3rem;
    }

    .about-timeline-title {
        font-size: 1rem;
    }

    .about-timeline-description {
        font-size: 0.85rem;
    }
}


/* MODERN ABOUT US PAGE DESIGN
  */
.about-us-modern-section {
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(245, 134, 52, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-wrapper:hover {
    box-shadow: 0 30px 80px rgba(245, 134, 52, 0.3);
    transform: translateY(-5px);
}

.about-image-main {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-wrapper:hover .about-image-main:not(.about-founder-cutout) {
    transform: scale(1.05);
}

.about-image-wrapper--cutout {
    background: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    min-height: 0;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 0;
    transition: none;
}

.about-image-wrapper--cutout:hover {
    transform: none;
    box-shadow: none;
}

.about-image-wrapper--cutout .about-founder-cutout {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    object-fit: contain;
    object-position: top center;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    transform: translateY(-102px);
    margin-bottom: -102px;
    transition: none;
}

.about-image-wrapper--cutout:hover .about-founder-cutout,
.about-image-wrapper--cutout:hover .about-image-main {
    transform: translateY(-102px);
}

.about-home-row > .col-lg-6:first-child {
    overflow: visible;
}

.about-home-section {
    overflow: visible;
    padding-bottom: clamp(32px, 4vw, 48px) !important;
    margin-bottom: 0 !important;
}

.about-home-row {
    align-items: stretch;
}

@media (min-width: 992px) {
    .about-home-row > .col-lg-6 {
        display: flex;
        align-items: stretch;
    }

    .about-home-row > .col-lg-6 > .skh-about-content,
    .about-home-row > .col-lg-6 > .about-image-wrapper--cutout {
        flex: 1 1 auto;
        width: 100%;
    }

    .about-home-row .about-content,
    .about-home-row .skh-about-content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 100%;
        height: 100%;
    }

    .skh-about-copy {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .skh-about-foot {
        margin-top: auto;
        padding-top: 12px;
    }

    .about-image-wrapper--cutout {
        min-height: 0;
    }
}

@media (max-width: 991px) {
    .about-image-wrapper--cutout {
        height: auto;
        overflow: visible;
        align-items: center;
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .about-image-wrapper--cutout .about-founder-cutout,
    .about-image-wrapper--cutout:hover .about-founder-cutout,
    .about-image-wrapper--cutout:hover .about-image-main {
        width: auto;
        height: auto;
        min-height: 0;
        max-height: 420px;
        object-fit: contain;
        object-position: center center;
        transform: none !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .about-home-row {
        --bs-gutter-y: 0.75rem;
        row-gap: 0.75rem !important;
    }

    .about-home-row > .col-lg-6:first-child,
    .about-home-row > .col-lg-6:last-child {
        margin-top: 0;
        margin-bottom: 0;
    }

    .about-home-row .skh-about-content,
    .about-home-row .about-content {
        padding-top: 0;
        margin-top: 0;
    }
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.about-image-decoration::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: var(--gradient-reverse);
    border-radius: 50%;
    opacity: 0.08;
}

/* About Content Wrapper */
.about-content-wrapper {
    padding: 0 20px;
}

.about-badge {
    display: inline-block;
    background: var(--gradient-light);
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    padding: 10px 25px;
    margin-bottom: 20px;
    animation: slideInLeft 0.6s ease-out;
}

.about-badge .badge-text {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', Arial, sans-serif;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
    font-family: 'Poppins', Arial, sans-serif;
    animation: slideInLeft 0.7s ease-out 0.1s both;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Poppins', Arial, sans-serif;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.about-description:last-of-type {
    margin-bottom: 0;
}

.about-description-secondary {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 20px;
    font-weight: 400;
    font-family: 'Poppins', Arial, sans-serif;
    animation: slideInLeft 0.9s ease-out 0.3s both;
}

.highlight-text {
    color: var(--primary-orange);
    font-weight: 700;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.3;
}

/* Modern Counters Section */
.modern-counters-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid rgba(245, 134, 52, 0.1);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 600px;
}

.counter-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.counter-card:hover {
    box-shadow: 0 20px 50px rgba(245, 134, 52, 0.25);
    transform: translateY(-8px);
    border-color: var(--primary-orange);
}

.counter-card:hover::before {
    transform: scaleX(1);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-family: 'Poppins', Arial, sans-serif;
    letter-spacing: -1px;
    line-height: 1;
    white-space: nowrap;
}

.counter-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', Arial, sans-serif;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-title {
        font-size: 2.3rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .counter-number {
        font-size: 2.8rem;
    }

    .counters-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-content-wrapper {
        padding: 0;
        margin-top: 30px;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .about-badge {
        padding: 8px 20px;
        margin-bottom: 15px;
    }

    .about-badge .badge-text {
        font-size: 0.75rem;
    }

    .modern-counters-section {
        margin-top: 40px;
        padding-top: 40px;
    }

    .counters-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
        margin-top: 30px;
    }

    .counter-card {
        padding: 25px 15px;
    }

    .counter-number {
        font-size: 2.2rem;
    }

    .counter-title {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .about-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .about-badge {
        padding: 6px 15px;
        margin-bottom: 12px;
    }

    .about-badge .badge-text {
        font-size: 0.7rem;
    }

    .counters-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }

    .counter-card {
        padding: 20px 12px;
    }

    .counter-number {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .counter-title {
        font-size: 0.85rem;
    }

    .modern-counters-section {
        margin-top: 30px;
        padding-top: 30px;
    }
}

/* ZIGZAG HISTORY TIMELINE
  */
.history-timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.history-timeline {
    position: relative;
    padding: 20px 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    top: 0;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    display: flex;
    align-items: center;
}

.timeline-item.timeline-left {
    flex-direction: row;
}

.timeline-item.timeline-right {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: white;
    border: 4px solid var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(245, 134, 52, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    width: 32px;
    height: 32px;
    border-width: 5px;
    box-shadow: 0 0 0 6px rgba(245, 134, 52, 0.3);
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 0 30px;
}

.timeline-item.timeline-left .timeline-content {
    text-align: right;
    padding-right: 40px;
    padding-left: 0;
}

.timeline-item.timeline-right .timeline-content {
    text-align: left;
    padding-left: 40px;
    padding-right: 0;
}

.timeline-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item:hover .timeline-card {
    box-shadow: 0 20px 50px rgba(245, 134, 52, 0.25);
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.timeline-item:hover .timeline-card::before {
    transform: scaleX(1);
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'Poppins', Arial, sans-serif;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Poppins', Arial, sans-serif;
}

.timeline-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
}

/* Arrow connectors */
.timeline-item.timeline-left .timeline-content::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    filter: drop-shadow(2px 0 3px rgba(0, 0, 0, 0.1));
}

.timeline-item.timeline-right .timeline-content::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 20px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    filter: drop-shadow(-2px 0 3px rgba(0, 0, 0, 0.1));
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .history-timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        margin-bottom: 40px;
    }

    .timeline-item.timeline-left,
    .timeline-item.timeline-right {
        flex-direction: column !important;
    }

    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
        padding: 0 20px !important;
        text-align: left !important;
    }

    .timeline-item.timeline-left .timeline-content,
    .timeline-item.timeline-right .timeline-content {
        text-align: left !important;
        padding-left: 20px !important;
        padding-right: 0 !important;
    }

    .timeline-item.timeline-left .timeline-content::after,
    .timeline-item.timeline-right .timeline-content::after {
        display: none;
    }

    .timeline-card {
        padding: 20px;
    }

    .timeline-year {
        font-size: 1.5rem;
    }

    .timeline-title {
        font-size: 1.1rem;
    }

    .timeline-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .history-timeline-wrapper {
        padding: 20px 0;
    }

    .timeline-item {
        margin-bottom: 30px;
    }

    .history-timeline::before {
        left: 15px;
    }

    .timeline-marker {
        left: 15px;
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px;
        padding: 0 15px !important;
    }

    .timeline-card {
        padding: 15px;
    }

    .timeline-year {
        font-size: 1.3rem;
    }

    .timeline-title {
        font-size: 1rem;
    }

    .timeline-description {
        font-size: 0.85rem;
    }
}


/* MISSION & VISION — split sidebar + cards (About page)
   */
.mission-vision-split-section {
    --mv-navy: #0a2e5c;
    --mv-navy-dark: #082448;
    --mv-orange: #d4883c;
    --mv-cream: #fdf9f4;
    margin: 0 calc(50% - 50vw) 80px;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
}

.mission-vision-split-section--flush {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
}

.mission-vision-split {
    display: flex;
    align-items: stretch;
    min-height: 420px;
}

.mission-vision-split__sidebar {
    flex: 0 0 34%;
    max-width: 34%;
    background: var(--mv-navy);
    border-left: 5px solid var(--mv-orange);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-vision-split__badge {
    display: block;
    color: var(--mv-orange);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mission-vision-split__title {
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: clamp(1.75rem, 2.4vw, 2.35rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 20px;
}

.mission-vision-split__desc {
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    margin: 0;
    max-width: 420px;
}

.mission-vision-split__content {
    flex: 1;
    background: var(--mv-cream);
    padding: 48px 40px;
    display: flex;
    align-items: center;
}

.mission-vision-split__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
}

.mission-vision-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(10, 46, 92, 0.12);
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mv-card-float-icon {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 8px 24px rgba(10, 46, 92, 0.25);
    z-index: 2;
}

.mv-card-float-icon--vision {
    background: var(--mv-navy);
}

.mv-card-float-icon--mission {
    background: linear-gradient(135deg, #c47a2e 0%, #a86520 100%);
}

.mv-card-header-bar {
    background: var(--mv-navy);
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
    padding: 38px 24px 22px;
    border-radius: 14px 14px 0 0;
}

.mv-card-body {
    padding: 28px 26px 32px;
    flex: 1;
}

.mv-card-content {
    color: #4a5568;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.75;
    margin: 0;
    text-align: center;
}

.mv-card-content p {
    margin-bottom: 12px;
}

.mv-card-content p:last-child {
    margin-bottom: 0;
}

.mv-card-content ul,
.mv-card-content ol {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mv-card-content li {
    margin-bottom: 10px;
}

.mv-card-content li:last-child {
    margin-bottom: 0;
}

.mission-vision-split-section--compact .mv-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-vision-split-section--compact .mv-card-content--excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.mv-card-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #153d66;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.mv-card-view-more i {
    font-size: 0.72rem;
    transition: transform 0.2s ease;
}

.mv-card-view-more:hover {
    color: #c45100;
}

.mv-card-view-more:hover i {
    transform: translateX(3px);
}

@media (max-width: 1199px) {
    .mission-vision-split__sidebar {
        flex: 0 0 38%;
        max-width: 38%;
        padding: 44px 36px;
    }

    .mission-vision-split__content {
        padding: 40px 28px;
    }
}

@media (max-width: 991px) {
    .mission-vision-split {
        flex-direction: column;
        min-height: 0;
    }

    .mission-vision-split__sidebar {
        flex: none;
        max-width: 100%;
        padding: 40px 32px;
    }

    .mission-vision-split__desc {
        max-width: none;
    }

    .mission-vision-split__content {
        padding: 48px 24px 40px;
    }

    .mission-vision-split__cards {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .mission-vision-split-section {
        margin-bottom: 60px;
    }

    .mission-vision-split__sidebar {
        padding: 32px 24px;
    }

    .mission-vision-split__content {
        padding: 44px 20px 36px;
    }

    .mission-vision-split__cards {
        grid-template-columns: 1fr;
        gap: 44px;
        max-width: 420px;
        margin: 0 auto;
    }

    .mv-card-header-bar {
        font-size: 1.2rem;
        padding: 34px 20px 18px;
    }

    .mv-card-body {
        padding: 24px 20px 28px;
    }

    .mv-card-content {
        font-size: 0.9rem;
    }
}


/* FACILITIES PAGE â€” ALTERNATING LAYOUT
   */

.facility-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 1;
    min-height: 300px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 5rem;
    gap: 0;
}

.facility-item > .col-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.facility-item:nth-child(1) { animation-delay: 0.1s; }
.facility-item:nth-child(2) { animation-delay: 0.2s; }
.facility-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Facility Container Loading State */
#facility-content-container {
    transition: opacity 0.3s ease !important;
    opacity: 1 !important;
}

#facility-content-container.loading {
    opacity: 0 !important;
    pointer-events: none;
}

.facility-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 85%;
    height: 300px;
}

.facility-image-wrapper:hover {
    box-shadow: 0 25px 60px rgba(245, 134, 52, 0.25);
    transform: translateY(-8px);
}

.facility-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.facility-image-wrapper:hover .facility-image {
    transform: scale(1.08);
}

.facility-content {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.facility-content h3 {
    color: var(--text-dark);
    font-size: 2.2rem;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.facility-content h3:hover {
    color: var(--primary-orange);
}

.facility-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.facility-status {
    display: inline-block;
    margin-top: auto;
}

.facility-status .badge {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.facility-status .bg-success {
    background-color: #10b981 !important;
    color: white;
}

.facility-status .bg-danger {
    background-color: #ef4444 !important;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .facility-item {
        min-height: auto;
        display: block;
    }
    
    .facility-image-wrapper {
        height: 350px;
        margin-bottom: 2rem;
    }
    
    .facility-content {
        padding: 0;
        height: auto;
    }
    
    .facility-content h3 {
        font-size: 1.75rem;
    }
    
    .facility-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .facility-image-wrapper {
        height: 280px;
        margin-bottom: 1.5rem;
    }
    
    .facility-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .facility-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Add padding to content column on large screens */
@media (min-width: 992px) {
    .facility-item > .col-lg-6:last-child {
        padding-left: 2rem !important;
    }
}

/*  PAGINATION STYLING
   */
.pagination-modern {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-modern .page-item {
    display: inline-block;
}

.pagination-modern .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.pagination-modern .page-link:hover:not(.page-link-disabled):not(.page-link-active) {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(245, 134, 52, 0.05);
    transform: translateY(-2px);
}

.pagination-modern .page-link-active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(245, 134, 52, 0.3);
}

.pagination-modern .page-link-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #e5e7eb;
}

.pagination-modern .page-link-nav {
    min-width: 40px;
    padding: 0;
}

.pagination-modern .page-link-nav i {
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .pagination-modern .page-link {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 0.9rem;
    }
}
/* Override any section z-index that might be higher */
.placement-banner-section {
    z-index: auto !important;
}

.placement-banner-wrapper {
    z-index: auto !important;
}

/* Placement banner — premium navy / orange outline */
.skh-placement-banner-wrap {
    position: relative;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto clamp(28px, 4vw, 40px);
    overflow: visible;
    isolation: isolate;
}

.skh-placement-banner-wrap::before {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -18px;
    height: clamp(48px, 8vw, 72px);
    background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(21, 61, 102, 0.14), transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.placement-banner-wrapper.skh-placement-banner-outline {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-bottom: 0;
    padding: clamp(2px, 0.35vw, 3px);
    border-radius:
        clamp(22px, 3.2vw, 32px)
        clamp(22px, 3.2vw, 32px)
        clamp(12px, 1.6vw, 16px)
        clamp(12px, 1.6vw, 16px);
    background: linear-gradient(
        155deg,
        #0f3052 0%,
        #153d66 18%,
        #c45100 46%,
        #e8924a 52%,
        #153d66 82%,
        #0f3052 100%
    );
    box-shadow:
        0 30px 70px -18px rgba(21, 61, 102, 0.24),
        0 14px 32px -12px rgba(196, 81, 0, 0.14),
        0 0 0 1px rgba(21, 61, 102, 0.06);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
}

.placement-banner-wrapper.skh-placement-banner-outline:hover {
    transform: translateY(-3px);
    box-shadow:
        0 36px 80px -20px rgba(21, 61, 102, 0.28),
        0 18px 38px -14px rgba(196, 81, 0, 0.16),
        0 0 0 1px rgba(21, 61, 102, 0.08);
}

.placement-banner-wrapper.skh-placement-banner-outline::before {
    content: '';
    position: absolute;
    inset: clamp(6px, 0.95vw, 9px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius:
        clamp(16px, 2.4vw, 24px)
        clamp(16px, 2.4vw, 24px)
        clamp(8px, 1.2vw, 12px)
        clamp(8px, 1.2vw, 12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
    pointer-events: none;
    z-index: 3;
}

.skh-placement-banner-inner {
    position: relative;
    overflow: hidden;
    height: clamp(280px, 58vw, 780px);
    padding: clamp(14px, 2.2vw, 22px);
    background: linear-gradient(180deg, #fcfdfe 0%, #ffffff 45%, #f7f9fc 100%);
    border-radius:
        clamp(18px, 2.6vw, 26px)
        clamp(18px, 2.6vw, 26px)
        clamp(10px, 1.4vw, 14px)
        clamp(10px, 1.4vw, 14px);
    border: 1px solid rgba(21, 61, 102, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 0 0 1px rgba(196, 81, 0, 0.1);
}

.skh-placement-banner-inner::before {
    content: '';
    position: absolute;
    inset: clamp(10px, 1.6vw, 16px);
    pointer-events: none;
    z-index: 2;
    border-radius: clamp(6px, 1vw, 10px);
    background:
        linear-gradient(90deg, #c45100, rgba(196, 81, 0, 0)) 0 0 / clamp(28px, 4vw, 44px) 2px no-repeat,
        linear-gradient(180deg, #c45100, rgba(196, 81, 0, 0)) 0 0 / 2px clamp(28px, 4vw, 44px) no-repeat,
        linear-gradient(270deg, #153d66, rgba(21, 61, 102, 0)) 100% 0 / clamp(28px, 4vw, 44px) 2px no-repeat,
        linear-gradient(180deg, #153d66, rgba(21, 61, 102, 0)) 100% 0 / 2px clamp(28px, 4vw, 44px) no-repeat,
        linear-gradient(90deg, #153d66, rgba(21, 61, 102, 0)) 0 100% / clamp(28px, 4vw, 44px) 2px no-repeat,
        linear-gradient(0deg, #153d66, rgba(21, 61, 102, 0)) 0 100% / 2px clamp(28px, 4vw, 44px) no-repeat,
        linear-gradient(270deg, #c45100, rgba(196, 81, 0, 0)) 100% 100% / clamp(28px, 4vw, 44px) 2px no-repeat,
        linear-gradient(0deg, #c45100, rgba(196, 81, 0, 0)) 100% 100% / 2px clamp(28px, 4vw, 44px) no-repeat;
    opacity: 0.9;
}

.skh-placement-banner-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
    border-radius: clamp(8px, 1.2vw, 12px);
    filter: drop-shadow(0 10px 28px rgba(21, 61, 102, 0.1));
}

@media (max-width: 768px) {
    .skh-placement-banner-inner {
        height: clamp(220px, 62vw, 420px);
        padding: clamp(10px, 2.4vw, 14px);
    }

    .placement-banner-wrapper.skh-placement-banner-outline::before {
        inset: clamp(5px, 1.4vw, 7px);
    }

    .skh-placement-banner-inner::before {
        inset: clamp(8px, 2vw, 12px);
    }

    .placement-banner-wrapper.skh-placement-banner-outline:hover {
        transform: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   PLACEMENT HIGHLIGHTS — dynamic home-page student cards
   ═══════════════════════════════════════════════════════════════════ */

.skh-placement-highlights-wrap {
    --skh-ph-red: #F37021;
    --skh-ph-red-dark: #C45100;
    --skh-ph-pink: #D6336C;
    --skh-ph-navy: #0a2e5c;
    max-width: 1140px;
    margin: 0 auto clamp(8px, 2vw, 16px);
}

.skh-placement-highlights-wrap .appear-animation {
    opacity: 1 !important;
    visibility: visible !important;
}

.skh-placement-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: clamp(28px, 3.5vw, 40px) clamp(14px, 2vw, 26px);
}

.skh-placement-highlight-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.skh-placement-highlight-package {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 800;
    font-size: clamp(1.35rem, 2.1vw, 1.9rem);
    color: var(--skh-ph-navy);
    line-height: 1;
    margin-bottom: 10px;
}

.skh-placement-highlight-package span {
    font-size: 0.52em;
    font-weight: 700;
    margin-left: 2px;
}

.skh-placement-highlight-photo-frame {
    position: relative;
    width: 100%;
    max-width: 168px;
    aspect-ratio: 3 / 3.4;
    padding: 10px 10px 0;
    background: linear-gradient(160deg, var(--skh-ph-red) 0%, var(--skh-ph-red-dark) 100%);
    border-radius: 22px 22px 6px 6px;
    box-shadow: 0 14px 30px -12px rgba(196, 81, 0, 0.45);
    overflow: hidden;
}

.skh-placement-highlight-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 4px;
}

.skh-placement-highlight-name {
    margin-top: 14px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--skh-ph-pink);
}

.skh-placement-highlight-company {
    margin-top: 4px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    font-size: 0.78rem;
    color: #4b5563;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .skh-placement-highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .skh-placement-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* BLOG CARD STYLES
   */
.blog-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
    margin-bottom: 10px;
}

.blog-card-meta {
    gap: 30px;
}

.blog-card-body {
    padding: 25px;
}


/* MARQUEE LINK STYLES
  */
.marquee-link {
    color: #E04622;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.marquee-link:hover {
    color: #cc3e1d;
    border-bottom-color: #E04622;
    text-decoration: none;
}


/* BLOG CATEGORIES SEARCH FILTER
   
Container styling */
.categories-list {
	position: relative;
	background: #fafafa;
}

/* Custom Scrollbar Styling - WebKit (Chrome, Safari, Edge) */
.categories-list::-webkit-scrollbar {
	width: 8px;
}

.categories-list::-webkit-scrollbar-track {
	background: #f5f5f5;
	border-radius: 10px;
	margin: 5px 0;
}

.categories-list::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #E04622 0%, #cc3e1d 100%);
	border-radius: 10px;
	transition: all 0.3s ease;
	border: 2px solid #f5f5f5;
	box-shadow: inset 0 0 6px rgba(224, 70, 34, 0.3);
	min-height: 40px;
}

.categories-list::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #cc3e1d 0%, #b83318 100%);
	box-shadow: inset 0 0 8px rgba(224, 70, 34, 0.5);
	border-color: #f0f0f0;
	width: 10px;
}

.categories-list::-webkit-scrollbar-thumb:active {
	background: linear-gradient(180deg, #b83318 0%, #a02d15 100%);
}

/* Firefox Scrollbar */
.categories-list {
	scrollbar-color: #E04622 #f5f5f5;
	scrollbar-width: thin;
}

/* Ensure scrollbar is always visible when needed */
.categories-list {
	overflow-y: scroll !important;
}

/* Smooth scrolling */
.categories-list {
	scroll-behavior: smooth;
}

/* Category Item Animations */
.category-item {
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.category-item.hidden {
	display: none !important;
}

/* Search Input Styling */
#categorySearch {
	transition: all 0.3s ease;
}

#categorySearch:focus {
	border-color: #E04622 !important;
	box-shadow: 0 0 0 3px rgba(224, 70, 34, 0.1) !important;
}

/* Result Count Styling */
#searchResultCount {
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* No Results Message */
#noResultsMessage {
	animation: fadeIn 0.3s ease;
}

#noResultsMessage i {
	animation: slideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.categories-list {
		max-height: 400px;
	}

	#categorySearch {
		font-size: 1rem;
	}
}


/* PROGRAMS CAROUSEL â€” RESPONSIVE LAYOUT
   */
.programs-carousel {
    position: relative;
}

/* Desktop: Default behavior - 3 cards per slide (NO CSS CHANGES) */
@media (min-width: 992px) {
    /* Keep default Bootstrap carousel behavior */
}

/* Mobile: Hide extra cards, show only 1 per slide */
@media (max-width: 767px) {
    /* Hide all cards except the first one in each carousel item */
    .programs-carousel .carousel-item .col-md-6:nth-child(2),
    .programs-carousel .carousel-item .col-md-6:nth-child(3),
    .programs-carousel .carousel-item .col-lg-4:nth-child(2),
    .programs-carousel .carousel-item .col-lg-4:nth-child(3) {
        display: none !important;
    }

    /* Make the single card full width */
    .programs-carousel .carousel-item .col-md-6:first-child,
    .programs-carousel .carousel-item .col-lg-4:first-child {
        width: 100%;
    }

    .programs-carousel .row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .programs-carousel-btn {
        opacity: 1 !important;
        z-index: 10 !important;
        display: flex !important;
    }

    .programs-carousel-btn:hover {
        transform: translateY(-50%) scale(1.1) !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .programs-carousel .row {
        gap: 1rem;
    }

    .program-card {
        margin: 0 !important;
    }

    .programs-carousel-btn {
        width: 40px !important;
        height: 40px !important;
    }
}


/* SLIDER FIX - ENSURE SLIDER DISPLAYS ABOVE NAVBAR
   */

.main {
    position: static !important;
    z-index: auto !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.owl-carousel {
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.owl-stage-outer {
    position: relative !important;
    z-index: 1 !important;
}

.owl-item {
    position: relative !important;
    z-index: 1 !important;
}

.slider-overlay {
    position: absolute !important;
    z-index: 1 !important;
}

.slider-title-wrapper {
    position: relative !important;
    z-index: 2 !important;
}

/* Navbar spacing handled in navbar.css - removed to avoid conflicts */

/* Override any conflicting styles */
.body {
    z-index: 1 !important;

    margin-top: 0 !important;
    padding-top: 0 !important;
}




/* BREADCRUMB MOBILE RESPONSIVE STYLES
   
/* All breadcrumbs now use Contact Us structure - no custom CSS needed */



/* FACILITIES PAGE - RESPONSIVE MOBILE STYLES
   */
.facility-content h3 {
    color: #FFA500 !important;
    border-bottom: 3px solid #333333;
    padding-bottom: 10px;
    display: inline-block;
}

.facility-content h3:hover {
    color: #FFA500 !important;
}

.facility-content h3:active {
    color: #FFA500 !important;
}

.facility-content h3:focus {
    color: #FFA500 !important;
}

.facility-content h3 * {
    color: #FFA500 !important;
}

/* Mobile Responsive Styles */
.facility-image-wrapper {
    max-height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.facility-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .facility-item {
        margin-bottom: 3rem !important;
        padding-bottom: 2rem !important;
    }

    .facility-image-wrapper {
        max-height: 250px;
        margin-bottom: 1.5rem;
    }

    .facility-content h3 {
        font-size: 22px !important;
        margin-top: 0 !important;
        margin-bottom: 1rem !important;
    }

    .facility-content p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .col-12.col-lg-6.ps-lg-4 {
        padding-left: 0 !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 576px) {
    .facility-image-wrapper {
        max-height: 220px;
        margin-bottom: 1rem;
    }

    .facility-content h3 {
        font-size: 18px !important;
        margin-bottom: 0.75rem !important;
    }

    .facility-content p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .facility-item {
        margin-bottom: 2rem !important;
        padding-bottom: 1.5rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .col-12.px-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .col-12.col-lg-6.ps-lg-4 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin-top: 0 !important;
    }

    .col-12.col-lg-6.px-3.px-lg-0 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* ABOUT PAGE - INTERNAL STYLES (MOVED FROM BLADE)
   
Float Animation for Banner */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Testimonials Section - Mobile Responsive */
@media (max-width: 767px) {
    .testimonial-col:nth-child(n+2) {
        display: none !important;
    }
}


/* PLACEMENTS CAROUSEL - MOBILE RESPONSIVE
   */

.placements-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(224, 70, 34, 0.15);
    height: clamp(300px, 60vw, 700px);
    margin-bottom: 30px;
    background: #f0f0f0;
    width: 100%;
}

.carousel-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease;
    border-radius: 20px;
}

/* Navigation Arrows - Desktop */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 20;
}

.carousel-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn i {
    font-size: 1.5rem;
    color: #E04622;
}

/* Desktop - Arrows at sides outside */
@media (min-width: 992px) {
    #prevCarouselBtn {
        left: -30px;
        margin-left: 31px;
    }

    #nextCarouselBtn {
        right: -30px;
        margin-right: 31px;
    }
}

/* Tablet - Arrows at sides inside */
@media (max-width: 991px) and (min-width: 768px) {
    #prevCarouselBtn {
        left: 15px;
    }

    #nextCarouselBtn {
        right: 15px;
    }

    .carousel-nav-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-nav-btn i {
        font-size: 1.2rem;
    }
}

/* Mobile - Arrows at sides OUTSIDE the image */
@media (max-width: 767px) {
    #prevCarouselBtn {
        left: -15px;
    }

    #nextCarouselBtn {
        right: -15px;
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.85);
    }

    .carousel-nav-btn i {
        font-size: 1rem;
    }

    .carousel-nav-btn:hover {
        background: rgba(255, 255, 255, 0.95);
        transform: translateY(-50%) scale(1.1);
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .carousel-main-image {
        height: clamp(250px, 70vw, 400px);
        margin-bottom: 20px;
        border-radius: 15px;
    }

    #prevCarouselBtn,
    #nextCarouselBtn {
        width: 36px;
        height: 36px;
    }

    #prevCarouselBtn {
        left: -15px;
    }

    #nextCarouselBtn {
        right: -15px;
    }

    .carousel-nav-btn i {
        font-size: 0.9rem;
    }

    .carousel-main-image {
        box-shadow: 0 10px 30px rgba(224, 70, 34, 0.1);
    }
}

/* Dot indicators responsive */
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #ddd;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #E04622;
}

@media (max-width: 768px) {
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* Image counter */
#imageCounter,
#totalImages {
    font-size: 0.9rem;
    color: #999;
}

@media (max-width: 480px) {
    #imageCounter,
    #totalImages {
        font-size: 0.8rem;
    }
}

/* Placements carousel section padding */
.placements-carousel-section {
    padding: 60px 0;
    background: #ffffff;
}

@media (max-width: 768px) {
    .placements-carousel-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .placements-carousel-section {
        padding: 30px 0;
    }
}

/* Container margin adjustments */
.custom-margin-1 {
    padding: 0 15px;
}

@media (max-width: 768px) {
    .custom-margin-1 {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .custom-margin-1 {
        padding: 0 10px;
    }
}


/* GALLERY UNIFORM CARDS - CONSISTENT SIZING
  */

.gallery-grid-uniform {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    padding: 20px 0 !important;
}

.gallery-grid-uniform > div {
    width: 100% !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.gallery-card-uniform {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    background: #f5f5f5;
}

.gallery-card-uniform:hover {
    box-shadow: 0 12px 35px rgba(245, 134, 52, 0.25);
    transform: translateY(-8px);
}

.gallery-card-link {
    display: block;
    text-decoration: none;
    height: 100%;
}

.gallery-card-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 aspect ratio - square */
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.gallery-card-image-uniform {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.gallery-card-uniform:hover .gallery-card-image-uniform {
    transform: scale(1.1);
}

.gallery-card-overlay-uniform {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 70, 34, 0.85) 0%, rgba(139, 69, 69, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-card-uniform:hover .gallery-card-overlay-uniform {
    opacity: 1;
}

.gallery-card-icon-uniform {
    color: white;
    font-size: 2.5rem;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card-uniform:hover .gallery-card-icon-uniform {
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .gallery-grid-uniform {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .gallery-grid-uniform {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        padding: 15px 0 !important;
    }

    .gallery-card-uniform {
        border-radius: 12px;
    }

    .gallery-card-icon-uniform {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid-uniform {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 10px 0 !important;
    }

    .gallery-card-uniform {
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .gallery-card-uniform:hover {
        box-shadow: 0 8px 20px rgba(245, 134, 52, 0.2);
        transform: translateY(-4px);
    }

    .gallery-card-icon-uniform {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid-uniform {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 8px 0 !important;
    }

    .gallery-card-uniform {
        border-radius: 8px;
    }

    .gallery-card-icon-uniform {
        font-size: 1.2rem;
    }
}



/* PERSISTENT BROCHURE DOWNLOAD BUTTON
   */
.brochure-download-button {
    position: fixed;
    right: 30px;
    bottom: 150px;
    z-index: 999;
    animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(150px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.brochure-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 80px;
    height: 140px;
    background: linear-gradient(135deg, #E04622 0%, #cc3e1d 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(224, 70, 34, 0.35);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 700;
    text-align: center;
    padding: 15px 10px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: visible;
    z-index: 999;
}

.brochure-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.brochure-btn:hover {
    box-shadow: 0 20px 60px rgba(224, 70, 34, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #cc3e1d 0%, #E04622 100%);
    color: white;
    z-index: 999;
}

.brochure-btn:active {
    transform: translateY(-50%);
}

.brochure-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.brochure-btn:hover .brochure-icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
}

.brochure-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 2;
}

.brochure-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
}

.brochure-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

/* Pulse animation on load */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(224, 70, 34, 0.35);
    }
    50% {
        box-shadow: 0 10px 60px rgba(224, 70, 34, 0.55);
    }
}

.brochure-btn {
    animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), pulse 2s ease-in-out 0.8s;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .brochure-download-button {
        right: 20px;
    }

    .brochure-btn {
        width: 75px;
        height: 130px;
        gap: 10px;
    }

    .brochure-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .brochure-title {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .brochure-download-button {
        right: 15px;
        bottom: 140px;
        transform: none;
    }

    .brochure-btn {
        width: 70px;
        height: 120px;
        gap: 8px;
        padding: 12px 8px;
    }

    .brochure-btn:hover {
        transform: none;
    }

    .brochure-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .brochure-label {
        font-size: 9px;
    }

    .brochure-title {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .brochure-download-button {
        right: 10px;
        bottom: 130px;
    }

    .brochure-btn {
        width: 65px;
        height: 110px;
        gap: 6px;
        padding: 10px 6px;
        border-radius: 15px;
    }

    .brochure-icon-wrapper {
        width: 38px;
        height: 38px;
        font-size: 18px;
        border-radius: 8px;
    }

    .brochure-label {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .brochure-title {
        font-size: 10px;
    }
}

/* Hide on print */
@media print {
    .brochure-download-button {
        display: none;
    }
}

/* Accessibility */
.brochure-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}


/* FACILITIES PAGE - PREMIUM & RICH DESIGN
 Facilities Sidebar - Enhanced */

.facilities-sidebar {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%) !important;
    border-radius: 15px !important;
    padding: 30px !important;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
    border: 2px solid rgba(224, 70, 34, 0.1);
    transition: all 0.3s ease;
}

.facilities-sidebar:hover {
    box-shadow: 0 12px 40px rgba(224, 70, 34, 0.15) !important;
    border-color: rgba(224, 70, 34, 0.2);
}

.facilities-sidebar h5 {
    color: #1a1a1a !important;
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(224, 70, 34, 0.2);
}

.facilities-sidebar h5 i {
    color: #E04622;
    font-size: 16px;
}

/* Facility Item Button - Active & Hover States */
.facility-item-btn {
    background: transparent !important;
    border: 2px solid transparent !important;
    padding: 14px 16px !important;
    border-radius: 10px !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    text-align: left;
    color: #555 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    display: block;
    margin-bottom: 10px !important;
    position: relative;
    overflow: hidden;
}

.facility-item-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #E04622 0%, #cc3e1d 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.facility-item-btn:hover {
    background: linear-gradient(135deg, rgba(224, 70, 34, 0.1) 0%, rgba(204, 62, 29, 0.05) 100%) !important;
    border-color: rgba(224, 70, 34, 0.3) !important;
    color: #E04622 !important;
    transform: translateX(5px);
}

.facility-item-btn:hover::before {
    transform: scaleY(1);
}

.facility-item-btn.active {
    background: linear-gradient(135deg, #E04622 0%, #cc3e1d 100%) !important;
    color: white !important;
    border-color: #E04622 !important;
    box-shadow: 0 8px 20px rgba(224, 70, 34, 0.3);
}

.facility-item-btn.active::before {
    transform: scaleY(1);
}

.facility-item-btn i {
    font-size: 12px;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.facility-item-btn:hover i {
    transform: translateX(3px);
}

/* Facility Card - Premium Design */
.facility-card {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.facility-card .card {
    border: none !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: white;
}

.facility-card .card:hover {
    box-shadow: 0 25px 70px rgba(224, 70, 34, 0.2) !important;
    transform: translateY(-5px);
}

/* Facility Image Container */
.facility-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.facility-card:hover img {
    transform: scale(1.05);
}

/* Category Badge - Enhanced */
.facility-card .card-body {
    padding: 50px !important;
    background: white;
    position: relative;
}

.facility-card .card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E04622 0%, #EEAB26 100%);
}

/* Facility Title */
.facility-card .card-title {
    color: #E04622 !important;
    font-size: 36px !important;
    font-weight: 900 !important;
    margin-bottom: 25px !important;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.facility-card .card-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #E04622 0%, #EEAB26 100%);
    border-radius: 2px;
}

/* Facility Description */
.facility-card .card-text {
    color: #555 !important;
    font-size: 16px !important;
    line-height: 1.9 !important;
    margin-bottom: 40px !important;
    margin-top: 30px;
}

.facility-card .card-text p {
    margin-bottom: 15px;
}

.facility-card .card-text p:last-child {
    margin-bottom: 0;
}

/* Navigation Buttons */
.facility-nav-btn {
    background: #f0f0f0 !important;
    color: #333 !important;
    border: 2px solid transparent !important;
    padding: 14px 28px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.facility-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.facility-nav-btn:hover {
    background: linear-gradient(135deg, #E04622 0%, #cc3e1d 100%) !important;
    color: white !important;
    box-shadow: 0 10px 30px rgba(224, 70, 34, 0.3);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.facility-nav-btn:hover::before {
    left: 100%;
}

.facility-nav-btn:active {
    transform: translateY(0);
}

.facility-nav-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.facility-nav-btn:hover i {
    transform: scale(1.2);
}

/* CTA Section - Enhanced */
.cta-container {
    background: linear-gradient(135deg, #E04622 0%, #cc3e1d 100%) !important;
    border-radius: 20px !important;
    padding: 70px 50px !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(224, 70, 34, 0.3);
    transition: all 0.4s ease;
}

.cta-container:hover {
    box-shadow: 0 30px 80px rgba(224, 70, 34, 0.4);
    transform: translateY(-5px);
}

.cta-container h2 {
    font-size: clamp(1.8rem, 5vw, 3rem) !important;
    font-weight: 900 !important;
    color: white !important;
    margin-bottom: 20px !important;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.cta-container p {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 40px !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Home CTA — campus photo + brand orange overlay */
.skh-home-cta-section.section-spacing {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.skh-home-cta-wrap {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.cta-container.skh-home-cta {
    background: transparent !important;
    overflow: visible !important;
    padding: clamp(28px, 3.5vw, 38px) clamp(24px, 3vw, 36px) !important;
    padding-right: clamp(100px, 14vw, 180px) !important;
    min-height: clamp(150px, 20vw, 190px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: clamp(12px, 1.6vw, 16px) !important;
    box-shadow:
        0 16px 40px rgba(21, 61, 102, 0.18),
        0 6px 18px rgba(196, 81, 0, 0.14);
}

.cta-container.skh-home-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 20px 48px rgba(21, 61, 102, 0.22),
        0 8px 22px rgba(196, 81, 0, 0.18);
}

.cta-container__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.cta-container.skh-home-cta:hover .cta-container__bg {
    transform: scale(1.06);
}

.cta-container__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        rgba(21, 61, 102, 0.9) 0%,
        rgba(21, 61, 102, 0.82) 38%,
        rgba(196, 81, 0, 0.88) 72%,
        rgba(224, 122, 47, 0.9) 100%
    );
}

.cta-container__glow {
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 68%);
}

.cta-container__glow--left {
    width: clamp(180px, 22vw, 280px);
    height: clamp(180px, 22vw, 280px);
    bottom: -18%;
    left: -6%;
}

.cta-container__glow--right {
    width: clamp(160px, 20vw, 240px);
    height: clamp(160px, 20vw, 240px);
    top: -22%;
    right: -4%;
}

.cta-container__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.skh-home-cta .cta-container__content h2 {
    font-family: 'DM Serif Display', Georgia, serif !important;
    font-size: clamp(1.25rem, 2.4vw, 1.65rem) !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em;
    color: #ffffff !important;
    margin-bottom: clamp(8px, 1.2vw, 12px) !important;
    text-shadow: 0 1px 10px rgba(15, 48, 82, 0.3);
}

.skh-home-cta .cta-container__content p {
    font-family: 'DM Sans', 'Poppins', sans-serif !important;
    font-size: clamp(0.84rem, 1vw, 0.92rem) !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.94) !important;
    margin-bottom: clamp(14px, 2vw, 18px) !important;
    line-height: 1.55 !important;
    text-shadow: 0 1px 6px rgba(15, 48, 82, 0.22);
}

.cta-container__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.skh-home-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 8px;
    background: #ffffff;
    color: #c45100 !important;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #ffffff;
    box-shadow: 0 6px 18px rgba(15, 48, 82, 0.2);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.skh-home-cta-btn:hover {
    transform: translateY(-2px);
    background: #153d66;
    color: #ffffff !important;
    border-color: #153d66;
    box-shadow: 0 10px 24px rgba(15, 48, 82, 0.28);
}

.skh-home-cta.appear-animation,
.skh-home-cta .cta-container__content {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive Design */
@media (max-width: 991px) {
    .facilities-sidebar {
        position: static !important;
        margin-bottom: 40px !important;
    }

    .facility-card .card-body {
        padding: 40px !important;
    }

    .facility-card .card-title {
        font-size: 28px !important;
    }

    .facility-card .card-text {
        font-size: 15px !important;
    }

    .cta-container {
        padding: 50px 30px !important;
    }

    .cta-container.skh-home-cta {
        min-height: clamp(140px, 24vw, 170px);
        padding-right: clamp(24px, 3vw, 36px) !important;
    }
}

@media (max-width: 768px) {
    .facilities-sidebar {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 20px !important;
    }

    .facility-item-btn {
        flex: 1;
        min-width: 150px;
        padding: 10px 12px !important;
        font-size: 13px !important;
    }

    .facility-card .card-body {
        padding: 30px !important;
    }

    .facility-card .card-title {
        font-size: 24px !important;
    }

    .facility-card .card-text {
        font-size: 14px !important;
    }

    .facility-nav-btn {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }

    .cta-container {
        padding: 40px 20px !important;
    }

    .cta-container.skh-home-cta {
        min-height: clamp(140px, 24vw, 170px);
        padding-right: clamp(24px, 3vw, 36px) !important;
    }

    .cta-container.skh-home-cta h2 {
        font-size: 1.35rem !important;
    }

    .cta-container.skh-home-cta p {
        font-size: 0.88rem !important;
    }
}

@media (max-width: 576px) {
    .facilities-sidebar {
        flex-direction: column;
    }

    .facility-item-btn {
        flex: none;
        width: 100%;
        font-size: 12px !important;
    }

    .facility-card .card-body {
        padding: 20px !important;
    }

    .facility-card .card-title {
        font-size: 20px !important;
    }

    .facility-card .card-text {
        font-size: 13px !important;
    }

    .facility-nav-btn {
        padding: 8px 16px !important;
        font-size: 12px !important;
        width: 100%;
        justify-content: center;
    }

    .cta-container {
        padding: 30px 15px !important;
    }

    .cta-container h2 {
        font-size: 1.5rem !important;
    }

    .cta-container p {
        font-size: 0.95rem !important;
    }
}


/* FLOATING BUTTONS - WHATSAPP & CALL
   */

.floating-buttons-container {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
    z-index: 999;
    padding: 0 30px;
    pointer-events: none;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    color: white;
    font-size: 28px;
    pointer-events: auto;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-btn i {
    font-size: 28px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%) !important;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #2FE573 0%, #25D366 100%) !important;
}

.whatsapp-btn i {
    color: white !important;
}

.call-btn {
    background: linear-gradient(135deg, #E04622 0%, #cc3e1d 100%) !important;
}

.call-btn:hover {
    background: linear-gradient(135deg, #cc3e1d 0%, #b83517 100%) !important;
}

.call-btn i {
    color: white !important;
}

.btn-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.floating-btn:hover .btn-label {
    opacity: 1;
}

/* Floating Buttons Mobile Responsive */
@media (max-width: 768px) {
    .floating-buttons-container {
        bottom: 20px;
        padding: 0 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .floating-btn i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .floating-buttons-container {
        bottom: 15px;
        padding: 0 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .floating-btn i {
        font-size: 20px;
    }

    .btn-label {
        display: none;
    }
}

/* FOOTER SECTION STYLING
   */
#footer {
    background: #1a1a1a !important;
    color: #ffffff;
    margin-top: 0 !important;
    clear: both;
    position: relative;
    z-index: 2;
    font-family: 'DM Sans', 'Poppins', sans-serif;
}

.main {
    overflow-x: clip;
}

#footer .container {
    padding-top: clamp(32px, 4vw, 44px) !important;
    padding-bottom: clamp(18px, 2.5vw, 26px) !important;
}

#footer .footer-main-row,
#footer .row.gy-5 {
    --bs-gutter-y: 1.25rem;
    margin-bottom: clamp(12px, 2vw, 18px) !important;
}

#footer .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

#footer h5 {
    color: #ffffff !important;
    font-family: 'Sora', 'DM Sans', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    line-height: 1.3 !important;
    margin-bottom: 0.85rem !important;
}

#footer .footer-brand {
    margin-bottom: 0.75rem !important;
}

#footer .footer-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(100px, 11vw, 118px);
    height: clamp(100px, 11vw, 118px);
    border-radius: 50%;
    background: #ffffff;
    padding: clamp(11px, 1.4vw, 14px);
    margin-bottom: 0.85rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
    border: 2px solid rgba(255, 255, 255, 0.95);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
    flex-shrink: 0;
}

#footer .footer-logo-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

#footer .footer-logo-badge__img {
    display: block;
    width: 92%;
    height: 92%;
    max-width: 92%;
    max-height: 92%;
    object-fit: contain;
    object-position: center;
    filter: none !important;
}

#footer .footer-desc {
    margin-bottom: 0.75rem !important;
}

#footer p,
#footer .list a,
#footer .blog-item-footer a,
#footer .footer-bottom p,
#footer .footer-bottom a {
    font-family: 'DM Sans', 'Poppins', sans-serif !important;
    font-size: 0.9375rem !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.88) !important;
}

#footer .list a {
    color: #ffffff !important;
    font-weight: 500 !important;
}

#footer .list li {
    margin-bottom: 0.65rem !important;
}

#footer .list li:last-child {
    margin-bottom: 0 !important;
}

#footer small {
    font-size: 0.8125rem !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.62) !important;
}

#footer hr,
#footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.18) !important;
    margin: clamp(14px, 2vw, 18px) 0 !important;
    opacity: 1;
}

#footer .pages-links-section {
    padding: clamp(6px, 1.2vw, 10px) 0 !important;
    margin-bottom: clamp(6px, 1.2vw, 10px) !important;
}

#footer .footer-bottom {
    padding-top: 0;
}

#footer .page-link {
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
}

#footer .footer-bottom p {
    font-size: 0.875rem !important;
    color: rgba(255, 255, 255, 0.72) !important;
}

#footer .footer-bottom .text-white,
#footer .footer-bottom a.text-white {
    color: #ffffff !important;
    font-size: 0.875rem !important;
}

.blog-item-footer {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.65rem;
    margin-bottom: 0.65rem !important;
}

.footer-social-icons a:hover {
    color: #fbbf24 !important;
    transform: translateY(-3px);
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    margin-right: 8px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.list a:hover {
    color: #fbbf24 !important;
}

.blog-item-footer:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-item-footer a {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: block !important;
    font-size: 0.9375rem !important;
    line-height: 1.5 !important;
    max-height: none !important;
    margin-bottom: 0 !important;
}

.page-link {
    transition: all 0.3s ease !important;
    position: relative;
}

.page-link:hover {
    color: #EEAB26 !important;
    text-decoration: none;
}

.pages-links-section {
    text-align: center;
    padding: 20px 0;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    #footer .container {
        padding-top: 28px !important;
        padding-bottom: 18px !important;
    }

    #footer .footer-main-row,
    #footer .row.gy-5 {
        --bs-gutter-y: 1.1rem;
        margin-bottom: 12px !important;
    }

    #footer h5 {
        font-size: 0.875rem !important;
        margin-bottom: 0.7rem !important;
    }

    #footer .footer-logo-badge {
        width: 96px;
        height: 96px;
        padding: 11px;
    }

    .footer-social-icons {
        margin-bottom: 8px;
    }

    .pages-links-section {
        padding: 8px 0;
    }

    .page-link {
        font-size: 0.85rem !important;
    }

    .pages-links-section span {
        margin: 0 4px !important;
    }
}

@media (max-width: 576px) {
    .pages-links-section {
        padding: 10px 0;
    }

    .page-link {
        font-size: 0.8rem !important;
    }

    .pages-links-section .d-flex {
        gap: 0.5rem !important;
    }
}


/* ADMIN STYLES â€” STATUS UPDATE & ACTION BUTTONS
   */
.status-update-section {
    margin-bottom: 20px;
}

.status-update-section form {
    display: inline-block;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.action-buttons form {
    display: inline;
}

/* ADMIN STYLES â€” LEADERSHIP TABLE
  */
.leadership-table {
    table-layout: auto;
    width: 100%;
}

.leadership-table td {
    word-break: break-word;
    overflow-wrap: break-word;
}

.leadership-table small {
    display: block;
    white-space: normal;
}

/* PLACEMENT OVERVIEW PAGE
    Placement Overview Styles */

/* Year Filter */
.filter-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.filter-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

.year-select {
    min-width: 150px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.year-select:focus {
    border-color: #F58634;
    box-shadow: 0 0 0 3px rgba(245, 134, 52, 0.1);
}

.year-select:hover {
    border-color: #F58634;
}

/* Department Cards Grid */
.department-cards-grid {
    margin-top: 2rem;
}

.department-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.department-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #F58634;
}

.card-header-top {
    background: linear-gradient(135deg, #F58634 0%, #ED353A 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dept-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dept-info {
    flex: 1;
}

.dept-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.batch-year {
    font-size: 0.85rem;
    opacity: 0.9;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.card-body {
    padding: 1.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

/* Progress Section */
.progress-section {
    margin-bottom: 1.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.progress-label span:first-child {
    color: #666;
    font-weight: 500;
}

.percentage-badge {
    background: #f9f4f0;
    color: #F58634;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Package Section */
.package-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.package-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.package-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #F58634;
}

/* Empty State */
.empty-state {
    background: white;
    border-radius: 12px;
    padding: 3rem;
}

.empty-icon {
    font-size: 3rem;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header .section-title {
        font-size: 1.8rem;
    }

    .card-header-top {
        flex-direction: column;
        text-align: center;
    }

    .year-select {
        min-width: 100%;
    }

    .filter-section {
        flex-wrap: wrap;
    }

    .package-section {
        flex-direction: column;
        text-align: center;
    }
}



/* ═══════════════════════════════════════════════════════════════════
   LEGACY TIMELINE SECTION
   ═══════════════════════════════════════════════════════════════════ */

.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #E04622 0%, #cc3e1d 100%);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
}

.timeline-item .timeline-dot {
    display: none;
}

.timeline-item:hover .timeline-dot {
    display: none;
}

.timeline-card {
    background: white;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #E04622;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 200px;
    position: relative;
    z-index: 1;
}

.timeline-card:hover {
    box-shadow: 0 12px 40px rgba(224, 70, 34, 0.2);
    transform: translateY(-8px);
}

.timeline-card.secondary {
    border-left-color: #EEAB26;
}

.timeline-card.secondary:hover {
    box-shadow: 0 12px 40px rgba(238, 171, 38, 0.2);
}

.timeline-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.timeline-card.primary h3 {
    color: #E04622;
}

.timeline-card.secondary h3 {
    color: #EEAB26;
}

/* Timeline Card Position Classes */
.timeline-card-left {
    margin-left: 0;
    margin-right: auto;
    max-width: 45%;
}

.timeline-card-right {
    margin-left: auto;
    margin-right: 0;
    max-width: 45%;
}

/* Timeline Card Position Classes */
.timeline-card-left {
    margin-left: 0;
    margin-right: auto;
    max-width: 45%;
}

.timeline-card-right {
    margin-left: auto;
    margin-right: 0;
    max-width: 45%;
}

/* Banner Styles */
.legacy-banner {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 120px 0 100px;
}

.legacy-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(224, 70, 34, 0.15) 100%);
    z-index: 1;
}

.legacy-banner-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.legacy-banner-circle-1 {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 70, 34, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.legacy-banner-circle-2 {
    position: absolute;
    bottom: -80px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(238, 171, 38, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.legacy-banner-container {
    position: relative;
    z-index: 2;
}

.legacy-breadcrumb-wrapper {
    margin-top: clamp(20px, 5vw, 40px);
}

.legacy-breadcrumb {
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.legacy-breadcrumb li {
    color: rgba(255, 255, 255, 0.6);
}

.legacy-breadcrumb li:first-child {
    color: unset;
}

.legacy-breadcrumb li:last-child {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.legacy-breadcrumb-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legacy-breadcrumb-link:hover {
    color: #fff;
}

.legacy-breadcrumb-home-icon {
    font-size: 0.9rem;
}

.legacy-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

.legacy-breadcrumb-current {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.legacy-banner-title-large {
    font-size: clamp(1.8rem, 6vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.legacy-banner-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 500px;
    font-weight: 300;
}

.legacy-accent-line {
    margin-top: 30px;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #E04622 0%, #EEAB26 100%);
    border-radius: 2px;
}

/* Old Banner Styles (keeping for reference) */

/* Empty State Styles */
.legacy-empty-state {
    background: white;
    padding: 60px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.legacy-empty-state-icon {
    font-size: 4rem;
    color: #EEAB26;
    margin-bottom: 20px;
    display: block;
}

.legacy-empty-state-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.legacy-empty-state-text {
    color: #666;
    font-size: 1rem;
}

/* Timeline Dot Positioning Classes */
.timeline-dot-left {
    position: absolute;
    left: -80px;
    top: 20px;
}

.timeline-dot-right {
    position: absolute;
    right: -80px;
    top: 20px;
}

.timeline-dot-mobile {
    position: absolute;
    left: 0;
    top: 10px;
}

/* Badge Styling */
.legacy-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E04622 0%, #EEAB26 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Section Heading Styles */
.legacy-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1a1a;
    margin: 20px 0;
    line-height: 1.3;
}

.legacy-section-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.timeline-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.02rem;
    font-weight: 500;
}

.timeline-card .quote-box {
    background: linear-gradient(135deg, rgba(224, 70, 34, 0.06) 0%, rgba(238, 171, 38, 0.06) 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #EEAB26;
    margin-top: 18px;
}

.timeline-card.secondary .quote-box {
    background: linear-gradient(135deg, rgba(238, 171, 38, 0.06) 0%, rgba(224, 70, 34, 0.06) 100%);
    border-left-color: #E04622;
}

.timeline-card .quote-box p {
    font-style: italic;
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.timeline-card .quote-box i {
    margin-right: 10px;
    color: #E04622;
    font-size: 0.9rem;
}

.timeline-card.secondary .quote-box i {
    color: #EEAB26;
}

@media (max-width: 991px) {
    .timeline-wrapper {
        padding-left: 50px;
    }
    
    .timeline-wrapper::before {
        left: 13px;
    }
    
    .timeline-item .timeline-dot {
        position: absolute;
        left: -42px;
        top: 15px;
        transform: none;
    }
    
    .timeline-card {
        padding: 30px;
        min-height: auto;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .statement-item {
        padding-left: 18px;
        border-left-width: 3px;
        margin-bottom: 35px;
    }
    
    .statement-quote p {
        font-size: 1.2rem;
    }
    
    .statement-meta h3 {
        font-size: 1rem;
    }
    
    .statement-meta p {
        font-size: 0.9rem;
    }
    
    .timeline-wrapper {
        padding-left: 50px;
    }
    
    .timeline-wrapper::before {
        left: 13px;
    }
    
    .timeline-item {
        margin-bottom: 45px;
    }
    
    .timeline-item .timeline-dot {
        position: absolute;
        left: -42px;
        top: 15px;
        transform: none;
    }
    
    .timeline-card {
        padding: 30px;
        min-height: auto;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .timeline-card h3 {
        font-size: 1.4rem;
    }
    
    .timeline-card p {
        font-size: 1rem;
    }
    
    .timeline-card .quote-box {
        padding: 15px;
        margin-top: 15px;
    }
    
    .timeline-card .quote-box p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .timeline-wrapper {
        padding-left: 40px;
    }
    
    .timeline-wrapper::before {
        left: 10px;
    }
    
    .timeline-card {
        padding: 22px;
        border-left-width: 5px;
    }
    
    .timeline-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .timeline-card p {
        font-size: 0.95rem;
    }
    
    .statement-item {
        padding-left: 15px;
        border-left-width: 3px;
        margin-bottom: 30px;
    }
    
    .statement-quote p {
        font-size: 1.05rem;
    }
    
    .statement-meta h3 {
        font-size: 0.95rem;
    }
    
    .statement-meta p {
        font-size: 0.85rem;
    }
    
    .timeline-wrapper {
        padding-left: 40px;
    }
    
    .timeline-wrapper::before {
        left: 10px;
    }
    
    .timeline-card {
        padding: 22px;
        border-left-width: 5px;
    }
    
    .timeline-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .timeline-card p {
        font-size: 0.95rem;
    }
}


/* Ensure body content doesn't hide navbar */
/* Only html (not body) clips horizontal overflow: setting overflow-x on
   body forces its overflow-y to a non-visible used value too (a CSS spec
   quirk), which turns body into its own scroll container and breaks
   position:sticky everywhere on the site — sticky elements need the
   viewport itself to be the scrolling context. */
html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

body {
    width: 100% !important;
    max-width: 100vw !important;
}

/* Main content should start below navbar */
.main,
main,
.body {
    margin-top: 0 !important;
    position: relative;
    z-index: 1 !important;
}

/* Ensure page sections don't overflow and hide navbar */
section {
    position: relative;
    z-index: 1 !important;
}

/* Ensure the body wrapper doesn't interfere */
body .body {
    padding-top: 200px;
}

/* Scroll container should not clip navbar */
[data-scroll-container] {
    position: relative;
    margin-top: 200px;
}
/* Read More Button Styling */
.read-more-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
}

.read-more-btn:hover {
    transform: scale(1.05);
}

/* Modal Fade Animation */
.modal.fade {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.modal.fade.show {
    opacity: 1;
    transform: translateY(0);
}

.modal.fade:not(.show) {
    opacity: 0;
    transform: translateY(-50px);
}

/* Responsive Modal for Mobile */
@media (max-width: 992px) {
    .modal-dialog:not(.modal-lg) {
        max-width: 95% !important;
    }
    
    .modal-dialog.modal-lg {
        max-width: 360px !important;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-header {
        padding: 18px 20px;
    }
    
    .modal-header .modal-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .modal-dialog:not(.modal-lg) {
        max-width: 100% !important;
        margin: 10px !important;
    }
    
    .modal-dialog.modal-lg {
        max-width: 360px !important;
        margin: 10px !important;
    }
    
    .modal-content {
        max-height: 90vh;
    }
    
    .modal-body {
        padding: 18px;
    }
    
    .modal-header {
        padding: 15px 18px;
    }
    
    .modal-header .modal-title {
        font-size: 1rem;
    }
    
    .director-modal-content .row {
        flex-direction: column;
    }
}



/* PREMIUM BUTTON FIX - OVERRIDE BOOTSTRAP CONFLICTS
   */
.premium-submit-btn {
    background: linear-gradient(135deg, #F58634 0%, #ED353A 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 14px 35px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: white !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    box-shadow: 0 10px 25px rgba(245, 134, 52, 0.3) !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
}


/* ICON FIX - ENSURE ICONS ARE VISIBLE
   */

.contact-card-icon {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, #F58634 0%, #ED353A 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    font-size: 1.8rem !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(245, 134, 52, 0.3) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 1 !important;
    flex-shrink: 0 !important;
    line-height: 70px !important;
    text-align: center !important;
}

.contact-card-icon i {
    color: white !important;
    font-size: 1.8rem !important;
    display: inline-block !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 15px 35px rgba(245, 134, 52, 0.4) !important;
}

.address-icon {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #F58634 0%, #ED353A 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.3rem !important;
    flex-shrink: 0 !important;
    box-shadow: 0 8px 20px rgba(245, 134, 52, 0.3) !important;
    line-height: 50px !important;
    text-align: center !important;
}

.address-icon i {
    color: white !important;
    font-size: 1.3rem !important;
    display: inline-block !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

.social-icon-btn i {
    color: inherit !important;
    font-size: 1.5rem !important;
}

.social-icon-btn.facebook i,
.social-icon-btn.instagram i,
.social-icon-btn.twitter i,
.social-icon-btn.linkedin i,
.social-icon-btn.youtube i {
    color: inherit !important;
}


/* FINAL ICON VISIBILITY FIX - REMOVE ANY HIDDEN PROPERTIES
   
Ensure all Font Awesome icons display */
i.fas,
i.fab,
i.far,
i.fal {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Contact card icons visibility */
.contact-card-icon::before {
    z-index: 0 !important;
}

.contact-card-icon i {
    position: relative !important;
    z-index: 2 !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
}

/* Address icon fix */
.address-icon::before {
    z-index: 0 !important;
}

.address-icon i {
    position: relative !important;
    z-index: 2 !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
}

/* Social icons visibility */
.social-icon-btn i {
    position: relative !important;
    z-index: 2 !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
}

/* Remove any opacity issues */
.contact-card-icon,
.address-icon,
.social-icon-btn {
    opacity: 1 !important;
}

/* Ensure text content is not hidden */
.contact-info-card,
.address-section {
    color: inherit !important;
}




/* ═══════════════════════════════════════════════════════════════════
   LEGACY PAGE SPECIFIC STYLES
   ═══════════════════════════════════════════════════════════════════ */

/* Legacy Timeline Wrapper */
.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    top: 0;
    z-index: 1;
}

/* Timeline Items */
.timeline-item {
    margin-bottom: 50px;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.timeline-item.timeline-card-left {
    flex-direction: row;
    justify-content: flex-end;
}

.timeline-item.timeline-card-right {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

/* Timeline Dot */
.timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border: 4px solid var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(245, 134, 52, 0.2);
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    top: 20px;
}

.timeline-dot-left {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-dot-right {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item:hover .timeline-dot {
    width: 32px;
    height: 32px;
    border-width: 5px;
    box-shadow: 0 0 0 6px rgba(245, 134, 52, 0.3), 0 4px 12px rgba(245, 134, 52, 0.3);
    transform: translateX(-50%) scale(1.15);
}

/* Timeline Cards */
.timeline-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
}

.timeline-card.primary {
    border-left-color: #E04622;
}

.timeline-card.secondary {
    border-left-color: #EEAB26;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item:hover .timeline-card {
    box-shadow: 0 20px 50px rgba(245, 134, 52, 0.25);
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.timeline-item:hover .timeline-card::before {
    transform: scaleX(1);
}

.timeline-card.secondary:hover {
    box-shadow: 0 12px 40px rgba(238, 171, 38, 0.2);
}

.timeline-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #E04622;
    font-family: 'Poppins', Arial, sans-serif;
}

.timeline-card.primary h3 {
    color: #E04622;
}

.timeline-card.secondary h3 {
    color: #EEAB26;
}

.timeline-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.02rem;
    font-weight: 500;
    font-family: 'Poppins', Arial, sans-serif;
}

.timeline-card .quote-box {
    background: linear-gradient(135deg, rgba(224, 70, 34, 0.06) 0%, rgba(238, 171, 38, 0.06) 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #EEAB26;
    margin-top: 18px;
}

.timeline-card.secondary .quote-box {
    background: linear-gradient(135deg, rgba(238, 171, 38, 0.06) 0%, rgba(224, 70, 34, 0.06) 100%);
    border-left-color: #E04622;
}

.timeline-card .quote-box p {
    font-style: italic;
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    font-family: 'Poppins', Arial, sans-serif;
}

.timeline-card .quote-box i {
    margin-right: 10px;
    color: #E04622;
    font-size: 0.9rem;
}

.timeline-card.secondary .quote-box i {
    color: #EEAB26;
}

/* Left and Right Alignment */
.timeline-card-left {
    margin-left: 0;
    margin-right: auto;
    max-width: 45%;
}

.timeline-card-right {
    margin-left: auto;
    margin-right: 0;
    max-width: 45%;
}

/* Legacy Badge */
.legacy-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E04622 0%, #EEAB26 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Poppins', Arial, sans-serif;
}

/* Section Heading Styles */
.legacy-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1a1a;
    margin: 20px 0;
    line-height: 1.3;
    font-family: 'Poppins', Arial, sans-serif;
}

.legacy-section-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Poppins', Arial, sans-serif;
}

/* Empty State Styles */
.legacy-empty-state {
    background: white;
    padding: 60px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.legacy-empty-state-icon {
    font-size: 4rem;
    color: #EEAB26;
    margin-bottom: 20px;
    display: block;
}

.legacy-empty-state-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 700;
}

.legacy-empty-state-text {
    color: #666;
    font-size: 1rem;
    font-family: 'Poppins', Arial, sans-serif;
}

/* Breadcrumb Wrapper */
.legacy-breadcrumb-wrapper {
    margin-top: clamp(20px, 5vw, 40px);
}

/* Responsive Timeline for Tablets */
@media (max-width: 991px) {
    .timeline-wrapper {
        padding-left: 50px;
    }
    
    .timeline-wrapper::before {
        left: 25px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        margin-bottom: 45px;
    }
    
    .timeline-item.timeline-card-left,
    .timeline-item.timeline-card-right {
        flex-direction: column !important;
    }
    
    .timeline-dot {
        position: absolute;
        left: -42px;
        top: 15px;
        transform: translateX(-50%);
    }
    
    .timeline-card {
        padding: 30px;
        min-height: auto;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .timeline-card h3 {
        font-size: 1.4rem;
    }
    
    .timeline-card p {
        font-size: 1rem;
    }
    
    .timeline-card .quote-box {
        padding: 15px;
        margin-top: 15px;
    }
    
    .timeline-card .quote-box p {
        font-size: 0.95rem;
    }
}

/* Responsive Timeline for Mobile */
@media (max-width: 768px) {
    .timeline-wrapper {
        padding-left: 40px;
    }
    
    .timeline-wrapper::before {
        left: 20px;
    }
    
    .timeline-item {
        margin-bottom: 40px;
    }
    
    .timeline-dot {
        left: 10px;
        width: 20px;
        height: 20px;
        border-width: 3px;
    }
    
    .timeline-item:hover .timeline-dot {
        width: 28px;
        height: 28px;
    }
    
    .timeline-dot-mobile {
        display: block;
      
    }
    
    .timeline-card {
        padding: 25px;
    }
    
    .timeline-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .timeline-card p {
        font-size: 0.95rem;
    }
    
    .legacy-section-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }
    
    .legacy-section-description {
        font-size: 1rem;
    }
}

/* Responsive Timeline for Small Mobile */
@media (max-width: 576px) {
    .timeline-wrapper {
        padding-left: 30px;
    }
    
    .timeline-wrapper::before {
        left: 10px;
    }
    
    .timeline-item {
        margin-bottom: 30px;
    }
    
    .timeline-dot {
        left: 0;
        width: 18px;
        height: 18px;
        border-width: 3px;
        box-shadow: 0 0 0 3px rgba(245, 134, 52, 0.2);
    }
    
    .timeline-item:hover .timeline-dot {
        width: 24px;
        height: 24px;
    }
    
    .timeline-card {
        padding: 20px;
        margin-left: 30px !important;
        margin-right: 0 !important;
        max-width: calc(100% - 30px) !important;
    }
    
    .timeline-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .timeline-card p {
        font-size: 0.9rem;
    }
    
    .timeline-card .quote-box {
        padding: 12px;
        margin-top: 12px;
    }
    
    .timeline-card .quote-box p {
        font-size: 0.9rem;
    }
    
    .legacy-badge {
        font-size: 0.75rem;
        padding: 8px 15px;
    }
    
    .legacy-section-title {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
    }
    
    .legacy-section-description {
        font-size: 0.95rem;
    }
    
    .legacy-empty-state {
        padding: 40px 20px;
    }
    
    .legacy-empty-state-icon {
        font-size: 3rem;
    }
    
    .legacy-empty-state-title {
        font-size: 1.2rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .timeline-wrapper {
        padding-left: 25px;
    }
    
    .timeline-wrapper::before {
        left: 8px;
    }
    
    .timeline-item {
        margin-bottom: 25px;
    }
    
    .timeline-dot {
        width: 16px;
        height: 16px;
        border-width: 2px;
    }
    
    .timeline-card {
        padding: 18px;
        margin-left: 25px !important;
    }
    
    .timeline-card h3 {
        font-size: 1rem;
    }
    
    .timeline-card p {
        font-size: 0.85rem;
    }
    
    .legacy-section-title {
        font-size: 1.3rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION — navy hero carousel
   ═══════════════════════════════════════════════════════════════════ */

.skh-testimonials-home {
    position: relative;
    padding: clamp(40px, 5vw, 56px) 0 clamp(36px, 4.5vw, 48px) !important;
    overflow: hidden;
    background: #153d66;
}

/* Standard gaps — campus / blogs / testimonials / recruiters */
.skh-campus-moments + .skh-blogs-home.section-spacing {
    margin-top: 80px !important;
}

.skh-blogs-home + .skh-testimonials-home.section-spacing {
    margin-top: clamp(108px, 11.5vw, 158px) !important;
}

.skh-placement-home + .skh-recruiters-home.section-spacing,
.skh-placement-home + .recruiters-section.section-spacing {
    margin-top: 80px !important;
}

.skh-recruiters-home + .skh-campus-moments.section-spacing {
    margin-top: 80px !important;
}

.skh-testimonials-home + .faqs-section.section-spacing {
    margin-top: 80px !important;
}

.skh-testimonials-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.skh-testimonials-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 48, 82, 0.72) 0%,
        rgba(21, 61, 102, 0.68) 45%,
        rgba(21, 61, 102, 0.8) 100%
    );
}

.skh-testimonials-inner {
    position: relative;
    z-index: 2;
}

.skh-testimonials-header {
    margin-bottom: clamp(20px, 3vw, 28px);
}

.skh-testimonials-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 clamp(10px, 1.4vw, 14px);
}

.skh-testimonials-accent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.skh-testimonials-accent-line {
    display: block;
    height: 2px;
    border-radius: 2px;
}

.skh-testimonials-accent-line--orange {
    width: clamp(36px, 5vw, 48px);
    background: #c45100;
}

.skh-testimonials-accent-line--white {
    width: clamp(52px, 7vw, 68px);
    background: rgba(255, 255, 255, 0.85);
}

.skh-testimonials-carousel {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.skh-testimonials-home .testimonials-carousel {
    position: relative;
    z-index: 1;
}

.skh-testimonials-home .carousel .carousel-inner {
    overflow: visible;
    border-radius: 0;
}

.skh-testimonial-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 clamp(12px, 3vw, 24px);
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    min-height: auto !important;
}

.skh-testimonial-slide::before {
    display: none !important;
}

.skh-testimonial-avatar-wrap {
    margin-bottom: clamp(14px, 2vw, 18px);
}

.skh-testimonial-avatar {
    width: clamp(72px, 9vw, 84px);
    height: clamp(72px, 9vw, 84px);
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.skh-testimonial-avatar--initial {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c45100 0%, #e8924a 100%);
    color: #ffffff;
    font-family: 'Sora', 'DM Sans', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
}

.skh-testimonial-quote {
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: clamp(1.05rem, 1.35vw, 1.2rem);
    font-weight: 400;
    font-style: normal;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.94) !important;
    max-width: 36em;
    margin: 0 auto clamp(14px, 2vw, 18px);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.skh-testimonial-quote p,
.skh-testimonial-quote span,
.skh-testimonial-quote li,
.skh-testimonial-quote strong,
.skh-testimonial-quote em {
    margin: 0;
    color: rgba(255, 255, 255, 0.94) !important;
}

.skh-testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: clamp(10px, 1.5vw, 14px);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.skh-testimonial-rating .star {
    color: #e8924a;
}

.skh-testimonial-rating .star.empty {
    color: rgba(255, 255, 255, 0.22);
}

.skh-testimonial-name,
.skh-testimonials-home .testimonial-author-name {
    font-family: 'Sora', 'DM Sans', sans-serif;
    font-size: clamp(1.1rem, 1.35vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffffff !important;
    margin: 0;
}

.skh-testimonial-role,
.skh-testimonials-home .testimonial-author-designation {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.92rem, 1.1vw, 1rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72) !important;
    margin: 6px 0 0;
}

.skh-testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: clamp(20px, 2.8vw, 28px);
}

.skh-testimonials-nav-btn {
    position: static !important;
    width: clamp(42px, 5vw, 48px) !important;
    height: clamp(42px, 5vw, 48px) !important;
    margin: 0 !important;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
    border-radius: 4px !important;
    color: #ffffff;
    opacity: 1 !important;
    transform: none !important;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.skh-testimonials-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
    color: #ffffff;
    transform: none !important;
    box-shadow: none !important;
}

.skh-testimonials-nav-btn i {
    font-size: 0.9rem;
}

.skh-testimonials-nav .carousel-control-prev,
.skh-testimonials-nav .carousel-control-next {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
}

@media (max-width: 768px) {
    .skh-testimonials-home {
        padding: clamp(32px, 7vw, 40px) 0 clamp(28px, 6vw, 36px) !important;
    }

    .skh-campus-moments + .skh-blogs-home.section-spacing {
        margin-top: 60px !important;
    }

    .skh-blogs-home + .skh-testimonials-home.section-spacing {
        margin-top: clamp(76px, 11vw, 110px) !important;
    }

    .skh-placement-home + .skh-recruiters-home.section-spacing,
    .skh-recruiters-home + .skh-campus-moments.section-spacing,
    .skh-testimonials-home + .faqs-section.section-spacing {
        margin-top: 60px !important;
    }

    .skh-testimonial-quote {
        font-size: 1rem;
        line-height: 1.64;
        -webkit-line-clamp: 5;
    }
}

@media (max-width: 576px) {
    .skh-campus-moments + .skh-blogs-home.section-spacing {
        margin-top: 40px !important;
    }

    .skh-blogs-home + .skh-testimonials-home.section-spacing {
        margin-top: clamp(64px, 11vw, 88px) !important;
    }

    .skh-placement-home + .skh-recruiters-home.section-spacing,
    .skh-recruiters-home + .skh-campus-moments.section-spacing,
    .skh-testimonials-home + .faqs-section.section-spacing {
        margin-top: 40px !important;
    }
}

@media (max-width: 480px) {
    .skh-campus-moments + .skh-blogs-home.section-spacing {
        margin-top: 30px !important;
    }

    .skh-blogs-home + .skh-testimonials-home.section-spacing {
        margin-top: clamp(56px, 10.5vw, 76px) !important;
    }

    .skh-placement-home + .skh-recruiters-home.section-spacing,
    .skh-recruiters-home + .skh-campus-moments.section-spacing,
    .skh-testimonials-home + .faqs-section.section-spacing {
        margin-top: 30px !important;
    }
}

.testimonials-section {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonials-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Poppins', Arial, sans-serif;
}

.testimonials-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.2;
    letter-spacing: -1px;
}

.testimonials-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.8;
    font-weight: 300;
}

.testimonials-carousel {
    position: relative;
    z-index: 1;
}

.carousel-inner {
    border-radius: 20px;
    overflow: visible;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(245, 134, 52, 0.2);
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 3rem;
    color: rgba(245, 134, 52, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-rating .star {
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.testimonial-rating .star.empty {
    color: #e5e7eb;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    font-family: 'Poppins', Arial, sans-serif;
    flex-grow: 1;
}

.testimonial-text p:last-child {
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 4px 12px rgba(245, 134, 52, 0.2);
    flex-shrink: 0;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    font-family: 'Poppins', Arial, sans-serif;
}

.testimonial-author-designation {
    font-size: 0.8rem;
    color: var(--primary-orange);
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
    border: none;
    z-index: 10;
}

.testimonials-carousel:hover .carousel-control-prev,
.testimonials-carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--gradient-reverse);
    box-shadow: 0 8px 20px rgba(245, 134, 52, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: -70px;
}

.carousel-control-next {
    right: -70px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100%;
    filter: brightness(0) invert(1);
}

.carousel-indicators {
    bottom: 20px;
    gap: 10px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    transition: all 0.3s ease;
    opacity: 1;
}

.carousel-indicators button.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 6px;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.6s;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

@media (max-width: 1024px) {
    .carousel-control-prev {
        left: -50px;
    }

    .carousel-control-next {
        right: -50px;
    }

    .testimonial-card {
        padding: 25px 20px;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .testimonials-section:not(.skh-testimonials-home) {
        padding: 0;
    }

    .testimonials-header {
        margin-bottom: 10px;
    }

    .testimonials-description {
        font-size: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        opacity: 1;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .testimonial-card {
        padding: 20px 15px;
        min-height: 280px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .carousel-indicators {
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .testimonials-section:not(.skh-testimonials-home) {
        padding: 0;
    }

    .testimonials-header {
        margin-bottom: 10px;
    }

    .testimonials-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .testimonial-card {
        padding: 18px 12px;
        min-height: 260px;
    }

    .testimonial-card::before {
        font-size: 2.5rem;
        left: 12px;
    }

    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .testimonial-author {
        gap: 10px;
    }

    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }

    .testimonial-author-name {
        font-size: 0.85rem;
    }

    .testimonial-author-designation {
        font-size: 0.75rem;
    }
}



/* ═══════════════════════════════════════════════════════════════════
   FAQs SECTION
   ═══════════════════════════════════════════════════════════════════ */

.faqs-section {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.faqs-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 134, 52, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faqs-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(237, 53, 58, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faqs-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.faqs-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Poppins', Arial, sans-serif;
}

.faqs-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.2;
    letter-spacing: -1px;
}

.faqs-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.8;
    font-weight: 300;
}

.faqs-accordion {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: white;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(245, 134, 52, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Poppins', Arial, sans-serif;
    text-align: left;
}

.faq-question:hover {
    background: var(--gradient-light);
    border-color: rgba(245, 134, 52, 0.2);
}

.faq-question.active {
    background: var(--gradient-light);
    border-color: var(--primary-orange);
    border-bottom-color: #E04622 !important;
    outline: 2px solid #E04622 !important;
    outline-offset: -2px !important;
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-left: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon i {
    color: white;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    background: white;
}

.faq-answer.active {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 25px 25px 25px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 300;
}

.faq-answer-content p {
    margin-bottom: 12px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin-left: 20px;
    margin-bottom: 12px;
}

.faq-answer-content li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .faqs-section {
        padding: 40px 0;
    }

    .faqs-header {
        margin-bottom: 40px;
    }

    .faqs-description {
        font-size: 1rem;
    }

    .faq-question {
        padding: 16px 18px;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 18px 18px 18px;
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        margin-left: 10px;
    }

    .faq-icon i {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .faqs-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .faq-question {
        padding: 14px 15px;
    }

    .faq-question-text {
        font-size: 0.95rem;
    }

    .faq-answer-content {
        padding: 0 15px 15px 15px;
        font-size: 0.85rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   FAQ ACCORDION ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */

@keyframes faqSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes faqSlideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.faq-item {
    animation: faqSlideDown 0.4s ease-out;
}

.faq-item.faq-opening {
    animation: faqSlideDown 0.3s ease-out;
}

.faq-item.faq-closing {
    animation: faqSlideUp 0.3s ease-out;
}

.faq-answer {
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

.faq-icon i {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-question.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-question {
    transition: all 0.3s ease;
}

.faq-question:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}


/* ═══════════════════════════════════════════════════════════════════
   HOME BLOGS — event-style cards (SKH theme)
   ═══════════════════════════════════════════════════════════════════ */

.skh-blogs-home {
    background: #f4f6f8;
    padding-bottom: clamp(8px, 1.5vw, 16px);
}

.skh-blogs-header {
    margin-bottom: clamp(32px, 4.5vw, 52px);
}

.skh-blogs-header-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(16px, 2.2vw, 22px);
}

.skh-blogs-home .skh-programs-eyebrow {
    margin-bottom: 0;
}

.skh-blogs-home .skh-placement-title {
    line-height: 1.28;
    margin-top: clamp(4px, 0.6vw, 8px);
}

.skh-blogs-home .skh-placement-lead {
    line-height: 1.72;
    margin-top: clamp(6px, 0.8vw, 10px);
    max-width: 38em;
}

.skh-blogs-home .skh-placement-title,
.skh-blogs-home .skh-placement-lead,
.skh-blogs-home .skh-programs-eyebrow-text {
    opacity: 1 !important;
    visibility: visible !important;
}

.skh-blogs-grid {
    margin-bottom: clamp(28px, 4vw, 40px);
    --bs-gutter-x: 1.75rem;
    --bs-gutter-y: 1.75rem;
}

.skh-blog-event-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(21, 61, 102, 0.08);
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}

.skh-blog-event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(21, 61, 102, 0.14);
}

.skh-blog-event-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
}

.skh-blog-event-card__link:hover,
.skh-blog-event-card__link:focus,
.skh-blog-event-card__link:focus-visible {
    text-decoration: none !important;
}

.skh-blog-event-card__media {
    position: relative;
    z-index: 2;
    height: clamp(200px, 28vw, 240px);
    overflow: visible;
    background: linear-gradient(135deg, #153d66 0%, #1e5080 100%);
}

.skh-blog-event-card__media img,
.skh-blog-event-card__media-placeholder {
    position: absolute;
    inset: 0;
}

.skh-blog-event-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.skh-blog-event-card:hover .skh-blog-event-card__media img {
    transform: scale(1.06);
}

.skh-blog-event-card__media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.35);
    font-size: 2.5rem;
}

.skh-blog-event-card__date {
    position: absolute;
    left: clamp(16px, 2.5vw, 22px);
    bottom: clamp(-28px, -3.5vw, -22px);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: clamp(52px, 7vw, 60px);
    padding: clamp(8px, 1.2vw, 10px) clamp(6px, 1vw, 8px);
    background: #153d66;
    color: #ffffff;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 8px 20px rgba(21, 61, 102, 0.28);
}

.skh-blog-event-card__date-month {
    font-family: 'Sora', 'DM Sans', sans-serif;
    font-size: clamp(0.62rem, 0.85vw, 0.72rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.92;
}

.skh-blog-event-card__date-day {
    font-family: 'Sora', 'DM Sans', sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.skh-blog-event-card__body {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: clamp(50px, 6vw, 58px) clamp(24px, 3.2vw, 30px) clamp(28px, 3.6vw, 34px);
}

.skh-blog-event-card__category {
    display: block;
    margin-bottom: clamp(12px, 1.6vw, 16px);
    font-family: 'Sora', 'DM Sans', sans-serif;
    font-size: clamp(0.68rem, 0.9vw, 0.76rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c45100;
}

.skh-blog-event-card__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.05rem, 1.35vw, 1.2rem);
    font-weight: 400;
    line-height: 1.62;
    letter-spacing: 0.03em;
    word-spacing: 0.06em;
    color: #153d66;
    margin: 0 0 clamp(14px, 2vw, 18px);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none !important;
    text-transform: none;
    transition: color 0.25s ease;
}

.skh-blog-event-card:hover .skh-blog-event-card__title,
.skh-blog-event-card__link:hover .skh-blog-event-card__title {
    color: #c45100;
    text-decoration: none !important;
}

.skh-blog-event-card__excerpt {
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: clamp(0.88rem, 1vw, 0.94rem);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.02em;
    color: #5a6578;
    margin: 0 0 auto;
    padding-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.skh-blog-event-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: clamp(20px, 2.8vw, 26px) 0 0;
    padding-top: clamp(16px, 2.2vw, 20px);
    border-top: 1px solid rgba(21, 61, 102, 0.1);
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.8rem, 0.95vw, 0.86rem);
    font-weight: 500;
    line-height: 1.55;
    color: #5a6578;
}

.skh-blog-event-card__meta i {
    color: #c45100;
    font-size: 0.9rem;
}

.skh-blogs-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: clamp(4px, 1vw, 8px);
}

.skh-blogs-actions .skh-programs-btn {
    min-width: 180px;
    padding: 13px 28px;
}

.blog-card {
    position: relative;
    overflow: visible;
}

@media (max-width: 768px) {
    .skh-blogs-home .skh-blogs-header-inner {
        gap: 14px;
    }

    .skh-blogs-home .skh-placement-title {
        line-height: 1.3;
    }

    .skh-blogs-home .skh-placement-lead {
        line-height: 1.7;
    }

    .skh-blog-event-card__body {
        padding-top: 46px;
    }

    .skh-blog-event-card:hover {
        transform: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   BLOGS LISTING & DETAIL PAGES — match home event-card UI
   ═══════════════════════════════════════════════════════════════════ */

.skh-blogs-page {
    background: #f4f6f8;
}

.skh-blogs-page__main {
    padding: clamp(40px, 5vw, 56px) 0 clamp(48px, 6vw, 64px);
}

.skh-blogs-filter {
    background: #ffffff;
    border-radius: 10px;
    padding: clamp(16px, 2.2vw, 22px);
    margin-bottom: clamp(24px, 3vw, 32px);
    box-shadow: 0 8px 24px rgba(21, 61, 102, 0.07);
    border: 1px solid rgba(21, 61, 102, 0.08);
}

.skh-blogs-filter .form-control,
.skh-blogs-filter .form-select {
    border: 1px solid rgba(21, 61, 102, 0.14);
    border-radius: 8px;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 0.92rem;
    padding: 10px 14px;
    color: #153d66;
}

.skh-blogs-filter .form-control:focus,
.skh-blogs-filter .form-select:focus {
    border-color: #c45100;
    box-shadow: 0 0 0 3px rgba(196, 81, 0, 0.12);
}

.skh-blogs-filter__btn {
    background: #153d66;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    transition: background 0.2s ease;
}

.skh-blogs-filter__btn:hover {
    background: #c45100;
    color: #fff;
}

.skh-blogs-filter__clear {
    border: 1px solid rgba(21, 61, 102, 0.2);
    border-radius: 8px;
    color: #153d66;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    padding: 9px 16px;
    text-decoration: none;
}

.skh-blogs-filter__clear:hover {
    background: #f4f6f8;
    color: #c45100;
}

.skh-blogs-filter__count {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.84rem;
    color: #64748b;
    margin: 0;
    white-space: nowrap;
}

.skh-blogs-sidebar {
    background: #ffffff;
    border-radius: 10px;
    padding: clamp(20px, 2.5vw, 26px);
    box-shadow: 0 8px 24px rgba(21, 61, 102, 0.07);
    border: 1px solid rgba(21, 61, 102, 0.08);
    position: sticky;
    top: 24px;
}

.skh-blogs-sidebar__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #153d66;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #c45100;
}

.skh-blogs-sidebar__search {
    margin-bottom: 14px;
}

.skh-blogs-sidebar__list {
    max-height: 420px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skh-blogs-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 8px;
    background: #f4f6f8;
    color: #153d66;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.skh-blogs-cat-link:hover {
    background: #eef2f6;
    color: #c45100;
    transform: translateX(3px);
}

.skh-blogs-cat-link.is-active {
    background: #153d66;
    color: #ffffff;
}

.skh-blogs-cat-link__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    padding: 3px 8px;
    border-radius: 20px;
    background: #c45100;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

.skh-blogs-cat-link.is-active .skh-blogs-cat-link__count {
    background: rgba(255, 255, 255, 0.22);
}

.skh-blogs-empty {
    text-align: center;
    padding: clamp(40px, 6vw, 64px) 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(21, 61, 102, 0.07);
}

.skh-blogs-empty i {
    color: #94a3b8;
    margin-bottom: 16px;
}

.skh-blogs-empty h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.35rem;
    color: #153d66;
    margin-bottom: 8px;
}

.skh-blogs-empty p {
    font-family: 'DM Sans', sans-serif;
    color: #64748b;
    margin-bottom: 18px;
}

.skh-blogs-pagination {
    margin-top: clamp(32px, 4vw, 48px);
}

.skh-blogs-pagination .pagination {
    gap: 6px;
}

.skh-blogs-pagination .page-link {
    border: 1px solid rgba(21, 61, 102, 0.14);
    border-radius: 8px !important;
    color: #153d66;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
    padding: 8px 12px;
}

.skh-blogs-pagination .page-item.active .page-link {
    background: #153d66;
    border-color: #153d66;
    color: #fff;
}

.skh-blogs-pagination .page-link:hover {
    background: #f4f6f8;
    color: #c45100;
}

.skh-blog-detail {
    padding: clamp(40px, 5vw, 56px) 0 clamp(48px, 6vw, 64px);
    background: #f4f6f8;
}

.skh-blog-detail__wrap {
    max-width: 820px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: clamp(32px, 4.5vw, 44px);
    box-shadow: 0 10px 32px rgba(21, 61, 102, 0.08);
    border: 1px solid rgba(21, 61, 102, 0.08);
}

.skh-blog-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.skh-blog-detail__back:hover {
    color: #c45100;
}

.skh-blog-detail__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    font-weight: 400;
    line-height: 1.38;
    letter-spacing: 0;
    color: #153d66;
    margin: 0 0 20px;
}

.skh-blog-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(21, 61, 102, 0.1);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #64748b;
}

.skh-blog-detail__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.skh-blog-detail__meta i {
    color: #c45100;
}

.skh-blog-detail__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(196, 81, 0, 0.1);
    color: #c45100;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.skh-blog-detail__hero {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 32px;
    background: #e2e8f0;
}

.skh-blog-detail__hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skh-blog-detail__hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #153d66 0%, #1e5080 100%);
    color: rgba(255, 255, 255, 0.35);
    font-size: 3rem;
}

.skh-blog-detail__content {
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 1.02rem;
    line-height: 1.85;
    letter-spacing: 0.015em;
    color: #475569;
}

.skh-blog-detail__content p {
    margin-bottom: 1.35rem;
}

.skh-blog-detail__content h2,
.skh-blog-detail__content h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.35;
    color: #153d66;
    margin: 2.25rem 0 1rem;
}

.skh-blog-detail__content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.skh-blog-detail__content img {
    max-width: 100%;
    border-radius: 8px;
}

.skh-blog-detail__content blockquote {
    border-left: 4px solid #c45100;
    padding-left: 1.1rem;
    color: #64748b;
    font-style: italic;
    margin: 1.5rem 0;
}

.skh-blog-detail__tags {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(21, 61, 102, 0.1);
}

.skh-blog-detail__tags strong {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    margin-right: 8px;
}

.skh-blog-detail__tag {
    display: inline-block;
    margin: 4px 4px 4px 0;
    padding: 5px 12px;
    border-radius: 20px;
    background: #f4f6f8;
    color: #153d66;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.skh-blog-detail__tag:hover {
    background: #153d66;
    color: #fff;
}

.skh-blog-related {
    margin-top: clamp(40px, 5vw, 56px);
    padding-top: clamp(32px, 4vw, 40px);
    border-top: 1px solid rgba(21, 61, 102, 0.1);
}

.skh-blog-related__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    font-weight: 400;
    color: #153d66;
    margin-bottom: clamp(20px, 3vw, 28px);
    text-align: center;
}

@media (max-width: 991px) {
    .skh-blogs-sidebar {
        position: static;
        margin-bottom: 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG CARDS SECTION
   ═══════════════════════════════════════════════════════════════════ */

/* Reset body and wrapper margins/padding */
html {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

.body {
    margin: 0 !important;
    padding: 0 !important;
}

.main {
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
}

#header {
    position: relative !important;
    z-index: 1030 !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    padding: 0 !important;
    top: 0 !important;
    display: block !important;
    border: none !important;
    min-height: auto !important;
    height: auto !important;
}

#header .header-body {
    border-top: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
}

#header .header-container {
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    min-height: auto !important;
}

#header .header-row {
    margin: 0 !important;
    padding: 0 !important;
}

#header .header-column {
    margin: 0 !important;
    padding: 0 !important;
}

#header.sticky-active,
#header.sticky-effect-active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1030 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    background: white !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    border: none !important;
    min-height: auto !important;
}

#header.sticky-active .header-body,
#header.sticky-effect-active .header-body {
    border-top: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    min-height: auto !important;
}

html.sticky-header-enabled {
    scroll-padding-top: 0px !important;
}

html.sticky-header-enabled body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

html.sticky-header-enabled #header.sticky-active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

/* Ensure content doesn't hide behind sticky header */
html.sticky-header-enabled main,
html.sticky-header-enabled section,
html.sticky-header-enabled .body > div:not(#header) {
    position: relative !important;
    z-index: 1 !important;
}

/* Sticky header styles consolidated in navbar.css */
#header.sticky-active .header-body,
#header.sticky-effect-active .header-body {
    border-top: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    min-height: auto !important;
}

html.sticky-header-enabled {
    scroll-padding-top: 0px !important;
}

html.sticky-header-enabled body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

html.sticky-header-enabled #header.sticky-active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

/* Ensure content doesn't hide behind sticky header */
html.sticky-header-enabled main,
html.sticky-header-enabled section,
html.sticky-header-enabled .body > div:not(#header) {
    position: relative !important;
    z-index: 1 !important;
}

/* Sticky header styles consolidated in navbar.css */

/* ═══════════════════════════════════════════════════════════════════
   PREMIUM HORIZONTAL MILESTONES TIMELINE
   ═══════════════════════════════════════════════════════════════════ */

.milestones-slider-wrapper {
    width: 100%;
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(245, 134, 52, 0.03) 0%, rgba(237, 53, 58, 0.02) 100%);
    border-radius: 20px;
    overflow: hidden;
}

.milestones-slider-container {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 40px 30px;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: #F58634 rgba(245, 134, 52, 0.1);
}

.milestones-slider-container::-webkit-scrollbar {
    height: 8px;
}

.milestones-slider-container::-webkit-scrollbar-track {
    background: rgba(245, 134, 52, 0.1);
    border-radius: 10px;
}

.milestones-slider-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #F58634 0%, #ED353A 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.milestones-slider-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ED353A 0%, #F58634 100%);
}

/* Milestone Slide */
.milestone-slide {
    flex: 0 0 auto;
    width: 300px;
    position: relative;
    scroll-snap-align: start;
    animation: slideInUp 0.6s ease-out backwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.milestone-slide:nth-child(1) { animation-delay: 0.1s; }
.milestone-slide:nth-child(2) { animation-delay: 0.2s; }
.milestone-slide:nth-child(3) { animation-delay: 0.3s; }
.milestone-slide:nth-child(4) { animation-delay: 0.4s; }
.milestone-slide:nth-child(5) { animation-delay: 0.5s; }
.milestone-slide:nth-child(6) { animation-delay: 0.6s; }
.milestone-slide:nth-child(7) { animation-delay: 0.7s; }
.milestone-slide:nth-child(8) { animation-delay: 0.8s; }

/* Connecting Line - Horizontal Orange Line */
.milestone-slide::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    right: -50%;
    height: 3px;
    background: linear-gradient(90deg, #F58634 0%, #E07A2A 50%, #F58634 100%);
    z-index: 0;
    border-radius: 2px;
}

/* Hide the connecting line on the last item */
.milestone-slide:last-child::before {
    display: none;
}

/* Milestone Item Container */
.milestone-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Milestone Marker - Circle Container */
.milestone-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

/* Circular Image Container */
.milestone-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px #F58634;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, #F58634 0%, #ED353A 100%);
}

.milestone-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.milestone-circle:hover {
    transform: scale(1.15) translateY(-10px);
    box-shadow: 0 15px 40px rgba(245, 134, 52, 0.4), 0 0 0 4px #F58634;
}

/* Milestone Circle Image */
.milestone-circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.milestone-circle:hover .milestone-circle-image {
    transform: scale(1.1);
}

/* Placeholder Icon */
.milestone-circle-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F58634 0%, #ED353A 100%);
    border-radius: 50%;
}

.milestone-circle-placeholder i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.milestone-circle:hover .milestone-circle-placeholder i {
    transform: scale(1.2) rotate(15deg);
}

/* Year Label */
.milestone-year-label {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F58634 0%, #ED353A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-family: 'Poppins', Arial, sans-serif;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.milestone-circle:hover ~ .milestone-year-label {
    font-size: 1.7rem;
    font-weight: 900;
}

/* Milestone Content Box */
.milestone-content {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 10px 0 !important;
    text-align: center;
    box-shadow: none !important;
    border: none !important;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-height: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
}

.milestone-content::before {
    display: none !important;
}

.milestone-slide:hover .milestone-content::before {
    transform: scaleX(1);
}

.milestone-slide:hover .milestone-content {
    box-shadow: none;
    transform: translateY(-5px);
    border-color: transparent;
    background: transparent;
}

/* Milestone Title */
.milestone-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #F58634;
    margin: 0;
    line-height: 1.4;
    font-family: 'Poppins', Arial, sans-serif;
    transition: all 0.3s ease;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    opacity: 1;
    visibility: visible;
}

.milestone-slide:hover .milestone-title {
    color: #ED353A;
    font-weight: 800;
}

/* Slider Track - Progress Bar */
.milestones-slider-track {
    position: relative;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(245, 134, 52, 0.15) 0%, rgba(245, 134, 52, 0.08) 100%);
    border-radius: 2px;
    margin: 0 30px;
    overflow: hidden;
}

.milestones-slider-progress {
    height: 100%;
    background: linear-gradient(90deg, #F58634 0%, #ED353A 50%, #F58634 100%);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 15px rgba(245, 134, 52, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .milestone-slide {
        width: 280px;
    }

    .milestone-circle {
        width: 90px;
        height: 90px;
    }

    .milestone-circle-placeholder i {
        font-size: 2.2rem;
    }

    .milestone-year-label {
        font-size: 1.3rem;
    }

    .milestone-title {
        font-size: 1rem;
    }

    .milestones-slider-container {
        gap: 35px;
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .milestone-slide {
        width: 260px;
    }

    .milestone-circle {
        width: 80px;
        height: 80px;
        box-shadow: 0 0 0 3px #F58634;
    }

    .milestone-slide::before {
        top: 40px;
        left: 110px;
        right: -35px;
        height: 2px;
    }

    .milestone-circle-placeholder i {
        font-size: 2rem;
    }

    .milestone-year-label {
        font-size: 1.2rem;
    }

    .milestone-content {
        padding: 18px;
        min-height: 110px;
    }

    .milestone-title {
        font-size: 0.95rem;
    }

    .milestones-slider-wrapper {
        padding: 50px 0;
    }

    .milestones-slider-container {
        gap: 30px;
        padding: 30px 20px;
    }

    .milestones-slider-track {
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .milestone-slide {
        width: 240px;
    }

    .milestone-circle {
        width: 70px;
        height: 70px;
        box-shadow: 0 0 0 2px #F58634;
    }

    .milestone-slide::before {
        top: 35px;
        left: 100px;
        right: -30px;
        height: 2px;
    }

    .milestone-circle-placeholder i {
        font-size: 1.8rem;
    }

    .milestone-year-label {
        font-size: 1.1rem;
    }

    .milestone-content {
        padding: 15px;
        min-height: 100px;
    }

    .milestone-title {
        font-size: 0.9rem;
    }

    .milestones-slider-wrapper {
        padding: 40px 0;
    }

    .milestones-slider-container {
        gap: 25px;
        padding: 25px 15px;
    }

    .milestones-slider-track {
        margin: 0 15px;
    }

    .milestone-marker {
        gap: 12px;
    }

    .milestone-item {
        gap: 15px;
    }
}

/* Print Styles */
@media print {
    .milestones-slider-wrapper {
        background: white !important;
    }

    .milestones-slider-container {
        overflow: visible !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }

    .milestone-slide {
        page-break-inside: avoid;
        width: 48% !important;
        margin: 1% !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .milestone-content {
        background: transparent;
        border-color: transparent;
    }

    .milestone-title {
        color: #F58634;
    }

    .milestone-slide:hover .milestone-content {
        background: transparent;
    }

    .milestone-slide:hover .milestone-title {
        color: #ED353A;
        font-weight: 800;
    }
}

/* Accessibility Improvements */
.milestone-circle:focus-visible {
    outline: 3px solid #F58634;
    outline-offset: 3px;
}

/* Remove top border from milestones section */
.section-no-top-border {
    border-top: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .milestone-slide,
    .milestone-circle,
    .milestone-content {
        animation: none !important;
        transition: none !important;
    }
}




/* ═══════════════════════════════════════════════════════════════════
   AWARDS PAGE - CARD LAYOUT & STYLING
   ═══════════════════════════════════════════════════════════════════ */

.awards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.awards-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.awards-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.awards-card-header {
    background: linear-gradient(135deg, #E04622 0%, #cc3e1d 100%);
    padding: 18px;
    color: white;
    flex-shrink: 0;
}

.awards-card-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.awards-card-photo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    flex-shrink: 0;
}

.awards-card-photo-placeholder {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    flex-shrink: 0;
}

.awards-card-photo-placeholder i {
    font-size: 24px;
    color: white;
}

.awards-card-info {
    flex: 1;
    min-width: 0;
}

.awards-card-name {
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.awards-card-type {
    margin: 3px 0 0 0;
    font-size: 14px;
    background: #EEAB26;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 700;
}

.awards-card-designation {
    opacity: 0.9;
    display: block;
    margin-top: 4px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.awards-card-year {
    display: inline-block;
    background: #EEAB26;
    color: #333;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
}

.awards-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.awards-card-image {
    margin-bottom: 15px;
    flex-shrink: 0;
}

.awards-card-image img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    border-radius: 8px;
    background: #f5f5f5;
    padding: 8px;
}

.awards-card-title {
    font-size: 16px;
    font-weight: 900;
    color: #E04622;
    margin-bottom: 12px;
    line-height: 1.4;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    padding-bottom: 10px;
    border-bottom: 2px solid #EEAB26;
}

.awards-card-description {
    color: #555;
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.6;
    flex: 1;
    white-space: normal;
    word-wrap: break-word;
}

.awards-card-footer {
    border-top: 2px solid #f0f0f0;
    padding-top: 12px;
    margin-top: auto;
    flex-shrink: 0;
    background: linear-gradient(135deg, #E04622 0%, #cc3e1d 100%);
    padding: 12px;
    margin: 12px -18px -18px -18px;
    border-radius: 0 0 12px 12px;
}

.awards-card-footer-text {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
}

.awards-card-footer-text i {
    margin-right: 4px;
}

.awards-card-footer-separator {
    margin: 0 6px;
}

/* Awards Sidebar */
.awards-sidebar {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.awards-sidebar-title {
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
    font-size: 20px;
}

.awards-sidebar-filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.awards-filter-link {
    padding: 14px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid #ddd;
    background: #f8f9fa;
    color: #666;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.awards-filter-link:hover {
    background: #ffe8e0;
    color: #E04622;
}

.awards-filter-link.active {
    border-left-color: #E04622;
    background: #ffe8e0;
    color: #E04622;
    font-weight: 600;
}

.awards-filter-icon {
    margin-right: 10px;
}

.awards-filter-count {
    float: right;
    background: #E04622;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

/* Awards Pagination */
.awards-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-modern {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f0f0f0;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
}

.page-link:hover {
    background: #E04622;
    color: white;
    transform: translateY(-2px);
}

.page-link-active {
    background: #E04622;
    color: white;
    border-color: #E04622;
}

.page-link-disabled {
    background: #e9ecef;
    color: #999;
    cursor: not-allowed;
}

.page-link-nav {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page-link-number {
    min-width: 40px;
}

/* Awards No Results */
.awards-no-results {
    background: white;
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.awards-no-results-icon {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

.awards-no-results-title {
    color: #999;
    margin-bottom: 10px;
}

.awards-no-results-text {
    color: #bbb;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .awards-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }

    .awards-card-header {
        padding: 15px;
    }

    .awards-card-body {
        padding: 15px;
    }

    .awards-card-image img {
        height: 140px;
    }

    .awards-sidebar {
        padding: 20px;
        margin-bottom: 30px;
    }

    .page-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .awards-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .awards-card-header {
        padding: 12px;
    }

    .awards-card-photo {
        width: 50px;
        height: 50px;
    }

    .awards-card-photo-placeholder {
        width: 50px;
        height: 50px;
    }

    .awards-card-photo-placeholder i {
        font-size: 20px;
    }

    .awards-card-name {
        font-size: 14px;
    }

    .awards-card-body {
        padding: 12px;
    }

    .awards-card-image img {
        height: 120px;
    }

    .awards-card-title {
        font-size: 13px;
    }

    .awards-card-description {
        font-size: 11px;
    }

    .awards-sidebar {
        padding: 15px;
    }

    .awards-sidebar-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .awards-filter-link {
        padding: 12px 15px;
        font-size: 14px;
    }

    .page-link {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .pagination-modern {
        gap: 4px;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   GALLERY SECTION - BADGE, TITLE, DESCRIPTION
   ═══════════════════════════════════════════════════════════════════ */

.gallery-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Poppins', Arial, sans-serif;
}

.gallery-badge .badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', Arial, sans-serif;
}

.gallery-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
    font-family: 'Poppins', Arial, sans-serif;
    animation: slideInLeft 0.7s ease-out 0.1s both;
}

.gallery-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Poppins', Arial, sans-serif;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .gallery-description {
        font-size: 1rem;
    }

    .gallery-badge {
        padding: 8px 20px;
        margin-bottom: 15px;
    }

    .gallery-badge .badge-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .gallery-description {
        font-size: 0.95rem;
    }

    .gallery-badge {
        padding: 6px 15px;
        margin-bottom: 12px;
    }

    .gallery-badge .badge-text {
        font-size: 0.7rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT US SECTION - BADGE, TITLE, DESCRIPTION
   ═══════════════════════════════════════════════════════════════════ */

.about-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Poppins', Arial, sans-serif;
}

.about-badge .badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', Arial, sans-serif;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
    font-family: 'Poppins', Arial, sans-serif;
    animation: slideInLeft 0.7s ease-out 0.1s both;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Poppins', Arial, sans-serif;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-badge {
        padding: 8px 20px;
        margin-bottom: 15px;
    }

    .about-badge .badge-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .about-badge {
        padding: 6px 15px;
        margin-bottom: 12px;
    }

    .about-badge .badge-text {
        font-size: 0.7rem;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   PLACEMENT SECTION - BADGE, TITLE, DESCRIPTION
   ═══════════════════════════════════════════════════════════════════ */

.placement-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Poppins', Arial, sans-serif;
}

.placement-badge .badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', Arial, sans-serif;
}

.placement-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
    font-family: 'Poppins', Arial, sans-serif;
    animation: slideInLeft 0.7s ease-out 0.1s both;
}

.placement-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Poppins', Arial, sans-serif;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .placement-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .placement-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .placement-description {
        font-size: 1rem;
    }

    .placement-badge {
        padding: 8px 20px;
        margin-bottom: 15px;
    }

    .placement-badge .badge-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .placement-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .placement-description {
        font-size: 0.95rem;
    }

    .placement-badge {
        padding: 6px 15px;
        margin-bottom: 12px;
    }

    .placement-badge .badge-text {
        font-size: 0.7rem;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   HOME RECRUITERS — full-width banner (reference layout)
   ═══════════════════════════════════════════════════════════════════ */

.skh-recruiters-home {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: clamp(22px, 2.6vw, 30px) 0 clamp(20px, 2.2vw, 26px);
    overflow: hidden;
    min-height: clamp(230px, 19vw, 290px);
    display: flex;
    align-items: center;
}

.skh-recruiters-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.skh-recruiters-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.skh-recruiters-header {
    margin-bottom: clamp(14px, 1.8vw, 18px);
}

.skh-recruiters-header-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
    text-align: center;
}

.skh-recruiters-home .skh-programs-eyebrow {
    margin-bottom: 0;
}

.skh-recruiters-home .skh-programs-eyebrow-line {
    display: none;
}

.skh-recruiters-home .skh-programs-eyebrow-text {
    color: #1a1a1a !important;
    font-size: clamp(0.72rem, 1vw, 0.82rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 0;
    text-shadow: none;
}

.skh-recruiters-home .skh-programs-eyebrow-text::after {
    display: none;
}

.skh-recruiters-home .skh-placement-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a1a1a !important;
    margin: 0;
    text-wrap: balance;
}

.skh-recruiters-home .skh-placement-lead {
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-weight: 400;
    line-height: 1.55;
    color: #333333 !important;
    margin: 0;
    max-width: 36em;
    text-wrap: pretty;
}

.skh-recruiters-home .skh-placement-title,
.skh-recruiters-home .skh-placement-lead,
.skh-recruiters-home .skh-programs-eyebrow-text,
.skh-recruiters-home .appear-animation {
    opacity: 1 !important;
    visibility: visible !important;
}

.skh-recruiters-marquee {
    width: 100%;
}

.skh-recruiters-marquee-track {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 4px 0;
}

@keyframes skh-recruiters-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.skh-recruiters-marquee-content {
    --skh-recruiters-marquee-duration: 30s;
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.2vw, 24px);
    width: max-content;
    padding: 0 clamp(12px, 2vw, 20px);
    animation: skh-recruiters-marquee var(--skh-recruiters-marquee-duration) linear infinite;
    will-change: transform;
}

.skh-recruiters-marquee-content:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .skh-recruiters-home {
        min-height: clamp(220px, 42vw, 270px);
        padding: clamp(20px, 4.5vw, 26px) 0 clamp(18px, 4vw, 22px);
    }

    .skh-recruiters-marquee-content {
        --skh-recruiters-marquee-duration: 24s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .skh-recruiters-marquee-content {
        --skh-recruiters-marquee-duration: 48s;
    }
}

.skh-recruiter-logo {
    width: clamp(96px, 10vw, 118px);
    height: clamp(62px, 6.5vw, 74px);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.skh-recruiter-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.skh-recruiter-logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.skh-recruiter-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: #f4f6f8;
    color: #94a3b8;
    font-size: 1.5rem;
}

.skh-recruiters-empty {
    text-align: center;
    padding: clamp(40px, 6vw, 56px) clamp(16px, 3vw, 24px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(21, 61, 102, 0.12);
}

.skh-recruiters-empty i {
    font-size: 2.5rem;
    color: #153d66;
    margin-bottom: 14px;
}

.skh-recruiters-empty h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
    font-weight: 400;
    color: #153d66;
    margin: 0 0 8px;
}

.skh-recruiters-empty p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.faqs-section.section-spacing + .skh-page-cta-wrap.section-spacing {
    margin-top: 24px !important;
    padding-top: clamp(20px, 2.5vw, 28px) !important;
}

.faqs-section.section-spacing:has(+ .skh-page-cta-wrap) {
    padding-bottom: 1.25rem !important;
}

@media (max-width: 768px) {
    .faqs-section.section-spacing + .skh-page-cta-wrap.section-spacing {
        margin-top: 20px !important;
        padding-top: 18px !important;
    }
}

@media (max-width: 576px) {
    .faqs-section.section-spacing + .skh-page-cta-wrap.section-spacing {
        margin-top: 16px !important;
        padding-top: 16px !important;
    }
}

@media (max-width: 480px) {
    .faqs-section.section-spacing + .skh-page-cta-wrap.section-spacing {
        margin-top: 12px !important;
        padding-top: 14px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   RECRUITERS SECTION - BADGE, TITLE, DESCRIPTION (legacy pages)
   ═══════════════════════════════════════════════════════════════════ */

.recruiters-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Poppins', Arial, sans-serif;
}

.recruiters-badge .badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', Arial, sans-serif;
}

.recruiters-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
    font-family: 'Poppins', Arial, sans-serif;
    animation: slideInLeft 0.7s ease-out 0.1s both;
}

.recruiters-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Poppins', Arial, sans-serif;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .recruiters-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .recruiters-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .recruiters-description {
        font-size: 1rem;
    }

    .recruiters-badge {
        padding: 8px 20px;
        margin-bottom: 15px;
    }

    .recruiters-badge .badge-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .recruiters-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .recruiters-description {
        font-size: 0.95rem;
    }

    .recruiters-badge {
        padding: 6px 15px;
        margin-bottom: 12px;
    }

    .recruiters-badge .badge-text {
        font-size: 0.7rem;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   PROGRAMS SECTION - BADGE, TITLE, DESCRIPTION
   ═══════════════════════════════════════════════════════════════════ */

.programs-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Poppins', Arial, sans-serif;
}

.programs-badge .badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', Arial, sans-serif;
}

.programs-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
    font-family: 'Poppins', Arial, sans-serif;
    animation: slideInLeft 0.7s ease-out 0.1s both;
}

.programs-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Poppins', Arial, sans-serif;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .programs-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .programs-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .programs-description {
        font-size: 1rem;
    }

    .programs-badge {
        padding: 8px 20px;
        margin-bottom: 15px;
    }

    .programs-badge .badge-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .programs-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .programs-description {
        font-size: 0.95rem;
    }

    .programs-badge {
        padding: 6px 15px;
        margin-bottom: 12px;
    }

    .programs-badge .badge-text {
        font-size: 0.7rem;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   BLOGS SECTION - BADGE, TITLE, DESCRIPTION
   ═══════════════════════════════════════════════════════════════════ */

.blogs-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Poppins', Arial, sans-serif;
}

.blogs-badge .badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', Arial, sans-serif;
}

.blogs-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
    font-family: 'Poppins', Arial, sans-serif;
    animation: slideInLeft 0.7s ease-out 0.1s both;
}

.blogs-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Poppins', Arial, sans-serif;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blogs-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .blogs-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .blogs-description {
        font-size: 1rem;
    }

    .blogs-badge {
        padding: 8px 20px;
        margin-bottom: 15px;
    }

    .blogs-badge .badge-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .blogs-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .blogs-description {
        font-size: 0.95rem;
    }

    .blogs-badge {
        padding: 6px 15px;
        margin-bottom: 12px;
    }

    .blogs-badge .badge-text {
        font-size: 0.7rem;
    }
}





/* ═══════════════════════════════════════════════════════════════════
   CAREER COUNSELING TIMELINE STYLES
   ═══════════════════════════════════════════════════════════════════ */

.timeline-container {
    position: relative;
    padding: 40px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #E04622 0%, #EEAB26 100%);
    border-radius: 2px;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
    width: 45%;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    width: 45%;
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: white;
    border: 4px solid #E04622;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 0 8px rgba(224, 70, 34, 0.08);
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E04622 0%, #EEAB26 100%);
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Header with Date and Category */
.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    gap: 10px;
}

.timeline-date {
    font-size: 0.8rem;
    font-weight: 700;
    color: #E04622;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.timeline-date i {
    margin-right: 6px;
}

.timeline-category {
    display: inline-block;
    background: rgba(224, 70, 34, 0.08);
    color: #E04622;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.timeline-category i {
    margin-right: 4px;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 12px 0;
    line-height: 1.3;
}

.timeline-counselor {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #666;
    margin-top: 12px;
    margin-bottom: 15px;
}

.timeline-counselor i {
    color: #E04622;
    font-size: 1rem;
}

.timeline-counselor span {
    font-weight: 600;
}

.timeline-meta {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #666;
}

.timeline-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-meta-item i {
    color: #E04622;
    font-size: 1.1rem;
}

.timeline-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-status.active {
    background: #d1fae5;
    color: #065f46;
}

.timeline-status.inactive {
    background: #fee2e2;
    color: #991b1b;
}

.timeline-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin: 15px 0;
    max-height: 100px;
    overflow: hidden;
    position: relative;
}

.timeline-button {
    display: inline-block;
    margin-top: 15px;
    padding: 0;
    background: none;
    color: #E04622;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.timeline-button:hover {
    transform: none;
    box-shadow: none;
    color: #cc3e1d;
}

.timeline-button i {
    transition: transform 0.3s ease;
}

.timeline-button:hover i {
    transform: translateX(3px);
}

/* Mobile Responsive Timeline */
@media (max-width: 768px) {
    .timeline-container::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 70px;
        margin-right: 0;
        width: calc(100% - 90px);
        text-align: left;
    }

    .timeline-meta {
        justify-content: flex-start;
    }

    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-category {
        width: 100%;
        justify-content: flex-start;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   PEOPLE & MESSAGES SLIDER STYLES
   ═══════════════════════════════════════════════════════════════════ */

.people-messages-section {
    padding: 60px 0;
    background: transparent;
}

.people-messages-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.people-messages-slider {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.slide {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    padding: 50px;
    align-items: center;
}

.slide-left {
    display: flex;
    justify-content: center;
}

.slide-image {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.slide-image-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #ddd;
}

.slide-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-message {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    border-left: 4px solid #E04622;
    padding-left: 20px;
}

.slide-author {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.author-designation {
    font-size: 14px;
    color: #E04622;
    margin: 5px 0 0 0;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E04622 0%, #EEAB26 100%);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-arrow:hover {
    background: linear-gradient(135deg, #D63A1A 0%, #E09920 100%);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #E04622 0%, #EEAB26 100%);
    width: 30px;
    border-radius: 6px;
}

.slider-counter {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 20px;
    }

    .slide-image,
    .slide-image-placeholder {
        width: 180px;
        height: 180px;
    }

    .slide-message {
        font-size: 14px;
    }

    .author-name {
        font-size: 18px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   FLOATING BUTTONS - WHATSAPP & CALL
   ═══════════════════════════════════════════════════════════════════ */

.floating-buttons-container {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
    z-index: 999;
    padding: 0 30px;
    pointer-events: none;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    color: white;
    font-size: 28px;
    pointer-events: auto;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-btn i {
    font-size: 28px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%) !important;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #2FE573 0%, #25D366 100%) !important;
}

.whatsapp-btn i {
    color: white !important;
}

.call-btn {
    background: linear-gradient(135deg, #E04622 0%, #cc3e1d 100%) !important;
}

.call-btn:hover {
    background: linear-gradient(135deg, #cc3e1d 0%, #b83517 100%) !important;
}

.call-btn i {
    color: white !important;
}

.btn-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.floating-btn:hover .btn-label {
    opacity: 1;
}

/* Floating Buttons Mobile Responsive */
@media (max-width: 768px) {
    .floating-buttons-container {
        bottom: 20px;
        padding: 0 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .floating-btn i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .floating-buttons-container {
        bottom: 15px;
        padding: 0 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .floating-btn i {
        font-size: 20px;
    }

    .btn-label {
        font-size: 10px;
        bottom: -25px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   PERSISTENT BROCHURE DOWNLOAD BUTTON
   ═══════════════════════════════════════════════════════════════════ */

.brochure-download-button {
    position: fixed;
    right: 30px;
    bottom: 150px;
    z-index: 999;
    animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(150px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.brochure-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 80px;
    height: 140px;
    background: linear-gradient(135deg, #E04622 0%, #cc3e1d 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(224, 70, 34, 0.35);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 700;
    text-align: center;
    padding: 15px 10px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: visible;
    z-index: 999;
}

.brochure-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.brochure-btn:hover {
    box-shadow: 0 20px 60px rgba(224, 70, 34, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #cc3e1d 0%, #E04622 100%);
    color: white;
    z-index: 999;
}

.brochure-btn:active {
    transform: translateY(-50%);
}

.brochure-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.brochure-btn:hover .brochure-icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
}

.brochure-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 2;
}

.brochure-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
}

.brochure-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

/* Pulse animation on load */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(224, 70, 34, 0.35);
    }
    50% {
        box-shadow: 0 10px 60px rgba(224, 70, 34, 0.55);
    }
}

.brochure-btn {
    animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), pulse 2s ease-in-out 0.8s;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .brochure-download-button {
        right: 20px;
    }

    .brochure-btn {
        width: 75px;
        height: 130px;
        gap: 10px;
    }

    .brochure-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .brochure-title {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .brochure-download-button {
        right: 15px;
        bottom: 140px;
        transform: none;
    }

    .brochure-btn {
        width: 70px;
        height: 120px;
        gap: 8px;
        padding: 12px 8px;
    }

    .brochure-btn:hover {
        transform: none;
    }

    .brochure-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .brochure-label {
        font-size: 9px;
    }

    .brochure-title {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .brochure-download-button {
        right: 10px;
        bottom: 130px;
    }

    .brochure-btn {
        width: 65px;
        height: 110px;
        gap: 6px;
        padding: 10px 6px;
        border-radius: 15px;
    }

    .brochure-icon-wrapper {
        width: 38px;
        height: 38px;
        font-size: 18px;
        border-radius: 8px;
    }

    .brochure-label {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .brochure-title {
        font-size: 10px;
    }
}

/* Hide on print */
@media print {
    .brochure-download-button {
        display: none;
    }
}

/* Accessibility */
.brochure-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}


/* ═══════════════════════════════════════════════════════════════════
   SUCCESS STORIES PAGE STYLES
   ═══════════════════════════════════════════════════════════════════ */

/* Story Card Responsive */
@media(max-width:768px){ 
	.story-card {
		border-radius: 10px !important;
	}
}

@media(max-width:480px){ 
	.container {
		padding: 0 15px;
	}
}


/* ═══════════════════════════════════════════════════════════════════
   RECRUITER LOGO CARDS - OUR RECRUITERS PAGE
   ═══════════════════════════════════════════════════════════════════ */

.recruiter-logo-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    position: relative;
}

.recruiter-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(224, 70, 34, 0.12);
    border-color: #E04622;
}

/* Decorative Background Elements */
.recruiter-logo-card::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(224, 70, 34, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.recruiter-logo-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(238, 171, 38, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

/* Logo Image Styling */
.recruiter-logo-card img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.recruiter-logo-card:hover img {
    transform: scale(1.05);
}

/* Building Icon for Empty States */
.recruiter-logo-card .fa-building {
    font-size: 3rem;
    color: #E04622;
    position: relative;
    z-index: 1;
    opacity: 0.6;
}

/* Responsive Design for Recruiter Cards */
@media (max-width: 1024px) {
    .recruiter-logo-card {
        min-height: 85px;
    }
}

@media (max-width: 768px) {
    .recruiter-logo-card {
        min-height: 80px;
        padding: 2px;
    }

    .recruiter-logo-card:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 576px) {
    .recruiter-logo-card {
        min-height: 75px;
        border-radius: 8px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    }

    .recruiter-logo-card:hover {
        box-shadow: 0 4px 12px rgba(224, 70, 34, 0.1);
    }

    .recruiter-logo-card .fa-building {
        font-size: 2.5rem;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   BEYOND ACADEMICS PAGE - MODAL SCROLLBAR STYLING
   ═══════════════════════════════════════════════════════════════════ */

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #E04622;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #cc3e1d;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95% !important;
    }

    #modalImage, #clubModalImage {
        height: 180px;
    }
}
/* ═══════════════════════════════════════════════════════════════════
   BREADCRUMB SECTION SPACING - Apply to all internal pages
   ═══════════════════════════════════════════════════════════════════ */

/* Style for breadcrumb sections on non-home pages */
.breadcrumb-section .container {
    padding-top: 120px !important;
}

.breadcrumb-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    margin-top: -200px;
}

/* ═══════════════════════════════════════════════════════════════════
   SKH REFERENCE HEADER UI
   ═══════════════════════════════════════════════════════════════════ */

.skh-header {
    /* Swapped palette — warm orange surfaces, deep navy accents */
    --skh-navy: #C45100;
    --skh-navy-dark: #A84400;
    --skh-navy-deep: #963C00;
    --skh-navy-mid: #9E5E38;
    --skh-navy-soft: rgba(196, 81, 0, 0.08);
    --skh-navy-surface: linear-gradient(180deg, #FFAD5E 0%, #F5923F 22%, #E86818 52%, #E35D00 80%, #D4560C 100%);
    --skh-orange: #153D66;
    --skh-orange-hover: #0E2D4F;
    --skh-orange-soft: rgba(21, 61, 102, 0.1);
    --skh-orange-line: rgba(21, 61, 102, 0.38);
    --skh-white: #FFFFFF;
    --skh-accent: #153D66;
    --skh-logo-left: 20px;
    --skh-logo-size: 118px;
    --skh-logo-block-height: 160px;
    --skh-pennant-clear: calc(var(--skh-logo-left) + var(--skh-logo-size) + 20px);
    --skh-gold: #D4AF37;
    --skh-gold-light: #EDD06A;
    --skh-gold-deep: #A8831A;
    --skh-gold-seam: linear-gradient(90deg, #A8831A 0%, #D4AF37 42%, #EDD06A 50%, #D4AF37 58%, #A8831A 100%);
    /* Brand typography — ink navy on white, rich flame orange accents */
    --skh-brand-ink: #06101F;
    --skh-brand-ink-mid: #122640;
    --skh-brand-ink-muted: #2A4560;
    --skh-brand-flame: #C45100;
    --skh-brand-flame-deep: #A84400;
    --skh-brand-flame-bright: #D4560C;
    display: flex;
    flex-direction: column;
    gap: 0;
    row-gap: 0;
    position: relative;
    top: auto;
    z-index: 1050;
    overflow: visible !important;
    font-family: 'Poppins', sans-serif;
}

.skh-header > .skh-top-bar,
.skh-header > .skh-header-seam,
.skh-header > .skh-navbar,
.skh-header > .navbar-main {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.skh-header .navbar-top-banner {
    display: none !important;
}

.skh-pennant-slot {
    display: none !important;
}

/* Orange seam — flush between top bar and nav; pennant top = seam top (zero gap) */
.skh-header-seam {
    position: relative;
    display: block;
    flex: 0 0 2px;
    width: 100%;
    height: 2px;
    min-height: 2px;
    max-height: 2px;
    background: var(--skh-gold-seam);
    box-shadow: 0 0 4px rgba(212, 175, 55, 0.3);
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    line-height: 0;
    font-size: 0;
    overflow: visible;
    z-index: 1060;
}

.skh-header-seam .skh-header-logo {
    position: absolute;
    top: 0;
    left: var(--skh-logo-left);
    margin: 0 !important;
    padding: 0 !important;
    z-index: 10;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--skh-logo-size);
    height: var(--skh-logo-block-height);
    line-height: 0;
    background: transparent;
    overflow: visible;
    filter: none;
    transition: width 0.25s ease, height 0.25s ease;
}

.skh-header-seam .skh-header-logo:hover {
    filter: none;
}

.skh-header-seam .skh-header-logo img {
    width: var(--skh-logo-size);
    height: var(--skh-logo-size);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: transparent;
    display: block;
}

.skh-pennant-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    padding: 0 6px;
}

.skh-pennant-brand {
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1.4px;
    font-family: 'Poppins', sans-serif;
}

.skh-pennant-sub {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.58rem;
    letter-spacing: 0.8px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.skh-header .skh-top-bar,
.skh-header .navbar-top-bar {
    --skh-top-icon: #ffffff;
    --skh-top-text: #ffffff;
    background: var(--skh-navy-surface) !important;
    padding: 0 !important;
    font-size: 0.84rem !important;
    border: none !important;
    border-bottom: none !important;
    position: relative !important;
    z-index: 1055;
    margin: 0 !important;
    overflow: visible !important;
    box-sizing: border-box;
    flex-shrink: 0;
}

.skh-top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 4px 18px;
    min-height: 32px;
    box-sizing: border-box;
}

.skh-top-ticker {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.skh-top-ticker-viewport {
    width: 100%;
    overflow: hidden;
}

.skh-top-ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: skh-top-ticker-scroll 34s linear infinite;
}

.skh-top-ticker-viewport:hover .skh-top-ticker-track,
.skh-top-ticker-viewport:focus-within .skh-top-ticker-track {
    animation-play-state: paused;
}

.skh-top-ticker-set {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 80px;
}

.skh-top-ticker-set[aria-hidden="true"] {
    display: inline-flex;
    pointer-events: none;
    user-select: none;
}

@keyframes skh-top-ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .skh-top-ticker-track {
        animation: none;
    }

    .skh-top-ticker-set[aria-hidden="true"] {
        display: none !important;
    }
}

.skh-top-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 8px;
}

.skh-top-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--skh-top-text);
    white-space: nowrap;
    padding: 0 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.015em;
    text-shadow: 0 1px 1px rgba(110, 40, 0, 0.22);
    transition: color 0.2s ease;
}

.skh-top-item span,
.skh-top-item strong {
    font-weight: inherit;
}

.skh-top-item i {
    color: var(--skh-top-icon);
    font-size: 0.74rem;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
    flex-shrink: 0;
    opacity: 1;
}

.skh-top-link,
.skh-top-link .navbar-announcement-link {
    color: var(--skh-top-text) !important;
    text-decoration: none !important;
    transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.skh-top-announce .navbar-announcement {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.skh-top-announce-dot {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    line-height: 1;
    padding: 0 2px;
}

.skh-top-announce .navbar-announcement strong {
    color: #ffffff;
    font-weight: 700;
    font-size: inherit;
    letter-spacing: 0.02em;
    text-transform: none;
}

.skh-top-announce .navbar-announcement-link {
    color: #ffffff !important;
    background: none;
    font-weight: 700;
    font-size: inherit;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 0 0 1px;
    border-radius: 0;
    line-height: 1.3;
    box-shadow: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.9);
}

.skh-top-announce .navbar-announcement-link:hover {
    color: #ffffff !important;
    border-bottom-color: #ffffff;
    transform: none;
}

.skh-top-item.skh-top-link:hover {
    color: #ffffff !important;
}

.skh-top-item.skh-top-link:hover i {
    opacity: 1;
}

.skh-top-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
    margin: 0 6px;
}

.skh-top-dropdown .dropdown-toggle::after {
    margin-left: 4px;
    font-size: 0.55rem;
}

.skh-quick-links-menu {
    font-size: 0.85rem;
    border: 1px solid rgba(12, 26, 46, 0.08);
    box-shadow: 0 8px 24px rgba(12, 26, 46, 0.12);
    border-radius: 8px;
    padding: 6px 0;
}

.skh-quick-links-menu .dropdown-item {
    font-family: 'Poppins', sans-serif;
    padding: 8px 18px;
    transition: background 0.2s ease, color 0.2s ease;
}

.skh-quick-links-menu .dropdown-item:hover {
    background: var(--skh-orange-soft);
    color: var(--skh-navy);
}

.skh-header .skh-navbar,
.skh-header .navbar-main {
    background: var(--skh-white) !important;
    border-bottom: 1px solid rgba(12, 26, 46, 0.07) !important;
    box-shadow: 0 4px 20px rgba(12, 26, 46, 0.04) !important;
    overflow: visible !important;
    position: relative !important;
    top: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

.skh-header .navbar-main .container-fluid.skh-header-body,
.skh-header .navbar-main .skh-header-body {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.skh-brand-row {
    display: flex;
    align-items: center;
    padding: 10px 0 6px;
}

.skh-brand-badge {
    flex: 0 0 auto;
    margin-left: auto;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding-left: 12px;
}

.skh-accreditation-badge,
.skh-naac-badge,
.skh-nba-badge {
    display: block;
    width: auto;
    height: auto;
    max-height: 98px;
    max-width: 98px;
    object-fit: contain;
}

.skh-brand-spacer {
    flex-shrink: 0;
    width: var(--skh-pennant-clear);
    min-width: var(--skh-pennant-clear);
}

.skh-brand-center {
    flex: 1;
    text-align: left;
    min-width: 0;
    padding: 0 !important;
    align-items: flex-start !important;
}

.skh-header .navbar-title-section.skh-brand-center {
    padding: 2px 0 1px !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    overflow: visible !important;
}

.skh-header .skh-brand-center.navbar-title-section {
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

.skh-brand-lockup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-start;
    max-width: 100%;
    gap: 0;
    width: 100%;
}

.skh-header .navbar-title-section .college-name.skh-brand-title {
    font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif !important;
    font-size: clamp(1.98rem, 2.48vw, 2.62rem) !important;
    font-weight: 400 !important;
    color: var(--skh-accent) !important;
    margin: 0 !important;
    line-height: 1.06 !important;
    letter-spacing: -0.02em !important;
    word-spacing: 0.02em !important;
    text-transform: none !important;
    display: block !important;
    text-align: left !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: var(--skh-accent) !important;
    text-shadow: none !important;
    filter: none !important;
    transform: none !important;
    overflow: visible !important;
    transition: none !important;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

.skh-header .navbar-title-section .college-name.skh-brand-title:hover {
    transform: none !important;
    filter: none !important;
}

.skh-brand-title .skh-brand-word + .skh-brand-word {
    margin-left: 0.18em;
}

.skh-brand-word {
    color: var(--skh-brand-ink-mid) !important;
    -webkit-text-fill-color: var(--skh-brand-ink-mid) !important;
    background: none !important;
    font-weight: 600;
}

.skh-brand-word--accent {
    color: var(--skh-brand-flame) !important;
    -webkit-text-fill-color: var(--skh-brand-flame) !important;
    background: none !important;
    font-weight: 600;
    font-style: italic;
    position: relative;
    display: inline-block;
    padding: 0 1px 3px;
}

.skh-brand-word--accent::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.5px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--skh-gold-deep) 0%, var(--skh-brand-flame-bright) 50%, var(--skh-gold) 100%);
    opacity: 0.7;
}

.skh-brand-divider {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    max-width: 280px;
    margin: 7px 0 8px;
    margin-right: auto;
    line-height: 0;
}

.skh-brand-divider-accent {
    flex-shrink: 0;
    width: 24px;
    height: 1.5px;
    border-radius: 2px;
    background: linear-gradient(90deg, #C45100 0%, var(--skh-accent) 100%);
}

.skh-brand-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(6, 16, 31, 0.22) 0%,
        rgba(6, 16, 31, 0.1) 55%,
        transparent 100%
    );
}

.skh-header .navbar-title-section .college-tagline.skh-brand-tagline {
    font-family: 'DM Sans', 'Sora', Arial, sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 500 !important;
    color: #5A7290 !important;
    letter-spacing: 0.155em !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    padding: 0 0 0 13px !important;
    border-left: none !important;
    border-image: none !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: #5A7290 !important;
    display: block !important;
    text-align: left !important;
    line-height: 1.45 !important;
    opacity: 0.94 !important;
    overflow: visible !important;
    white-space: nowrap;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

.skh-header .navbar-title-section .college-tagline.skh-brand-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px;
    border-radius: 1px;
    background: linear-gradient(
        180deg,
        #C45100 0%,
        var(--skh-accent) 100%
    );
}

.skh-header .skh-brand-tagline .skh-tagline-accent {
    color: #C45100 !important;
    -webkit-text-fill-color: #C45100 !important;
    font-weight: 600 !important;
    letter-spacing: 0.16em !important;
}

.skh-header .skh-brand-tagline .skh-tagline-body {
    color: #5A7290 !important;
    -webkit-text-fill-color: #5A7290 !important;
    font-weight: 500 !important;
    letter-spacing: 0.15em !important;
}

.skh-brand-description,
.skh-header .college-description {
    display: none !important;
}

/* ── Scroll compact header — normal state untouched; compact ONLY with .is-scrolled ── */
.skh-header-spacer {
    display: block;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.skh-header:not(.is-scrolled) {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    box-shadow: none !important;
}

.skh-header:not(.is-scrolled) .skh-top-bar,
.skh-header:not(.is-scrolled) .skh-brand-row {
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    pointer-events: auto !important;
}

.skh-header:not(.is-scrolled) .skh-header-seam {
    flex: 0 0 2px !important;
    height: 2px !important;
    min-height: 2px !important;
    max-height: 2px !important;
    background: var(--skh-gold-seam) !important;
    box-shadow: 0 0 4px rgba(212, 175, 55, 0.3) !important;
}

@media (min-width: 993px) {
    .skh-header:not(.is-scrolled) .skh-nav-row {
        padding: 6px 20px 14px var(--skh-pennant-clear) !important;
        min-height: 0 !important;
    }

    .skh-header:not(.is-scrolled) .skh-nav-inner,
    .skh-header:not(.is-scrolled) .navbar-menu-section {
        min-height: 0 !important;
    }
}

.skh-header .navbar-main.sticky-navbar {
    position: relative !important;
    top: auto !important;
}

.skh-header.is-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 8px 26px rgba(6, 16, 31, 0.1);
}

.skh-header.is-scrolled .skh-top-bar {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.skh-header.is-scrolled .skh-top-bar-inner {
    padding: 2px 18px;
    min-height: 28px;
}

.skh-header.is-scrolled .skh-brand-row {
    padding: 6px 0 4px;
}

.skh-header.is-scrolled .navbar-title-section.skh-brand-center {
    padding: 2px 0 1px !important;
}

.skh-header.is-scrolled .skh-brand-divider {
    margin: 5px 0 4px;
}

@media (min-width: 993px) {
    .skh-header.is-scrolled .skh-header-logo,
    .skh-header.is-scrolled .skh-header-logo img {
        width: var(--skh-logo-size, 104px);
        height: var(--skh-logo-size, 104px);
    }

    .skh-header.is-scrolled .skh-header-logo {
        height: var(--skh-logo-block-height, auto);
    }

    .skh-header.is-scrolled .college-name.skh-brand-title {
        font-size: clamp(1.7rem, 2.22vw, 2.28rem) !important;
    }

    .skh-header.is-scrolled .college-tagline.skh-brand-tagline {
        font-size: 0.66rem !important;
        letter-spacing: 0.125em !important;
    }

    .skh-header.is-scrolled .skh-accreditation-badge,
    .skh-header.is-scrolled .skh-naac-badge,
    .skh-header.is-scrolled .skh-nba-badge {
        max-height: 82px;
        max-width: 82px;
    }

    .skh-header.is-scrolled .skh-nav-row {
        padding: 4px 20px 8px var(--skh-pennant-clear) !important;
    }

    .skh-header.is-scrolled .nav-link {
        padding: 8px 10px !important;
        font-size: 0.69rem !important;
    }
}

@media (max-width: 992px) {
    .skh-header.is-scrolled .skh-top-bar-inner {
        padding: 2px 12px;
        min-height: 26px;
    }

    .skh-header.is-scrolled .skh-nav-row {
        min-height: 48px;
    }

    .skh-header.is-scrolled .nav-link {
        padding: 8px 9px !important;
        font-size: 0.68rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .skh-header.is-scrolled .skh-top-bar-inner,
    .skh-header.is-scrolled .skh-brand-row,
    .skh-header.is-scrolled .skh-nav-row,
    .skh-header.is-scrolled .college-name.skh-brand-title,
    .skh-header.is-scrolled .college-tagline.skh-brand-tagline {
        transition: none !important;
    }
}

.skh-nav-row {
    border-top: 1px solid rgba(21, 61, 102, 0.08) !important;
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%) !important;
    padding: 6px 20px 14px var(--skh-pennant-clear) !important;
}

.skh-nav-inner,
.skh-header .navbar-menu-section {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    gap: 8px !important;
    width: 100% !important;
}

.skh-header .navbar-collapse {
    flex: 1 !important;
    display: flex !important;
    overflow: visible !important;
}

.skh-header .navbar-nav,
.skh-header .skh-nav-menu {
    display: flex !important;
    flex: 1 !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    min-width: 0 !important;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.skh-header .navbar-nav::-webkit-scrollbar,
.skh-header .skh-nav-menu::-webkit-scrollbar {
    display: none;
}

.skh-header .nav-item {
    height: auto !important;
}

.skh-header .nav-link {
    padding: 9px 9px !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    color: #963C00 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-family: 'Sora', 'Poppins', Arial, sans-serif !important;
    border-bottom: none !important;
    background: transparent !important;
    position: relative !important;
    height: auto !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1, 'liga' 1;
    transition: color 0.22s ease !important;
}

.skh-header .nav-link::after {
    content: '' !important;
    position: absolute !important;
    bottom: 5px !important;
    left: 50% !important;
    width: 0 !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #153D66 !important;
    transform: translateX(-50%) !important;
    opacity: 0;
    transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s ease !important;
}

.skh-header .nav-link:hover {
    color: #C45100 !important;
    background: transparent !important;
    font-weight: 600 !important;
}

.skh-header .nav-link:hover::after {
    width: calc(100% - 24px) !important;
    background: linear-gradient(90deg, #C45100 0%, #D4560C 100%) !important;
    opacity: 0.8;
}

.skh-header .nav-link.active {
    color: #153D66 !important;
    background: transparent !important;
    font-weight: 600 !important;
}

.skh-header .nav-link.active::after {
    width: calc(100% - 24px) !important;
    background: linear-gradient(90deg, #153D66 0%, #C45100 100%) !important;
    opacity: 1;
}

.skh-header .nav-link i {
    font-size: 0.5rem !important;
    margin-left: 5px !important;
    opacity: 0.75;
    color: #963C00 !important;
    vertical-align: middle;
    transition: transform 0.22s ease, opacity 0.22s ease, color 0.22s ease;
}

.skh-header .nav-link:hover i {
    opacity: 1;
    color: #C45100 !important;
}

.skh-header .nav-link.active i {
    opacity: 1;
    color: #153D66 !important;
}

.skh-header .nav-item.dropdown.show > .nav-link i,
.skh-header .nav-item.dropdown:hover > .nav-link i {
    transform: rotate(180deg);
}

.skh-header .nav-link.dropdown-toggle::after {
    display: none !important;
}

@keyframes skhDropdownIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skh-header .dropdown-menu li {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    list-style: none !important;
}

.skh-header .dropdown-menu a {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 10px 14px !important;
    color: #3D5673 !important;
    font-size: 0.81rem !important;
    font-weight: 500 !important;
    font-family: 'DM Sans', 'Sora', Arial, sans-serif !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: 0.015em !important;
    border-left: none !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    line-height: 1.35 !important;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease !important;
}

.skh-header .dropdown-menu a::before {
    display: none !important;
}

.skh-header .dropdown-menu a i {
    flex-shrink: 0 !important;
    width: 28px !important;
    height: 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 7px !important;
    background: rgba(21, 61, 102, 0.06) !important;
    font-size: 0.78rem !important;
    color: #4A6280 !important;
    text-align: center !important;
    margin: 0 !important;
    transition: background 0.2s ease, color 0.2s ease !important;
}

.skh-header .dropdown-menu a:hover,
.skh-header .dropdown-menu a:focus {
    background: linear-gradient(90deg, rgba(196, 81, 0, 0.07) 0%, rgba(21, 61, 102, 0.05) 100%) !important;
    color: #0E2D4F !important;
}

.skh-header .dropdown-menu a:hover i,
.skh-header .dropdown-menu a:focus i {
    background: rgba(196, 81, 0, 0.12) !important;
    color: #C45100 !important;
    transform: none !important;
}

.skh-header .dropdown-menu a.active {
    background: rgba(21, 61, 102, 0.07) !important;
    color: #153D66 !important;
    font-weight: 600 !important;
    box-shadow: inset 3px 0 0 #C45100 !important;
}

.skh-header .dropdown-menu a.active i {
    background: rgba(21, 61, 102, 0.1) !important;
    color: #153D66 !important;
}

@media (min-width: 993px) {
    .skh-header .nav-item.dropdown {
        position: relative !important;
    }

    .skh-header .nav-item.dropdown:hover .dropdown-menu:not(.show),
    .skh-header .dropdown:hover .dropdown-menu:not(.show) {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .skh-header .dropdown-menu {
        position: fixed !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        float: none !important;
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        min-width: 232px !important;
        max-width: min(320px, calc(100vw - 24px)) !important;
        max-height: min(360px, calc(100vh - 120px)) !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        margin: 0 !important;
        padding: 8px !important;
        background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%) !important;
        border: 1px solid rgba(21, 61, 102, 0.1) !important;
        border-radius: 12px !important;
        box-shadow:
            0 20px 48px rgba(12, 26, 46, 0.12),
            0 8px 20px rgba(12, 26, 46, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
        z-index: 100000 !important;
        list-style: none !important;
        animation: none !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        transition: opacity 0.18s ease, visibility 0.18s ease !important;
    }

    .skh-header .dropdown-menu::before {
        content: '' !important;
        position: absolute !important;
        top: -8px !important;
        left: 0 !important;
        right: 0 !important;
        height: 8px !important;
    }

    .skh-header .dropdown-menu::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 14px !important;
        right: 14px !important;
        height: 2px !important;
        border-radius: 0 0 2px 2px !important;
        background: linear-gradient(90deg, #C45100 0%, #153D66 100%) !important;
        pointer-events: none !important;
    }

    .skh-header .dropdown-menu a {
        margin: 2px 0 !important;
        border-radius: 8px !important;
    }

    .skh-header .nav-item.dropdown.show > .dropdown-menu,
    .skh-header .nav-item.dropdown.open > .dropdown-menu,
    .skh-header .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        animation: skhDropdownIn 0.22s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .skh-header .dropdown-menu::-webkit-scrollbar {
        width: 5px !important;
    }

    .skh-header .dropdown-menu::-webkit-scrollbar-track {
        background: transparent !important;
    }

    .skh-header .dropdown-menu::-webkit-scrollbar-thumb {
        background: rgba(21, 61, 102, 0.22) !important;
        border-radius: 6px !important;
    }
}

.skh-header .nav-item-call-btn.skh-nav-call {
    display: none !important;
}

.skh-top-search {
    position: relative;
    width: auto !important;
    max-width: none;
    flex-shrink: 0;
}

.skh-top-search-field {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 32px;
    height: 32px;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.skh-top-search-field:focus-within {
    width: 168px;
    padding: 0 10px 0 12px;
    gap: 6px;
    justify-content: flex-start;
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 18px rgba(10, 30, 50, 0.18);
}

.skh-top-search-field .navbar-search-input {
    font-weight: 500;
    border: none;
    background: transparent;
    outline: none;
    flex: 0 0 0;
    min-width: 0;
    width: 0;
    opacity: 0;
    padding: 0;
    font-size: 0.78rem;
    color: #1a3348;
    font-family: 'Poppins', sans-serif;
    transition: opacity 0.2s ease 0.08s, width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.skh-top-search-field:focus-within .navbar-search-input {
    flex: 1 1 auto;
    width: 100%;
    opacity: 1;
}

.skh-top-search-field .navbar-search-input::placeholder {
    color: #8a9db0;
    font-weight: 400;
}

.skh-top-search-field .navbar-search-button {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    padding: 0;
    font-size: 0.74rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.skh-top-search-field:focus-within .navbar-search-button {
    width: 18px;
    height: 18px;
    color: var(--skh-orange);
}

.skh-top-search-field .navbar-search-button:hover {
    color: #ffffff;
}

.skh-top-search-field:focus-within .navbar-search-button:hover {
    color: var(--skh-orange-hover);
}

.skh-top-search .search-dropdown-results {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    min-width: 280px;
    z-index: 1200;
}

.skh-menu-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(12, 26, 46, 0.14);
    border-radius: 8px;
    background: #fff;
    color: var(--skh-navy);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.88rem;
    padding: 0;
    flex-shrink: 0;
    margin-left: auto;
}

.skh-menu-btn:hover {
    background: var(--skh-orange-soft);
    border-color: var(--skh-orange-line);
    color: var(--skh-orange);
}

.skh-header .navbar-toggler.skh-nav-toggler {
    display: none !important;
}

.skh-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--skh-orange) !important;
    color: var(--skh-white) !important;
    padding: 4px 10px 4px 14px !important;
    border-radius: 50px !important;
    font-size: 0.84rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif !important;
    white-space: nowrap;
    border: none !important;
    line-height: 1.15;
    box-shadow: 0 3px 12px rgba(21, 61, 102, 0.32);
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.skh-apply-btn--top {
    flex-shrink: 0;
    height: 32px;
    padding: 0 14px !important;
    gap: 7px;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    border-radius: 8px !important;
    background: linear-gradient(180deg, #1a4a7a 0%, #153D66 55%, #123556 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 3px 14px rgba(10, 30, 50, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.skh-apply-btn--top:hover {
    background: linear-gradient(180deg, #1e5288 0%, #184870 55%, #153D66 100%) !important;
    color: #ffffff !important;
    border-color: rgba(196, 81, 0, 0.42) !important;
    box-shadow: 0 5px 18px rgba(10, 30, 50, 0.38), inset 0 0 0 1px rgba(196, 81, 0, 0.22) !important;
    transform: translateY(-1px);
}

.skh-apply-btn--top .skh-apply-arrow {
    font-size: 0.62rem;
    opacity: 0.92;
    transition: transform 0.2s ease;
}

.skh-apply-btn--top:hover .skh-apply-arrow {
    transform: translateX(2px);
}

.skh-apply-btn:hover {
    background: var(--skh-orange-hover) !important;
    color: var(--skh-white) !important;
    box-shadow: 0 5px 16px rgba(14, 45, 79, 0.4);
    transform: translateY(-1px);
}

.skh-apply-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    color: #fff;
}

.skh-header .navbar-top-row,
.skh-header .navbar-logo-section {
    display: none !important;
}

.skh-header .skh-marquee-row {
    display: none !important;
}

.skh-header + .body,
.skh-header ~ .body {
    position: relative;
    z-index: 1;
}

.skh-header.is-scrolled + .body,
.skh-header.is-scrolled ~ .body {
    z-index: 1;
}

@media (max-width: 1400px) {
    .skh-header .navbar-title-section .college-name.skh-brand-title {
        font-size: 2.08rem !important;
    }

    .skh-header .nav-link {
        padding: 9px 9px !important;
        font-size: 0.69rem !important;
        letter-spacing: 0.05em !important;
    }
}

@media (max-width: 1200px) {
    .skh-header .navbar-title-section .college-name.skh-brand-title {
        font-size: 1.84rem !important;
    }

    .skh-top-search-field:focus-within {
        width: 148px;
    }

    .skh-top-ticker-track {
        animation-duration: 36s;
    }
}

@media (max-width: 992px) {
    .skh-header {
        --skh-logo-left: 12px;
        --skh-logo-size: 76px;
        --skh-logo-block-height: 54px;
        --skh-mobile-clear: calc(var(--skh-logo-left) + var(--skh-logo-size) + 10px);
    }

    .skh-top-bar-inner {
        flex-wrap: nowrap;
        align-items: center;
        gap: 6px;
        padding: 4px 10px;
        min-height: 34px;
    }

    .skh-top-ticker {
        flex: 1 1 auto;
        min-width: 0;
        order: 1;
    }

    .skh-top-actions {
        flex: 0 0 auto;
        order: 2;
        margin-left: auto;
        gap: 5px;
    }

    .skh-top-ticker-track {
        animation-duration: 28s;
    }

    .skh-top-item {
        padding: 0 8px;
        font-size: 0.8rem !important;
    }

    /* Logo sits below orange bar; overlaps white nav strip only */
    .skh-header-seam {
        position: relative;
        flex: 0 0 2px;
        height: 2px;
        min-height: 2px;
        max-height: 2px;
        background: var(--skh-gold-seam);
        padding: 0;
        margin: 0;
        overflow: visible;
        z-index: 1085;
        pointer-events: none;
    }

    .skh-header-seam .skh-header-logo {
        pointer-events: auto;
    }

    /* Brand lockup is desktop-only; mobile uses header logo only */
    .skh-brand-row {
        display: none !important;
    }

    .skh-header .navbar-main .skh-header-body {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .skh-nav-row {
        border-top: none !important;
        background: var(--skh-white) !important;
        padding: 0 12px 0 var(--skh-mobile-clear) !important;
        min-height: 54px;
    }

    .skh-nav-inner,
    .skh-header .navbar-menu-section {
        flex-wrap: wrap;
        justify-content: flex-end !important;
        align-items: center !important;
        min-height: 54px;
        gap: 0 !important;
    }

    .skh-header .navbar-toggler.skh-nav-toggler {
        display: none !important;
    }

    .skh-menu-btn {
        display: inline-flex !important;
        width: 44px;
        height: 44px;
        margin-left: auto;
        border: none;
        border-radius: 6px;
        background: transparent;
        color: var(--skh-brand-ink);
        font-size: 1.2rem;
        align-items: center;
        justify-content: center;
    }

    .skh-menu-btn:hover {
        background: rgba(6, 16, 31, 0.06);
        border-color: transparent;
        color: var(--skh-brand-ink);
    }

    .skh-header .navbar-collapse {
        order: 3;
        flex-basis: 100%;
        display: none !important;
        width: 100% !important;
    }

    .skh-header .navbar-collapse.show {
        display: flex !important;
    }

    .skh-header .navbar-nav {
        flex-direction: column !important;
        width: 100% !important;
        background: var(--skh-white);
        border-radius: 8px;
        margin-top: 4px;
        margin-bottom: 8px;
        border: 1px solid rgba(6, 16, 31, 0.08);
        box-shadow: 0 8px 24px rgba(6, 16, 31, 0.08);
    }

    .skh-header .nav-link {
        width: 100% !important;
        border-bottom: 1px solid rgba(6, 16, 31, 0.06) !important;
        font-weight: 700 !important;
        letter-spacing: 0.1em !important;
        padding: 12px 16px !important;
    }

    .skh-header .nav-link::after {
        display: none !important;
    }

    .skh-header .nav-link.active {
        background: rgba(21, 61, 102, 0.06) !important;
        border-left: 4px solid #153D66 !important;
        color: #0E2D4F !important;
        font-weight: 700 !important;
    }

    .skh-header .nav-item.dropdown > .dropdown-menu {
        position: static !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        float: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        max-height: none !important;
        overflow: visible !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: rgba(6, 16, 31, 0.03) !important;
        animation: none !important;
        z-index: auto !important;
    }

    .skh-header .nav-item.dropdown > .dropdown-menu::before {
        display: none !important;
    }

    .skh-header .nav-item.dropdown.show > .dropdown-menu,
    .skh-header .nav-item.dropdown.show > .dropdown-menu.show {
        display: block !important;
    }

    .skh-header .dropdown-menu a {
        margin: 0 !important;
        padding: 10px 16px 10px 28px !important;
        font-size: 0.78rem !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-bottom: 1px solid rgba(6, 16, 31, 0.05) !important;
        box-shadow: none !important;
    }

    .skh-header .dropdown-menu a i {
        width: 22px !important;
        height: 22px !important;
        border-radius: 6px !important;
    }

    .skh-header .dropdown-menu a:hover,
    .skh-header .dropdown-menu a:focus,
    .skh-header .dropdown-menu a.active {
        padding-left: 28px !important;
        border-left: none !important;
        box-shadow: none !important;
    }

    .skh-header .dropdown-menu a.active {
        box-shadow: inset 3px 0 0 #C45100 !important;
    }

    .skh-header .nav-item.dropdown.show > .nav-link i {
        transform: rotate(180deg);
    }

    .skh-header .nav-item-call-btn.skh-nav-call {
        display: flex !important;
    }

    .skh-apply-btn--top {
        padding: 0 10px !important;
        font-size: 0.74rem !important;
        height: 30px;
    }

    .skh-top-search-field {
        width: 30px;
        height: 30px;
    }

    .skh-top-search-field:focus-within {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .skh-header {
        --skh-logo-left: 10px;
        --skh-logo-size: 70px;
        --skh-logo-block-height: 50px;
        --skh-mobile-clear: calc(var(--skh-logo-left) + var(--skh-logo-size) + 8px);
    }

    .skh-top-bar-inner {
        padding-left: 8px;
        padding-right: 8px;
        gap: 4px;
    }

    .skh-top-ticker-track {
        animation-duration: 24s;
    }

    .skh-top-item {
        padding: 0 6px;
        font-size: 0.76rem !important;
    }

    .skh-nav-row {
        padding-left: var(--skh-mobile-clear) !important;
        padding-right: 10px !important;
        min-height: 50px;
    }

    .skh-nav-inner,
    .skh-header .navbar-menu-section {
        min-height: 50px;
    }

    .skh-top-search-field:focus-within {
        width: 108px;
    }

    .skh-apply-btn--top {
        padding: 0 8px !important;
        font-size: 0.72rem !important;
    }

    .skh-apply-btn--top .skh-apply-arrow {
        display: none;
    }
}

/* ── Home stats bar (below slider) — minimal reference style ── */
.skh-home-stats-wrap {
    position: relative;
    z-index: 12;
    margin-top: -42px;
    margin-bottom: 28px;
    padding: 0 15px;
}

/* Stats bar → About: combined gap ~96px (stats mb + about mt) */
.skh-home-stats-wrap + .about-home-section.section-spacing {
    margin-top: 72px !important;
}

.skh-home-stats-bar {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    max-width: 1140px;
    margin: 0 auto;
    padding: 16px 8px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow:
        0 18px 48px rgba(15, 48, 82, 0.16),
        0 6px 18px rgba(196, 81, 0, 0.1),
        0 0 0 1px rgba(21, 61, 102, 0.08);
    border: 1px solid rgba(21, 61, 102, 0.12);
    border-top: 3px solid #c45100;
}

.skh-home-stats-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4px 8px;
    position: relative;
}

.skh-home-stats-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 14%;
    bottom: 14%;
    width: 1px;
    background: rgba(12, 26, 46, 0.1);
}

.skh-home-stats-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: auto;
    height: auto;
    margin-bottom: 6px;
    font-size: 1.35rem;
    line-height: 1;
}

.skh-home-stats-icon--orange {
    color: #C45100;
    background: none;
    border: none;
    box-shadow: none;
}

.skh-home-stats-icon--navy-orange {
    color: #153D66;
    background: none;
    border: none;
    box-shadow: none;
}

.skh-home-stats-icon--navy-orange i {
    background: linear-gradient(135deg, #153D66 0%, #153D66 52%, #C45100 53%, #C45100 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.skh-home-stats-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.skh-home-stats-value {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.15;
    color: #153D66;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
    white-space: nowrap;
}

.skh-home-stats-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.25;
    color: #6b7280;
    letter-spacing: 0.01em;
}

@media (max-width: 991px) {
    .skh-home-stats-wrap {
        margin-top: -32px;
        margin-bottom: 18px;
    }

    .skh-home-stats-wrap + .about-home-section.section-spacing {
        margin-top: 24px !important;
    }

    .skh-home-stats-bar {
        flex-wrap: wrap;
        padding: 12px 8px;
        border-radius: 10px;
    }

    .skh-home-stats-item {
        flex: 1 1 33.333%;
        padding: 8px 6px;
    }

    .skh-home-stats-item:not(:last-child)::after {
        display: none;
    }

    .skh-home-stats-item:nth-child(1),
    .skh-home-stats-item:nth-child(2),
    .skh-home-stats-item:nth-child(4),
    .skh-home-stats-item:nth-child(5) {
        border-right: 1px solid rgba(12, 26, 46, 0.08);
    }

    .skh-home-stats-item:nth-child(1),
    .skh-home-stats-item:nth-child(2),
    .skh-home-stats-item:nth-child(3) {
        border-bottom: 1px solid rgba(12, 26, 46, 0.08);
    }

    .skh-home-stats-icon {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .skh-home-stats-value {
        font-size: 1.05rem;
    }

    .skh-home-stats-label {
        font-size: 0.64rem;
    }
}

@media (max-width: 576px) {
    .about-home-section + .skh-programs-heading-block {
        margin-top: 52px !important;
    }

    .skh-programs-ecosystem + .skh-placement-home.section-spacing,
    .skh-programs-ecosystem + .placement-banner-section.section-spacing {
        margin-top: 84px !important;
    }

    .skh-placement-header {
        margin-bottom: clamp(24px, 5vw, 36px);
    }

    .skh-placement-header-inner {
        gap: 6px;
    }

    .skh-placement-title {
        font-size: clamp(1.65rem, 5.5vw, 2rem);
        line-height: 1.14;
    }

    .skh-placement-lead {
        line-height: 1.52;
    }
}

@media (max-width: 575px) {
    .skh-home-stats-wrap + .about-home-section.section-spacing {
        margin-top: 20px !important;
    }

    .skh-home-stats-wrap {
        margin-top: -28px;
        margin-bottom: 16px;
        padding: 0 10px;
    }

    .skh-home-stats-bar {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: repeat(2, auto);
        align-items: stretch;
        gap: 0;
        padding: 10px 4px;
        border-radius: 12px;
        overflow: hidden;
    }

    .skh-home-stats-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex: none;
        width: auto;
        min-width: 0;
        min-height: 0;
        padding: 8px 4px;
        box-sizing: border-box;
        border-right: none !important;
        border-bottom: none !important;
    }

    .skh-home-stats-item:not(:last-child)::after {
        display: none !important;
    }

    .skh-home-stats-item:nth-child(1),
    .skh-home-stats-item:nth-child(2),
    .skh-home-stats-item:nth-child(4),
    .skh-home-stats-item:nth-child(5) {
        border-right: 1px solid rgba(21, 61, 102, 0.08) !important;
    }

    .skh-home-stats-item:nth-child(1),
    .skh-home-stats-item:nth-child(2),
    .skh-home-stats-item:nth-child(3) {
        border-bottom: 1px solid rgba(21, 61, 102, 0.08) !important;
    }

    .skh-home-stats-icon {
        width: auto;
        height: auto;
        margin: 0 0 4px;
        font-size: 1rem;
        line-height: 1;
    }

    .skh-home-stats-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-width: 0;
        min-height: 0;
        text-align: center;
    }

    .skh-home-stats-value {
        width: 100%;
        margin: 0 0 1px;
        font-size: clamp(0.72rem, 3.2vw, 0.92rem);
        line-height: 1.15;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .skh-home-stats-label {
        width: 100%;
        margin: 0;
        font-size: clamp(0.52rem, 2.4vw, 0.62rem);
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ── Home about section — minimal premium content ── */
.skh-about-content {
    position: relative;
    padding: 0 0 0 18px;
    max-width: 520px;
}

.skh-about-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, #C45100 0%, rgba(196, 81, 0, 0.35) 45%, rgba(21, 61, 102, 0.12) 100%);
}

.skh-about-copy {
    flex: 1 1 auto;
}

.skh-about-foot {
    flex-shrink: 0;
    padding-top: 8px;
}

.skh-about-line {
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 18px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(196, 81, 0, 0.5) 0%, rgba(196, 81, 0, 0.18) 55%, rgba(21, 61, 102, 0.08) 100%);
}

.skh-about-label {
    display: inline-block;
    margin-bottom: 14px;
    padding-left: 0;
    border-left: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C45100;
    line-height: 1.2;
}

.skh-about-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.85rem, 3.2vw, 2.45rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #153D66;
    margin: 0 0 18px;
}

.skh-about-lead {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    color: #3d4f63;
    margin: 0 0 14px;
}

.skh-about-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.85;
    color: #5a6578;
    margin: 0 0 15px;
}

.about-home-section .skh-about-text {
    text-align: justify;
}

.skh-about-text--last {
    margin-bottom: 0;
}

.skh-about-text strong,
.skh-about-text b {
    color: #C45100;
    font-weight: 600;
}

.skh-about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: #153D66;
    padding-bottom: 0;
    border-bottom: none;
    transition: color 0.25s ease, gap 0.25s ease;
}

.skh-about-link i {
    font-size: 0.78rem;
    color: #C45100;
    transition: transform 0.25s ease;
}

.skh-about-link:hover {
    color: #C45100;
    text-decoration: none;
}

.skh-about-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .skh-about-content {
        max-width: none;
        padding-top: 0;
        margin-top: 0;
    }

    .skh-about-title {
        margin-bottom: 14px;
    }

    .skh-about-text {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .about-home-row {
        --bs-gutter-y: 0.5rem;
        row-gap: 0.5rem !important;
    }

    .about-image-wrapper--cutout .about-founder-cutout {
        max-height: 360px;
    }
}

/* ── Home programs section — pathway tile grid (reference layout) ── */
.skh-programs-ecosystem {
    background: #ffffff;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}

/* Programs → Placement */
.skh-programs-ecosystem + .skh-placement-home.section-spacing,
.skh-programs-ecosystem + .placement-banner-section.section-spacing {
    margin-top: clamp(120px, 12.5vw, 158px) !important;
}

/* Placement → next section: single gap */
.skh-placement-home + section.section-spacing {
    margin-top: 80px !important;
}

/* ── Home placement section heading (matches OUR PROGRAMS) ── */
.skh-placement-home {
    background: #ffffff;
    padding: 0 0 clamp(8px, 1.5vw, 16px);
    overflow: visible;
}

.skh-placement-header {
    text-align: center;
    margin-bottom: clamp(32px, 4.5vw, 52px);
}

.skh-placement-header-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
}

.skh-placement-home .skh-programs-eyebrow {
    margin-bottom: 0;
}

.skh-placement-home .skh-programs-eyebrow-text {
    padding: 0 4px 6px;
}

.skh-placement-home .skh-programs-eyebrow-text::after {
    bottom: 0;
    height: 2px;
    width: min(100%, 48px);
}

.skh-placement-title {
    font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: #153D66 !important;
    margin: 0;
    text-wrap: balance;
}

.skh-placement-lead {
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.08rem);
    font-weight: 400;
    line-height: 1.58;
    color: #4a5568 !important;
    margin: 0 auto;
    max-width: 36em;
    text-wrap: pretty;
}

.skh-placement-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: clamp(4px, 1vw, 8px);
}

.skh-placement-actions .skh-programs-btn {
    gap: 8px;
    min-width: 168px;
    padding: 13px 26px;
}

.skh-placement-home .skh-placement-title,
.skh-placement-home .skh-placement-lead,
.skh-placement-home .skh-programs-eyebrow-text {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Programs section heading — premium eyebrow (OUR PROGRAMS) */
.skh-programs-heading-block {
    background: #ffffff;
    padding: 0 15px clamp(18px, 2.5vw, 26px);
    text-align: center;
}

.skh-programs-heading-inner {
    max-width: 800px;
    margin: 0 auto;
}

.skh-programs-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2.2vw, 24px);
    max-width: 100%;
}

.skh-programs-eyebrow-line {
    flex: 0 1 clamp(32px, 6vw, 72px);
    width: clamp(32px, 6vw, 72px);
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(21, 61, 102, 0.15) 15%, #C45100 100%);
}

.skh-programs-eyebrow-line--right {
    background: linear-gradient(90deg, #C45100 0%, rgba(21, 61, 102, 0.15) 85%, transparent 100%);
}

.skh-programs-eyebrow-text {
    display: inline-block;
    position: relative;
    padding: 0 4px 12px;
    font-family: 'Sora', 'DM Sans', sans-serif;
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.15;
    color: #153D66 !important;
    white-space: nowrap;
}

.skh-programs-eyebrow-text::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(100%, 56px);
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #C45100 0%, #e07a2f 50%, #153D66 100%);
}

@media (max-width: 575px) {
    .skh-programs-eyebrow {
        gap: 10px;
    }

    .skh-programs-eyebrow-line {
        width: clamp(24px, 8vw, 40px);
        flex-basis: clamp(24px, 8vw, 40px);
    }

    .skh-programs-eyebrow-text {
        font-size: clamp(1rem, 4.5vw, 1.2rem);
        font-weight: 800;
        letter-spacing: 0.16em;
        white-space: normal;
        text-align: center;
        max-width: 12em;
    }
}

/* About → Programs heading */
.about-home-section + .skh-programs-heading-block {
    margin-top: clamp(72px, 7.5vw, 92px) !important;
}

.skh-programs-ecosystem {
    padding-top: 0;
}

.skh-programs-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(28px, 4vw, 40px);
    align-items: center;
}

.skh-programs-tiles-col {
    min-width: 0;
    padding-left: clamp(12px, 1.8vw, 20px);
}

.skh-programs-copy-col {
    min-width: 0;
    padding: 0 clamp(16px, 4vw, 48px);
}

.skh-programs-tile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

/* Five-tile variant — 2 tiles on the first row, 3 tiles on the second */
.skh-programs-tile-grid--five {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.skh-programs-tile-grid--five .skh-programs-tile:nth-child(1),
.skh-programs-tile-grid--five .skh-programs-tile:nth-child(2) {
    grid-column: span 3;
}

.skh-programs-tile-grid--five .skh-programs-tile:nth-child(3),
.skh-programs-tile-grid--five .skh-programs-tile:nth-child(4),
.skh-programs-tile-grid--five .skh-programs-tile:nth-child(5) {
    grid-column: span 2;
}

@media (max-width: 575px) {
    .skh-programs-tile-grid--five {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .skh-programs-tile-grid--five .skh-programs-tile:nth-child(1),
    .skh-programs-tile-grid--five .skh-programs-tile:nth-child(2),
    .skh-programs-tile-grid--five .skh-programs-tile:nth-child(3),
    .skh-programs-tile-grid--five .skh-programs-tile:nth-child(4) {
        grid-column: span 1;
    }

    .skh-programs-tile-grid--five .skh-programs-tile:nth-child(5) {
        grid-column: span 2;
    }
}

.skh-programs-tile {
    position: relative;
    min-height: clamp(190px, 42vw, 280px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    text-decoration: none;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skh-programs-tile:hover,
.skh-programs-tile:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(21, 61, 102, 0.18);
    text-decoration: none;
}

.skh-programs-tile-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.45s ease;
}

.skh-programs-tile:hover .skh-programs-tile-bg,
.skh-programs-tile:focus-visible .skh-programs-tile-bg {
    transform: scale(1.05);
}

/* Default image tint — navy / orange alternating (unchanged) */
.skh-programs-tile-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.skh-programs-tile--overlay-navy .skh-programs-tile-overlay {
    background: linear-gradient(
        180deg,
        rgba(21, 61, 102, 0.18) 0%,
        rgba(21, 61, 102, 0.5) 42%,
        rgba(0, 0, 0, 0.82) 100%
    );
}

.skh-programs-tile--overlay-orange .skh-programs-tile-overlay {
    background: linear-gradient(
        180deg,
        rgba(196, 81, 0, 0.15) 0%,
        rgba(160, 65, 0, 0.48) 42%,
        rgba(0, 0, 0, 0.84) 100%
    );
}

/* Hover: minimal read overlay rises bottom → up (separate from brand tint) */
.skh-programs-tile-hover-rise {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 100%;
    pointer-events: none;
    transform: scaleY(0);
    transform-origin: bottom center;
    background: linear-gradient(
        0deg,
        rgba(14, 32, 50, 0.94) 0%,
        rgba(18, 40, 60, 0.9) 55%,
        rgba(22, 48, 72, 0.82) 100%
    );
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.skh-programs-tile:hover .skh-programs-tile-hover-rise,
.skh-programs-tile:focus-visible .skh-programs-tile-hover-rise {
    transform: scaleY(1);
}

.skh-programs-tile:hover .skh-programs-tile-overlay,
.skh-programs-tile:focus-visible .skh-programs-tile-overlay {
    opacity: 0.35;
}

.skh-programs-tile-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin-top: auto;
    padding: 0;
    pointer-events: none;
}

.skh-programs-tile-panel {
    display: block;
    width: 100%;
    padding: clamp(18px, 2.4vw, 26px) clamp(18px, 2.4vw, 26px) clamp(8px, 1.2vw, 12px);
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.72) 100%
    );
    transition: background 0.4s ease, padding 0.4s ease;
}

.skh-programs-tile:hover .skh-programs-tile-panel,
.skh-programs-tile:focus-visible .skh-programs-tile-panel {
    padding-bottom: clamp(10px, 1.4vw, 14px);
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.35) 100%
    );
}

.skh-programs-ecosystem .skh-programs-tile,
.skh-programs-ecosystem .skh-programs-tile:hover,
.skh-programs-ecosystem .skh-programs-tile:focus,
.skh-programs-ecosystem .skh-programs-tile:focus-visible,
.skh-programs-ecosystem .skh-programs-tile:visited,
.skh-programs-ecosystem .skh-programs-tile .skh-programs-tile-title,
.skh-programs-ecosystem .skh-programs-tile .skh-programs-tile-btn {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.skh-programs-ecosystem .skh-programs-tile .skh-programs-tile-sub {
    visibility: visible !important;
    opacity: 1 !important;
}

.skh-programs-tile-title {
    display: block;
    margin: 0 0 8px;
    font-family: 'Sora', 'DM Sans', sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

/* Always show 2-line preview; full text on hover */
.skh-programs-tile-sub {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: clamp(0.92rem, 1.2vw, 1.05rem);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.88) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.88) !important;
    transition: opacity 0.35s ease, color 0.35s ease;
}

.skh-programs-tile:hover .skh-programs-tile-sub,
.skh-programs-tile:focus-visible .skh-programs-tile-sub {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1;
}

.skh-programs-tile-btn {
    display: inline-block;
    margin: 0 clamp(18px, 2.4vw, 26px) clamp(16px, 2.2vw, 22px);
    padding: 11px 20px;
    border-radius: 3px;
    font-family: 'Sora', 'DM Sans', sans-serif;
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.skh-programs-tile-btn--orange {
    background: #C45100;
}

.skh-programs-tile-btn--navy {
    background: #153D66;
}

.skh-programs-tile:hover .skh-programs-tile-btn,
.skh-programs-tile:focus-visible .skh-programs-tile-btn {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (hover: none) {
    .skh-programs-tile-hover-rise {
        transform: scaleY(0.72);
    }

    .skh-programs-tile-sub {
        -webkit-line-clamp: 3;
        line-clamp: 3;
        font-size: clamp(0.88rem, 2.8vw, 0.98rem);
    }
}

.skh-programs-copy {
    position: relative;
    z-index: 1;
    padding: clamp(8px, 1.5vw, 16px) 0 clamp(8px, 1.5vw, 16px) 20px;
    max-width: 420px;
}

.skh-programs-copy-deco {
    position: absolute;
    top: 8px;
    right: -10px;
    z-index: 0;
    width: 260px;
    height: 260px;
    pointer-events: none;
    opacity: 0.32;
    background:
        radial-gradient(circle at center, rgba(21, 61, 102, 0.14) 0%, transparent 62%),
        radial-gradient(circle, rgba(21, 61, 102, 0.22) 1.5px, transparent 1.5px);
    background-size: 100% 100%, 14px 14px;
    background-position: center, 0 0;
    mask-image: radial-gradient(circle at 30% 40%, #000 0%, transparent 72%);
    -webkit-mask-image: radial-gradient(circle at 30% 40%, #000 0%, transparent 72%);
}

.skh-programs-copy::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, #C45100 0%, rgba(196, 81, 0, 0.35) 50%, rgba(21, 61, 102, 0.15) 100%);
}

.skh-programs-label {
    position: relative;
    z-index: 4;
    display: block;
    margin: 0 0 14px;
    font-family: 'Sora', 'DM Sans', sans-serif;
    font-size: clamp(0.88rem, 1.05vw, 0.98rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C45100 !important;
    line-height: 1.2;
    opacity: 1 !important;
    visibility: visible !important;
}

.skh-programs-label--main {
    font-weight: 800;
    color: #B84A00 !important;
}

.skh-programs-title {
    position: relative;
    z-index: 2;
    font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: -0.025em;
    color: #153D66 !important;
    margin: 0 0 16px;
    text-wrap: balance;
}

.skh-programs-text {
    position: relative;
    z-index: 2;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: clamp(0.96rem, 1.05vw, 1.02rem);
    font-weight: 400;
    line-height: 1.72;
    color: #4a5568 !important;
    margin: 0 0 24px;
    max-width: 38em;
}

.skh-programs-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Keep section text visible even if theme animation JS is delayed */
.skh-programs-ecosystem .appear-animation,
.about-home-section .skh-about-content .appear-animation,
.about-home-section .skh-about-label,
.about-home-section .skh-about-title,
.about-home-section .skh-about-lead,
.about-home-section .skh-about-text {
    opacity: 1 !important;
    visibility: visible !important;
}

.skh-programs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 136px;
    padding: 12px 22px;
    border-radius: 4px;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.skh-programs-btn:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 61, 102, 0.18);
}

.skh-programs-btn--orange {
    background: #C45100;
}

.skh-programs-btn--orange:hover {
    background: #a84400;
}

.skh-programs-btn--navy {
    background: #153D66;
}

.skh-programs-btn--navy:hover {
    background: #0f2f4f;
}

@media (min-width: 992px) {
    .skh-programs-layout {
        grid-template-columns: minmax(0, 62vw) minmax(260px, 1fr);
        gap: clamp(16px, 2vw, 32px);
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .skh-programs-tiles-col {
        padding-left: clamp(14px, 1.6vw, 22px);
        margin-left: 0;
    }

    .skh-programs-copy-col {
        padding: 0 clamp(40px, 5vw, 88px) 0 clamp(12px, 1.5vw, 24px);
    }

    .skh-programs-tile {
        min-height: clamp(228px, 26vw, 308px);
    }
}

@media (min-width: 1200px) {
    .skh-programs-layout {
        grid-template-columns: minmax(0, 63vw) minmax(300px, 1fr);
    }

    .skh-programs-tile {
        min-height: clamp(250px, 22vw, 320px);
    }

    .skh-programs-copy {
        max-width: 380px;
    }
}

@media (max-width: 991px) {
    .about-home-section {
        margin-bottom: 0 !important;
        padding-top: 1.25rem !important;
        padding-bottom: clamp(24px, 4vw, 36px) !important;
    }

    .skh-programs-heading-block {
        padding-bottom: clamp(12px, 2vw, 18px);
    }

    .skh-programs-copy {
        max-width: none;
        padding-top: 4px;
    }

    .skh-programs-copy-deco {
        width: 220px;
        height: 220px;
        right: 0;
    }
}

@media (max-width: 575px) {
    .skh-programs-ecosystem {
        padding: clamp(36px, 8vw, 48px) 0;
    }

    .skh-programs-copy-col {
        padding: 0 16px;
    }

    .skh-programs-tile-grid {
        gap: 5px;
    }

    .skh-programs-tile {
        min-height: clamp(165px, 44vw, 200px);
    }

    .skh-programs-tile-title {
        font-size: clamp(1.2rem, 4.5vw, 1.4rem);
    }

    .skh-programs-tile-panel {
        padding: 14px 14px 8px;
    }

    .skh-programs-tile-btn {
        margin: 0 14px 12px;
        font-size: 0.8rem;
    }

    .skh-programs-actions {
        flex-direction: column;
    }

    .skh-programs-btn {
        width: 100%;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIAL CAROUSEL - VISIBILITY FIX
   ═══════════════════════════════════════════════════════════════════ */

.testimonials-carousel {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.testimonials-carousel * {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.skh-testimonials-home .carousel {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Testimonial Carousel Inner */
.skh-testimonials-home .carousel .carousel-inner {
    display: block !important;
}

/* Testimonial Carousel Items - Hidden by default, show when active */
.skh-testimonials-home .carousel .carousel-item {
    display: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.skh-testimonials-home .carousel .carousel-item.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Testimonial Card - Ensure visibility */
.skh-testimonials-home .carousel .testimonial-card,
.skh-testimonials-home .carousel .skh-testimonial-slide {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.skh-testimonials-home .appear-animation,
.skh-testimonials-home .skh-testimonials-title,
.skh-testimonials-home .skh-testimonial-quote,
.skh-testimonials-home .skh-testimonial-quote *,
.skh-testimonials-home .testimonial-text,
.skh-testimonials-home .testimonial-text *,
.skh-testimonials-home .skh-testimonial-name,
.skh-testimonials-home .skh-testimonial-role,
.skh-testimonials-home .skh-testimonial-rating,
.skh-testimonials-home .skh-testimonials-carousel {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ═══════════════════════════════════════════════════════════════════
   PROGRAMS CAROUSEL - FIXED: Horizontal Layout with Bootstrap Grid
   ═══════════════════════════════════════════════════════════════════ */

.programs-carousel {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.programs-carousel * {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

#programsCarousel {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Carousel Inner - Keep as block for proper carousel behavior */
#programsCarousel .carousel-inner {
    display: block !important;
}

/* Carousel Items - Hidden by default, show when active */
#programsCarousel .carousel-item {
    display: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#programsCarousel .carousel-item.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Grid rows inside carousel items - maintain horizontal layout with 3 columns */
#programsCarousel .carousel-item .row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    width: 100% !important;
}

/* Grid columns - full width within grid */
#programsCarousel .carousel-item .col-lg-4,
#programsCarousel .carousel-item .col-md-6 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

#programsCarousel .carousel-item .col-lg-4 > *,
#programsCarousel .carousel-item .col-md-6 > * {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   HOME — CAMPUS LIFE MOMENTS (gallery section)
   ═══════════════════════════════════════════════════════════════════ */

.skh-placement-home + .skh-campus-moments.section-spacing {
    margin-top: 80px !important;
}

.skh-placement-home + .skh-recruiters-home.section-spacing {
    margin-top: 80px !important;
}

.skh-recruiters-home + .skh-campus-moments.section-spacing {
    margin-top: 80px !important;
}

.skh-campus-moments + section.section-spacing {
    margin-top: 80px !important;
}

.skh-campus-moments {
    background: transparent;
    padding: 0 0 clamp(12px, 2vw, 24px);
    overflow: visible;
}

.skh-campus-moments-header {
    margin-bottom: clamp(28px, 4vw, 44px);
}

.skh-campus-moments-header--left {
    text-align: left;
}

.skh-campus-moments-header-inner {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(8px, 1.2vw, 14px);
}

.skh-campus-moments-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.skh-campus-moments-eyebrow-line {
    width: 40px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #C45100 0%, rgba(21, 61, 102, 0.2) 100%);
}

.skh-campus-moments-eyebrow-text {
    font-family: 'Sora', 'DM Sans', sans-serif;
    font-size: clamp(0.72rem, 1.1vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C45100;
}

.skh-campus-moments-title {
    font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: #153D66 !important;
    margin: 0;
    text-wrap: balance;
}

.skh-campus-moments-lead {
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.08rem);
    font-weight: 400;
    line-height: 1.58;
    color: #4a5568 !important;
    margin: 0;
    max-width: 36em;
    text-wrap: pretty;
}

.skh-campus-moments-board {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(190px, 1fr));
    gap: clamp(12px, 1.6vw, 18px);
    min-height: clamp(380px, 40vw, 500px);
    margin-bottom: clamp(24px, 3.5vw, 36px);
}

.skh-campus-moments-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: clamp(14px, 1.6vw, 20px);
    text-decoration: none;
    min-height: 0;
    height: 100%;
    background: transparent;
    box-shadow: none;
    border: none;
}

.skh-campus-moments-tile--hero {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: clamp(380px, 40vw, 500px);
}

.skh-campus-moments-tile--small {
    min-height: clamp(185px, 19vw, 240px);
}

.skh-campus-moments-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.skh-campus-moments-tile-label {
    position: absolute;
    left: clamp(14px, 2vw, 18px);
    bottom: clamp(12px, 1.8vw, 16px);
    z-index: 2;
    font-family: 'Sora', 'DM Sans', sans-serif;
    font-size: clamp(0.82rem, 1.2vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
    transition: opacity 0.3s ease;
}

.skh-campus-moments-tile-hover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.78) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.skh-campus-moments-tile-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    font-family: 'Sora', 'DM Sans', sans-serif;
    font-size: clamp(0.78rem, 1.1vw, 0.88rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    transform: translateY(8px);
    transition: transform 0.35s ease;
}

.skh-campus-moments-tile:hover img {
    transform: scale(1.08);
}

.skh-campus-moments-tile:hover .skh-campus-moments-tile-hover {
    opacity: 1;
}

.skh-campus-moments-tile:hover .skh-campus-moments-tile-explore {
    transform: translateY(0);
}

.skh-campus-moments-tile--small:hover .skh-campus-moments-tile-label {
    opacity: 0;
}

.skh-campus-moments-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.skh-campus-moments-actions--left {
    justify-content: flex-start;
}

.skh-campus-moments-actions .skh-programs-btn {
    gap: 8px;
    min-width: 168px;
    padding: 13px 26px;
}

.skh-campus-moments .skh-campus-moments-title,
.skh-campus-moments .skh-campus-moments-lead,
.skh-campus-moments .skh-campus-moments-eyebrow-text {
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 991px) {
    .skh-campus-moments-board {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        min-height: 0;
    }

    .skh-campus-moments-tile--hero {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: clamp(260px, 48vw, 360px);
    }

    .skh-campus-moments-tile--small {
        min-height: clamp(160px, 32vw, 220px);
    }
}

@media (max-width: 575px) {
    .skh-campus-moments-board {
        grid-template-columns: 1fr;
    }

    .skh-campus-moments-tile--hero {
        min-height: clamp(220px, 58vw, 300px);
    }

    .skh-campus-moments-tile--small {
        min-height: clamp(180px, 48vw, 240px);
    }
}

/* ═══════════════════════════════════════════════════════════════════
   HOME — FAQ SPLIT LAYOUT (reference UI, SKH branding)
   ═══════════════════════════════════════════════════════════════════ */

.skh-faqs-split {
    background: transparent;
}

.skh-faqs-split::before,
.skh-faqs-split::after {
    display: none;
}

.skh-faqs-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: stretch;
}

.skh-faqs-visual {
    border-radius: clamp(16px, 2vw, 24px);
    overflow: hidden;
    min-height: clamp(420px, 42vw, 560px);
}

.skh-faqs-visual-img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
}

.skh-faqs-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.skh-faqs-header {
    margin-bottom: clamp(20px, 3vw, 28px);
}

.skh-faqs-title {
    font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.65rem, 2.8vw, 2.25rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f2d4d;
    margin: 0 0 12px;
}

.skh-faqs-header-line {
    display: block;
    width: min(220px, 55%);
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #ea580c 0%, #153d66 55%, #0f2d4d 100%);
    margin-bottom: 12px;
}

.skh-faqs-lead {
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: clamp(0.95rem, 1.1vw, 1.02rem);
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    max-width: 36em;
}

.skh-faqs-split .faqs-accordion {
    max-width: none;
    margin: 0;
}

.skh-faqs-split .faq-item {
    margin-bottom: clamp(10px, 1.5vw, 14px);
    border-radius: clamp(10px, 1.2vw, 14px);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(21, 61, 102, 0.12);
    box-shadow: 0 2px 12px rgba(15, 45, 77, 0.05);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.skh-faqs-split .faq-item:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(15, 45, 77, 0.08);
}

.skh-faqs-split .faq-item.is-open,
.skh-faqs-split .faq-item.active {
    border: 1px solid rgba(21, 61, 102, 0.14);
    box-shadow: 0 8px 24px rgba(21, 61, 102, 0.1);
}

.skh-faqs-split .faq-question {
    width: 100%;
    padding: clamp(14px, 2vw, 18px) clamp(16px, 2.2vw, 22px);
    background: #ffffff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    text-align: left;
    transition: background 0.35s ease, color 0.35s ease;
}

.skh-faqs-split .faq-item:not(.is-open):not(.active) .faq-question {
    background: #ffffff !important;
    outline: none !important;
    border: none !important;
}

.skh-faqs-split .faq-item:not(.is-open):not(.active) .faq-question:hover {
    background: rgba(21, 61, 102, 0.05) !important;
    outline: none !important;
}

.skh-faqs-split .faq-item.is-open > .faq-question,
.skh-faqs-split .faq-item.active > .faq-question,
.skh-faqs-split .faq-question.active {
    background: linear-gradient(90deg, #153d66 0%, #1a4d7a 38%, #c45100 72%, #e07a2f 100%) !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: clamp(10px, 1.2vw, 14px) clamp(10px, 1.2vw, 14px) 0 0;
}

.skh-faqs-split .faq-question-text {
    font-family: 'Sora', 'DM Sans', sans-serif;
    font-size: clamp(0.88rem, 1.15vw, 1rem);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.45;
}

.skh-faqs-split .faq-item.is-open .faq-question-text,
.skh-faqs-split .faq-item.active .faq-question-text,
.skh-faqs-split .faq-question.active .faq-question-text {
    color: #ffffff !important;
}

.skh-faqs-split .skh-faq-num {
    font-weight: 800;
    margin-right: 4px;
    color: #153d66;
    transition: color 0.3s ease;
}

.skh-faqs-split .faq-item:not(.is-open):not(.active) .faq-question:hover .skh-faq-num {
    color: #ea580c;
}

.skh-faqs-split .faq-item.is-open .skh-faq-num,
.skh-faqs-split .faq-item.active .skh-faq-num,
.skh-faqs-split .faq-question.active .skh-faq-num {
    color: #ffffff !important;
}

.skh-faqs-split .faq-icon {
    width: auto;
    height: auto;
    min-width: 20px;
    margin-left: 0;
    background: transparent !important;
    border-radius: 0;
    flex-shrink: 0;
}

.skh-faqs-split .faq-icon i {
    color: #153d66;
    font-size: 0.85rem;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease;
}

.skh-faqs-split .faq-item:not(.is-open):not(.active) .faq-question:hover .faq-icon i {
    color: #ea580c;
}

.skh-faqs-split .faq-item.is-open .faq-icon i,
.skh-faqs-split .faq-item.active .faq-icon i,
.skh-faqs-split .faq-question.active .faq-icon i {
    color: #ffffff !important;
    transform: rotate(180deg);
}

.skh-faqs-split .faq-answer {
    background: #ffffff;
    border-top: none;
}

.skh-faqs-split .faq-item.is-open .faq-answer,
.skh-faqs-split .faq-item.active .faq-answer {
    border-top: 2px solid rgba(234, 88, 12, 0.28);
}

.skh-faqs-split .faq-answer-content {
    padding: clamp(14px, 2vw, 18px) clamp(16px, 2.2vw, 22px) clamp(16px, 2.2vw, 22px);
}

.skh-faqs-split .skh-faq-answer-body {
    display: flex;
    align-items: flex-start;
    gap: clamp(12px, 2vw, 18px);
}

.skh-faqs-split .skh-faq-answer-thumb {
    flex: 0 0 clamp(88px, 14vw, 120px);
    width: clamp(88px, 14vw, 120px);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.skh-faqs-split .skh-faq-answer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.skh-faqs-split .skh-faq-answer-text {
    flex: 1;
    min-width: 0;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: clamp(0.88rem, 1.05vw, 0.95rem);
    font-weight: 400;
    line-height: 1.65;
    color: #5a6578;
}

.skh-faqs-split .skh-faq-answer-text p {
    margin: 0;
}

@media (max-width: 991px) {
    .skh-faqs-layout {
        grid-template-columns: 1fr;
    }

    .skh-faqs-visual {
        min-height: clamp(260px, 50vw, 360px);
    }
}

@media (max-width: 575px) {
    .skh-faqs-split .skh-faq-answer-body {
        flex-direction: column;
    }

    .skh-faqs-split .skh-faq-answer-thumb {
        width: 100%;
        flex-basis: auto;
        max-width: 200px;
    }
}

/* HOME RECRUITERS — readable text on golden banner */
.skh-recruiters-bg-overlay {
    display: none !important;
}

.skh-recruiters-home .skh-placement-title,
.skh-recruiters-home .skh-placement-lead,
.skh-recruiters-home .skh-programs-eyebrow-text,
.skh-recruiters-home .appear-animation {
    opacity: 1 !important;
    visibility: visible !important;
}

.skh-recruiters-home .skh-programs-eyebrow-text {
    color: #1a1a1a !important;
}

.skh-recruiters-home .skh-placement-title {
    color: #1a1a1a !important;
}

.skh-recruiters-home .skh-placement-lead {
    color: #333333 !important;
}

/* FAQ active header — navy → orange (override global .faq-question.active) */
.skh-faqs-split .faq-question.active {
    background: linear-gradient(90deg, #153d66 0%, #1a4d7a 38%, #c45100 72%, #e07a2f 100%) !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    border-bottom: none !important;
}

.skh-faqs-split .faq-item.is-open > .faq-question,
.skh-faqs-split .faq-item.active > .faq-question {
    background: linear-gradient(90deg, #153d66 0%, #1a4d7a 38%, #c45100 72%, #e07a2f 100%) !important;
    background-color: transparent !important;
}

/* Home page — standard section gaps (80 / 60 / 40 / 30); large gaps unchanged above */
.main > .skh-placement-home.section-spacing + .skh-recruiters-home.section-spacing,
.main > .skh-recruiters-home.section-spacing + .skh-campus-moments.section-spacing,
.main > .skh-campus-moments.section-spacing + .skh-blogs-home.section-spacing,
.main > .skh-testimonials-home.section-spacing + .faqs-section.section-spacing {
    margin-top: 80px !important;
}

.main > .faqs-section.section-spacing + .skh-page-cta-wrap.section-spacing {
    margin-top: 24px !important;
    padding-top: clamp(20px, 2.5vw, 28px) !important;
}

@media (max-width: 768px) {
    .main > .skh-placement-home.section-spacing + .skh-recruiters-home.section-spacing,
    .main > .skh-recruiters-home.section-spacing + .skh-campus-moments.section-spacing,
    .main > .skh-campus-moments.section-spacing + .skh-blogs-home.section-spacing,
    .main > .skh-testimonials-home.section-spacing + .faqs-section.section-spacing {
        margin-top: 60px !important;
    }

    .main > .faqs-section.section-spacing + .skh-page-cta-wrap.section-spacing {
        margin-top: 20px !important;
        padding-top: 18px !important;
    }
}

@media (max-width: 576px) {
    .main > .skh-placement-home.section-spacing + .skh-recruiters-home.section-spacing,
    .main > .skh-recruiters-home.section-spacing + .skh-campus-moments.section-spacing,
    .main > .skh-campus-moments.section-spacing + .skh-blogs-home.section-spacing,
    .main > .skh-testimonials-home.section-spacing + .faqs-section.section-spacing {
        margin-top: 40px !important;
    }

    .main > .faqs-section.section-spacing + .skh-page-cta-wrap.section-spacing {
        margin-top: 16px !important;
        padding-top: 16px !important;
    }
}

@media (max-width: 480px) {
    .main > .skh-placement-home.section-spacing + .skh-recruiters-home.section-spacing,
    .main > .skh-recruiters-home.section-spacing + .skh-campus-moments.section-spacing,
    .main > .skh-campus-moments.section-spacing + .skh-blogs-home.section-spacing,
    .main > .skh-testimonials-home.section-spacing + .faqs-section.section-spacing {
        margin-top: 30px !important;
    }

    .main > .faqs-section.section-spacing + .skh-page-cta-wrap.section-spacing {
        margin-top: 12px !important;
        padding-top: 14px !important;
    }
}

/* SITE PAGE HERO — compact centered (About + all inner pages) */
.skh-page-hero,
.skh-about-page-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(300px, 42vh, 440px);
    overflow: hidden;
    margin: 0;
}

.skh-page-hero__bg,
.skh-about-page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.skh-page-hero__overlay,
.skh-about-page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.58);
}

.skh-page-hero__inner,
.skh-about-page-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(72px, 9vw, 96px) 15px clamp(28px, 4vw, 40px);
}

.skh-about-page-hero__inner {
    padding-bottom: clamp(12px, 2vw, 18px);
}

.skh-page-hero__content,
.skh-about-page-hero__content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.skh-page-hero__content h1,
.skh-about-page-hero__content h1 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.35rem, 5.2vw, 3.65rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 clamp(14px, 2.2vw, 20px);
    text-transform: none;
}

.skh-page-hero__line,
.skh-about-page-hero__line {
    display: block;
    width: min(100%, 110px);
    height: 2px;
    margin: 0 auto clamp(16px, 2.5vw, 22px);
    background: #ffffff;
}

.skh-page-hero__lead,
.skh-about-page-hero__lead {
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: clamp(0.95rem, 1.12vw, 1.06rem);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 auto;
    max-width: 40em;
}

.skh-page-hero .appear-animation,
.skh-about-page-hero .appear-animation {
    opacity: 1 !important;
    visibility: visible !important;
}

/* PAGE CTA — full-width bar (footer-style) + centered copy */
.skh-page-cta-wrap {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: visible;
    padding-top: clamp(48px, 5vw, 64px) !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.skh-page-cta {
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    min-height: clamp(168px, 22vw, 210px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(28px, 3.5vw, 40px) clamp(20px, 4vw, 48px);
    margin: 0;
    box-shadow: none;
}

.skh-page-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    overflow: hidden;
    background-size: cover;
    background-position: center 42%;
    background-repeat: no-repeat;
    transform: scale(1.06);
    transition: transform 0.55s ease;
}

.skh-page-cta:hover .skh-page-cta__bg {
    transform: scale(1.1);
}

.skh-page-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        rgba(21, 61, 102, 0.9) 0%,
        rgba(21, 61, 102, 0.82) 42%,
        rgba(196, 81, 0, 0.86) 72%,
        rgba(224, 122, 47, 0.88) 100%
    );
}

.skh-page-cta__content {
    position: relative;
    z-index: 3;
    width: min(100%, 720px);
    margin-inline: auto;
    padding-inline: clamp(12px, 2vw, 20px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.skh-page-cta__content h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.25rem, 2.4vw, 1.65rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 clamp(8px, 1.2vw, 12px);
    text-shadow: 0 1px 10px rgba(15, 48, 82, 0.3);
}

.skh-page-cta__content p {
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: clamp(0.84rem, 1vw, 0.92rem);
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.94);
    margin: 0 auto clamp(14px, 2vw, 18px);
    max-width: 36em;
    text-shadow: 0 1px 6px rgba(15, 48, 82, 0.22);
}

.skh-page-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 8px;
    background: #ffffff;
    color: #c45100 !important;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #ffffff;
    box-shadow: 0 6px 18px rgba(15, 48, 82, 0.2);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.skh-page-cta__btn:hover {
    transform: translateY(-2px);
    background: #153d66;
    color: #ffffff !important;
    border-color: #153d66;
    box-shadow: 0 10px 24px rgba(15, 48, 82, 0.28);
}

.skh-cta-graduate-figure {
    position: absolute;
    right: clamp(8px, 3vw, 56px);
    bottom: clamp(-42px, -5.5vw, -22px);
    z-index: 4;
    width: clamp(155px, 20vw, 265px);
    pointer-events: none;
    animation: skh-page-cta-figure-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both,
        skh-page-cta-figure-float 3.8s ease-in-out 0.9s infinite alternate;
}

.skh-cta-graduate-figure img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

@keyframes skh-page-cta-figure-enter {
    0% {
        opacity: 0;
        transform: translateX(28px) translateY(16px) scale(0.92);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

@keyframes skh-page-cta-figure-float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.skh-page-cta.appear-animation,
.skh-page-cta .skh-page-cta__content {
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 768px) {
    .skh-page-cta {
        min-height: clamp(140px, 24vw, 170px);
    }

    .skh-cta-graduate-figure {
        width: clamp(118px, 24vw, 165px);
        right: -4px;
        bottom: -28px;
    }
}

@media (max-width: 576px) {
    .skh-cta-graduate-figure {
        width: 104px;
        right: -2px;
        bottom: -18px;
        opacity: 0.94;
    }
}

@media (prefers-reduced-motion: reduce) {
    .skh-cta-graduate-figure {
        animation: none;
    }
}

.skh-home-cta-section {
    overflow: visible;
}

.skh-home-cta-wrap {
    overflow: visible;
}

@media (max-width: 768px) {
    .skh-page-hero,
    .skh-about-page-hero {
        min-height: clamp(260px, 38vh, 360px);
    }

    .skh-page-hero__inner,
    .skh-about-page-hero__inner {
        padding: clamp(64px, 11vw, 84px) 15px clamp(36px, 6vw, 48px);
    }
}

@media (max-width: 576px) {
    .skh-page-hero,
    .skh-about-page-hero {
        min-height: clamp(240px, 36vh, 320px);
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE — WHO WE ARE (reference layout)
   ═══════════════════════════════════════════════════════════════════ */

.skh-about-who {
    --skh-who-navy: #0a2e5c;
    --skh-who-orange: #e07a2a;
    padding: clamp(24px, 3vw, 40px) 0 clamp(28px, 3vw, 40px);
    background: #fff;
    overflow: visible;
}

.skh-about-page-hero + .custom-margin-1 {
    margin-top: 0;
    padding-top: 0;
}

.skh-about-page-hero + .custom-margin-1 .skh-about-who {
    margin-top: 0;
    padding-top: clamp(6px, 1vw, 12px);
}

.skh-about-who + .skh-about-stats-bar-wrap {
    margin-top: clamp(12px, 2vw, 24px);
}

/* ABOUT PAGE — Stats bar below Who We Are */
.skh-about-stats-bar-wrap {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    background: linear-gradient(135deg, #123a62 0%, #0c2a4a 52%, #0a2440 100%);
    padding: clamp(18px, 2.5vw, 26px) 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(10, 36, 64, 0.22);
}

.skh-about-stats-bar-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(245, 134, 52, 0.14) 0%, transparent 28%, transparent 72%, rgba(245, 134, 52, 0.1) 100%),
        radial-gradient(circle at 50% -40%, rgba(245, 134, 52, 0.18) 0%, transparent 55%);
    pointer-events: none;
}

.skh-about-stats-bar-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f58634 0%, #f9a85c 50%, #f58634 100%);
}

.skh-about-stats-bar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.skh-about-stats-bar__item {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    padding: 0 clamp(10px, 1.6vw, 20px);
    position: relative;
}

.skh-about-stats-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%);
}

.skh-about-stats-bar__icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 6px;
    border-radius: 10px;
    background: rgba(245, 134, 52, 0.14);
    border: 1px solid rgba(245, 134, 52, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9a85c;
    font-size: 1.05rem;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(245, 134, 52, 0.12);
}

.skh-about-stats-bar__value {
    color: #fff;
    font-family: 'Playfair Display', 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.28rem, 2vw, 1.72rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 3px;
}

.skh-about-stats-bar__label {
    color: rgba(255, 255, 255, 0.78);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: clamp(0.68rem, 0.9vw, 0.78rem);
    font-weight: 400;
    line-height: 1.35;
    max-width: 150px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .skh-about-stats-bar {
        flex-wrap: wrap;
        row-gap: 18px;
    }

    .skh-about-stats-bar-wrap {
        padding: 20px 0;
    }

    .skh-about-stats-bar__item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .skh-about-stats-bar__item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .skh-about-stats-bar-wrap {
        padding: 16px 0;
    }

    .skh-about-stats-bar__item {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 12px 14px;
    }

    .skh-about-stats-bar__item::after {
        display: none !important;
    }

    .skh-about-stats-bar__item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .skh-about-stats-bar__label {
        max-width: none;
    }
}

.skh-about-who .appear-animation,
.skh-about-who__badge,
.skh-about-who__title,
.skh-about-who__desc,
.skh-about-who__features {
    opacity: 1 !important;
    visibility: visible !important;
}

.skh-about-who__content {
    overflow: visible;
}

.skh-about-who__badge {
    display: block;
    color: var(--skh-who-orange);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.skh-about-who__title {
    color: var(--skh-who-navy) !important;
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 3.2vw, 2.65rem);
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin: 0 0 22px;
    max-width: none;
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
    display: block;
    -webkit-font-smoothing: antialiased;
}

.skh-about-who__desc {
    color: #64748b;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.85;
    margin: 0 0 28px;
    max-width: 540px;
    text-align: justify;
}

.skh-about-who__desc p {
    margin: 0;
}

.skh-about-who__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
    max-width: 540px;
}

.skh-about-who__features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #334155;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.98rem;
    line-height: 1.6;
}

.skh-about-who__feature-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f58634 0%, #e07a2a 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(245, 134, 52, 0.25);
}

.skh-about-who__visual {
    position: relative;
    min-height: 480px;
    padding: 28px 24px 56px 36px;
}

.skh-about-who__frame {
    position: absolute;
    inset: 8px 8px 24px 8px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 28px;
    pointer-events: none;
    z-index: 1;
}

.skh-about-who__shape--grey {
    position: absolute;
    left: 0;
    top: 18%;
    width: 72px;
    height: 58%;
    background: rgba(226, 232, 240, 0.85);
    border-radius: 999px;
    z-index: 0;
}

.skh-about-who__shape--orange {
    position: absolute;
    right: 18px;
    top: 8%;
    width: 14px;
    height: 42%;
    background: linear-gradient(180deg, #f58634 0%, #e07a2a 100%);
    border-radius: 999px;
    z-index: 2;
}

.skh-about-who__dots {
    position: absolute;
    width: 56px;
    height: 56px;
    background-image: radial-gradient(circle, #cbd5e1 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: 2;
    opacity: 0.9;
}

.skh-about-who__dots--top {
    left: 18px;
    top: 0;
}

.skh-about-who__dots--bottom {
    right: 28px;
    bottom: 12px;
}

.skh-about-who__main-img {
    position: relative;
    z-index: 3;
    display: block;
    width: 78%;
    max-width: 360px;
    height: clamp(360px, 42vw, 460px);
    object-fit: cover;
    border-radius: 28px 28px 28px 8px;
    box-shadow: 0 24px 60px rgba(10, 46, 92, 0.18);
    margin-left: auto;
    margin-right: 12%;
}

.skh-about-who__inset-img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    width: min(52%, 280px);
    height: 170px;
    object-fit: cover;
    border-radius: 16px;
    border: 6px solid #fff;
    box-shadow: 0 16px 40px rgba(10, 46, 92, 0.2);
}

@media (max-width: 991px) {
    .skh-about-who__title,
    .skh-about-who__desc,
    .skh-about-who__features {
        max-width: none;
    }

    .skh-about-who__visual {
        min-height: 420px;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .skh-about-who {
        padding: 20px 0 36px;
    }

    .skh-about-page-hero + .custom-margin-1 .skh-about-who {
        margin-top: 0;
        padding-top: 6px;
    }

    .skh-about-who__visual {
        min-height: 360px;
        padding: 20px 12px 48px 20px;
    }

    .skh-about-who__main-img {
        width: 84%;
        height: 320px;
        margin-right: 8%;
    }

    .skh-about-who__inset-img {
        width: 58%;
        height: 140px;
    }

    .skh-about-who__shape--grey {
        width: 56px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE — Orange CTA bar
   ═══════════════════════════════════════════════════════════════════ */

.skh-about-cta-orange {
    position: relative;
    width: 100%;
    margin: clamp(48px, 6vw, 72px) 0 0;
    padding: clamp(28px, 4vw, 40px) 0;
    background: linear-gradient(135deg, #f58634 0%, #e07a2a 55%, #d96f22 100%);
    overflow: hidden;
}

.skh-about-cta-orange::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 42%),
        radial-gradient(circle at 88% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 38%);
    pointer-events: none;
}

.skh-about-cta-orange__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 4vw, 40px);
}

.skh-about-cta-orange__icon-wrap {
    flex: 0 0 auto;
    width: clamp(64px, 8vw, 88px);
    height: clamp(64px, 8vw, 88px);
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.skh-about-cta-orange__copy {
    flex: 1;
    min-width: 0;
}

.skh-about-cta-orange__title {
    color: #fff;
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 8px;
}

.skh-about-cta-orange__text {
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.6;
    margin: 0;
}

.skh-about-cta-orange__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #fff;
    color: #0a2e5c !important;
    border-radius: 8px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skh-about-cta-orange__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    color: #0a2e5c !important;
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE — Milestones / History timeline
   ═══════════════════════════════════════════════════════════════════ */

.skh-about-milestones {
    --skh-ms-navy: #0a2e5c;
    --skh-ms-orange: #f37021;
    padding: clamp(52px, 6vw, 72px) 0 clamp(64px, 7vw, 88px);
    background: #fff;
}

.skh-about-stats-bar-wrap + .skh-about-milestones {
    margin-top: 0;
    padding-top: clamp(64px, 7vw, 88px);
}

.skh-about-milestones__header {
    margin-bottom: clamp(52px, 6vw, 68px);
    opacity: 1;
    transform: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.skh-about-milestones__badge {
    display: block;
    color: var(--skh-ms-orange);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.skh-about-milestones__title {
    color: var(--skh-ms-navy);
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.95rem, 3.4vw, 2.7rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin: 0 auto;
    max-width: 820px;
}

.skh-about-milestones__title-line {
    display: block;
    width: 64px;
    height: 3px;
    background: var(--skh-ms-orange);
    border-radius: 2px;
    margin: 20px auto 0;
}

.skh-about-milestones__lead {
    color: #475569;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.08rem);
    font-weight: 500;
    line-height: 1.65;
    margin: 18px auto 0;
    max-width: 720px;
}

.skh-about-milestones__timeline {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 56px 0 0;
}

.skh-about-milestones__line-bg,
.skh-about-milestones__line-progress {
    position: absolute;
    left: 50%;
    top: 56px;
    width: 4px;
    transform: translateX(-50%);
    pointer-events: none;
    border-radius: 4px;
}

.skh-about-milestones__line-bg {
    bottom: 40px;
    background: linear-gradient(180deg, #6aaee0 0%, #4f8fc4 100%);
    z-index: 0;
}

.skh-about-milestones__line-progress {
    height: 0;
    background: linear-gradient(180deg, #f0a85c 0%, #5baad4 100%);
    z-index: 1;
}

.skh-hist-tl-cap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.skh-hist-tl-cap__hex {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 136px;
    min-height: 50px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #4da3d9 0%, #3b8fc7 48%, #5eb5e8 100%);
    color: #ffffff;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
    box-shadow: 0 4px 18px rgba(61, 143, 199, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.42);
    text-shadow: 0 1px 2px rgba(21, 61, 102, 0.18);
}

.skh-about-milestones__row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
    gap: 0 clamp(32px, 4.5vw, 52px);
    align-items: start;
    margin-bottom: clamp(2px, 0.5vw, 6px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    isolation: isolate;
}

.skh-about-milestones__row.is-visible {
    opacity: 1;
}

.skh-about-milestones__row:hover,
.skh-about-milestones__row:focus-within,
.skh-about-milestones__row.is-expanded-row,
.skh-about-milestones__row:has(.skh-hist-card.is-expanded) {
    z-index: 45;
}

.skh-about-milestones__row.is-active {
    z-index: 50 !important;
}

.skh-about-milestones__row--left {
    transform: translateX(-36px);
}

.skh-about-milestones__row--left:not(:first-child) {
    margin-top: clamp(-52px, -5vw, -40px);
}

.skh-about-milestones__row--right {
    transform: translateX(36px);
    margin-top: clamp(-152px, -13.5vw, -128px);
}

.skh-about-milestones__row--right ~ .skh-about-milestones__row--right {
    margin-top: clamp(-168px, -14.5vw, -144px);
}

.skh-about-milestones__row--left.is-visible,
.skh-about-milestones__row--right.is-visible {
    transform: translateX(0);
}

.skh-about-milestones__row--left.is-visible:not(:first-child) {
    margin-top: clamp(-52px, -5vw, -40px);
}

.skh-about-milestones__row--right.is-visible {
    margin-top: clamp(-152px, -13.5vw, -128px);
}

.skh-about-milestones__row--right.is-visible ~ .skh-about-milestones__row--right.is-visible {
    margin-top: clamp(-168px, -14.5vw, -144px);
}

.skh-about-milestones__row:last-child {
    margin-bottom: 0;
}

.skh-about-milestones__axis {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 108px;
    position: relative;
    z-index: 2;
}

.skh-hist-node {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #ffffff;
    font-size: 0.78rem;
    box-shadow: 0 0 0 4px #ffffff, 0 3px 10px rgba(74, 128, 181, 0.22);
}

.skh-about-milestones__row.is-active .skh-hist-node {
    transform: scale(1.06);
}

.skh-about-milestones__card--spacer {
    visibility: hidden;
    min-height: 1px;
}

.skh-hist-card {
    position: relative;
    z-index: 1;
    max-width: 330px;
    width: 100%;
    background: #ffffff;
    border-radius: 6px;
    overflow: visible;
    border: 1px solid rgba(91, 170, 212, 0.14);
    box-shadow: 0 8px 22px rgba(74, 128, 181, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    pointer-events: none;
}

.skh-hist-card__head,
.skh-hist-card__media {
    pointer-events: none;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}

.skh-hist-card__body {
    position: relative;
    background: var(--skh-hist-body);
    padding: 14px;
    min-height: 96px;
    pointer-events: auto;
    z-index: 4;
    border-radius: 0 0 6px 6px;
}

.skh-about-milestones__row:hover .skh-hist-card,
.skh-about-milestones__row.is-active .skh-hist-card,
.skh-about-milestones__row.is-expanded-row .skh-hist-card,
.skh-hist-card.is-expanded {
    pointer-events: auto;
}

.skh-about-milestones__row:hover .skh-hist-card__head,
.skh-about-milestones__row:hover .skh-hist-card__media,
.skh-about-milestones__row.is-active .skh-hist-card__head,
.skh-about-milestones__row.is-active .skh-hist-card__media,
.skh-about-milestones__row.is-expanded-row .skh-hist-card__head,
.skh-about-milestones__row.is-expanded-row .skh-hist-card__media,
.skh-hist-card.is-expanded .skh-hist-card__head,
.skh-hist-card.is-expanded .skh-hist-card__media {
    pointer-events: auto;
}

.skh-hist-card.is-expanded,
.skh-hist-card.is-expanded:hover {
    transition: none;
}

.skh-hist-card:hover,
.skh-hist-card:focus-within,
.skh-hist-card.is-expanded,
.skh-about-milestones__row.is-active .skh-hist-card {
    z-index: 12;
}

.skh-hist-card.is-expanded {
    overflow: visible;
}

.skh-hist-card--left {
    justify-self: end;
}

.skh-hist-card--left::after,
.skh-hist-card--right::after {
    content: '';
    position: absolute;
    top: 124px;
    width: clamp(20px, 3vw, 40px);
    height: 2px;
    background: var(--skh-hist-head);
    z-index: 1;
}

.skh-hist-card--left::after {
    right: calc(-1 * clamp(20px, 3vw, 40px));
}

.skh-hist-card--right::after {
    left: calc(-1 * clamp(20px, 3vw, 40px));
}

.skh-hist-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(74, 128, 181, 0.14);
}

.skh-hist-card__head {
    background: linear-gradient(135deg, var(--skh-hist-head-light, var(--skh-hist-head)) 0%, var(--skh-hist-head) 100%);
    color: #ffffff;
    padding: 10px 14px;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.skh-hist-card__year {
    display: block;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: 3px;
}

.skh-hist-card__title {
    margin: 0;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.01em;
}

.skh-hist-card__media {
    aspect-ratio: 16 / 10;
    background: #e2e8f0;
}

.skh-hist-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skh-hist-card__desc {
    margin: 0;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.62;
    color: #3d4f63;
    text-align: left;
}

.skh-hist-card__desc--full {
    display: none;
}

.skh-hist-card.is-expanded .skh-hist-card__desc--short {
    display: none;
}

.skh-hist-card.is-expanded .skh-hist-card__desc--full {
    display: block;
}

.skh-hist-card__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    min-height: 34px;
    min-width: 104px;
    border: 1px solid rgba(91, 170, 212, 0.35);
    background: #ffffff;
    color: var(--skh-hist-head);
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(21, 61, 102, 0.12);
    transition: none;
    position: relative;
    z-index: 8;
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.skh-hist-card__body:has(.skh-hist-card__more) {
    cursor: default;
}

.skh-hist-card__more:hover {
    background: var(--skh-hist-head);
    color: #ffffff;
}

.skh-about-milestones.is-inview .skh-about-milestones__title-line {
    animation: skhMsTitleLineGrow 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes skhMsTitleLineGrow {
    from { transform: scaleX(0); opacity: 0.4; }
    to { transform: scaleX(1); opacity: 1; }
}

.skh-about-milestones__title-line {
    transform-origin: center;
}

.skh-about-milestones .appear-animation,
.skh-about-cta-orange .appear-animation {
    opacity: 1 !important;
    visibility: visible !important;
}

@media (prefers-reduced-motion: reduce) {
    .skh-about-milestones__row {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .skh-hist-card {
        transition: none !important;
    }
}

@media (max-width: 767px) {
    .skh-about-cta-orange__inner {
        flex-direction: column;
        text-align: center;
    }

    .skh-about-cta-orange__copy {
        text-align: center;
    }

    .skh-about-milestones__timeline {
        padding-top: 48px;
    }

    .skh-about-milestones__line-bg,
    .skh-about-milestones__line-progress {
        left: 20px;
        top: 48px;
    }

    .skh-hist-tl-cap {
        left: 20px;
        transform: none;
    }

    .skh-hist-tl-cap__hex {
        min-width: 110px;
        font-size: 0.75rem;
    }

    .skh-about-milestones__row {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 0 14px;
        margin-bottom: 16px;
    }

    .skh-about-milestones__row--left:not(:first-child),
    .skh-about-milestones__row--left.is-visible:not(:first-child) {
        margin-top: 0;
    }

    .skh-about-milestones__row--right {
        margin-top: 0;
    }

    .skh-about-milestones__row--right ~ .skh-about-milestones__row--right,
    .skh-about-milestones__row--right.is-visible {
        margin-top: 0;
    }

    .skh-about-milestones__row--right.is-visible ~ .skh-about-milestones__row--right.is-visible {
        margin-top: 0;
    }

    .skh-hist-card--left,
    .skh-hist-card--right {
        grid-column: 2;
        justify-self: stretch;
        max-width: none;
    }

    .skh-hist-card--left::after,
    .skh-hist-card--right::after {
        display: none;
    }

    .skh-about-milestones__card--spacer {
        display: none;
    }

    .skh-about-milestones__axis {
        grid-column: 1;
        grid-row: 1;
        padding-top: 108px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE — Leadership team
   ═══════════════════════════════════════════════════════════════════ */

.skh-about-leadership {
    --skh-ld-navy: #0a2e5c;
    --skh-ld-orange: #f37021;
    padding: clamp(8px, 2vw, 16px) 0 clamp(48px, 6vw, 64px);
}

.skh-about-leadership.section-spacing {
    margin-top: clamp(32px, 4vw, 48px);
}

.skh-about-leadership__header {
    max-width: 720px;
    margin-bottom: clamp(40px, 5vw, 56px);
}

.skh-about-leadership__badge {
    display: inline-block;
    color: #fff;
    background: linear-gradient(135deg, #f58634 0%, #f37021 100%);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(243, 112, 33, 0.28);
}

.skh-about-leadership__title {
    color: var(--skh-ld-navy);
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.85rem, 3vw, 2.45rem);
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin: 0 0 0;
}

.skh-about-leadership__title-line {
    display: block;
    width: 56px;
    height: 3px;
    background: var(--skh-ld-orange);
    border-radius: 2px;
    margin: 18px 0 20px;
}

.skh-about-leadership__lead {
    color: #64748b;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.78;
    margin: 0;
    max-width: 640px;
}

.skh-about-leadership__list {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vw, 56px);
}

.skh-about-leadership__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 44px);
    align-items: center;
}

.skh-about-leadership__row--reverse .skh-about-leadership__media {
    order: 2;
}

.skh-about-leadership__row--reverse .skh-about-leadership__info {
    order: 1;
}

.skh-about-leadership__media {
    position: relative;
    display: flex;
}

.skh-about-leadership__row--reverse .skh-about-leadership__media {
    justify-content: flex-end;
}

.skh-about-leadership__photo-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
}

.skh-about-leadership__photo-frame::before {
    content: '';
    position: absolute;
    inset: auto -10px -10px 14px;
    top: 14px;
    background: linear-gradient(135deg, rgba(243, 112, 33, 0.22) 0%, rgba(10, 46, 92, 0.1) 100%);
    border-radius: 20px;
    z-index: 0;
}

.skh-about-leadership__photo {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(10, 46, 92, 0.14);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.skh-about-leadership__photo--placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f8fafc 0%, #eef2f7 100%);
    color: rgba(10, 46, 92, 0.2);
    font-size: 3rem;
}

.skh-about-leadership__row:hover .skh-about-leadership__photo {
    transform: scale(1.02);
}

.skh-about-leadership__info {
    padding: 4px 0;
}

.skh-about-leadership__name {
    color: var(--skh-ld-navy);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.skh-about-leadership__role {
    color: var(--skh-ld-orange);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(243, 112, 33, 0.22);
    max-width: 420px;
}

.skh-about-leadership__row--reverse .skh-about-leadership__role {
    margin-left: auto;
    text-align: right;
}

.skh-about-leadership__bio {
    color: #64748b;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.94rem;
    font-weight: 400;
    line-height: 1.78;
    margin: 0;
    max-width: 520px;
}

.skh-about-leadership__row--reverse .skh-about-leadership__bio {
    margin-left: auto;
    text-align: right;
}

.skh-about-leadership .appear-animation {
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 991px) {
    .skh-about-leadership__row,
    .skh-about-leadership__row--reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .skh-about-leadership__row--reverse .skh-about-leadership__media,
    .skh-about-leadership__row--reverse .skh-about-leadership__info {
        order: unset;
    }

    .skh-about-leadership__row--reverse .skh-about-leadership__role,
    .skh-about-leadership__row--reverse .skh-about-leadership__bio {
        margin-left: 0;
        text-align: left;
    }

    .skh-about-leadership__media,
    .skh-about-leadership__row--reverse .skh-about-leadership__media {
        justify-content: center;
    }

    .skh-about-leadership__photo-frame {
        max-width: 320px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE — match site navy/orange design system
   ═══════════════════════════════════════════════════════════════════ */

.skh-contact-page {
    background: #f4f6f8;
}

.skh-contact-page__main {
    padding: clamp(40px, 5vw, 56px) 0 clamp(48px, 6vw, 64px);
}

.skh-contact-page__cards {
    margin-bottom: clamp(28px, 4vw, 40px);
}

.skh-contact-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(21, 61, 102, 0.1);
    border-radius: 10px;
    padding: clamp(24px, 3vw, 32px) clamp(20px, 2.5vw, 28px);
    text-align: center;
    box-shadow: 0 8px 24px rgba(21, 61, 102, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.skh-contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(196, 81, 0, 0.28);
    box-shadow: 0 12px 28px rgba(21, 61, 102, 0.12);
}

.skh-contact-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #153d66 0%, #0e2d4f 100%);
    color: #ffffff;
    font-size: 1.2rem;
}

.skh-contact-card__title {
    margin: 0 0 10px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 400;
    color: #153d66;
}

.skh-contact-card__value {
    display: block;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    color: #52657a;
    text-decoration: none;
    word-break: break-word;
    transition: color 0.2s ease;
}

.skh-contact-card__value:hover {
    color: #c45100;
    text-decoration: none;
}

.skh-contact-card__value--text {
    margin: 0;
}

.skh-contact-page__panels {
    margin-bottom: clamp(24px, 3vw, 36px);
}

.skh-contact-panel {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(21, 61, 102, 0.1);
    border-radius: 10px;
    padding: clamp(24px, 3vw, 36px);
    box-shadow: 0 8px 24px rgba(21, 61, 102, 0.07);
}

.skh-contact-panel__head {
    margin-bottom: clamp(20px, 2.5vw, 28px);
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(196, 81, 0, 0.18);
}

.skh-contact-panel__title {
    margin: 0 0 8px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.45rem, 2.6vw, 1.85rem);
    font-weight: 400;
    color: #153d66;
}

.skh-contact-panel__lead {
    margin: 0;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 0.94rem;
    line-height: 1.65;
    color: #64748b;
}

.skh-contact-form__field {
    margin-bottom: 14px;
}

.skh-contact-form__input {
    width: 100%;
    border: 1px solid rgba(21, 61, 102, 0.14);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: #153d66;
    background: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.skh-contact-form__input::placeholder {
    color: #94a3b8;
}

.skh-contact-form__input:focus {
    outline: none;
    border-color: #c45100;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(196, 81, 0, 0.12);
}

.skh-contact-form__textarea {
    resize: vertical;
    min-height: 140px;
}

.skh-contact-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    background: #153d66;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.skh-contact-form__submit:hover {
    background: #c45100;
    transform: translateY(-1px);
}

.skh-contact-form__submit i {
    font-size: 0.82rem;
    transition: transform 0.2s ease;
}

.skh-contact-form__submit:hover i {
    transform: translateX(3px);
}

.skh-contact-form__alert {
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
}

.skh-contact-address {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(21, 61, 102, 0.04);
    border-left: 3px solid #c45100;
}

.skh-contact-address__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #153d66;
    color: #ffffff;
    font-size: 1rem;
}

.skh-contact-address__title {
    margin: 0 0 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #153d66;
}

.skh-contact-address__text {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #52657a;
}

.skh-contact-map {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(21, 61, 102, 0.1);
    box-shadow: 0 6px 18px rgba(21, 61, 102, 0.08);
}

.skh-contact-map iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
}

.skh-contact-social {
    text-align: center;
    padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 32px);
    background: #ffffff;
    border: 1px solid rgba(21, 61, 102, 0.1);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(21, 61, 102, 0.07);
}

.skh-contact-social__title {
    margin: 0 0 8px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.35rem, 2.4vw, 1.7rem);
    color: #153d66;
}

.skh-contact-social__lead {
    margin: 0 0 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: #64748b;
}

.skh-contact-social__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.skh-contact-social__btn {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(21, 61, 102, 0.16);
    color: #153d66;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.skh-contact-social__btn:hover {
    background: #153d66;
    border-color: #153d66;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 767px) {
    .skh-contact-map iframe,
    .skh-contact-map .google-map {
        min-height: 300px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE HEADER ONLY (≤992px) — desktop untouched
   Standard sticky bar: logo + name (left) + menu (right)
   ═══════════════════════════════════════════════════════════════════ */

.skh-mobile-topbar,
.skh-mobile-brand-lockup {
    display: none;
}

@media (max-width: 992px) {
    .skh-header-seam {
        display: none !important;
    }

    .skh-nav-row {
        display: block !important;
        padding: 0 !important;
        min-height: 0 !important;
        background: #ffffff !important;
        border-top: none !important;
    }

    .skh-mobile-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        min-height: 60px;
        padding: 8px 12px 8px 10px;
        box-sizing: border-box;
        background: #ffffff;
    }

    .skh-mobile-brand-lockup {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        flex: 1 1 auto;
        min-width: 0;
        text-decoration: none !important;
        color: inherit;
    }

    .skh-mobile-brand__logo {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
        object-fit: contain;
        display: block;
    }

    .skh-mobile-brand__copy {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        min-width: 0;
        flex: 1 1 auto;
        text-align: left;
        overflow: visible;
    }

    .skh-mobile-brand__name {
        display: -webkit-box;
        width: 100%;
        font-family: 'DM Serif Display', Georgia, serif;
        font-size: clamp(0.95rem, 3.6vw, 1.12rem);
        font-weight: 400;
        line-height: 1.2;
        letter-spacing: -0.01em;
        color: #153d66;
        text-align: left;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
    }

    .skh-mobile-brand__tagline {
        display: -webkit-box;
        width: 100%;
        margin-top: 2px;
        font-family: 'DM Sans', 'Poppins', sans-serif;
        font-size: clamp(0.58rem, 2.1vw, 0.68rem);
        font-weight: 600;
        line-height: 1.25;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #c45100;
        text-align: left;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
    }

    .skh-header.is-scrolled {
        box-shadow: 0 4px 18px rgba(21, 61, 102, 0.12);
    }

    .skh-header.is-scrolled .skh-mobile-topbar {
        min-height: 56px;
        padding: 6px 12px 6px 10px;
        border-bottom: 1px solid rgba(21, 61, 102, 0.08);
    }

    .skh-header.is-scrolled .skh-mobile-brand__logo {
        width: 48px;
        height: 48px;
    }

    .skh-header.is-scrolled .skh-mobile-brand__tagline {
        display: -webkit-box;
        font-size: clamp(0.54rem, 2vw, 0.64rem);
    }

    .skh-header.is-scrolled .skh-mobile-brand__name {
        font-size: clamp(0.9rem, 3.4vw, 1.05rem);
    }

    .skh-nav-inner,
    .skh-header .navbar-menu-section {
        display: block !important;
        width: 100% !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .skh-header .navbar-collapse {
        width: 100% !important;
        flex: none !important;
        display: none !important;
        max-height: none;
        overflow: visible;
    }

    .skh-header .navbar-collapse.show,
    .skh-header .navbar-collapse.collapsing {
        display: block !important;
    }

    .skh-header .navbar-nav,
    .skh-header .skh-nav-menu {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        background: #ffffff;
        border-top: 1px solid rgba(21, 61, 102, 0.1);
        border-bottom: 1px solid rgba(21, 61, 102, 0.08);
        overflow: hidden !important;
        max-height: min(70vh, 520px);
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .skh-header .nav-item {
        display: block !important;
        width: 100%;
        border-bottom: 1px solid rgba(21, 61, 102, 0.07);
    }

    .skh-header .nav-item.dropdown {
        display: block !important;
        position: static !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .skh-header .nav-item.dropdown > .nav-link {
        width: 100% !important;
    }

    .skh-header .nav-item:last-child {
        border-bottom: none;
    }

    .skh-header .nav-link {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100% !important;
        padding: 13px 16px !important;
        font-family: 'DM Sans', 'Poppins', sans-serif !important;
        font-size: 0.78rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.08em !important;
        text-align: left !important;
        color: #153d66 !important;
        background: #ffffff !important;
        border-bottom: none !important;
    }

    .skh-header .nav-link i {
        margin-left: auto !important;
        font-size: 0.62rem !important;
        color: #c45100 !important;
        opacity: 1 !important;
        transition: transform 0.2s ease;
    }

    .skh-header .nav-item.dropdown.show > .nav-link .fa-chevron-down {
        transform: rotate(180deg);
    }

    .skh-header .nav-link::after {
        display: none !important;
    }

    .skh-header .nav-link.active {
        background: rgba(21, 61, 102, 0.05) !important;
        color: #0e2d4f !important;
        border-left: 3px solid #c45100 !important;
        padding-left: 13px !important;
    }

    .skh-header .nav-item.dropdown > .dropdown-menu,
    .skh-header .navbar-nav .dropdown-menu,
    .skh-header .dropdown-menu {
        position: static !important;
        inset: auto !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        float: none !important;
        transform: none !important;
        display: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: #f4f6f8 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        animation: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        max-height: none !important;
        overflow: visible !important;
        z-index: auto !important;
    }

    .skh-header .nav-item.dropdown:hover > .dropdown-menu:not(.show),
    .skh-header .nav-item.dropdown:hover .dropdown-menu:not(.show),
    .skh-header .dropdown:hover > .dropdown-menu:not(.show) {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .skh-header .nav-item.dropdown.show > .dropdown-menu,
    .skh-header .nav-item.dropdown.show > .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .skh-header .dropdown-menu li {
        border-bottom: 1px solid rgba(21, 61, 102, 0.06);
    }

    .skh-header .dropdown-menu a {
        display: flex !important;
        align-items: center;
        gap: 10px !important;
        padding: 11px 16px 11px 24px !important;
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        color: #3d5673 !important;
        text-align: left !important;
        border-bottom: none !important;
        background: transparent !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
        line-height: 1.35 !important;
    }

    .skh-header .dropdown-menu a i {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.72rem !important;
        background: rgba(21, 61, 102, 0.07) !important;
        color: #153d66 !important;
    }

    .skh-header .dropdown-menu a:hover,
    .skh-header .dropdown-menu a:focus,
    .skh-header .dropdown-menu a.active {
        background: rgba(196, 81, 0, 0.08) !important;
        color: #153d66 !important;
        padding-left: 24px !important;
        box-shadow: inset 3px 0 0 #c45100 !important;
    }

    .skh-header .nav-item-call-btn.skh-nav-call {
        display: block !important;
        background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
    }

    .skh-header .nav-item-call-btn .nav-link-call-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: calc(100% - 24px);
        margin: 12px auto;
        padding: 12px 16px !important;
        border-radius: 8px;
        background: #153d66 !important;
        color: #ffffff !important;
        font-family: 'DM Sans', sans-serif !important;
        font-size: 0.78rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.06em !important;
        text-decoration: none !important;
        text-align: center !important;
    }

    .skh-menu-btn {
        display: inline-flex !important;
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        margin: 0 !important;
        padding: 0 !important;
        border: 1px solid rgba(21, 61, 102, 0.14) !important;
        border-radius: 8px;
        background: #ffffff !important;
        color: #153d66 !important;
        box-shadow: 0 2px 8px rgba(21, 61, 102, 0.08);
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .skh-menu-btn .fa-bars {
        font-size: 1.22rem;
        line-height: 1;
        pointer-events: none;
    }

    .skh-menu-btn.is-open .fa-bars::before,
    .skh-menu-btn[aria-expanded="true"] .fa-bars::before {
        content: "\f00d";
    }

    .skh-menu-btn:hover,
    .skh-menu-btn.is-open,
    .skh-menu-btn[aria-expanded="true"] {
        background: rgba(21, 61, 102, 0.06) !important;
        border-color: rgba(196, 81, 0, 0.35) !important;
        color: #153d66 !important;
    }

    body.skh-mobile-nav-open {
        overflow: hidden;
    }

    body.skh-mobile-nav-open .skh-header .navbar-nav,
    body.skh-mobile-nav-open .skh-header .skh-nav-menu {
        border-bottom: 2px solid rgba(196, 81, 0, 0.2);
        box-shadow: 0 10px 24px rgba(21, 61, 102, 0.1);
    }
}

@media (max-width: 576px) {
    .skh-mobile-topbar {
        min-height: 56px;
        padding: 6px 10px 6px 8px;
        gap: 8px;
    }

    .skh-mobile-brand-lockup {
        gap: 8px;
    }

    .skh-mobile-brand__logo {
        width: 48px;
        height: 48px;
    }

    .skh-header.is-scrolled .skh-mobile-topbar {
        min-height: 52px;
    }

    .skh-header.is-scrolled .skh-mobile-brand__logo {
        width: 44px;
        height: 44px;
    }

    .skh-menu-btn {
        width: 40px;
        height: 40px;
    }
}

/* Virtual tour floating button and modal */
.floating-buttons-container .floating-left-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    pointer-events: auto;
}

.floating-buttons-container .virtual-tour-btn {
    border: 0;
    cursor: pointer;
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 100%) !important;
}

.floating-buttons-container .virtual-tour-btn:hover {
    background: linear-gradient(135deg, #14b8a6 0%, #0891b2 100%) !important;
}

.floating-buttons-container .virtual-tour-btn i {
    color: #ffffff !important;
}

.floating-buttons-container .virtual-tour-btn .btn-label {
    left: calc(100% + 12px);
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

.floating-buttons-container .virtual-tour-btn .btn-label::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    width: 10px;
    height: 10px;
    transform: translateY(-50%) rotate(45deg);
    background: rgba(0, 0, 0, 0.8);
}

.virtual-tour-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.76);
    backdrop-filter: blur(10px);
}

.virtual-tour-modal.is-open {
    display: flex;
}

.virtual-tour-dialog {
    width: min(1180px, 100%);
    height: min(760px, calc(100dvh - 48px));
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.virtual-tour-sidebar {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-right: 1px solid rgba(15, 118, 110, 0.16);
    background: #f0fdfa;
}

.virtual-tour-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    border-bottom: 1px solid rgba(15, 118, 110, 0.14);
}

.virtual-tour-header strong {
    display: block;
    color: #134e4a;
    font-size: 1rem;
    line-height: 1.25;
}

.virtual-tour-header span {
    display: block;
    margin-top: 4px;
    color: #476b66;
    font-size: 0.82rem;
    line-height: 1.35;
}

.virtual-tour-select-label,
.virtual-tour-select {
    display: none;
}

.virtual-tour-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #134e4a;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.virtual-tour-list {
    min-height: 0;
    overflow: auto;
    padding: 12px;
}

.virtual-tour-option {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 10px 12px;
    color: #134e4a;
    background: transparent;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
}

.virtual-tour-option:hover,
.virtual-tour-option.is-active {
    border-color: rgba(20, 184, 166, 0.3);
    background: #ffffff;
}

.virtual-tour-frame-wrap {
    min-width: 0;
    min-height: 0;
    background: #111827;
}

.virtual-tour-frame {
    width: 100%;
    height: 100%;
    border: 0;
    background: #111827;
}

body.virtual-tour-lock {
    overflow: hidden;
}

@media (max-width: 768px) {
    .floating-buttons-container .floating-left-stack {
        gap: 10px;
    }

    .virtual-tour-modal {
        padding: 12px;
    }

    .virtual-tour-dialog {
        height: calc(100dvh - 24px);
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(0, 1fr);
        border-radius: 14px;
    }

    .virtual-tour-sidebar {
        border-right: 0;
        border-bottom: 1px solid rgba(15, 118, 110, 0.16);
    }

    .virtual-tour-header {
        padding: 14px;
    }

    .virtual-tour-header > div {
        min-width: 0;
        flex: 1;
    }

    .virtual-tour-header strong {
        font-size: 0.95rem;
    }

    .virtual-tour-header span {
        margin-top: 2px;
        font-size: 0.78rem;
    }

    .virtual-tour-select-label {
        display: block;
        margin: 10px 0 5px;
        color: #134e4a;
        font-size: 0.72rem;
        font-weight: 800;
        line-height: 1.2;
    }

    .virtual-tour-select {
        display: block;
        width: 100%;
        min-height: 42px;
        border: 1px solid rgba(20, 184, 166, 0.32);
        border-radius: 8px;
        padding: 8px 34px 8px 10px;
        color: #134e4a;
        background-color: #ffffff;
        font-size: 0.85rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .virtual-tour-list {
        display: none;
    }
}
