/* 13. Typography & Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    overflow-x: hidden;
    color: #212529;
}

/* 3D PRELOADER - MOTHER & BABY ORBIT */
.preloader-3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B0055;
    /* Deep luxury navy */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.5s;
}

.mother-baby-orbit {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.mother-child-icon-wrapper {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #F86303;
    box-shadow: 0 0 30px rgba(248, 99, 3, 0.5);
    z-index: 10;
    animation: pulseIcon 2s ease-in-out infinite;
    will-change: transform;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(248, 99, 3, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(248, 99, 3, 0.7);
    }
}

.orbit-ring {
    position: absolute;
    border: 2px solid rgba(248, 99, 3, 0.3);
    border-radius: 50%;
    transition: all 0.5s;
    will-change: transform;
}

.ring-1 {
    width: 120px;
    height: 120px;
    border-top-color: #F86303;
    animation: rotateRing 2s linear infinite;
}

.ring-2 {
    width: 160px;
    height: 160px;
    border-right-color: #F86303;
    animation: rotateRing 3s linear infinite reverse;
}

.ring-3 {
    width: 200px;
    height: 200px;
    border-bottom-color: #F86303;
    animation: rotateRing 4s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: rotate3d(1, 1, 1, 0deg);
    }

    to {
        transform: rotate3d(1, 1, 1, 360deg);
    }
}

.loader-text-new {
    margin-top: 40px;
    text-align: center;
}

.full-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.loading-bar-wrapper {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: #F86303;
    animation: fillBar 1s ease-in-out forwards;
}

@keyframes fillBar {
    to {
        width: 100%;
    }
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

.hero-3d-entrance {
    animation: hero3DIntro 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transform-origin: center center;
    opacity: 0;
}

@keyframes hero3DIntro {
    0% {
        transform: perspective(1000px) rotateX(10deg) scale(0.9) translateY(50px);
        opacity: 0;
    }

    100% {
        transform: perspective(1000px) rotateX(0deg) scale(1) translateY(0);
        opacity: 1;
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #F86303;
    z-index: 9999;
}

.transition-base {
    transition: all 0.3s ease-in-out;
}

/* 1. TOP BAR */
.top-bar-new {
    min-height: 40px;
    height: auto;
    background: linear-gradient(90deg, #0B0055 0%, #1a0a7a 100%);
    color: white;
    font-size: 12px;
    z-index: 1050;
    position: relative;
    padding: 8px 0;
}

@media (max-width: 576px) {
    .top-bar-new .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .top-bar-new .container {
        flex-direction: column;
        gap: 10px;
    }
}

.top-bar-new a:hover {
    color: #F86303 !important;
}

/* 2. NAVBAR */
.main-nav {
    min-height: 85px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(11, 27, 94, 0.08);
    transition: all 0.4s ease;
}

.nav-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-main {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #0B0055;
    line-height: 1;
    letter-spacing: -0.8px;
}

.logo-sub {
    font-size: 10px;
    color: #6c757d;
    font-weight: 500;
}

.navbar-nav .nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #0B0055 !important;
    padding: 8px 12px !important;
    letter-spacing: -0.2px;
    text-transform: capitalize;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #F86303;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 20px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #F86303 !important;
}

/* DROPDOWN MENU PREMIUM */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: dropdownFade 0.4s ease forwards;
}

.dropdown-toggle::after {
    display: none; /* Hide default arrow entirely */
}

.nav-drop-icon {
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.nav-item.dropdown:hover .nav-drop-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    margin-top: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(11, 27, 94, 0.1) !important;
}

.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: #0B0055;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(248, 99, 3, 0.05);
    color: #F86303;
    padding-left: 25px;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-orange-rounded {
    background: linear-gradient(135deg, #F86303 0%, #ff8e4d 100%);
    color: white !important;
    border-radius: 50px;
    padding: 12px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    box-shadow: 0 8px 20px rgba(248, 99, 3, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-orange-rounded:hover {
    background: linear-gradient(135deg, #ff8e4d 0%, #F86303 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(248, 99, 3, 0.35);
}

/* 3. HERO SECTION */
.hero-section-pixel {
    position: relative;
    height: 650px;
    width: 100%;
    overflow: hidden;
    background-color: #0B0055;
}

.hero-bg-grayscale {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/mother_baby_v2.png') no-repeat center center/cover;
    filter: grayscale(100%);
    z-index: 1;
    animation: premiumImageReveal 2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes premiumImageReveal {
    from {
        transform: scale(1.1);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 0, 85, 0.85) 0%, rgba(11, 0, 85, 0.2) 100%);
    z-index: 2;
}

/* 4. Left Content Alignment */
.hero-content-pixel {
    max-width: 500px;
    padding-left: 80px;
    position: relative;
    z-index: 10;
}

/* 5. Text Content Hierarchy */
.small-hero-text {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    opacity: 0;
    animation: textEntranceSnap 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 1.3s; /* Starts after preloader */
}

.main-heading-pixel {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    opacity: 0;
    animation: textEntranceSnap 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 1.5s;
}

.highlight-orange {
    color: #F86303;
}

.subheading-pixel {
    font-size: 18px;
    opacity: 0;
    animation: textEntranceSnap 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 1.7s;
}

.desc-pixel {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0;
    animation: textEntranceSnap 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 1.9s;
}

/* 6. Buttons */
.hero-btns-wrapper {
    display: flex;
    flex-wrap: gap-3;
    opacity: 0;
    animation: textEntranceSnap 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 2.1s;
}

@keyframes textEntranceSnap {
    0% {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
        filter: blur(15px);
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

.btn-primary-pixel {
    background-color: #F86303;
    color: white !important;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
}

.btn-primary-pixel:hover {
    background-color: #d85600;
    transform: scale(1.05);
}

.btn-secondary-pixel {
    background-color: transparent;
    border: 2px solid #F86303;
    color: #F86303 !important;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
}

.btn-secondary-pixel:hover {
    background-color: #F86303;
    color: white !important;
}

/* 7. Right Side Design */
.glow-circle {
    position: absolute;
    top: 40%;
    right: 20%;
    width: 60px;
    height: 60px;
    background: #F86303;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.6;
    animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

.heart-outline-text-pixel {
    position: absolute;
    top: 30%;
    right: 5%;
    transform: rotate(10deg);
}

.heart-text-content {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    display: inline-block;
}

/* 8. CURVE SECTION */
.curve-section-pixel {
    background-color: #0B0055;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    border-top-left-radius: 60% 100%;
    border-top-right-radius: 60% 100%;
    margin-top: -100px;
    z-index: 20;
}

.orange-curve-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #F86303;
    border-top-left-radius: 60% 100%;
    border-top-right-radius: 60% 100%;
}

/* 9. Center Badge */
.center-badge-pixel {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 30;
}

/* 10. Bottom Content */
.bottom-heading-pixel {
    font-size: 28px;
    font-weight: 700;
}

.bottom-subline-pixel {
    font-size: 14px;
}

/* 11. Features Row */
.features-row-pixel {
    transform: translateY(-50px);
}

.feature-item-pixel {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s;
}

/* STATS WITH MESH GRADIENT */
.stats-mesh-bg {
    background: radial-gradient(at 0% 0%, rgba(11, 0, 85, 0.03) 0, transparent 50%),
        radial-gradient(at 50% 100%, rgba(248, 99, 3, 0.03) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(11, 0, 85, 0.03) 0, transparent 50%);
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.stats-card-premium {
    background: white;
    padding: 3rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(11, 0, 85, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #F86303;
    transition: all 0.5s ease;
}

.stats-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(248, 99, 3, 0.2);
}

.stats-card-premium:hover::before {
    height: 100%;
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(248, 99, 3, 0.1);
    color: #F86303;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 2rem;
    transition: all 0.5s ease;
}

.stats-card-premium:hover .stat-icon-wrapper {
    background: #F86303;
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.stat-number-premium {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0B0055;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat-label-premium {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.5;
    padding: 0 10px;
}

.feature-item-pixel:hover {
    transform: translateY(-5px);
}

.feature-icon-box {
    position: relative;
    width: 70px;
    height: 70px;
    border: 2px solid #F86303;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #F86303;
    margin-bottom: 15px;
    background: rgba(248, 99, 3, 0.05);
}

.mini-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #F86303;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
}

.feature-label {
    font-size: 14px;
    font-weight: 600;
}

/* 12. FLOATING BUTTONS */
.floating-controls-pixel {
    position: fixed;
    right: 25px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.whatsapp-pixel {
    background-color: #25D366;
}

.call-pixel {
    background-color: #F86303;
}

/* COMMON LUXURY ELEMENTS */
.section-divider-center {
    width: 60px;
    height: 4px;
    background: #F86303;
    margin: 15px auto;
    border-radius: 2px;
}

.ls-2 {
    letter-spacing: 2px;
}

.text-navy {
    color: #0B0055;
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
}

.hover-scale {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hover-scale:hover {
    transform: scale(1.3);
}

.hover-glow {
    transition: all 0.4s ease;
    cursor: pointer;
    filter: drop-shadow(0 0 5px rgba(248, 99, 3, 0.4));
    animation: floatingIcon 3s ease-in-out infinite;
}

.hover-glow:hover {
    transform: scale(1.2) translateY(-5px);
    filter: drop-shadow(0 0 15px rgba(248, 99, 3, 0.9));
}

@keyframes floatingIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* FEATURE BOX PREMIUM - REDESIGN */
.feature-box-premium {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-box-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F86303, #ff8e4d);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: right;
}

.feature-box-premium:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
}

.feature-box-premium:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-icon-wrapper-orange {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(248, 99, 3, 0.1), rgba(248, 99, 3, 0.05));
    color: #F86303;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    transition: all 0.5s ease;
}

.feature-box-premium:hover .feature-icon-wrapper-orange {
    background: #F86303;
    color: white;
    transform: rotateY(360deg);
}

.feature-box-premium h4 {
    font-weight: 700;
    color: #0B0055;
    margin-bottom: 1rem;
}

.feature-box-premium p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
}

/* PORTFOLIO CARD PREMIUM - REDESIGN */
.portfolio-card-premium {
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.portfolio-card-premium:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-12px);
}

.portfolio-card-premium .img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.portfolio-card-premium .img-wrapper::after {
    content: 'SUCCESS STORY';
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F86303;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
    z-index: 5;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-card-premium:hover .img-wrapper::after {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-card-premium .img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-card-premium:hover .img-wrapper img {
    transform: scale(1.1) rotate(2deg);
}

.portfolio-card-premium .card-body-pixel {
    position: relative;
    background: white;
    z-index: 2;
}

.portfolio-card-premium .card-body-pixel h4 {
    color: #0B0055;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.35rem;
}

.portfolio-card-premium .card-body-pixel p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.read-story-link {
    display: inline-block;
    color: #F86303;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.portfolio-card-premium:hover .read-story-link {
    opacity: 1;
    transform: translateX(0);
}

/* EXPERT CARD - REDESIGNED FOR WARMTH */
.expert-card {
    background: white;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 3rem 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.expert-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
    border-color: rgba(248, 99, 3, 0.2);
}

.expert-img-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 2.5rem;
    padding: 8px;
    background: linear-gradient(135deg, rgba(248, 99, 3, 0.1), transparent);
    border: 1px solid rgba(248, 99, 3, 0.1);
    position: relative;
    transition: all 0.5s ease;
}

.expert-card:hover .expert-img-wrapper {
    background: linear-gradient(135deg, #F86303, #0B0055);
    transform: scale(1.05);
}

.expert-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
}

.expert-card h4 {
    color: #0B0055;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.expert-card .specialty-badge {
    display: inline-block;
    background: rgba(11, 0, 85, 0.05);
    color: #0B0055;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.expert-card:hover .specialty-badge {
    background: #F86303;
    color: white;
}

.expert-card .bio-brief {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* PREMIUM SERVICE CARDS Redesign */
.service-card-premium {
    background: white;
    border-radius: 30px;
    padding: 3.5rem 2.5rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0B0055 0%, #1a0a7a 100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.service-card-premium:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(11, 0, 85, 0.15);
    border-color: transparent;
}

.service-card-premium:hover::before {
    opacity: 1;
}

.service-icon-box-premium {
    width: 80px;
    height: 80px;
    background: rgba(248, 99, 3, 0.08);
    color: #F86303;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card-premium:hover .service-icon-box-premium {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.service-card-premium h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0B0055;
    margin-bottom: 1.2rem;
    transition: all 0.5s ease;
}

.service-card-premium:hover h4 {
    color: white;
}

.service-card-premium p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    transition: all 0.5s ease;
}

.service-card-premium:hover p {
    color: rgba(255, 255, 255, 0.85);
}

.service-link-premium {
    display: inline-flex;
    align-items: center;
    color: #F86303;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

.service-link-premium i {
    font-size: 0.8rem;
    margin-left: 10px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-premium:hover .service-link-premium {
    color: white;
}

.service-card-premium:hover .service-link-premium i {
    transform: translateX(8px);
    color: white;
}

.link-orange {
    text-decoration: none;
    color: #F86303;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.link-orange:hover {
    color: #d85600;
}

/* FOOTER PREMIUM */
.footer-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.95rem;
}

.footer-list a:hover {
    color: #F86303;
    padding-left: 5px;
}

/* 2026 TRENDING PREMIUM FOOTER STYLES */
.footer-main-2026 {
    background: #05002b;
    color: white;
    position: relative;
    padding-top: 60px;
    border-top: 6px solid #F86303;
    /* Straight Premium Line */
}

/* Removed footer-top-shape to eliminate extra space */

.footer-heading-2026 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading-2026::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #F86303;
    border-radius: 10px;
}

.footer-map-container-2026 {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.footer-map-container-2026:hover {
    transform: scale(1.03);
    border-color: #F86303;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.footer-tagline-2026 {
    color: #F86303;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-bio-2026 {
    font-size: 0.95rem;
    line-height: 1.8;
}

.social-circle {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-circle:hover {
    background: #F86303;
    color: white;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 20px rgba(248, 99, 3, 0.3);
    border-color: #F86303;
}

.footer-nav-links-2026 li {
    margin-bottom: 15px;
}

.footer-nav-links-2026 a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.link-dot {
    width: 6px;
    height: 6px;
    background: #F86303;
    border-radius: 50%;
    margin-right: 12px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.footer-nav-links-2026 a:hover {
    color: white;
    padding-left: 5px;
}

.footer-nav-links-2026 a:hover .link-dot {
    opacity: 1;
    transform: scale(1);
}

.emergency-card-footer {
    background: rgba(248, 99, 3, 0.1);
    border: 1px dashed rgba(248, 99, 3, 0.3);
    padding: 20px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.emergency-card-footer:hover {
    background: rgba(248, 99, 3, 0.15);
    transform: translateX(5px);
}

.emergency-icon-pulse {
    width: 50px;
    height: 50px;
    background: #F86303;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    animation: emergencyPulse 2s infinite;
}

@keyframes emergencyPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(248, 99, 3, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(248, 99, 3, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(248, 99, 3, 0);
    }
}

.emergency-number-footer {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    display: block;
}

.x-small {
    font-size: 0.75rem;
}

.ls-1 {
    letter-spacing: 1px;
}

.tekgenie-accent {
    color: #F86303;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tekgenie-accent:hover {
    color: white;
    text-decoration: underline;
}

.powered-by-2026 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .powered-by-2026 {
        font-size: 0.8rem;
        margin-top: 10px;
    }
}

.border-white-10 {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    position: relative;
}

.border-white-10::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100px;
    height: 1px;
    background: #F86303;
    box-shadow: 0 0 10px rgba(248, 99, 3, 0.5);
}

@media (max-width: 991px) {
    .footer-main-2026 {
        padding-top: 60px;
    }

    .footer-top-shape {
        height: 40px;
        margin-top: -39px;
    }
}

/* PREMIUM CATEGORY CARDS (Image Based) */
.category-grid-premium {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.category-card-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.category-card-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: rgba(248, 99, 3, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.category-icon-holder {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(248, 99, 3, 0.2);
    transition: all 0.4s ease;
}

.ring-lg {
    width: 90px;
    height: 90px;
}

.ring-md {
    width: 70px;
    height: 70px;
}

.ring-inner-bg {
    width: 50px;
    height: 50px;
    background: rgba(248, 99, 3, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
}

.category-card-premium:hover .ring-lg {
    transform: scale(1.1);
    border-color: rgba(248, 99, 3, 0.5);
}

.category-card-premium:hover .ring-md {
    transform: scale(1.05);
    border-color: rgba(248, 99, 3, 0.7);
}

.category-card-premium:hover .ring-inner-bg {
    background: #F86303;
}

.category-card-premium:hover .ring-inner-bg i {
    color: white !important;
}

.category-card-premium i {
    font-size: 1.4rem;
    color: #F86303;
    transition: all 0.4s ease;
}

.category-label-new {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 15px;
}

@media (max-width: 992px) {
    .category-grid-premium {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .category-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .category-grid-premium {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .category-card-premium {
        padding: 25px 15px;
    }
}

.footer-social:hover {
    background: #F86303 !important;
    border-color: #F86303 !important;
    color: white !important;
}

/* MOBILE & TABLET OPTIMIZATIONS */
@media (max-width: 991px) {
    .top-bar-new {
        height: auto;
        padding: 10px 0;
    }

    .top-bar-new .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        width: 100%;
        font-size: 11px;
    }

    .top-bar-new .social-icons {
        display: none;
    }

    .main-nav {
        padding: 5px 0;
    }

    .logo-main {
        font-size: 0.9rem;
    }

    .nav-logo {
        height: 45px;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    .hero-section-pixel {
        height: auto;
        min-height: 100vh;
        padding: 120px 15px 60px;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .main-heading-pixel {
        font-size: 2.2rem;
        line-height: 1.1;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .subheading-pixel {
        font-size: 1rem;
        margin-top: 15px;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    }

    .desc-pixel {
        font-size: 0.85rem;
        margin-bottom: 40px;
        line-height: 1.6;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .hero-btns-wrapper {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary-pixel,
    .btn-secondary-pixel {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        padding: 15px;
        font-size: 0.9rem;
    }

    .curve-section-pixel {
        margin-top: -30px;
        border-radius: 40px 40px 40px 40px;
        padding: 60px 20px 60px;
        background-color: #0B0055;
    }

    .orange-curve-line {
        display: none;
    }

    .center-badge-pixel {
        top: -40px;
        transform: translateX(-50%) scale(0.8);
    }

    .bottom-heading-pixel {
        font-size: 1.4rem;
        padding-top: 20px;
    }

    .bottom-subline-pixel {
        font-size: 0.85rem;
    }

    .floating-controls-pixel {
        bottom: 30px;
        right: 20px;
        z-index: 999;
    }
}

@media (max-width: 767px) {
    .preloader-3d {
        padding: 20px;
    }

    .mother-baby-orbit {
        transform: scale(0.6);
    }

    .full-name {
        font-size: 0.9rem;
    }

    .loading-bar-wrapper {
        width: 160px;
    }

    .stats-mesh-bg {
        padding: 50px 0;
    }

    .counter-value {
        font-size: 2rem;
    }

    .feature-box-premium {
        padding: 1.5rem;
        text-align: center;
    }

    .expert-img-wrapper {
        width: 110px !important;
        height: 110px !important;
    }
}

@media (max-width: 480px) {
    .main-heading-pixel {
        font-size: 1.9rem;
    }

    .navbar-brand {
        max-width: 180px;
    }

    .logo-main {
        white-space: normal;
        line-height: 1.1;
    }
}

.text-navy {
    color: #0B0055 !important;
}

.text-orange-exact {
    color: #F86303 !important;
}

.bg-navy {
    background-color: #0B0055 !important;
}

/* Ensure consistent section spacing */
section.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

@media (max-width: 768px) {
    section.py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

/* PREMIUM INNER HERO SECTION - GLOBAL BASE */
.inner-hero-pixel {
    position: relative;
    background: #0B0055;
    padding: 60px 0 100px;
    overflow: hidden;
    color: white;
}

.inner-hero-img-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background-image: url('../images/mother_baby_v2.png');
    background-size: cover;
    background-position: center 20%;
    filter: grayscale(100%) brightness(0.6);
    opacity: 0.9;
    z-index: 1;
}

.inner-hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0B0055 35%, rgba(11, 0, 85, 0.2) 100%);
    z-index: 2;
}

.inner-hero-content {
    position: relative;
    z-index: 10;
}

.inner-hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    letter-spacing: -1px;
}

.inner-hero-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.inner-hero-tagline strong {
    color: #F86303 !important;
    font-weight: 700;
}

.inner-hero-desc {
    font-size: 1.15rem;
    max-width: 580px;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    line-height: 1.7;
}

.inner-hero-flare {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(248, 99, 3, 0.3) 0%, rgba(248, 99, 3, 0) 70%);
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    filter: blur(80px);
    z-index: 3;
    pointer-events: none;
}

.hero-wave-container {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 15;
}

.hero-wave-container svg {
    display: block;
    width: 100%;
    height: 120px;
}

.wave-orange-line {
    fill: none;
    stroke: #F86303;
    stroke-width: 8;
}

.wave-white-fill {
    fill: #ffffff;
}

.dot-pattern-hero {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    z-index: 5;
    opacity: 0.5;
}

@media (max-width: 991px) {
    .inner-hero-pixel {
        padding: 80px 0 100px;
    }

    .inner-hero-title {
        font-size: 2.5rem;
    }

    .inner-hero-tagline {
        font-size: 1.2rem;
    }

    .inner-hero-img-bg {
        width: 100%;
        opacity: 0.4;
    }

    .inner-hero-overlay-gradient {
        background: linear-gradient(to bottom, #0B0055 40%, rgba(11, 0, 85, 0.8) 100%);
    }

    .inner-hero-desc {
        font-size: 1rem;
    }

    .hero-wave-container svg {
        height: 80px;
    }
}

/* PREMIUM FACILITIES HERO - 2026 PROFESSIONAL REDESIGN */
/* PREMIUM FACILITIES HERO - 2026 PROFESSIONAL REDESIGN */
.inner-facility-hero {
    position: relative;
    background: #0B0055;
    min-height: 85vh;
    /* Reduced from 100vh for a tighter fit */
    display: flex;
    align-items: center;
    padding: 60px 0;
    /* Decreased padding */
    overflow: hidden;
    color: white;
}

.facility-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(248, 99, 3, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 0% 100%, rgba(11, 0, 85, 0.4) 0%, transparent 50%);
    z-index: 1;
}

.facility-hero-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('../images/mother_baby_v2.png');
    background-size: cover;
    background-position: center 20%;
    filter: brightness(0.4) saturate(0.8);
    mask-image: linear-gradient(to left, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
    opacity: 0.8;
    z-index: 0;
}

.facility-hero-content {
    position: relative;
    z-index: 10;
}

.facility-premium-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(248, 99, 3, 0.15);
    border: 1px solid rgba(248, 99, 3, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    color: #F86303;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.facility-hero-title {
    font-size: 3.2rem;
    /* Even more compact */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
}

.facility-hero-title span {
    display: block;
    background: linear-gradient(90deg, #F86303, #ff8e4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.facility-hero-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin-bottom: 25px;
}

.facility-stats-grid {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.facility-stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 15px;
    transition: all 0.4s ease;
    flex: 1;
}

.facility-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(248, 99, 3, 0.4);
}

.facility-stat-icon {
    font-size: 1.5rem;
    color: #F86303;
    margin-bottom: 10px;
}

.facility-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
}

.facility-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* PREMIUM QUICK-ACTION HUB - RADIAL MENU 2026 */
.quick-action-hub {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    filter: drop-shadow(0 0 20px rgba(248, 99, 3, 0.2));
    animation: hubArrivalWiggle 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    animation-delay: 2.2s; /* Wiggles after rocket lands */
}

@keyframes hubArrivalWiggle {
    0%, 100% { transform: scale(1); }
    10%, 30%, 50%, 70%, 90% { transform: scale(1.1) rotate(-5deg); }
    20%, 40%, 60%, 80% { transform: scale(1.1) rotate(5deg); }
}

.action-main-btn {
    width: 65px;
    height: 65px;
    background: #F86303;
    /* Initial Orange */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 15px 35px rgba(248, 99, 3, 0.3);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 10;
    border: none;
}

.action-main-btn i {
    transition: transform 0.5s ease;
}

.quick-action-hub.active .action-main-btn {
    background: #0B0055;
    /* Blue when click */
    transform: rotate(135deg);
    box-shadow: 0 15px 35px rgba(11, 0, 85, 0.3);
}

.action-menu {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.action-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    color: #0B0055;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    transform: scale(0.5) translate(0, 0);
    text-decoration: none;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.action-item:hover {
    background: #F86303;
    color: white;
    transform: scale(1.1) !important;
}

.quick-action-hub.active .action-item {
    opacity: 1;
    pointer-events: auto;
}

/* Radial Positions - Balanced Arc */
.quick-action-hub.active .action-item:nth-child(1) {
    transform: scale(1) translate(0, -150px);
    transition-delay: 0.1s;
}

/* Top: Call */
.quick-action-hub.active .action-item:nth-child(2) {
    transform: scale(1) translate(-75px, -130px);
    transition-delay: 0.2s;
}

/* Top-Left: WhatsApp */
.quick-action-hub.active .action-item:nth-child(3) {
    transform: scale(1) translate(-130px, -75px);
    transition-delay: 0.3s;
}

/* Left-Top: Map */
.quick-action-hub.active .action-item:nth-child(4) {
    transform: scale(1) translate(-150px, 0);
    transition-delay: 0.4s;
    opacity: 1;
    visibility: visible;
}

/* Left: Share */

.action-item[data-label]::after {
    content: attr(data-label);
    position: absolute;
    right: 60px;
    background: rgba(11, 0, 85, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.action-item:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .quick-action-hub {
        bottom: 20px;
        right: 20px;
        transform: scale(0.9);
    }

    .action-main-btn {
        width: 55px;
        height: 55px;
    }

    .quick-action-hub.active .action-item:nth-child(1) {
        transform: scale(1) translate(0, -110px);
    }

    .quick-action-hub.active .action-item:nth-child(2) {
        transform: scale(1) translate(-55px, -95px);
    }

    .quick-action-hub.active .action-item:nth-child(3) {
        transform: scale(1) translate(-95px, -55px);
    }

    .quick-action-hub.active .action-item:nth-child(4) {
        transform: scale(1) translate(-110px, 0);
        opacity: 1;
        visibility: visible;
    }
}

.facility-floating-card {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    animation: floatVertical 6s ease-in-out infinite;
}

@keyframes floatVertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.facility-floating-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.facility-floating-icon {
    width: 60px;
    height: 60px;
    background: #F86303;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(248, 99, 3, 0.3);
}

.facility-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.facility-list-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.facility-list-dot {
    width: 8px;
    height: 8px;
    background: #F86303;
    border-radius: 50%;
    box-shadow: 0 0 10px #F86303;
}

.hero-curve-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 20;
}

.hero-curve-bottom svg {
    display: block;
    width: 100%;
    height: 100px;
    fill: white;
}

/* UNIQUE CONTACT HERO - CONNECTIVITY DESIGN 2026 */
.inner-contact-hero {
    position: relative;
    background: #ffffff;
    padding: 100px 0 120px;
    overflow: hidden;
}

.contact-hero-blob {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 99, 3, 0.08) 0%, rgba(248, 99, 3, 0) 70%);
    z-index: 1;
    animation: blobMorph 15s linear infinite;
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    50% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
    }
}

.contact-hero-content {
    position: relative;
    z-index: 10;
}

.contact-live-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.status-dot-pulse {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    position: relative;
}

.status-dot-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    animation: dotPulse 1.5s ease-out infinite;
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #0B0055;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.contact-hero-title span {
    color: #F86303;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.contact-hero-card {
    background: white;
    padding: 25px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-hero-card:hover {
    transform: translateY(-10px);
    border-color: #F86303;
    box-shadow: 0 20px 40px rgba(248, 99, 3, 0.08);
}

.contact-hero-card i {
    font-size: 1.8rem;
    color: #F86303;
    margin-bottom: 15px;
}

.contact-hero-card h6 {
    font-weight: 700;
    color: #0B0055;
    margin-bottom: 5px;
}

.contact-hero-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0;
}

.contact-hero-img-stack {
    position: relative;
    width: 100%;
    height: 450px;
}

.contact-main-img {
    width: 85%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(11, 0, 85, 0.15);
}

.contact-float-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: #0B0055;
    color: white;
    padding: 20px 30px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 5;
    animation: floatingIcon 3s ease-in-out infinite;
}

@media (max-width: 991px) {
    .inner-facility-hero {
        min-height: auto;
        padding: 60px 0 80px;
        text-align: center;
    }

    .facility-hero-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .facility-hero-desc {
        margin: 0 auto 30px;
    }

    .facility-hero-img-overlay {
        width: 100%;
        opacity: 0.3;
    }

    .facility-stats-grid {
        flex-direction: column;
    }

    .facility-floating-card {
        margin-top: 40px;
        transform: scale(1);
    }

    .inner-contact-hero {
        padding: 60px 0 80px;
        text-align: center;
    }

    .contact-hero-title {
        font-size: 2.8rem;
    }

    .contact-hero-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }

    .contact-hero-card {
        align-items: center;
    }

    .contact-hero-img-stack {
        display: none;
    }
}

@media (max-width: 768px) {
    .inner-facility-hero {
        padding: 40px 15px 60px;
    }

    .facility-hero-title {
        font-size: 2.2rem;
    }

    .facility-floating-card {
        padding: 20px;
        border-radius: 25px;
    }

    .contact-hero-title {
        font-size: 2.2rem;
    }
}

/* UNIQUE LIGHT ABOUT HERO */
.inner-hero-light {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
    padding: 45px 0 80px;
    overflow: hidden;
}

.hero-light-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 99, 3, 0.05) 0%, rgba(248, 99, 3, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.icon-box-small {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hero-main-img {
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    border: 8px solid white;
    position: relative;
    z-index: 5;
}

.hero-light-float-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    border-left: 5px solid #F86303;
    animation: floatAnim 3s ease-in-out infinite;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bg-orange-light {
    background: rgba(248, 99, 3, 0.1);
}

.light-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
}

.light-wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

@media (max-width: 991px) {
    .inner-hero-light {
        padding: 80px 0 60px;
        text-align: center;
    }

    .hero-light-float-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: 200px;
    }

    .hero-main-img {
        margin-bottom: 40px;
    }

    .display-3 {
        font-size: 2.5rem;
    }
}

/* DEPARTMENTS UNIQUE HERO */
.inner-hero-dept {
    position: relative;
    background: #fdfdfd;
    padding: 120px 0 140px;
    overflow: hidden;
}

.dept-hero-blob {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(11, 0, 85, 0.03);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 10s linear infinite;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    50% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
    }
}

.dept-img-stack {
    position: relative;
    width: 100%;
    height: 350px;
}

.dept-img-main {
    width: 80%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(11, 0, 85, 0.1);
    border: 5px solid white;
    position: relative;
    z-index: 5;
}

.dept-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    z-index: 6;
}

.dept-badge-floating {
    position: absolute;
    top: 10%;
    right: -20px;
    background: #0B0055;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(11, 0, 85, 0.2);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dept-badge-floating i {
    color: #F86303;
}

@media (max-width: 992px) {
    .inner-hero-dept {
        padding: 80px 0 60px;
        text-align: center;
    }

    .dept-img-stack {
        height: auto;
        margin-bottom: 50px;
    }

    .dept-img-main {
        width: 100%;
    }

    .dept-img-sub {
        display: none;
    }
}

/* 3D PREMIUM INNER HERO V2 */
.inner-hero-3d {
    position: relative;
    background: radial-gradient(circle at 0% 0%, #ffffff 0%, #f0f4f8 100%);
    padding: 120px 0 180px;
    overflow: hidden;
    perspective: 2000px;
}

.hero-3d-scene {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.glass-card-3d {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 40px 80px rgba(11, 0, 85, 0.08);
    padding: 50px;
    position: relative;
    z-index: 10;
    transform: translateZ(50px);
}

.floating-3d-object {
    position: absolute;
    z-index: 5;
    animation: orbit3d 15s linear infinite;
}

@keyframes orbit3d {
    0% {
        transform: rotateY(0deg) translateZ(150px) rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg) translateZ(150px) rotateY(-360deg);
    }
}

.image-3d-wrapper {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(10deg);
}

.image-3d-frame {
    border-radius: 40px;
    box-shadow: -20px 40px 60px rgba(11, 0, 85, 0.15);
    border: 10px solid white;
    transform: translateZ(30px);
}

.image-3d-shadow {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 100%;
    height: 100%;
    background: #0B0055;
    opacity: 0.05;
    border-radius: 40px;
    filter: blur(30px);
    transform: translateZ(-50px);
}

.hero-badge-3d {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #F86303;
    color: white;
    padding: 20px 35px;
    border-radius: 25px;
    font-weight: 800;
    transform: translateZ(100px);
    box-shadow: 0 15px 30px rgba(248, 99, 3, 0.3);
}

.medical-icon-3d {
    position: absolute;
    font-size: 3rem;
    color: rgba(248, 99, 3, 0.1);
    transform-style: preserve-3d;
    z-index: 1;
}

@media (max-width: 991px) {
    .inner-hero-3d {
        padding: 100px 0 80px;
        text-align: center;
    }

    .image-3d-wrapper {
        transform: none;
        margin-top: 50px;
    }

    .hero-badge-3d {
        right: 50%;
        transform: translateX(50%) translateZ(50px);
    }
}

/* DEPARTMENT HERO V2 - PULSE DESIGN */
.inner-hero-pulse {
    position: relative;
    background: #ffffff;
    padding: 50px 0 90px;
    overflow: hidden;
}

.pulse-line-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.dept-circle-design {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: rgba(248, 99, 3, 0.03);
    border-radius: 50%;
    z-index: 1;
}

.dept-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    z-index: 5;
}

.dept-icon-card {
    background: white;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    text-align: center;
}

.dept-icon-card:hover {
    transform: translateY(-10px);
    border-color: #F86303;
    box-shadow: 0 20px 40px rgba(248, 99, 3, 0.1);
}

.dept-icon-card i {
    font-size: 2rem;
    color: #F86303;
    margin-bottom: 15px;
    display: block;
}

.dept-icon-card span {
    font-weight: 700;
    color: #0B0055;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-offset {
    margin-top: 40px;
}

.dept-pulse-btn {
    position: relative;
    display: inline-block;
    padding: 18px 45px;
    background: #0B0055;
    color: white;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
}

.dept-pulse-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.dept-pulse-btn:hover::after {
    left: 100%;
}

@media (max-width: 991px) {
    .dept-icon-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .card-offset {
        margin-top: 0;
    }

    .inner-hero-pulse {
        padding: 40px 0 60px;
    }
}
/* ULTRA-CLEAN EXECUTIVE CONTACT HUB */
.contact-executive-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* ATMOSPHERIC BACKGROUND BLOBS */
.contact-bg-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 1;
    border-radius: 50%;
    animation: blobFloat 20s infinite alternate;
}

.blob-1 { background: #0B0055; top: -10%; left: -10%; }
.blob-2 { background: #F86303; bottom: -10%; right: -10%; animation-delay: -5s; }

@keyframes blobFloat {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 100px) scale(1.2); }
}

.executive-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px);
    border-radius: 60px;
    border: 1px solid rgba(255,255,255, 1);
    box-shadow: 0 60px 120px rgba(11, 0, 85, 0.1);
    width: 100%;
    max-width: 1250px; /* Wider card to fit all team members */
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Maximize image space */
    overflow: hidden;
    position: relative;
    z-index: 5;
    align-items: stretch;
}

.executive-visual-side {
    position: relative;
    overflow: hidden;
    background: #0B0055;
}

.executive-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    opacity: 1; /* Clean full visibility */
}

.executive-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11,0,85, 0.3), transparent);
}

.executive-content-side {
    padding: 50px 60px; /* Reduced to prioritize photo side */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.executive-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff5ed;
    color: #F86303;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.executive-title {
    font-size: 3.5rem; /* Slightly smaller */
    font-weight: 800;
    color: #0B0055;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

/* NEW OVERLAY TEXT STYLE */
.executive-visual-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 10;
}

.thank-you-badge {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    margin-bottom: 5px;
}

.thank-you-sub {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.connectivity-list {
    margin-top: 20px;
}

.connectivity-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.connectivity-item:last-child { border-bottom: none; }

.connectivity-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0B0055;
    transition: all 0.4s ease;
}

.connectivity-info h6 {
    font-weight: 800;
    color: #0B0055;
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.connectivity-info p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0;
    font-weight: 500;
}

.connectivity-item:hover {
    transform: translateX(10px);
    background: linear-gradient(to right, #fcfdfe, transparent);
    border-radius: 15px; /* Clean look if background shows */
}

.connectivity-item:hover .connectivity-icon {
    background: #F86303;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(248, 99, 3, 0.15);
}

/* REFINED EMERGENCY ALERT BAR */
.emergency-strip {
    background: linear-gradient(90deg, #fff5f5 0%, #fff 100%);
    padding: 22px 30px;
    border-radius: 20px;
    border-left: 5px solid #e53e3e;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(229, 62, 62, 0.08);
    transition: all 0.3s ease;
    border-top: 1px solid rgba(229, 62, 62, 0.05);
    border-bottom: 1px solid rgba(229, 62, 62, 0.05);
    border-right: 1px solid rgba(229, 62, 62, 0.05);
}

.emergency-strip:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(229, 62, 62, 0.12);
    background: #fffafa;
}

.emergency-strip i {
    font-size: 1.6rem;
    color: #e53e3e;
    animation: phoneShake 0.5s infinite alternate;
}

@keyframes phoneShake {
    from { transform: rotate(-10deg); }
    to { transform: rotate(10deg); }
}

.emergency-strip span {
    font-weight: 800;
    color: #0B0055;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.emergency-num-highlight {
    color: #e53e3e;
    margin-left: 5px;
    font-weight: 900;
}

@media (max-width: 1200px) {
    .executive-title { font-size: 3.2rem; }
    .executive-content-side { padding: 50px; }
}

@media (max-width: 991px) {
    .executive-glass-card { grid-template-columns: 1fr; border-radius: 40px; }
    .executive-visual-side { height: 300px; }
    .executive-content-side { padding: 30px 20px; }
    .executive-title { font-size: 2.2rem; letter-spacing: -1px; }
    .connectivity-item { padding: 12px 0; gap: 12px; }
    .connectivity-icon { width: 45px; height: 45px; font-size: 1rem; }
    .connectivity-info h6 { font-size: 1.1rem; }
    .connectivity-info p { font-size: 0.85rem; }
    
    .contact-executive-wrapper {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .executive-title { font-size: 1.8rem; }
    .executive-badge { padding: 8px 15px; font-size: 0.75rem; margin-bottom: 20px; }
}

/* ELITE STAR OF LIFE ATTRACTOR */
.hub-attractor-pulsar {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4.5rem; /* Significantly larger for max visibility */
    color: #fff;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    filter: drop-shadow(0 0 30px rgba(248, 99, 3, 1));
    text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px #F86303; /* Radiant Sun effect */
    animation: pulsarStrike 5s cubic-bezier(0.15, 0, 0.15, 1) forwards; /* Majestic slow speed */
    animation-delay: 1.5s;
}

.pulsar-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(248, 99, 3, 0.3), transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: haloPulse 2s infinite ease-in-out;
}

@keyframes haloPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.6; }
}

.pulsar-trail {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    border: 1px solid rgba(248, 99, 3, 0.5);
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    animation: starTrail 1.5s infinite linear;
}

@keyframes starTrail {
    0% { transform: translate(-50%, -50%) rotate(45deg) scale(0.5); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) rotate(405deg) scale(2.5); opacity: 0; }
}

@keyframes pulsarStrike {
    0% {
        top: -200px;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%) rotate(0deg) scale(0.4);
    }
    15% {
        opacity: 1; /* Fade in slowly */
    }
    98% {
        opacity: 1; 
        top: calc(100% - 60px); /* Perfect center landing */
        left: calc(100% - 60px);
        transform: rotate(1080deg) scale(1.1); /* 3 full spins */
    }
    100% {
        top: calc(100% - 60px);
        left: calc(100% - 60px);
        opacity: 0;
        transform: rotate(1100deg) scale(3);
        filter: blur(30px) brightness(2);
    }
}

.quick-action-hub::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #F86303, transparent);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: hubImpactRipple 1s ease-out forwards;
    animation-delay: 4.4s; /* Triggers when pulsar hits */
}

@keyframes hubImpactRipple {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* Prevents edge bleeding */
}

/* Premium Navigation Resets */
/* Premium Navigation Resets - Optimized for Professionalism */
.navbar-nav .nav-link {
    font-size: 13.5px;
    font-weight: 600;
    color: #0b1b5e !important;
    padding: 10px 14px !important;
    border-radius: 10px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #F86303 !important;
    background: rgba(248, 99, 3, 0.04);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2811, 27, 94, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991px) {
    /* Beautiful Floating Menu Island */
    .navbar-collapse {
        background: #ffffff;
        box-shadow: 0 15px 40px rgba(11,27,94,0.15);
        padding: 15px;
        position: absolute;
        width: calc(100vw - 30px); /* 15px gap on each side */
        left: 15px; /* Center it */
        top: calc(100% + 15px); /* Float slightly below navbar */
        z-index: 1060;
        border-radius: 16px !important; /* Retain the radius */
        border: 1px solid rgba(0,0,0,0.05);
    }
    .navbar-nav .nav-item {
        margin-bottom: 2px;
    }
    .navbar-nav .nav-link {
        padding: 12px 15px;
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }
    .nav-btn-wrapper {
        margin-top: 15px;
        text-align: center;
    }
    .nav-btn-wrapper .btn {
        width: 100%;
    }
    
    /* Clean up curves padding issue */
    .curve-section-pixel {
        margin-top: -20px !important;
        border-radius: 30px 30px 0 0 !important;
        padding-top: 60px !important;
    }

    /* FAB Overlap Prevention */
    .executive-content-side, 
    .contact-hero-content,
    .admissions-text-side {
        padding-bottom: 80px !important;
    }
}

@media (max-width: 380px) {
    .main-heading-pixel {
        font-size: 1.7rem !important;
    }
    .inner-hero-title {
        font-size: 2.2rem !important;
    }
    .contact-hero-title {
        font-size: 2.5rem !important;
    }
}
