@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Brand Colors */
    --primary-red: #c62828;
    --dark-black: #0f0f0f;
    --heading-blue: #1f2a44;
    --accent-yellow: #f9a825;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --muted-text: #6c757d;

    /* Font Families */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Design Tokens */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(15, 15, 15, 0.1);
    --shadow-premium: 0 25px 60px rgba(198, 40, 40, 0.15);
    --transition-base: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glass-effect: rgba(255, 255, 255, 0.05);
}

/* Global Reset & Base */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 195px;
    /* Offset for fixed header + buffer */
}

body {
    font-family: var(--font-body);
    color: var(--heading-blue);
    line-height: 1.8;
    background-color: var(--white);
    padding-top: 190px;
    /* Exact height of fixed header v4 */
    overflow-x: hidden;
}

/* Global AOS Animation Refinement */
[data-aos] {
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--heading-blue);
    letter-spacing: -0.5px;
}

.section-padding {
    padding: 100px 0;
}

/* ==============================================================
   2. CUSTOM PREMIUM HEADER (SOLID BACKGROUND)
   ============================================================== */
/* ==============================================================
   2. PREMIUM HEADER V4 (TOP INFO + STICKY NAV)
   ============================================================== */

/* Top Info Bar */
.header-top-v4 {
    background: var(--white);
    padding: 0;
    /* Tightest possible fit */
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1001;
}

.brand-logo-v4 {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    gap: 20px;
}

.brand-logo-v4 img {
    height: 135px;
    /* Increased from 70px */
    width: auto;
    object-fit: contain;
}

.brand-text-v4 {
    display: flex;
    flex-direction: column;
}

.brand-text-v4 .main-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
}

.brand-text-v4 .traffic-icon {
    font-size: 2rem;
    /* Scaled up */
    color: #43a047;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-text-v4 .main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    /* Increased from 2.2rem */
    color: #1a237e;
    letter-spacing: -0.5px;
}

.brand-text-v4 .sub-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
}

.brand-text-v4 .accent-bar {
    display: inline-block;
    width: 30px;
    /* Wider */
    height: 5px;
    /* Thicker */
    background: var(--primary-red);
    border-radius: 2px;
}

.brand-text-v4 .sub-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-text-v4 .since-tag {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin: 2px 0 4px 0;
    letter-spacing: 1.5px;
    align-self: center;
}

/* Slanted Info Blocks - Full Height Impact */
.info-blocks-v4 {
    display: flex;
    height: 135px;
    /* Matches the new logo height */
    margin-left: 30px;
}

.info-block-v4 {
    position: relative;
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    transform: skewX(-20deg);
    margin-left: -42px;
    /* Adjusted precision overlap for larger height */
    transition: var(--transition-base);
}

.info-block-v4:first-child {
    margin-left: 0;
}

.info-block-v4 .info-content {
    transform: skewX(20deg);
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 5;
}

.info-block-v4 .info-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    /* Slight increase for readability */
    margin-bottom: 1px;
}

.info-block-v4 .info-value {
    display: block;
    font-size: 1.05rem;
    /* Balanced size */
    font-weight: 950;
    letter-spacing: 0.3px;
}

/* Exact Brand Colors from Image */
.info-block-v4.bg-red {
    background-color: #b71c1c;
    z-index: 10;
    margin-left: 0;
}

.info-block-v4.bg-yellow {
    background-color: #fbc02d;
    z-index: 8;
    margin-left: -31px;
}

.info-block-v4.bg-green {
    background-color: #00c853;
    z-index: 6;
    margin-left: -31px;
}

/* Unified Fixed Header - 100% Reliable across all browsers */
.sticky-header-v4 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2200;
    /* Increased to stay above everything */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.glass-header-v4 {
    background: #0f172a;
    height: 55px;
    width: 100%;
    position: relative;
    /* Changed from sticky as parent handles it now */
}

.nav-menu-v4 {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.nav-item-v4 {
    color: var(--white) !important;
    text-decoration: none !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

.nav-item-v4:hover {
    background: rgba(255, 255, 255, 0.05);
}

.nav-item-v4.active {
    background: #7f1d1d !important;
    /* Deeper dark red from image */
}

/* Action Buttons */
.header-actions-v4 {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Header Social Icons - Premium Edition */
.header-social-v4 {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-social-v4 .social-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 1.15rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
}

.header-social-v4 .social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

/* Brand Colors on Hover */
.header-social-v4 .social-btn.facebook:hover::before {
    background: #1877F2;
    opacity: 1;
}

.header-social-v4 .social-btn.instagram:hover::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    opacity: 1;
}

.header-social-v4 .social-btn.youtube:hover::before {
    background: #FF0000;
    opacity: 1;
}

.header-social-v4 .social-btn.justdial:hover::before {
    background: #FF6A00;
    opacity: 1;
}

.header-social-v4 .social-btn:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.header-social-v4 .social-btn:hover i {
    transform: scale(1.1);
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.btn-join-v4 {
    background: #e53935;
    color: var(--white) !important;
    padding: 7px 18px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none !important;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
    transition: var(--transition-base);
    white-space: nowrap;
    min-width: fit-content;
}

.btn-join-v4:hover {
    background: #c62828;
    transform: translateY(-2px);
}

.btn-whatsapp-v4 {
    background: transparent;
    border: 1px solid #ffffff;
    color: var(--white) !important;
    padding: 6px 18px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none !important;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.btn-whatsapp-v4 i {
    color: #25d366;
    font-size: 1.1rem;
}

.btn-whatsapp-v4:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile Toggler V4 */
.nav-toggler-v4 {
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    cursor: pointer;
}

.nav-toggler-v4 span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* Mobile Toggler V4 Animation */
.nav-toggler-v4.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.nav-toggler-v4.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggler-v4.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Responsive Overrides Header V4 */
@media (max-width: 1199px) {
    .nav-item-v4 {
        padding: 0 10px;
        font-size: 0.82rem;
    }

    .btn-join-v4,
    .btn-whatsapp-v4 {
        padding: 6px 12px;
        font-size: 0.82rem;
    }
}

/* Mobile Toggler Visibility */
.nav-toggler-v4 {
    display: none;
    /* Hidden by default */
}

@media (max-width: 991px) {
    .nav-toggler-v4 {
        display: flex;
        z-index: 4000;
        position: relative;
    }

    .nav-menu-v4 {
        position: fixed;
        top: 0;
        right: -320px;
        /* Hidden off-screen right */
        width: 300px;
        height: 100vh;
        background: #0f172a;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 80px 20px 40px;
        transition: 0.5s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 4500;
        visibility: hidden;
        display: flex !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu-v4.active {
        right: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-close-v4 {
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 4600;
        padding: 10px;
        line-height: 1;
    }

    .nav-item-v4 {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1.1rem;
        justify-content: flex-start;
        height: auto;
    }

    .header-actions-v4 {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 150px;
    }

    .header-top-v4 .container>div {
        justify-content: center !important;
    }

    .brand-logo-v4 {
        margin: 5px auto;
        justify-content: center;
    }

    .brand-logo-v4 img {
        height: 110px;
    }

    .brand-text-v4 .main-title {
        font-size: 1.8rem;
    }

    .brand-text-v4 .sub-title {
        font-size: 0.95rem;
        /* Increased for mobile */
    }

    .brand-text-v4 .since-tag {
        font-size: 0.95rem;
        /* Increased for mobile */
    }
}

@media (max-width: 575px) {
    body {
        padding-top: 133px;
    }

    .header-top-v4 .container>div {
        justify-content: center !important;
    }

    .brand-logo-v4 {
        margin: 5px auto;
    }

    .brand-logo-v4 img {
        height: 85px;
    }

    .brand-text-v4 .main-title {
        font-size: 1.55rem;
    }

    .brand-text-v4 .sub-title {
        font-size: 0.75rem !important;
        /* Increased for small phones */
    }

    .brand-text-v4 .since-tag {
        font-size: 0.85rem !important;
        /* Increased for small phones */
    }
}


/* Consolidated Global Button Styles */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 18px 45px;
    white-space: nowrap;
    transition: var(--transition-base);
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    gap: 12px;
    border: none;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

/* Base Hover State for all Premium Buttons */
.btn-premium:hover {
    transform: translateY(-5px) scale(1.03);
    outline: none;
    z-index: 2;
}

/* Shine Sweep Animation Pseudo-element */
.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
    display: block;
    pointer-events: none;
    /* Critical: prevent pseudo-element from interfering with mouse events */
}

.btn-premium:hover::before {
    left: 150%;
}

/* Icon Animation */
.btn-premium i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-premium:hover i {
    transform: translateX(6px) scale(1.1);
}

/* Premium Red Button */
.btn-red {
    background: linear-gradient(135deg, var(--primary-red), #e53935);
    color: var(--white) !important;
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.3);
}

.btn-red:hover {
    background: linear-gradient(135deg, #b71c1c, var(--primary-red));
    box-shadow: 0 15px 35px rgba(198, 40, 40, 0.45);
}

/* Premium Outline White Button */
.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
}

.btn-outline-white:hover {
    background: var(--white) !important;
    color: var(--dark-black) !important;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Specific variation for dark text background */
.btn-outline-white.text-dark {
    border-color: var(--heading-blue) !important;
    color: var(--heading-blue) !important;
}

.btn-outline-white.text-dark:hover {
    background: var(--heading-blue) !important;
    color: var(--white) !important;
}

/* Custom Outlined V2 (Used in CTA Banners) */
.btn-outline-white-v2 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: var(--white) !important;
}

.btn-outline-white-v2:hover {
    background: var(--white) !important;
    color: var(--primary-red) !important;
    border-color: var(--white) !important;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Premium Link Button Style */
.btn-link.highlight-red-text {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-bottom: 2px;
    transition: var(--transition-base);
}

.btn-link.highlight-red-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.btn-link.highlight-red-text:hover {
    padding-left: 5px;
}

.btn-link.highlight-red-text:hover::after {
    width: 100%;
}

.btn-link.highlight-red-text i {
    transition: transform 0.3s ease;
}

.btn-link.highlight-red-text:hover i {
    transform: translateX(5px);
}

/* --- Secondary Hero Banner --- */
.hero-small-v3 {
    width: 100%;
    min-height: 250px;
    /* More compact */
    background: linear-gradient(135deg, rgba(31, 42, 68, 0.65) 0%, rgba(10, 24, 81, 0.8) 100%), url('../images/img-5.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
    /* Compact padding */
}

.hero-small-v3 .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* --- Utility Classes --- */
.max-width-600 {
    max-width: 600px;
}

.max-width-700 {
    max-width: 700px;
}

.max-width-800 {
    max-width: 800px;
}

.text-accent {
    color: var(--accent-yellow) !important;
}

.text-primary-red {
    color: var(--primary-red) !important;
}

.highlight-red-text {
    color: var(--primary-red) !important;
}

/* --- Hero Section v4.1 Cinematic Elite --- */
.hero-v3 {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: var(--dark-black);
    position: relative;
    overflow: hidden;
}

.hero-v3 .carousel,
.hero-v3 .carousel-inner,
.hero-v3 .carousel-item {
    width: 100%;
    height: 100%;
}

.hero-content-v3 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    /* Removed extra offset */
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-v3-text-hub {
    max-width: 1100px;
    width: 95%;
    margin: 0 auto;
    position: relative;
    z-index: 15;
    /* Above Watermark */
}

.hero-v3 h1 {
    font-size: 5.8rem;
    letter-spacing: -2px;
    line-height: 1;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.4);
    /* Strong shadow for readability */
}

.hero-v3 .lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 50px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-v3 .lead {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--white);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 50px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.carousel-indicators {
    bottom: 40px;
    z-index: 10;
}

.carousel-indicators [data-bs-target] {
    width: 50px;
    height: 5px;
    border-radius: 3px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.25);
    border: none;
    transition: var(--transition-base);
}

.carousel-indicators .active {
    background-color: var(--primary-red);
    width: 70px;
}

/* Section markers for better organization */
/* ... existing hero indicators ... */

/* --- UI Components --- */
.card-v3 {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.card-v3:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.icon-box-v3 {
    width: 85px;
    height: 85px;
    background: rgba(198, 40, 40, 0.08);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    border-radius: 50%;
    margin-bottom: 30px;
    transition: var(--transition-base);
}

.card-v3:hover .icon-box-v3 {
    background: var(--primary-red);
    color: var(--white);
    transform: rotateY(360deg);
}

/* --- Simulator Section v5.0 Clean-Elite --- */
.section-dark {
    background: #ffffff;
    /* Clean White Canvas */
    color: var(--heading-blue);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.section-dark h2 {
    color: var(--heading-blue);
    text-shadow: none;
}

.section-dark .lead {
    color: var(--muted-text);
    opacity: 1;
}

.section-dark .feature-list-v3 li h5 {
    color: var(--heading-blue);
}

.section-dark .feature-list-v3 li p {
    color: var(--muted-text);
    opacity: 1;
}

/* Floating Image Masterpiece */
.simulator-img-v3 {
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(15, 15, 15, 0.15);
    /* Massive 3D Shadow */
    border: 8px solid #ffffff;
    transition: var(--transition-base);
    object-fit: cover;
    min-height: 500px;
    /* Increased Height */
    aspect-ratio: 4/3;
    /* Taller Aspect Ratio */
}

.simulator-img-v3:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 60px 120px rgba(198, 40, 40, 0.15);
}

/* Redesigned Checklist Cards */
.feature-list-v3 li {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-list-v3 li:hover {
    transform: translateX(10px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-medium);
}

.feature-list-v3 {
    list-style: none;
    padding: 0;
}

.feature-list-v3 li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-list-v3 i {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    margin-top: 5px;
}

/* --- Gallery & Media --- */
.gallery-v3-item {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery-v3-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-base);
}

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

/* Perfect Centered Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
    color: var(--white);
    font-size: 2.5rem;
}

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

/* Transparency/Blur Backdrop Effect for Gallery View */
.modal-backdrop.show {
    opacity: 0.8;
    backdrop-filter: blur(10px);
    background: rgba(15, 15, 15, 0.5) !important;
}

.gallery-modal-content {
    background: transparent !important;
    border: none !important;
}

.gallery-modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    background: var(--primary-red);
    color: white !important;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1060;
    transition: var(--transition-base);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-modal-close:hover {
    transform: rotate(180deg) scale(1.1);
    background: var(--white);
    color: var(--primary-red) !important;
    box-shadow: 0 15px 40px rgba(198, 40, 40, 0.4);
}

.gallery-modal-img {
    max-height: 85vh;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.whatsapp-floating {
    position: fixed !important;
    bottom: 35px !important;
    left: 35px !important;
    right: auto !important;
    z-index: 100000 !important;
    /* Maximized for zero-occlusion */
    width: 65px;
    height: 65px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    cursor: pointer;
    transition: var(--transition-base);
}

/* Authentic Brand Pulse (v15.0) */
.whatsapp-floating {
    background: #25d366;
    /* Official WhatsApp Green */
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    animation: wa-classic-pulse 2s infinite ease-in-out;
}

@keyframes wa-classic-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-floating:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
}

/* --- Support Chat Box v12.0 --- */
.wa-support-box {
    position: fixed;
    bottom: 110px;
    left: 35px !important;
    /* Precision alignment with floating button */
    right: auto !important;
    width: 320px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1001;
    display: none;

    /* Controlled via .active class */
    &.active {
        display: block !important;
    }

    animation: wa-slide-up 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes wa-slide-up {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.wa-box-header {
    background: #075e54;
    /* Official WA Teal */
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-box-body {
    padding: 20px;
    background: #e5ddd5;
    /* WA Chat Background */
    min-height: 120px;
    display: flex;
    align-items: flex-end;
}

.wa-msg-bubble {
    background: white;
    padding: 10px 15px;
    border-radius: 0 15px 15px 15px;
    font-size: 0.85rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    max-width: 85%;
}

.wa-box-footer {
    padding: 15px;
    background: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-input-field {
    flex-grow: 1;
    background: #f0f0f0;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #333;
    border: none;
    outline: none;
    resize: none;
    font-family: inherit;
    max-height: 80px;
}

.wa-send-btn-v2 {
    color: #075e54;
    font-size: 1.2rem;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.wa-send-btn-v2:hover {
    transform: scale(1.1) translateX(2px);
    color: #128c7e;
}

.scroll-top-v3 {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition-base);
    z-index: 999;
}

.scroll-top-v3.visible {
    opacity: 1;
}

/* --- v18.0 Elite Glass-Signature Footer System --- */
.footer-v3 {
    background: var(--dark-black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.social-icon-v3 {
    width: 45px;
    height: 45px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    text-decoration: none;
    margin: 0 !important;
    backface-visibility: hidden;
}

.social-icon-v3:hover {
    transform: translateY(-8px) scale(1.1);
    background: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    box-shadow: 0 15px 30px rgba(198, 40, 40, 0.4);
    color: var(--white);
}

.social-icon-v3.facebook:hover {
    background: #1877F2 !important;
    border-color: #1877F2 !important;
    box-shadow: 0 15px 30px rgba(24, 119, 242, 0.4);
}

.social-icon-v3.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border-color: #dc2743 !important;
    box-shadow: 0 15px 30px rgba(220, 39, 67, 0.4);
}

.social-icon-v3.youtube:hover {
    background: #FF0000 !important;
    border-color: #FF0000 !important;
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
}

.social-icon-v3.justdial:hover {
    background: #FF6A00 !important;
    border-color: #FF6A00 !important;
    box-shadow: 0 15px 30px rgba(255, 106, 0, 0.4);
}

.footer-link-item {
    transition: var(--transition-base);
}

.hover-glow {
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.hover-glow:hover {
    opacity: 1 !important;
    color: var(--white) !important;
    padding-left: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.hover-glow::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-red);
    font-weight: 800;
}

.hover-glow:hover::before {
    left: 0;
    opacity: 1;
}

.footer-icon-gem {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-icon-gem:hover {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 30px rgba(198, 40, 40, 0.6) !important;
}

.glass-card-v3 {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-card-v3:hover {
    border-color: rgba(198, 40, 40, 0.4) !important;
    transform: translateY(-8px) scale(1.02);
}

.shake {
    animation: wa-shake 1.5s infinite;
}

@keyframes wa-shake {

    0%,
    100% {
        transform: rotate(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

.pulse-sm {
    animation: wa-pulse-sm 2s infinite;
}

@keyframes wa-pulse-sm {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.tracking-wider {
    letter-spacing: 2px !important;
}

.dev-link-v3:hover {
    text-shadow: 0 0 20px #e91e63 !important;
    letter-spacing: 1px;
    opacity: 1 !important;
}

.wa-hover-green:hover {
    background: #25d366 !important;
    border-color: #25d366 !important;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4) !important;
}

/* --- About Section v6.1 Mosaic Stack --- */
.mosaic-stack {
    position: relative;
    padding: 20px;
}

.mosaic-main {
    position: relative;
    z-index: 2;
    width: 85%;
}

.mosaic-main img {
    border-radius: 40px 100px 40px 40px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
    border: 10px solid #ffffff;
}

.mosaic-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    z-index: 5;
}

.mosaic-secondary img {
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(198, 40, 40, 0.2);
    /* Branded Deep Shadow */
    border: 8px solid #ffffff;
    transition: var(--transition-base);
}

.mosaic-secondary:hover img {
    transform: translateY(-10px) scale(1.05);
}

.mosaic-years-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(198, 40, 40, 0.3);
    z-index: 10;
    text-align: center;
}

/* Interactive Badge List */
.about-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-pro-badge {
    background: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--heading-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.about-pro-badge i {
    color: var(--primary-red);
}

.about-pro-badge:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.about-pro-badge:hover i {
    color: var(--white);
}

.highlight-red {
    color: var(--primary-red);
    font-weight: 700;
}

/* --- Gallery Modal V3 --- */
.modal {
    z-index: 100005 !important;
}

.gallery-modal-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.gallery-modal-img {
    border-radius: 20px;
    max-height: 85vh;
    object-fit: contain;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.gallery-modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 100010 !important;
    /* Higher than Bootstrap modal */
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.gallery-modal-close:hover {
    background: var(--primary-red);
    transform: rotate(90deg) scale(1.1);
    border-color: var(--primary-red);
}

.modal-backdrop.show {
    opacity: 0.85;
    background-color: var(--heading-blue);
    z-index: 100000 !important;
}

/* --- Responsive Layouts --- */

@media (max-width: 767px) {
    .hero-v3 {
        height: auto !important;
        min-height: 240px !important;
        display: flex !important;
        align-items: center !important;
        background-color: var(--dark-black);
    }

    .hero-slide-1,
    .hero-slide-2,
    .hero-slide-3 {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }

    .hero-v3 .carousel,
    .hero-v3 .carousel-inner,
    .hero-v3 .carousel-item {
        height: 100% !important;
        min-height: 320px !important;
    }

    .hero-v3 h1 {
        font-size: 2.3rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .hero-v3 .lead {
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
        margin-bottom: 35px !important;
        padding: 0 15px;
        opacity: 0.9;
    }

    .hero-content-v3 {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        height: auto !important;
        min-height: 240px !important;
    }

    .hero-v3-text-hub .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        padding: 0 20px;
        margin-bottom: 30px !important;
        width: 100% !important;
    }

    .hero-v3 .btn-premium {
        width: 240px !important;
        max-width: 90% !important;
        margin: 0 !important;
        padding: 12px 20px !important;
        font-size: 0.85rem !important;
        border-radius: 50px !important;
        justify-content: center !important;
        display: inline-flex !important;
    }

    .hero-v3 .btn-outline-white {
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        margin: 0 !important;
    }

    .btn-group-equal {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .btn-group-equal .btn-premium {
        width: 240px !important;
        max-width: 90% !important;
        margin: 0 auto !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        font-size: 0.85rem !important;
    }

    .whatsapp-floating {
        bottom: 25px;
        left: 20px;
        /* Left-side alignment on mobile */
        right: auto !important;
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .wa-support-box {
        bottom: 95px;
        left: 20px;
        right: auto !important;
        width: 290px;
    }
}

/* ==============================================================
   3. MOBILE RESPONSIVE QUERIES (max-width: 991px)
   ============================================================== */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-v3 {
        height: 500px !important;
        min-height: 500px !important;
    }

    .hero-v3 .carousel,
    .hero-v3 .carousel-inner,
    .hero-v3 .carousel-item {
        height: 500px !important;
    }

    .hero-v3 h1 {
        font-size: 3.5rem !important;
        margin-bottom: 25px !important;
    }

    .hero-v3 .lead {
        font-size: 1.25rem !important;
        margin-bottom: 40px !important;
    }
}

@media (max-width: 991px) {
    .nav-toggler {
        display: flex;
        /* Always visible on mobile */
    }

    .nav-menu {
        position: fixed;
        top: 110px;
        left: 0;
        width: 100%;
        background: #1a243d;
        /* Exact deep Navy from image */
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        gap: 0;
        /* Remove desktop gap for mobile stacking */
    }

    /* Open State for Mobile Menu */
    .nav-menu.active {
        max-height: 400px;
        /* Big enough to fit items */
        padding: 20px 5%;
    }

    /* Mobile Link Overrides */
    .nav-link {
        width: 100%;
        display: block;
        padding: 10px 0;
        /* Reduced padding from 15px */
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        /* Lighter border for dark background */
        font-size: 1.1rem;
    }

    .header-cta {
        width: auto !important;
        display: inline-flex !important;
        margin: 15px auto 0 !important;
        text-align: center;
        box-sizing: border-box;
        padding: 10px 30px !important;
        font-size: 0.85rem !important;
        min-width: 160px;
    }

    /* Hamburger X Animation */
    .nav-toggler.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggler.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggler.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 767px) {
    .btn-red {
        width: 100% !important;
    }

    .btn-premium {
        width: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        justify-content: center !important;
        padding: 10px 25px !important;
        font-size: 0.85rem !important;
        min-width: 180px;
    }
}

@media (max-width: 450px) {
    .brand-logo img {
        height: 68px;
    }

    .brand-title {
        font-size: 1.3rem;
    }

    .brand-subtitle {
        font-size: 1.3rem;
    }
}


/* FIX: Prevent header hiding issue */
/* body {
    padding-top: 80px;
} */

/* FIX: Ensure header always visible */
.glass-header {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* FIX: Prevent parent overflow issue */
body,
html {
    overflow-x: hidden;
}

/* FIX: Mobile menu smooth open */
.nav-menu {
    transition: max-height 0.4s ease, padding 0.3s ease;
}

/* --- MAGNIFIC POPUP CORE CSS (Self-Contained for Gallery) --- */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000000;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000001;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 10000005;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    margin-top: -0.8em;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 10000006;
    box-shadow: none;
    touch-action: manipulation;
}

/* Custom Premium Black Close Button (Matches Request) */
.mfp-close {
    width: 44px !important;
    height: 44px !important;
    line-height: 44px !important;
    position: fixed !important;
    right: 20px !important;
    top: 20px !important;
    text-decoration: none !important;
    text-align: center !important;
    opacity: 1 !important;
    color: #FFF !important;
    font-size: 28px !important;
    font-family: Arial, sans-serif !important;
    background: #000 !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.mfp-close:hover {
    background: #333 !important;
    transform: scale(1.1) rotate(90deg);
}

.mfp-close:active {
    transform: scale(0.9);
}

/* Image Holder & Content Spacing */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0;
    margin: 0 auto;
}

.mfp-figure {
    line-height: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

/* Fading animation */
.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

/* --- EXTRACTED CSS UTILITIES (REMOVING INLINE STYLES) --- */

/* Hero Slider Backgrounds */
.hero-slide-1 {
    background: url('../images/banner/img-1.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-slide-2 {
    background: url('../images/banner/img-2.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-slide-3 {
    background: url('../images/banner/img-3.jpeg');
    background-size: cover;
    background-position: center;
}

/* Icon Boxes & Highlights (Elite RGBA Tones) */
.bg-rgba-accent {
    background: rgba(249, 168, 37, 0.1) !important;
    color: var(--accent-yellow) !important;
}

.bg-rgba-primary {
    background: rgba(198, 40, 40, 0.1) !important;
    color: var(--primary-red) !important;
}

.bg-rgba-secondary {
    background: rgba(31, 42, 68, 0.1) !important;
    color: var(--heading-blue) !important;
}

/* Spacing & Sections */
.header-spacer {
    height: 110px;
}

.section-top-100 {
    padding-top: 100px !important;
}

.section-bottom-100 {
    padding-bottom: 100px !important;
}

.section-padding-custom {
    padding: 100px 0 50px !important;
}

.section-pt-30 {
    padding-top: 30px !important;
}

.section-pb-30 {
    padding-bottom: 30px !important;
}

.section-pb-100 {
    padding-bottom: 100px !important;
}

.section-p-50-100 {
    padding: 50px 0 100px !important;
}

/* Image & Component Tweaks */
.img-cover-450 {
    object-fit: cover;
    min-height: 450px;
}

.about-years-badge {
    background: var(--primary-red) !important;
    bottom: -10px;
    left: -10px;
    z-index: 10;
}

.text-muted-custom {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--muted-text);
}

.vision-mission-border {
    border-color: var(--primary-red) !important;
}

.vision-accent-border {
    border-color: var(--accent-yellow) !important;
}

.xm-small-text {
    font-size: 0.75rem;
    font-style: italic;
}

/* Footer specific */
.footer-main-bg {
    background: linear-gradient(to bottom, #0f0f0f 0%, #050505 100%) !important;
}

.footer-logo-premium {
    height: 85px;
    filter: drop-shadow(0 0 15px rgba(198, 40, 40, 0.3));
}

.footer-social-hub {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link-underline {
    height: 2px;
    width: 30px;
    bottom: -10px;
}

.footer-reach-icon {
    min-width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #c62828 0%, #8e1a1a 100%);
}

.footer-bottom-bg {
    background: rgba(0, 0, 0, 0.4) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* UI Refinement */
.wa-header-logo {
    width: 40px;
    height: 40px;
}

.wa-link-premium {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
}

.dev-link-elite {
    color: #c62828;
    text-decoration: none;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(198, 40, 40, 0.4);
}

/* Secondary Hero Sections */
.hero-small-about {
    background: linear-gradient(rgba(15, 15, 15, 0.9), rgba(198, 40, 40, 0.4)), url('../images/img-4.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

.hero-small-services {
    background: linear-gradient(rgba(15, 15, 15, 0.95), rgba(198, 40, 40, 0.3)), url('../images/img-5.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

.hero-small-gallery {
    background: linear-gradient(rgba(15, 15, 15, 0.9), rgba(198, 40, 40, 0.4)), url('../images/img-8.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

.hero-small-contact {
    background: linear-gradient(rgba(15, 15, 15, 0.9), rgba(198, 40, 40, 0.4)), url('../images/img-7.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

.hero-small-team {
    background: linear-gradient(rgba(15, 15, 15, 0.9), rgba(198, 40, 40, 0.4)), url('../images/img-2.webp') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Fixed Dimensions */
.h-500-cover {
    height: 500px !important;
    object-fit: cover !important;
}

.h-550-cover {
    height: 550px !important;
    object-fit: cover !important;
}

.h-auto-important {
    height: auto !important;
}

.max-width-600 {
    max-width: 600px;
}

.ls-2 {
    letter-spacing: 2px;
}

.ls-3 {
    letter-spacing: 3px;
}

/* CTA & Special Components */
.cta-banner-v3 {
    background: linear-gradient(145deg, var(--heading-blue), var(--dark-black)) !important;
}

.cta-glow-red {
    background: var(--primary-red);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    position: absolute;
    top: -150px;
    left: -100px;
}

.cta-glow-yellow {
    background: var(--accent-yellow);
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: 20%;
    filter: blur(120px);
    opacity: 0.15;
    position: absolute;
}

/* --- Team Page Components --- */
.team-member-card {
    background: var(--white);
    padding: 30px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.team-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    aspect-ratio: 1/1;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.team-member-card:hover .team-img-wrapper img {
    transform: scale(1.1);
}

.team-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--primary-red);
}

.badge-admissions {
    background: rgba(198, 40, 40, 0.2);
    border: 1px solid rgba(198, 40, 40, 0.3);
    color: #fff;
}

.spinner-dot-red {
    color: var(--primary-red);
    width: 10px;
    height: 10px;
}

.cta-text-lead {
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn-outline-white-v2 {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-outline-white-v2:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-3px);
}

.mask-gradient-right {
    background-image: url('../images/img-6.png') !important;
    background-position: center !important;
    background-size: cover !important;
    mask-image: linear-gradient(to right, transparent 0%, black 40%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%);
    opacity: 0.8 !important;
}

.mask-gradient-bottom {
    background-image: url('../images/img-6.png') !important;
    background-position: center !important;
    background-size: cover !important;
    mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
    opacity: 0.6 !important;
}

/* Contact Page Utilities */
.contact-form-input {
    background: var(--light-bg) !important;
    border: none !important;
    border-radius: 15px !important;
}

.contact-form-textarea {
    height: 150px !important;
}

.bg-rgba-wa {
    background: #f0ffd6 !important;
    color: #25d366 !important;
}

.border-wa {
    border-left: 4px solid #25d366 !important;
}

.border-primary-red-4 {
    border-left: 4px solid var(--primary-red) !important;
}

.shadow-hover-sm {
    transition: all 0.3s ease !important;
    transform: translateY(0);
}

.shadow-hover-sm:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
}

.icon-box-60 {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    font-size: 1.5rem !important;
}

.icon-box-40 {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
}

.section-bg-light-gray {
    background: #f8f9fa !important;
}

.emergency-badge {
    color: var(--primary-red) !important;
    font-weight: 700;
}

.spinner-emergency {
    width: 8px;
    height: 8px;
}

/* Final Refinements */
.border-left-light-gray {
    border-left: 1px solid #f1f1f1 !important;
}

.vision-secondary-border {
    border-color: var(--heading-blue) !important;
}

.quote-icon-custom {
    left: 40px;
    top: 40px;
}

.testimonial-logo-custom {
    height: 100px;
    opacity: 0.8;
}

.no-underline {
    text-decoration: none !important;
}

.highlight-red-text {
    color: var(--primary-red) !important;
}

.highlight-yellow-text {
    color: var(--accent-yellow) !important;
}

/* Final Footer & Typography Details */
.footer-btn-icon {
    font-size: 0.85rem !important;
}

.footer-btn-text {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
}

.footer-copyright-text {
    letter-spacing: 0.5px !important;
    line-height: 1.8 !important;
}

/* --- Branch Section Premium Utilities --- */
.bg-light-soft {
    background: #fdfdfd !important;
}

.shadow-hover-lg {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.shadow-hover-lg:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08) !important;
}

.branch-card-v3 {
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    overflow: hidden;
    position: relative;
}

.branch-card-v3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-red);
    transition: all 0.4s ease;
}

.branch-card-v3:hover::after {
    height: 100%;
}

.icon-box-70 {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    font-size: 1.8rem !important;
}

.scale-hover {
    transition: transform 0.3s ease;
}

.btn-link:hover .scale-hover {
    transform: translateX(5px) scale(1.1);
}

/* --- CONTACT HUBS (Left & Right Persistent Stacks) --- */

/* --- Quick Actions (Right Center Hub) --- */
.quick-actions-right {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 3px;
    z-index: 999999;
}

.quick-tab-right {
    background: #fff;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none !important;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(115px);
    /* Show only icon part */
    width: 170px;
}

.quick-tab-right i {
    width: 25px;
    text-align: center;
    font-size: 1.3rem;
}

.quick-tab-right span {
    font-weight: 800;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-tab-right:hover {
    transform: translateX(0);
}

.quick-tab-right:hover span {
    opacity: 1;
}

/* Tab Colors - Elite Signature Palette */
.quick-tab-right.call {
    background: linear-gradient(135deg, #c62828 0%, #a51d1d 100%);
    color: #fff;
    box-shadow: -5px 5px 20px rgba(198, 40, 40, 0.2);
}

.quick-tab-right.call:hover {
    box-shadow: -8px 10px 30px rgba(198, 40, 40, 0.4);
}

.quick-tab-right.instagram {
    background: linear-gradient(45deg, #F58529, #E1306C, #C13584, #833AB4, #5851DB, #405DE6);
    color: #fff;
    box-shadow: -5px 5px 20px rgba(193, 53, 132, 0.2);
    filter: saturate(1.1);
}

.quick-tab-right.instagram:hover {
    box-shadow: -8px 10px 30px rgba(193, 53, 132, 0.4);
    filter: saturate(1.3);
}

.quick-tab-right.facebook {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    color: #fff;
    box-shadow: -5px 5px 20px rgba(13, 71, 161, 0.2);
}

.quick-tab-right.facebook:hover {
    box-shadow: -8px 10px 30px rgba(13, 71, 161, 0.4);
}

/* --- Museum Heritage Frame (Complete Redesign) --- */
.founder-heritage-frame {
    width: 440px;
    background: #ffffff;
    padding: 12px;
    padding-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
}

.heritage-img-inner {
    width: 100%;
    height: 460px;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.heritage-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.02);
}

.heritage-plaque {
    background: #f8f9fa;
    margin-top: 15px;
    padding: 5px 15px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.plaque-text {
    font-size: 0.75rem;
    font-weight: 800;
    color: #495057;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* --- Museum-Grade Image Frames (v5.0 Soft) --- */
.premium-soft-frame {
    width: 85% !important;
    height: auto;
    margin: 0 auto !important;
    display: block !important;
    border-radius: 60px !important;
    padding: 15px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .founder-heritage-frame {
        width: 90% !important;
        max-width: 290px !important;
        margin-bottom: 30px !important;
    }

    .heritage-img-inner {
        height: 320px !important;
    }

    .premium-soft-frame {
        width: 100% !important;
        border-radius: 40px !important;
    }
}

/* ==============================================================
   7. FINAL MOBILE ACCESSIBILITY REFINEMENT (ULTRA-PRIORITY)
   ============================================================== */
@media (max-width: 768px) {

    /* FORCE LEFT SIDE (WhatsApp) */
    .whatsapp-floating {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        bottom: 25px !important;
        left: 20px !important;
        right: auto !important;
        width: 60px !important;
        height: 60px !important;
        background: #25d366 !important;
        z-index: 9999999 !important;
        border-radius: 50% !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5) !important;
    }

    .whatsapp-floating i {
        font-size: 2.2rem !important;
        color: #fff !important;
        display: block !important;
    }

    /* FORCE RIGHT SIDE (Quick Actions) */
    .quick-actions-right {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 9999999 !important;
        flex-direction: column !important;
        gap: 2px !important;
    }

    .quick-tab-right {
        width: 50px !important;
        height: 50px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transform: none !important;
        border-radius: 15px 0 0 15px !important;
        box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2) !important;
    }

    .quick-tab-right span {
        display: none !important;
        /* Icons only on mobile */
    }

    .quick-tab-right i {
        font-size: 1.3rem !important;
        margin: 0 !important;
    }

    /* Support Box Adjustment */
    .wa-support-box {
        left: 15px !important;
        right: auto !important;
        bottom: 100px !important;
        width: 290px !important;
        z-index: 10000000 !important;
    }
}