.heade {
    background: linear-gradient(135deg, #059669 0%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ================= LIGHT THEME STYLES ================= */

.edu-hero-section {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0f172a;
    /* Dark Text */
    box-sizing: border-box;
}

.edu-hero-section *,
.edu-hero-section *::before,
.edu-hero-section *::after {
    box-sizing: border-box;
}

.edu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


/* --- Left Visual Wrapper --- */

.edu-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Green & Yellow Soft Glow Backdrop */

.glow-backdrop {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(234, 179, 8, 0.1) 60%, transparent 80%);
    filter: blur(40px);
    z-index: 1;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

.bg-shape-circle {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1.5px dashed rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    z-index: 1;
    animation: rotateCircle 30s linear infinite;
}

.bg-dots {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(16, 185, 129, 0.25) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    z-index: 1;
}

.main-img-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 440px;
}

.main-img-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 6;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.main-img-container:hover img {
    transform: translateY(-6px) scale(1.02);
}


/* Floating Badges for Light Theme */

.edu-badge {
    position: absolute;
    z-index: 3;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    animation: float 4s ease-in-out infinite;
}

.edu-badge.top-left {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.edu-badge.bottom-right {
    bottom: 8%;
    right: -20px;
    animation-delay: 2s;
}

.badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ffffff;
}


/* Emerald Green Badge */

.badge-icon.badge-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
}


/* Golden Yellow Badge */

.badge-icon.badge-yellow {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    box-shadow: 0 6px 15px rgba(234, 179, 8, 0.3);
}

.badge-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.badge-text p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}

.edu-icon-node {
    position: absolute;
    top: -10px;
    right: 20px;
    z-index: 3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eab308;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    animation: float 5s ease-in-out infinite 1s;
}


/* --- Right Side Content --- */

.edu-content {
    position: relative;
    z-index: 2;
}

.sub-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #059669;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.edu-title {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
}

.own {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}


/* Heading with Emerald Green Gradient */

.edu-title span {
    background: linear-gradient(135deg, #059669 0%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.edu-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    /* Dark Gray for high contrast */
    margin-bottom: 32px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

.action-group {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* Green Primary CTA Button */

.btn-primary {
    padding: 14px 32px;
    border-radius: 12px;
    background: #ffcb24;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.45);
}


/* Yellow Accent Secondary Button */

.btn-secondary {
    padding: 50px 28px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-secondary i {
    color: #ca8a04;
}

.btn-secondary:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}


/* Keyframe Animations */

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* Responsive Styles */

@media (max-width: 992px) {
    .edu-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .edu-content {
        text-align: center;
    }

    .sub-tag {
        margin: 0 auto 20px auto;
    }

    .features-list {
        justify-content: center;
        text-align: left;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .action-group {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .edu-title {
        font-size: 2.1rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .action-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .bg-shape-circle {
        width: 280px;
        height: 280px;
    }

    .glow-backdrop {
        width: 240px;
        height: 240px;
    }

    .edu-badge.top-left {
        left: 0;
    }

    .edu-badge.bottom-right {
        right: 0;
    }

    .edu-badge.bottom-right {
        right: 0;
    }
}

.em-services-section {
    --primary-blue: #0b2545;
    --accent-yellow: #ffc107;
    --light-bg: #f8f9fa;
    --card-shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
    --text-gray: #4a5568;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 0px;
    /* Increased top padding for heading */
    box-sizing: border-box;
    background-color: #ffffff;
}

.em-services-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* Heading Style */

.em-services-section .section-heading {
    text-align: center;
    color: #000;
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.em-services-section .section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-yellow);
}

.em-services-container {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 50px;
    align-items: center;
}


/* Left Image Section with Orbit Nodes */

.em-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.em-main-img-card {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 3px solid var(--accent-yellow);
    padding: 10px;
    box-shadow: var(--card-shadow);
}

.em-main-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


/* Floating Orbit Icons */

.em-orbit-ring {
    position: absolute;
    width: 480px;
    height: 480px;
    border: 2px dashed rgba(255, 193, 7, 0.4);
    border-radius: 50%;
    pointer-events: none;
}

.em-orbit-node {
    position: absolute;
    width: 56px;
    height: 56px;
    background: #ffffff;
    border: 2px solid var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-yellow);
    /* Icons are yellow */
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


/* Position adjustment to center icons perfectly */

.em-orbit-node i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.em-node-1 {
    top: 5%;
    right: 15%;
}

.em-node-2 {
    top: 28%;
    right: 0%;
}

.em-node-3 {
    bottom: 28%;
    right: 0%;
}

.em-node-4 {
    bottom: 5%;
    right: 15%;
}


/* Right Grid Section */

.em-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.em-service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 26px 26px 26px;
    position: relative;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 193, 7, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-review-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    text-align: left;
}

.em-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11, 37, 69, 0.12);
}

.em-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.em-badge-num {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 16px;
    padding: 6px 14px;
    border-radius: 6px;
}

.em-card-icon {
    background: linear-gradient(135deg, #059669 0%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
}

.em-card-title {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.em-card-desc {
    color: var(--text-gray);
    font-size: 14.5px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.em-card-bottom-line {
    width: 30px;
    height: 3px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
}


/* Responsive Layout */

@media (max-width: 1024px) {
    .em-services-container {
        grid-template-columns: 1fr;
    }

    .em-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .em-image-wrapper {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .em-cards-grid {
        grid-template-columns: 1fr;
    }

    .em-main-img-card {
        width: 260px;
        height: 260px;
    }

    .em-orbit-ring {
        width: 300px;
        height: 300px;
    }

    .em-services-section .section-heading {
        font-size: 28px;
    }
}


/* ================= PREMIUM BOARDING SCHOOLS SECTION ================= */

.premium-boarding-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    /* Soft off-white to make cards pop */
}

.premium-boarding-header .section-heading {
    font-size: 45px;
    font-weight: 500;
    color: #000;
}

.premium-boarding-header .section-subheading {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}


/* Modern Pill Tabs */

.premium-box {
    background: transparent;
    padding: 20px 0;
}

.premium-box .nav-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.premium-box .nav-pills .nav-item {
    margin: 0;
}

.premium-box .nav-pills .nav-link {
    border-radius: 40px;
    padding: 12px 24px;
    font-weight: 600;
    color: #ffff;
    background: transparent;
    transition: all 0.3s ease;
    border: none;
    font-size: 15px;
}

.premium-box .nav-pills .nav-link:hover {
    color: #0b2545;
    background: #f1f5f9;
}

.premium-box .nav-pills .nav-link.active {
    background: linear-gradient(135deg, #0b2545 0%, #1a4971 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(11, 37, 69, 0.25);
    transform: translateY(-2px);
}


/* Premium Boarding Grid */

.premium-box .boarding-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.premium-box .boarding-content li {
    display: block;
    width: 100%;
    max-width: none !important;
    flex: none !important;
    margin: 0;
    padding: 0;
    float: none;
    /* override old CSS */
}

.premium-box .boarding-content .boarding-img {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.06);
    border: 1px solid rgba(255, 193, 7, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    min-height: 250px;
}

.premium-box .boarding-content .boarding-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 37, 69, 0.15);
    border-color: #ffc107;
}

.premium-box .boarding-content .boarding-img img {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.premium-box .boarding-content .boarding-img:hover img {
    transform: scale(1.1);
}

.premium-box .boarding-content .boarding-img h2 {
    font-size: 18px;
    font-weight: 700;
    color: #0b2545;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .premium-boarding-header .section-heading {
        font-size: 32px;
    }

    .premium-box .nav-pills {
        border-radius: 20px;
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        gap: 10px;
    }

    .premium-box .nav-pills .nav-link {
        width: 100%;
        text-align: center;
        background: #0000;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }
}

.boarding-schools-section {
    position: relative;
    padding: 60px 0 80px 0;
    overflow: hidden;
}

/* SVG Frame Outer Positioning */
.golden-frame-wrapper {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 98%;
    max-width: 1800px;
    height: 310px;
    pointer-events: none;
    z-index: 1;
}

/* Content Area */
.section-container {
    position: relative;
    width: 100%;
    max-width: 1800px;
    padding: 0 30px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.top-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #b8860b;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.top-tag::before,
.top-tag::after {
    content: '✦';
    font-size: 9px;
}

.main-heading {
    font-size: 45px;
    color: #000;
    font-weight: 500;
    margin-bottom: 12px;
}

.sub-heading {
    color: #666666;
    font-size: 15px;
    margin-bottom: 16px;
}

.divider {
    width: 45px;
    height: 2px;
    background-color: #8b0000;
    margin: 0 auto 40px auto;
}

/* Carousel Slider Base - Constrained to fit exactly 5 cards view */
.marquee-slider {
    width: 100%;
    max-width: 1200px;
    /* 5 cards (220px) + 4 gaps (24px) = 1196px */
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

/* Horizontal Track */
.marquee-track {
    display: flex !important;
    flex-direction: row !important;
    width: max-content;
    gap: 24px;
    animation: scrollMarquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* School Card Layout - 15 cards in viewport loop */
.school-card {
    width: 300px;
    min-width: 300px;
    background: #ffffff;
    border: 1px solid rgba(225, 225, 225, 0.8);
    border-radius: 18px;
    padding: 26px 16px 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease;
    min-height: 250px;
    box-sizing: border-box;
}

.school-card:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.logo-container {
    height: 160px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.logo-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.school-name {
    font-size: 15px;
    font-weight: 700;
    color: #222222;
    line-height: 1.35;
    margin-bottom: 12px;
    text-align: center;
}

.card-line {
    width: 30px;
    height: 3px;
    background-color: #d4af37;
    border-radius: 2px;
}

/* Infinite Scroll Keyframes (Card Width 300px + Gap 24px = 324px, 15 Cards = 4860px) */
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-324px * 15));
    }
}

@media (max-width: 768px) {
    .golden-frame-wrapper {
        display: none;
    }

    .marquee-slider {
        max-width: 100%;
    }
}

/* ================= TOP-PERFORMING & PROGRESSIVE SCHOOLS ================= */
.boarding-block {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.boarding-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.boarding-block img {
    width: 100%;
    height: 240px !important;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.boarding-block:hover img {
    transform: scale(1.05);
}

.boarding-box-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Pushes the button to the bottom */
}

.boarding-box-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0b2545;
    margin-bottom: 12px;
}

.boarding-box-content h5 {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Stretches the address area so buttons align */
}

.boarding-box-content h5 i {
    color: #f7a212;
    margin-right: 5px;
}

.boarding-box-content a {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #0b2545 0%, #1a4971 100%);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.boarding-box-content a:hover {
    background: linear-gradient(135deg, #1a4971 0%, #0b2545 100%);
    transform: translateX(5px);
}

/* Ensure Owl Carousel items stretch equally */
.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    display: flex;
}

.owl-carousel .owl-item .item {
    display: flex;
    width: 100%;
}

/* ================= GOOGLE STYLE REVIEWS ================= */
.google-review-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    text-align: left;
}

.google-review-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gr-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.gr-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    margin-right: 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gr-user-info {
    flex-grow: 1;
    margin-top: 2px;
}

.gr-name {
    font-size: 17px;
    font-weight: 700;
    color: #202124;
    line-height: 1.2;
}

.gr-date {
    font-size: 12.5px;
    color: #70757a;
    margin-top: 4px;
    line-height: 1.4;
}

.gr-icon {
    margin-left: 12px;
    margin-top: 2px;
}

.gr-stars {
    margin-bottom: 14px;
}

.gr-stars i {
    color: #fbbc04;
    font-size: 15px;
    margin-right: 3px;
}

.gr-text p {
    font-size: 15px;
    color: #4a4d52;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* ================= PREMIUM STATS SECTION ================= */
.em-stats-section {
    background: #f8f9fb;
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

.em-stats-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -200px;
    background: radial-gradient(circle, rgba(7, 29, 56, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.em-stats-section__header {
    margin-bottom: 50px;
}

.em-stats-section__tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #FFC928;
    margin-bottom: 14px;
    position: relative;
    padding: 0 20px;
}

.em-stats-section__tag::before,
.em-stats-section__tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: rgba(255, 201, 40, 0.4);
}

.em-stats-section__tag::before {
    left: -20px;
}

.em-stats-section__tag::after {
    right: -20px;
}

.em-stats-section__title {
    font-size: 46px;
    font-weight: 500;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.em-stats-section__subtitle {
    font-size: 16px;
    color: #6b7c93;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.em-stats {
    position: relative;
    z-index: 10;
}

.em-stats__grid {
    display: flex;
    gap: 0;
    background: linear-gradient(135deg, #0B2341 0%, #0f3460 50%, #0B2341 100%);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 201, 40, 0.10);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.em-stats__card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 35px 20px;
    position: relative;
    transition: background 0.3s ease;
}

.em-stats__card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 201, 40, 0.2), transparent);
}

.em-stats__card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.em-stats__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 201, 40, 0.10);
    border: 1px solid rgba(255, 201, 40, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.em-stats__card:hover .em-stats__icon-wrap {
    background: rgba(255, 201, 40, 0.18);
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(255, 201, 40, 0.15);
}

.em-stats__icon-wrap i {
    font-size: 22px;
    color: #FFC928;
}

.em-stats__info {
    text-align: left;
}

.em-stats__number {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.em-stats__number h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.5px;
}

.em-stats__plus {
    font-size: 28px;
    font-weight: 600;
    color: #FFC928;
    line-height: 1;
}

.em-stats__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.50);
    margin: 6px 0 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Stats Responsive */
@media (max-width: 991px) {
    .em-stats__grid {
        flex-wrap: wrap;
    }

    .em-stats__card {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .em-stats__card:nth-child(2)::after {
        display: none;
    }

    .em-stats__card:nth-child(1),
    .em-stats__card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 201, 40, 0.08);
    }
}

@media (max-width: 575px) {
    .em-stats-section {
        padding: 50px 0 60px;
    }

    .em-stats-section__title {
        font-size: 26px;
    }

    .em-stats-section__subtitle {
        font-size: 14px;
    }

    .em-stats__grid {
        flex-direction: column;
        border-radius: 14px;
    }

    .em-stats__card {
        flex: 1;
        max-width: 100%;
        padding: 24px 28px;
        justify-content: flex-start;
    }

    .em-stats__card:not(:last-child)::after {
        display: none;
    }

    .em-stats__card:not(:last-child) {
        border-bottom: 1px solid rgba(255, 201, 40, 0.08);
    }

    .em-stats__number h2 {
        font-size: 30px;
    }
}

/* ================= PREMIUM FOOTER ================= */
.em-footer {
    position: relative;
    background: #071D38;
    overflow: hidden;
    padding-top: 0;
}

/* Subtle Background Pattern */
.em-footer__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        radial-gradient(circle at 20% 80%, #FFC928 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, #FFC928 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, #9FC7F2 0.5px, transparent 0.5px),
        radial-gradient(circle at 10% 30%, #FFC928 0.5px, transparent 0.5px),
        radial-gradient(circle at 90% 70%, #9FC7F2 0.5px, transparent 0.5px);
    background-size: 200px 200px, 180px 180px, 120px 120px, 160px 160px, 140px 140px;
    pointer-events: none;
    z-index: 0;
}

.em-footer__bg-pattern::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -300px;
    left: -200px;
    background: radial-gradient(circle, rgba(15, 54, 100, 0.5) 0%, transparent 70%);
    pointer-events: none;
}

.em-footer__bg-pattern::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
    background: radial-gradient(circle, rgba(159, 199, 242, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ---- 1. CTA PANEL ---- */
.em-footer__cta-wrap {
    position: relative;
    z-index: 2;
    padding: 50px 0 0;
    margin-top: 0;
}

.em-footer__cta {
    position: relative;
    background: linear-gradient(135deg, #0B2341 0%, #0f3460 50%, #0B2341 100%);
    border-radius: 20px;
    padding: 50px 55px;
    overflow: hidden;
    border: 1px solid rgba(255, 201, 40, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.em-footer__cta-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 201, 40, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.em-footer__cta-title {
    font-size: 39px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.em-footer__cta-text {
    font-size: 16px;
    color: #9FC7F2;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 520px;
}

.em-footer__cta-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Buttons */
.em-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.35s ease;
    text-align: center;
    letter-spacing: 0.3px;
    min-width: 170px;
}

.em-btn--gold {
    background: #FFC928;
    color: #071D38;
    font-size: 16px;
    border: 2px solid #FFC928;
    box-shadow: 0 4px 20px rgba(255, 201, 40, 0.25);
}

.em-btn--gold:hover {
    background: #e6b520;
    border-color: #e6b520;
    color: #071D38;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 201, 40, 0.35);
    text-decoration: none;
}

.em-btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.em-btn--outline:hover {
    border-color: #FFC928;
    color: #FFC928;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 201, 40, 0.12);
    text-decoration: none;
}

/* ---- 2. MAIN CONTENT ---- */
.em-footer__main {
    position: relative;
    z-index: 2;
    padding: 80px 0 50px;
}

.em-footer__col {
    margin-bottom: 40px;
}

/* Brand */
.em-footer__brand {
    padding-right: 30px;
}

.em-footer__logo {
    width: 220px;
    margin-bottom: 22px;
}

.em-footer__brand-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Social Icons - Glassmorphism */
.em-footer__social {
    display: flex;
    gap: 14px;
}

.em-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    transition: all 0.35s ease;
}

.em-footer__social a:hover {
    background: rgba(255, 201, 40, 0.12);
    border-color: rgba(255, 201, 40, 0.3);
    color: #FFC928;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 201, 40, 0.15);
    text-decoration: none;
}

/* Headings */
.em-footer__heading {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
    letter-spacing: 0.5px;
}

.em-footer__heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: #FFC928;
    border-radius: 2px;
}

/* Navigation Links */
.em-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.em-footer__links li {
    margin-bottom: 14px;
}

.em-footer__links li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.50);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.em-footer__links li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #FFC928;
    transition: width 0.3s ease;
}

.em-footer__links li a:hover {
    color: #FFC928;
    padding-left: 8px;
}

.em-footer__links li a:hover::before {
    width: 20px;
}

/* Contact */
.em-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.em-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.em-footer__contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(255, 201, 40, 0.08);
    color: #FFC928;
    font-size: 15px;
    border: 1px solid rgba(255, 201, 40, 0.10);
}

.em-footer__contact-text {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

.em-footer__contact-text a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
}

.em-footer__contact-text a:hover {
    color: #FFC928;
}

/* ---- 4. GOLD DIVIDER ---- */
.em-footer__divider {
    position: relative;
    z-index: 2;
    padding: 0 15%;
}

.em-footer__divider span {
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 201, 40, 0.25) 30%, rgba(255, 201, 40, 0.4) 50%, rgba(255, 201, 40, 0.25) 70%, transparent 100%);
}

/* ---- 5. BOTTOM BAR ---- */
.em-footer__bottom {
    position: relative;
    z-index: 2;
    padding: 24px 0;
}

.em-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.em-footer__copy {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.30);
    margin: 0;
    letter-spacing: 0.2px;
}

.em-footer__bottom-links {
    display: flex;
    gap: 28px;
}

.em-footer__bottom-links a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.30);
    text-decoration: none;
    transition: color 0.3s ease;
}

.em-footer__bottom-links a:hover {
    color: #FFC928;
}

/* ---- 6. FLOATING ACTIONS REDESIGN ---- */
.enquire-fixed-btn {
    border-radius: 10px 10px 0 0 !important;
    background: linear-gradient(135deg, #FFC928 0%, #e6b520 100%) !important;
    border-color: #FFC928 !important;
    box-shadow: 0 4px 20px rgba(255, 201, 40, 0.3) !important;
    transition: all 0.35s ease !important;
}

.enquire-fixed-btn:hover {
    box-shadow: 0 6px 25px rgba(255, 201, 40, 0.45) !important;
}

.enquire-fixed-btn a {
    letter-spacing: 1px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.whatsapp-fixed-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4) !important;
    transition: all 0.35s ease !important;
    z-index: 9999 !important;
    background: transparent !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-fixed-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5) !important;
}

.whatsapp-fixed-btn a {
    display: block;
    width: 100%;
    height: 100%;
}

.whatsapp-fixed-btn a img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    border: none !important;
    object-fit: contain;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .em-footer__cta {
        padding: 40px 30px;
        text-align: center;
    }

    .em-footer__cta-title {
        font-size: 26px;
    }

    .em-footer__cta-text {
        max-width: 100%;
        margin-bottom: 24px;
    }

    .em-footer__cta-actions {
        justify-content: center;
    }

    .em-footer__brand {
        padding-right: 0;
        text-align: center;
        margin-bottom: 10px;
    }

    .em-footer__social {
        justify-content: center;
    }

    .em-footer__main {
        padding: 50px 0 20px;
    }

    .em-footer__heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .em-footer__nav {
        text-align: center;
    }

    .em-footer__links li a {
        display: inline-block;
    }

    .em-footer__links li a:hover {
        padding-left: 0;
    }

    .em-footer__contact {
        text-align: center;
    }

    .em-footer__contact-item {
        justify-content: center;
    }

    .em-footer__bottom-inner {
        justify-content: center;
        text-align: center;
    }

    .em-footer__divider {
        padding: 0 8%;
    }
}

@media (max-width: 575px) {
    .em-footer__cta-wrap {
        margin-top: -30px;
    }

    .em-footer__cta {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .em-footer__cta-title {
        font-size: 22px;
    }

    .em-footer__cta-text {
        font-size: 14px;
    }

    .em-btn {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 150px;
        border-radius: 10px;
    }

    .em-footer__cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .em-footer__main {
        padding: 40px 0 10px;
    }

    .em-footer__heading {
        text-align: center;
    }

    .em-footer__contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .em-footer__bottom-links {
        gap: 18px;
    }

    .em-footer__divider {
        padding: 0 5%;
    }
}

/* ================= PREMIUM VIDEO SECTION ================= */
.em-video-section {
    background-color: #f8fafc;
}

.em-video-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(7, 29, 56, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.em-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(7, 29, 56, 0.1);
}

.em-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #e2e8f0;
}

.em-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.em-video-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.em-video-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #071D38;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .em-video-info h3 {
        font-size: 16px;
    }

    .em-video-info {
        padding: 18px;
    }
}


/* ================= PREMIUM SEARCH BAR ================= */
.em-search-bar-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    /* Overlap the banner */
    padding-bottom: 40px;
}

.em-search-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 40px 20px;
    box-shadow: 0 15px 45px rgba(7, 29, 56, 0.1);
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.em-search-title {
    font-size: 25px;
    color: #071D38;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.em-search-group {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 6px;
    gap: 10px;
}

.em-search-field {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 15px;
}

.em-search-field i {
    color: #94a3b8;
    font-size: 22px;
    /* Increased icon size */
    margin-right: 10px;
}

.em-search-select {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 18px;
    /* Increased from 15px */
    color: #1e293b;
    padding: 12px 0;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    /* Removed background-image chevron here to avoid double arrows */
}

.em-search-divider {
    width: 1px;
    height: 30px;
    background: #e2e8f0;
}

.em-search-btn {
    background: #FFC928;
    color: #071D38;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.em-search-btn:hover {
    background: #071D38;
    color: #FFC928;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(7, 29, 56, 0.2);
}

.em-search-advanced a {
    color: #64748b;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.em-search-advanced a:hover {
    color: #071D38;
}

@media (max-width: 768px) {
    .em-search-bar-section {
        margin-top: 0;
        padding: 22px 15px 36px;
    }

    .em-search-wrapper {
        max-width: 320px;
        padding: 24px 20px 15px;
    }

    .em-search-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 15px;
    }

    .em-search-field {
        width: 100%;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        padding: 4px 15px;
    }

    .em-search-divider {
        display: none;
    }

    .em-search-btn {
        width: 100%;
        margin-top: 5px;
    }

    .em-search-advanced {
        text-align: center !important;
    }
}

/* ================= CUSTOM DROPDOWN STYLING ================= */
.em-custom-dropdown .btn.em-search-select {
    width: 100%;
    background: transparent;
    border: none;
    padding: 12px 0;
    font-size: 18px;
    /* Increased size */
    color: #1e293b;
    font-weight: 500;
    box-shadow: none !important;
}

.em-custom-dropdown .btn.em-search-select::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.em-custom-dropdown.show .btn.em-search-select::after {
    transform: rotate(180deg);
}

.em-custom-dropdown .dropdown-menu {
    border-radius: 12px;
    padding: 10px 0;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(7, 29, 56, 0.1) !important;
    border: 1px solid #f1f5f9 !important;
}

.em-custom-dropdown .dropdown-item {
    padding: 10px 20px;
    font-size: 17px;
    /* Increased size */
    color: #334155;
    font-weight: 500;
    transition: all 0.2s ease;
}

.em-custom-dropdown .dropdown-item:hover,
.em-custom-dropdown .dropdown-item.active-item {
    background-color: #f8fafc;
    color: #071D38;
}

/* Fix inner pages header to match the main theme */
.inner-header .header:not(.scrolled) {
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.inner-header .header:not(.scrolled) .main-logo {
    background: #ffffff !important;
}

/* Add padding above the top contact bar */
.topAddress {
    padding-top: 10px;
}

/* Premium Breadcrumb Banner Gradient */
.main-head:not(.overseas-head):not(.main-head2) {
    background: linear-gradient(135deg, #041224 0%, #071D38 40%, #123566 100%) !important;
    border-bottom: 2px solid rgba(244, 180, 0, 0.2);
}

.main-head:not(.overseas-head):not(.main-head2) h1 {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Fix sticky header for inner pages */
.inner-header .header.scrolled {
    position: fixed !important;
    background: rgb(10 10 10 / 56%) !important;
    padding: 12px 25px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
}

.inner-header .header.scrolled .main-logo {
    position: static !important;
    background: transparent !important;
    padding: 0 !important;
}

/* Premium Contact UI Updates */
.em-premium-contact-form .form-control {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    color: #1e293b;
    transition: all 0.3s ease;
    height: auto;
    box-shadow: none !important;
}

.em-premium-contact-form .form-control:focus {
    border-color: #F4B400;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.1) !important;
}

.em-premium-contact-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.contact-form {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-info-box {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: flex-start !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card .wrap-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #071D38 0%, #123566 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(7, 29, 56, 0.2);
}

.service-card .wrap-icon img {
    max-width: 60px;
    filter: brightness(0) invert(1);
}

.service-card h5 {
    color: #071D38;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {

    .service-card,
    .service-card-lg {
        width: calc(50% - 10px);
    }
}

@media (max-width: 575px) {

    .service-card,
    .service-card-lg {
        width: 100%;
    }
}

.service-card-lg {
    width: calc(33.333% - 14px);
}

/* Premium Typography & Responsive Layout Classes */
.premium-title-h2 {
    font-size: 45px;
    font-weight: 500 !important;
    color: #071D38;
    margin-bottom: 30px;
}

.premium-title-h3 {
    font-size: 45px;
    font-weight: 500;
    color: #071D38;
    margin-bottom: 20px;
}

.premium-lead {
    color: #071D38;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
}

.premium-text {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.premium-img-rounded {
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.premium-enquiry-banner {
    background: linear-gradient(135deg, #041224 0%, #071D38 100%);
}

.premium-enquiry-banner h1 {
    margin: 0;
    color: #fff;
    font-weight: 300;
    font-size: 40px;
}

.service-card-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.service-card-text.large {
    font-size: 15px;
    color: #475569;
}

@media (max-width: 767px) {
    .premium-title-h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .premium-title-h3 {
        font-size: 26px;
    }

    .premium-enquiry-banner h1 {
        font-size: 32px;
    }
}

/* Premium Carousel Cards */
.owl-carousel.premium-carousel .owl-stage-outer {
    padding: 15px 0 25px 0;
}

.premium-carousel-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    margin: 5px;
    display: flex;
    flex-direction: column;
}

.premium-carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.premium-carousel-card .img-wrap {
    width: 100%;
    height: 220px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.premium-carousel-card .img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease;
    padding: 0;
    /* Full bleed image */
}

.premium-carousel-card:hover .img-wrap img {
    transform: scale(1.08);
}

.premium-carousel-card h3 {
    padding: 22px 20px;
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #071D38;
    text-align: center;
    background: #fff;
    line-height: 1.5;
    text-transform: capitalize;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif !important;
    border-top: 3px solid #FFC928;
}

.premium-carousel-card.infographic-card .img-wrap {
    height: 350px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-carousel-card.infographic-card .img-wrap img {
    object-fit: contain !important;
    height: 100% !important;
    width: 100% !important;
}

.em-daily-schedule {
    position: relative;
    overflow: hidden;
    padding: 50px 25px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}


/* subtle background */

.em-daily-schedule::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: rgba(68, 157, 204, 0.055);
    top: -300px;
    left: -200px;
}

.em-daily-schedule::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(68, 157, 204, 0.045);
    right: -250px;
    bottom: -200px;
}


/* CONTAINER */

.em-schedule-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.em-schedule-header {
    max-width: 850px;
    margin: 0 auto 65px;
    text-align: center;
}

.em-schedule-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #071D38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.em-schedule-eyebrow::before,
.em-schedule-eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: #071D38;
}

.em-schedule-header h2 {
    margin: 0;
    color: #071D38;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.2;
}


.em-schedule-header p {
    max-width: 650px;
    margin: 22px auto 0;
    color: #777;
    font-size: 15px;
    line-height: 1.8;
}


/* =====================================================
   MAIN GRID
===================================================== */

.em-schedule-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 70px;
    align-items: start;
}


/* =====================================================
   LEFT VISUAL
===================================================== */

.em-schedule-visual {
    position: sticky;
    top: 90px;
}

.em-visual-card {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    padding: 55px 45px;
    border-radius: 16px;
    background: #F4F7F9;
    border: 1px solid rgba(7, 29, 56, 0.05);
}


/* decorative circle */

.em-visual-card::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    border: 1px solid rgba(7, 29, 56, 0.05);
    right: -170px;
    top: -130px;
}

.em-visual-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px dashed rgba(7, 29, 56, 0.08);
    right: -100px;
    top: -65px;
}


/* CONTENT */

.em-visual-content {
    position: relative;
    z-index: 3;
}

.em-visual-small {
    color: #FFC928;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.em-visual-content h3 {
    margin: 20px 0;
    color: #071D38;
    font-size: clamp(42px, 4vw, 60px);
    font-weight: 500;
    line-height: 1.1;
}

.em-visual-content h3 em {
    color: #FFC928;
    font-style: italic;
}

.em-visual-line {
    width: 55px;
    height: 4px;
    margin: 25px 0;
    background: #FFC928;
    border-radius: 2px;
}

.em-visual-content p {
    max-width: 340px;
    color: #66747a;
    font-size: 14px;
    line-height: 1.8;
}


/* BIG TIME */

.em-big-time {
    position: absolute;
    z-index: 2;
    left: 42px;
    bottom: 25px;
    color: rgba(7, 29, 56, 0.04);
    font-family: 'Poppins', sans-serif;
    font-size: 110px;
    font-weight: 700;
    line-height: 1;
}

.em-big-time small {
    font-size: 65px;
}


/* CLOCK */

.em-clock-decoration {
    position: absolute;
    z-index: 4;
}

.em-clock-one {
    right: 35px;
    bottom: 45px;
}

.em-clock-two {
    display: none;
}

.em-clock-face {
    position: relative;
    width: 120px;
    height: 120px;
    border: 7px solid #fff;
    border-radius: 50%;
    background: #f9f9f5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.em-clock-face span,
.em-clock-face b,
.em-clock-face i,
.em-clock-face strong {
    position: absolute;
    color: #555;
    font-family: Georgia, serif;
    font-size: 10px;
    font-style: normal;
}

.em-clock-face span {
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.em-clock-face b {
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
}

.em-clock-face i {
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.em-clock-face strong {
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
}

.em-clock-hand {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform-origin: bottom center;
    border-radius: 5px;
}

.em-hour {
    width: 3px;
    height: 32px;
    background: #333;
    transform: translateX(-50%) rotate(35deg);
}

.em-minute {
    width: 2px;
    height: 42px;
    background: #FFC928;
    transform: translateX(-50%) rotate(130deg);
}

.em-clock-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #071D38;
}


/* =====================================================
   PHASE CARDS
===================================================== */

.em-phase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.em-phase-card {
    padding: 20px;
    background: #fff;
    border: 1px solid #e7e7e7;
    transition: 0.3s ease;
}

.em-phase-card:hover {
    transform: translateY(-4px);
    border-color: #3c91b8;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.em-phase-card span {
    display: block;
    margin-bottom: 9px;
    color: #FFC928;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.em-phase-card h4 {
    margin: 0 0 7px;
    color: #071D38;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.em-phase-card p {
    margin: 0;
    color: #888;
    font-size: 11px;
    line-height: 1.5;
}


/* =====================================================
   RIGHT SCHEDULE
===================================================== */

.em-schedule-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.em-schedule-list {
    position: relative;
    padding: 5px 0 10px;
}


/* vertical line */

.em-schedule-list::before {
    content: "";
    position: absolute;
    left: 122px;
    top: 55px;
    bottom: 30px;
    width: 1px;
    background: #d9e9ee;
}


/* HEADER */

.em-list-header {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 45px;
    padding: 0 0 17px;
    border-bottom: 1px solid #ddd;
    color: #999;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* ITEM */

.em-schedule-item {
    position: relative;
    display: grid;
    grid-template-columns: 100px 45px 1fr;
    gap: 0;
    min-height: 58px;
    align-items: center;
}


/* TIME */

.em-time {
    padding-right: 15px;
    color: #777;
    text-align: right;
    font-size: 13px;
    line-height: 1.3;
}


/* DOT */

.em-dot {
    position: relative;
    z-index: 3;
    width: 10px;
    height: 10px;
    margin: auto;
    border: 2px solid #FFC928;
    border-radius: 50%;
    background: #fff;
    transition: 0.25s ease;
}


/* ACTIVITY */

.em-activity {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 45px;
    padding: 5px 14px;
    color: #333;

    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
}

.em-activity span {
    color: #b4b4b4;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* HOVER */

.em-schedule-item:hover .em-dot {
    background: #FFC928;
    box-shadow: 0 0 0 5px rgba(255, 201, 40, 0.2);
}

.em-schedule-item:hover .em-activity {
    padding-left: 20px;
    color: #071D38;
    background: #F4F7F9;
}

.em-schedule-item:hover .em-time {
    color: #071D38;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .em-schedule-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .em-schedule-visual {
        position: relative;
        top: auto;
    }

    .em-visual-card {
        min-height: 420px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .em-daily-schedule {
        padding: 65px 16px;
    }

    .em-schedule-header {
        margin-bottom: 40px;
    }

    .em-schedule-header h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .em-schedule-header p {
        font-size: 13px;
    }


    .em-visual-card {
        min-height: 390px;
        padding: 40px 28px;
    }

    .em-visual-content h3 {
        font-size: 45px;
    }

    .em-big-time {
        left: 25px;
        bottom: 20px;
        font-size: 70px;
    }

    .em-clock-one {
        right: 20px;
        bottom: 25px;
    }

    .em-clock-face {
        width: 95px;
        height: 95px;
    }

    .em-hour {
        height: 26px;
    }

    .em-minute {
        height: 34px;
    }


    .em-phase-grid {
        grid-template-columns: 1fr 1fr;
    }

    .em-phase-card {
        padding: 15px;
    }

    .em-schedule-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .em-schedule-list::before {
        left: 75px;
        top: 52px;
    }

    .em-list-header {
        grid-template-columns: 65px 1fr;
        gap: 30px;
        font-size: 9px;
    }

    .em-schedule-item {
        grid-template-columns: 65px 30px 1fr;
        min-height: 65px;
    }

    .em-time {
        padding-right: 5px;
        font-size: 9px;
    }

    .em-activity {
        gap: 7px;
        padding: 7px 5px;
        font-size: 12px;
        line-height: 1.35;
    }

    .em-activity span {
        display: none;
    }

    .em-schedule-item:hover .em-activity {
        padding-left: 8px;
    }

}

/* =========================================
   BOARDING SECTION
========================================= */

.boarding-section {
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

.boarding-container {
    width: 100%;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.boarding-heading {
    max-width: 780px;
    margin: 0 auto 55px;
    padding: 0 20px;
    text-align: center;
}

.boarding-heading span {
    display: block;
    margin-bottom: 14px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #930122;
    text-transform: uppercase;
}

.boarding-heading h2 {
    margin: 0 0 18px;
    color: #0a2745;

    font-size: 45px;
    line-height: 1.1;
    font-weight: 500;
}

.boarding-heading p {
    margin: 0 auto;
    max-width: 680px;
    color: #6b7280;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   MARQUEE
========================================= */

.boarding-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}


/* =========================================
   MOVING TRACK
========================================= */

.boarding-track {
    display: flex;
    width: max-content;
    gap: 24px;

    animation: boardingScroll 35s linear infinite;

    will-change: transform;
}


/* =========================================
   CARD
========================================= */

.boarding-card {
    position: relative;

    width: 430px;
    height: 340px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);
}


/* Image */

.boarding-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    transition: transform 0.7s ease;
}


/* Overlay */

.boarding-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 60px 20px 20px;
    text-align: center;

    background: linear-gradient(to top,
            rgba(255, 255, 255, 1) 30%,
            rgba(255, 255, 255, 0));
}


.boarding-overlay h3 {
    margin: 0;

    color: #071D38;

    font-size: 24px;

    font-weight: 600;
}


/* =========================================
   HOVER
========================================= */

.boarding-card:hover img {
    transform: scale(1.06);
}


/* =========================================
   INFINITE ANIMATION
========================================= */

@keyframes boardingScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .boarding-section {
        padding: 75px 0;
    }

    .boarding-track {
        gap: 20px;
        animation-duration: 32s;
    }

    .boarding-card {
        width: 380px;
        height: 300px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .boarding-section {
        padding: 65px 0;
    }

    .boarding-heading {
        margin-bottom: 40px;
    }

    .boarding-heading h2 {
        font-size: 36px;
    }

    .boarding-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .boarding-track {
        gap: 16px;
        animation-duration: 25s;
    }

    .boarding-card {
        width: 300px;
        height: 260px;
        border-radius: 16px;
    }

    .boarding-overlay h3 {
        font-size: 23px;
    }

}

/* =========================================
   PREMIUM FEATURE LIST
========================================= */

.premium-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.premium-feature-list li {
    background: #fff;
    padding: 25px 25px 30px;
    border-radius: 16px;
    border: 1px solid rgba(7, 29, 56, 0.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-feature-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(7, 29, 56, 0.08);
}

.premium-feature-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 201, 40, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.premium-feature-icon img {
    width: 60px;
    /* Turns black PNG into dark navy #071D38 */
    filter: brightness(0) saturate(100%) invert(9%) sepia(48%) saturate(2680%) hue-rotate(193deg) brightness(94%) contrast(98%);
}

.premium-feature-content h4 {
    color: #071D38;
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.3;
}

.premium-feature-content p {
    color: #687586;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   PREMIUM TEAM UI
========================================= */

.premium-founder-card {
    background: linear-gradient(135deg, #071D38 0%, #113460 100%);
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 50px rgba(7, 29, 56, 0.15);
}

.premium-founder-card .founder-info h2 {
    color: #ffffff !important;
}

.premium-founder-card .founder-info p.premium-text {
    color: rgba(255, 255, 255, 0.8) !important;
}

.premium-founder-card .founder-info p.premium-text:nth-of-type(1) {
    color: #FFC928 !important;
}

.premium-founder-card .founder-img {
    height: 100%;
    min-height: 300px;
}

.premium-founder-card .founder-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.premium-team-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.premium-team-card {
    position: relative;
    background: #071D38;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
    height: 340px;
    padding: 0;
}

.premium-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(7, 29, 56, 0.25);
}

.premium-team-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background: #071D38;
    z-index: 1;
}

.premium-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.7s ease;
}

.premium-team-card:hover .premium-team-img img {
    transform: scale(1.08);
}

.premium-team-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(to top, rgba(7, 29, 56, 0.95) 0%, rgba(7, 29, 56, 0) 100%);
    z-index: 2;
    transition: height 0.4s ease;
}

.premium-team-card:hover::after {
    height: 80%;
}

.premium-team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.premium-team-info h4 {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 5px;
    transition: color 0.3s ease;
}

.premium-team-card:hover .premium-team-info h4 {
    color: #FFC928;
}

.premium-team-info p {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.premium-team-info b {
    color: rgba(255, 255, 255, 0.95);
}

.school-structure {
    position: relative;
    padding: 50px 0 50px;
    background: #f8f9fb;
    overflow: hidden;
}

.school-structure::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    top: -250px;
    left: -220px;
    background: rgba(147, 1, 34, 0.04);
    border-radius: 50%;
    filter: blur(10px);
}

.school-structure::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    bottom: -250px;
    background: rgba(10, 39, 69, 0.04);
    border-radius: 50%;
}

.structure-container {
    position: relative;
    z-index: 2;
    width: min(1400px, 92%);
    margin: auto;
}


/* ==========================================
   HEADING
========================================== */

.structure-heading {
    margin: 0 auto 70px;
    text-align: center;
}

.structure-heading span {
    display: inline-block;
    margin-bottom: 15px;
    color: #930122;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.structure-heading h2 {
    margin: 0 0 18px;
    color: #0a2745;

    font-size: 45px;
    line-height: 1.08;
    font-weight: 500;
}

.structure-heading p {

    margin: auto;
    color: #687586;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.8;
}


/* ==========================================
   PRINCIPAL
========================================== */

.structure-principal {
    display: flex;
    justify-content: center;
}

.structure-node {
    position: relative;
    box-sizing: border-box;
    text-align: center;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.structure-node:hover {
    transform: translateY(-5px);
}


/* Principal */

.principal-node {
    width: 340px;
    padding: 28px 25px 25px;
    border-radius: 18px;
    background: #0a2745;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 20px 45px rgba(10, 39, 69, 0.18);
}

.principal-node small {
    display: block;
    margin-bottom: 10px;
    color: #d7a94c;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.principal-node h3 {
    margin: 0;
    color: #fff;

    font-size: 25px;
    font-weight: 500;
}

.principal-node p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: "Inter", sans-serif;
    font-size: 12px;
}


/* ==========================================
   MAIN CONNECTOR
========================================== */

.main-connector {
    position: relative;
    width: 1px;
    height: 55px;
    margin: 0 auto;
    background: #cbd2da;
}

.main-connector::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 10px;
    height: 10px;
    border-right: 2px solid #930122;
    border-bottom: 2px solid #930122;
    transform: translateX(-50%) rotate(45deg);
}


/* ==========================================
   STRUCTURE GRID
========================================== */

.structure-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


/* horizontal connector */

.structure-grid::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: #cbd2da;
}


/* ==========================================
   COLUMN
========================================== */

.structure-column {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* ==========================================
   TOP DEPARTMENT NODE
========================================== */

.department-node {
    width: 100%;
    min-height: 105px;
    padding: 22px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    border-radius: 16px;

    background: #fff;

    border: 1px solid #e7e9ed;

    box-shadow:
        0 12px 30px rgba(15, 35, 55, 0.07);
}

.department-node span {
    position: absolute;
    top: 12px;
    right: 15px;

    color: #930122;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
}

.department-node h3 {
    margin: 0;
    color: #930122;


    font-size: 19px;
    line-height: 1.2;
    font-weight: 600;
}

.department-node p {
    margin: 5px 0 0;

    color: #7a8490;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
}


/* ==========================================
   CONNECTING LINE
========================================== */

.vertical-line {
    width: 1px;
    height: 24px;
    background: #cbd2da;
}


/* ==========================================
   LOWER NODES
========================================== */

.green-node,
.purple-node,
.yellow-node,
.pink-node {
    width: 100%;
    min-height: 84px;

    padding: 18px 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    box-sizing: border-box;
}


/* Green */

.green-node {
    background: #eef5cf;
    border: 1px solid #dce8a7;
}

.green-node h3 {
    color: #53680b;
}


/* Purple */

.purple-node {
    background: #eee7f7;
    border: 1px solid #dfd3ee;
}

.purple-node h3 {
    color: #68448c;
}


/* Yellow */

.yellow-node {
    background: #fff8d9;
    border: 1px solid #f4e9aa;
}

.yellow-node h3 {
    color: #856d00;
}


/* Pink */

.pink-node {
    background: #f5e5ec;
    border: 1px solid #ead0dc;
}

.pink-node h3 {
    color: #9c315f;
}


.green-node h3,
.purple-node h3,
.yellow-node h3,
.pink-node h3 {
    margin: 0;


    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1100px) {

    .structure-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .structure-grid::before {
        display: none;
    }

    .structure-column {
        padding-top: 0;
    }

}


@media (max-width: 767px) {

    .school-structure {
        padding: 75px 0;
    }

    .structure-container {
        width: 90%;
    }

    .structure-heading {
        margin-bottom: 45px;
    }

    .structure-heading h2 {
        font-size: 38px;
    }

    .structure-heading p {
        font-size: 14px;
    }

    .principal-node {
        width: 100%;
        max-width: 330px;
    }

    .main-connector {
        height: 35px;
    }

    .structure-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .structure-column {
        width: 100%;
        max-width: 420px;
        margin: auto;
    }

    .department-node {
        min-height: 95px;
    }

    .green-node,
    .purple-node,
    .yellow-node,
    .pink-node {
        min-height: 78px;
    }
}

/* Premium Link Button */
.premium-link-btn {
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff !important;
    display: inline-block;
    width: max-content !important;
    padding: 12px 35px !important;
    font-size: 16px;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .premium-link-btn {
        font-size: 14px;
        padding: 10px 25px !important;
        width: auto !important;
        max-width: 300px;
    }
}

/* Hide top contact bar on inner pages */
.inner-header .header .row.mb-3 {
    display: none !important;
}

/* RESTORED CSS AFTER FUZZY MATCH DISASTER */
.contact-info-box i {
    background: linear-gradient(135deg, #071D38 0%, #123566 100%) !important;
    color: #F4B400 !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
    font-size: 20px !important;
    margin-right: 18px !important;
    flex-shrink: 0;
}

.contact-info-box1 h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #071D38 !important;
    margin-bottom: 5px !important;
}

.contact-info-box1 p,
.contact-info-box1 a {
    color: #111111 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.contact-info-box1 a:hover {
    color: #F4B400 !important;
    text-decoration: none !important;
}

.contact-info h2 {
    color: #071D38;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 32px;
}

/* Services Grid Layout */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    width: calc(25% - 15px);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
