/* ================= GLOBAL RESET & BASE ================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #0d6efd;
    --secondary-color: #25D366;
    --dark-bg: #111;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 25px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 35px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden; /* Prevent horizontal bleed on all pages */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    overflow-x: hidden;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================= TYPOGRAPHY ================= */
/* Premium corporate: clear hierarchy, 600–700 only, line-height 1.2–1.3 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

/* H1: 48px–56px desktop */
h1 {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
}

/* H2: 28px–34px */
h2 {
    font-size: clamp(1.75rem, 3vw, 2.125rem);
    font-weight: 700;
}

/* H3: 20px–24px */
h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.125rem, 1.8vw, 1.375rem);
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-light);
}

/* Better spacing between heading and paragraph in sections */
.section-padding h2,
.section-padding h3,
.section-padding .company-title {
    margin-bottom: 1rem;
}

.section-padding h2+p,
.section-padding h3+p,
.section-padding .company-title+.company-text,
.section-padding .company-title+p {
    margin-top: 0.25rem;
}

/* ================= NAVBAR ================= */
.navbar {
    background: transparent !important;
    backdrop-filter: blur(0px);
    height: 80px;
    padding: 0;
    display: flex;
    align-items: center;
    box-shadow: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
}

/* Scrolled state */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Remove Bootstrap navbar-dark conflicts */
.navbar.navbar-dark {
    background: transparent !important;
}

.navbar.navbar-dark.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    transition: var(--transition-base);
    text-decoration: none;
    /* Ensure logo area is always visible */
    min-width: 200px;
}

.navbar:not(.scrolled) .navbar-brand {
    color: var(--white);
}

.navbar.scrolled .navbar-brand {
    color: var(--text-dark);
}

.navbar-brand .logo-img {
    height: 55px;
    width: auto;
    max-width: 200px;
    transition: var(--transition-base);
    display: block !important;
    object-fit: contain;
    opacity: 1 !important;
    visibility: visible !important;
    /* Display logo as-is without any filters */
    filter: none !important;
}

/* Logo on transparent navbar - display as-is (original colors) */
.navbar:not(.scrolled) .navbar-brand .logo-img {
    /* Display logo in original colors - no inversion */
    filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    /* Add drop shadow for better visibility on dark background if needed */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
}

/* ================= NAVBAR BRAND (CLEAN + STABLE) ================= */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    min-width: 200px;
    min-height: 55px;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Logo */
.navbar-brand .logo-img {
    height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: 0.3s ease;
    display: block;
}

/* Scroll state – NO SIZE CHANGE */
.navbar.scrolled .navbar-brand .logo-img {
    height: 55px;
}

/* Text fallback */
.navbar-brand .logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    display: none;
}

.navbar-brand .logo-text.show {
    display: inline-block;
}

/* Hover effect */
.navbar-brand:hover .logo-img {
    opacity: 0.9;
    transform: scale(1.02);
}

.navbar-brand:hover .logo-text {
    opacity: 0.9;
}

/* Prevent layout shift */
body {
    padding-top: 0;
}

.navbar.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .navbar-brand {
        min-width: auto;
    }

    .navbar-brand .logo-img {
        height: 45px;
    }

    .navbar.scrolled .navbar-brand .logo-img {
        height: 45px;
    }

    .navbar-brand .logo-text {
        font-size: 1.25rem;
    }

    .nav-link {
        margin-left: 0;
        padding: 0.75rem 1rem 0.75rem 0.5rem !important;
        font-weight: 700 !important;
    }

    .nav-link.active {
        padding-left: 0.5rem !important;
    }
}


/* ================= NAV LINKS ================= */

.nav-link {
    color: var(--white) !important;
    font-weight: 600 !important;
    font-size: 0.9375rem;
    margin-left: 1.5rem;
    position: relative;
    padding: 0.5rem 0.75rem 0.5rem 0 !important;
    transition: var(--transition-base);
    letter-spacing: 0.01em;
    text-decoration: none;
}

/* Nav links on transparent navbar */
.navbar:not(.scrolled) .nav-link {
    color: var(--white) !important;
    font-weight: 600 !important;
}

/* Nav links on scrolled navbar */
.navbar.scrolled .nav-link {
    color: #000000 !important;
    font-weight: 600 !important;
}

/* Active link: subtle bottom underline only (no vertical line) */
.nav-link.active {
    position: relative;
    font-weight: 600 !important;
}

/* Bottom underline for hover and active */
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary-color);
    transition: var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
    height: 1.5px;
}

/* Hover states */
.navbar:not(.scrolled) .nav-link:hover {
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 600 !important;
}

/* ================= MOBILE MENU FIXES ================= */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    /* White icon when at top */
    .navbar:not(.scrolled) .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(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        background-size: 1.5em !important;
    }

    /* Black icon when scrolled */
    .navbar.scrolled .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(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        background-size: 1.5em !important;
    }

    @media (max-width: 991.98px) {
        .navbar-collapse {
            background: #ffffff;
            padding: 1rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            margin-top: 10px;
        }

        .navbar:not(.scrolled) .navbar-nav .nav-link,
        .navbar.scrolled .navbar-nav .nav-link {
            color: #000000 !important;
            /* Force black text in white mobile dropdown */
            padding: 10px 15px !important;
        }

        .navbar .navbar-nav .nav-link.active,
        .navbar .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
            background: #f8f9fa;
            border-radius: 8px;
        }
    }

    .navbar.scrolled .nav-link:hover {
        color: var(--primary-color) !important;
        font-weight: 600 !important;
    }

    /* Ensure nav text is always black on white navbar - all pages */
    .navbar.scrolled .navbar-nav .nav-link,
    .navbar.scrolled .navbar-collapse .nav-link,
    .navbar.scrolled .nav-link {
        color: #000000 !important;
    }

    /* When navbar is transparent - white text (over banner) */
    .navbar:not(.scrolled) .navbar-nav .nav-link,
    .navbar:not(.scrolled) .navbar-collapse .nav-link,
    .navbar:not(.scrolled) .nav-link {
        color: #ffffff !important;
    }

    /* Bootstrap collapse open state - always black text (white card dropdown bg) */
    .navbar.scrolled .navbar-collapse.show .nav-link,
    .navbar:not(.scrolled) .navbar-collapse.show .nav-link {
        color: #000000 !important;
    }

    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }

    .navbar-toggler-icon {
        /* Don't hide the SVG — was already set above via .navbar-toggler-icon rules */
        background-image: inherit; /* Let parent SVG rules apply */
        width: 1.5em;
        height: 1.5em;
    }

    /* REMOVE the ::after pseudo hamburger — it was duplicating the icon */
    .navbar-toggler::after {
        display: none !important;
        content: none !important;
    }

    /* ================= LOADER ================= */
    #loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.5s ease;
    }

    body.loaded #loader {
        opacity: 0;
        pointer-events: none;
    }

    /* ================= HERO SLIDER ================= */
    #heroSlider {
        height: 100vh;
        min-height: 600px;
        margin-top: 0;
    }

    .carousel-item {
        height: 100vh;
        min-height: 600px;
    }

    .hero-slide {
        height: 100vh;
        min-height: 600px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
        z-index: 1;
    }

    .hero-content {
        position: absolute;
        left: 8%;
        bottom: 20%;
        max-width: 750px;
        color: white;
        z-index: 2;
    }

    /* Hero H1: 48px–56px desktop, premium weight */
    .hero-title {
        font-size: clamp(1.4rem, 2.5vw, 2.2rem);
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 1rem;
        opacity: 0;
        transform: translateY(40px);
        animation: heroTitleFadeIn 1s ease forwards;
        color: var(--white);
        letter-spacing: -0.02em;
    }

    .hero-text {
        font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateY(40px);
        animation: heroTextFadeIn 1s ease 0.3s forwards;
        color: rgba(255, 255, 255, 0.92);
        font-weight: 400;
    }

    .hero-cta {
        opacity: 0;
        transform: translateY(40px);
        animation: heroCTAFadeIn 1s ease 0.6s forwards;
    }

    @keyframes heroTitleFadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes heroTextFadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes heroCTAFadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Scroll Indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        opacity: 0;
        animation: scrollIndicatorFadeIn 1s ease 1s forwards;
    }

    .scroll-indicator::before {
        content: "";
        display: block;
        width: 2px;
        height: 40px;
        background: rgba(255, 255, 255, 0.8);
        margin: 0 auto;
        animation: scrollIndicatorMove 2s ease infinite;
    }

    .scroll-indicator::after {
        content: "↓";
        display: block;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.5rem;
        margin-top: 0.5rem;
        animation: scrollIndicatorBounce 2s ease infinite;
    }

    @keyframes scrollIndicatorFadeIn {
        to {
            opacity: 1;
        }
    }

    @keyframes scrollIndicatorMove {

        0%,
        100% {
            transform: translateY(0);
            opacity: 1;
        }

        50% {
            transform: translateY(10px);
            opacity: 0.5;
        }
    }

    @keyframes scrollIndicatorBounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(5px);
        }
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.8;
        transition: var(--transition-base);
        backdrop-filter: blur(10px);
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
        background: rgba(255, 255, 255, 0.25);
    }

    .carousel-control-prev {
        left: 2rem;
    }

    .carousel-control-next {
        right: 2rem;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-size: 40%;
        width: 30px;
        height: 30px;
    }

    /* ================= SECTIONS ================= */
    .section-padding {
        padding: var(--spacing-xl) 0;
    }

    @media (max-width: 768px) {
        .section-padding {
            padding: var(--spacing-lg) 0;
        }
    }

    /* ================= BUTTONS ================= */
    .btn {
        padding: 1rem 2.5rem;
        font-weight: 600;
        font-size: 1rem;
        border-radius: 8px;
        transition: var(--transition-base);
        border: none;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: 'Inter', sans-serif;
        display: inline-block;
        text-decoration: none;
    }

    .btn-dark {
        background: var(--dark-bg);
        color: white;
    }

    .btn-dark:hover {
        background: #000;
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
        color: white;
    }

    .btn-primary {
        background: var(--primary-color);
        color: white;
    }

    .btn-primary:hover {
        background: #0b5ed7;
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
        color: white;
    }

    .btn-light {
        background: white;
        color: var(--primary-color);
    }

    .btn-light:hover {
        background: #f8f9fa;
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
        color: var(--primary-color);
    }

    .btn-lg {
        padding: 1.25rem 3rem;
        font-size: 1.125rem;
    }

    .btn-outline-light {
        background: transparent;
        border: 2px solid white;
        color: white;
    }

    .btn-outline-light:hover {
        background: white;
        color: var(--text-dark);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    /* ================= CARDS ================= */
    .card {
        border: none;
        border-radius: 16px;
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: var(--transition-base);
        height: 100%;
        background: white;
    }

    .card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .card img {
        transition: transform var(--transition-slow);
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .card:hover img {
        transform: scale(1.1);
    }

    .service-card {
        border: none;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: var(--transition-base);
        height: 100%;
        background: white;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .service-card img {
        height: 250px;
        object-fit: cover;
        transition: transform var(--transition-slow);
    }

    .service-card:hover img {
        transform: scale(1.08);
    }

    /* ================= STATISTICS COUNTER ================= */
    .stats-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, #0b5ed7 100%);
        padding: var(--spacing-lg) 0;
        color: white;
        margin: 0;
    }

    .stat-card {
        text-align: center;
        padding: 2rem 1rem;
    }

    .stat-card .counter {
        font-size: clamp(1.50rem, 3vw, 2.25rem);
        font-weight: 700;
        display: block;
        margin-bottom: 0.5rem;
        color: white;
        font-family: 'Poppins', sans-serif;
        line-height: 1.2;
    }

    .stat-card h5 {
        font-size: 1rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0;
        font-family: 'Inter', sans-serif;
    }

    /* ================= TESTIMONIALS ================= */
    .testimonial-section {
        background: var(--light-bg);
        padding: var(--spacing-xl) 0;
        margin: 0;
    }

    #reviewSlider {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    #reviewSlider .carousel-item {
        min-height: auto;
        height: auto;
        padding: 1rem 0 2rem;
    }

    .testimonial-card {
        background: white;
        padding: 2rem;
        border-radius: 16px;
        box-shadow: var(--shadow-sm);
        height: 100%;
        transition: var(--transition-base);
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
        border-color: rgba(0, 0, 0, 0.1);
    }

    .testimonial-card .stars {
        color: #f4b400;
        font-size: 1.125rem;
        margin-bottom: 1rem;
        line-height: 1;
    }

    .testimonial-card p {
        flex-grow: 1;
        margin-bottom: 1.5rem;
        font-style: italic;
        color: var(--text-light);
        font-size: 1rem;
    }

    .testimonial-card h6 {
        font-weight: 700;
        margin-bottom: 0.25rem;
        color: var(--text-dark);
        font-family: 'Poppins', sans-serif;
    }

    .testimonial-card small {
        font-size: 0.875rem;
        color: var(--text-light);
        font-weight: 400;
    }

    /* ================= COMPANY SHOWCASE ================= */
    .company-section {
        padding: var(--spacing-xl) 0;
        margin: 0;
    }

    .company-section .row {
        margin-bottom: var(--spacing-xl);
        align-items: center;
    }

    .company-section .row:last-child {
        margin-bottom: 0;
    }

    .company-section img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        transition: transform var(--transition-slow);
        object-fit: cover;
    }

    .company-section img:hover {
        transform: scale(1.05);
        box-shadow: var(--shadow-xl);
    }

    .company-content {
        padding: 2rem 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .company-title {
        font-size: clamp(1.75rem, 3vw, 2.125rem);
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.25;
        color: var(--text-dark);
        font-family: 'Poppins', sans-serif;
    }

    .company-text {
        font-size: 1rem;
        line-height: 1.65;
        color: var(--text-light);
        font-weight: 400;
    }

    @media (max-width: 768px) {
        .company-content {
            padding: 1.5rem 0;
            margin-top: 1.5rem;
        }
    }

    /* ================= GALLERY ================= */
    .gallery-card {
        overflow: hidden;
        border-radius: 16px;
        position: relative;
        box-shadow: var(--shadow-sm);
        transition: var(--transition-base);
    }

    .gallery-card:hover {
        box-shadow: var(--shadow-lg);
    }

    .gallery-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: transform var(--transition-slow);
    }

    .gallery-card:hover img {
        transform: scale(1.15);
    }

    .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: var(--transition-base);
        color: white;
        font-weight: 600;
        font-size: 1.125rem;
        letter-spacing: 1px;
    }

    .gallery-card:hover .gallery-overlay {
        opacity: 1;
    }

    /* ================= PROJECT IMAGE ================= */
    .project-img {
        height: 350px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        transition: var(--transition-base);
    }

    .project-img:hover {
        transform: scale(1.02);
        box-shadow: var(--shadow-lg);
    }

    /* ================= PAGE BANNER ================= */
    /* Page banner - same main banner photo as index hero on all pages */
    .page-banner {
        position: relative;
        height: 400px;
        background-image: url('../images/banners/Mega Construction Site (Drone View).png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        color: white;
        margin-top: 0;
        padding-top: 80px;
        /* Space for fixed navbar */
        min-height: 400px;
    }

    .page-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
        z-index: 1;
    }

    .page-banner .container {
        position: relative;
        z-index: 2;
    }

    .page-banner h1 {
        color: white;
        font-size: clamp(1.75rem, 3vw, 2.125rem);
        font-weight: 700;
        margin-bottom: 0;
        line-height: 1.25;
    }

    /* ================= PREMIUM PROJECT SHOWCASE (above footer) ================= */
    .premium-showcase {
        padding: var(--spacing-xl) 0;
        background: linear-gradient(180deg, #f9fafb 0%, #eef0f3 35%, #e2e5e9 100%);
        position: relative;
        overflow: hidden;
    }

    .premium-showcase::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 55%);
        pointer-events: none;
    }

    /* Light Glassmorphism container */
    .showcase-glass {
        position: relative;
        padding: 2.5rem 1.5rem 2rem;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    .showcase-heading {
        color: #111827;
        text-align: center;
        font-size: clamp(1.75rem, 3vw, 2.125rem);
        font-weight: 700;
        margin-bottom: 0.35rem;
        line-height: 1.25;
        letter-spacing: -0.02em;
    }

    .showcase-subheading {
        color: #6c757d;
        text-align: center;
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .showcase-swiper-wrap {
        position: relative;
        padding: 0 0 3rem;
        min-height: 280px;
    }

    /* Swiper slide width for coverflow */
    .showcase-swiper .swiper-slide {
        width: 280px;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @media (min-width: 576px) {
        .showcase-swiper .swiper-slide {
            width: 320px;
        }
    }

    @media (min-width: 992px) {
        .showcase-swiper .swiper-slide {
            width: 380px;
        }
    }

    /* Card with soft shadow and hover scale */
    .showcase-card {
        height: 100%;
        border-radius: 16px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1),
            0 12px 28px rgba(0, 0, 0, 0.05);
        transition: transform var(--transition-base), box-shadow var(--transition-base);
    }

    .showcase-card:hover {
        transform: scale(1.03);
        box-shadow: 0 28px 60px rgba(0, 0, 0, 0.15),
            0 16px 36px rgba(0, 0, 0, 0.1);
    }

    .showcase-card-inner {
        position: relative;
        width: 100%;
        padding-bottom: 62%;
        overflow: hidden;
        border-radius: 16px;
    }

    .showcase-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Side slides: smaller + semi-transparent */
    .showcase-swiper .swiper-slide:not(.swiper-slide-active) .showcase-card {
        opacity: 0.6;
        transform: scale(0.92);
    }

    .showcase-swiper .swiper-slide:not(.swiper-slide-active) .showcase-card:hover {
        opacity: 0.85;
        transform: scale(0.96);
    }

    .showcase-swiper .swiper-slide-active .showcase-card {
        opacity: 1;
        transform: scale(1);
    }

    /* Nav buttons */
    .showcase-nav {
        color: rgba(0, 0, 0, 0.5) !important;
        transition: transform var(--transition-base), color var(--transition-base);
    }

    .showcase-nav:hover {
        color: #0d6efd !important;
        transform: scale(1.1);
    }

    /* Pagination */
    .showcase-pagination {
        position: relative !important;
        margin-top: 1rem !important;
    }

    .showcase-pagination .swiper-pagination-bullet {
        background: rgba(0, 0, 0, 0.3);
        opacity: 1;
        transition: transform var(--transition-base), background var(--transition-base);
    }

    .showcase-pagination .swiper-pagination-bullet-active {
        background: #0d6efd;
        transform: scale(1.2);
    }

    /* Synchronized caption with fade animation */
    .showcase-caption-wrap {
        text-align: center;
        min-height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .showcase-caption {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        font-weight: 600;
        margin: 0;
        letter-spacing: 0.02em;
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .showcase-caption.showcase-caption-out {
        opacity: 0;
        transform: translateY(-6px);
    }

    .showcase-caption.showcase-caption-in {
        opacity: 1;
        transform: translateY(0);
    }

    @media (max-width: 575.98px) {
        .premium-showcase {
            padding: var(--spacing-lg) 0;
        }

        .showcase-glass {
            padding: 1.5rem 1rem 1.5rem;
        }

        .showcase-swiper .swiper-slide {
            width: 260px;
        }
    }

    /* ================= FOOTER (TIGHT + LOGO UPPER FIX) ================= */

    footer {
        background: var(--dark-bg);
        color: white;
        padding: 40px 0 40px;
        /* Top spacing reduced */
        margin-top: 0;
    }

    /* Main area */
    .footer-main {
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 15px;
    }

    /* Columns */
    .footer-column {
        margin-bottom: 0;
        /* Remove extra vertical gap */
    }

    .footer-column h5 {
        color: white;
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 14px;
        font-family: 'Poppins', sans-serif;
    }

    /* Links + Text */
    .footer-column p,
    .footer-column a {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.88rem;
        line-height: 1.5;
        text-decoration: none;
        display: block;
        margin-bottom: 6px;
        transition: 0.3s ease;
    }

    .footer-column a:hover {
        color: white;
    }

    /* LOGO – tighter + slightly smaller */
    .footer-logo {
        margin-top: -15px;
        /* logo upar le jane ke liye */
        margin-bottom: 15px;
    }

    .footer-logo img {
        height: 70px;
        /* yaha se logo size control hoga */
        width: auto;
        max-width: 170px;
    }

    /* Description tighter */
    .footer-description {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.88rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    /* Social icons */
    .social-icons {
        display: flex;
        gap: 10px;
        margin-top: 8px;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.9rem;
        transition: 0.3s ease;
    }

    .social-icons a:hover {
        background: var(--primary-color);
        transform: translateY(-2px);
    }

    /* Bottom section */
    .footer-bottom {
        padding-top: 15px;
        /* Reduced */
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
        margin: 0;
    }

    .footer-links {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
        text-decoration: none;
        transition: 0.3s ease;
    }

    .footer-links a:hover {
        color: white;
    }

    .back-to-top {
        position: fixed;
        bottom: 100px;
        right: 2rem;
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: #0b5ed7;
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
        color: white;
    }

    /* ================= CALL FLOAT - LEFT SIDE ================= */

    .call-float {
        position: fixed;
        bottom: 2rem;
        left: 2rem;
        width: 60px;
        height: 60px;
        background: #0d6efd;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none !important;
        /* remove underline */
        box-shadow: 0 10px 30px rgba(13, 110, 253, 0.35);
        z-index: 999;
        transition: all 0.3s ease;
        font-size: 0;
        /* remove inline spacing issue */
    }

    /* ICON FIX */
    .call-float i {
        font-size: 22px;
        line-height: 1;
        display: block;
    }

    /* HOVER EFFECT */
    .call-float:hover {
        background: #0b5ed7;
        transform: scale(1.1);
        color: #ffffff;
    }

    /* Prevent any unwanted pseudo lines */
    .call-float::before,
    .call-float::after {
        display: none !important;
    }

    /* ================= WHATSAPP FLOAT ================= */
    .whatsapp-float {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background: var(--secondary-color);
        color: white;
        font-size: 1.5rem;
        padding: 1rem 1.25rem;
        border-radius: 50%;
        text-decoration: none;
        box-shadow: var(--shadow-lg);
        z-index: 998;
        transition: var(--transition-base);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        color: white;
    }

    /* ================= SCROLL REVEAL ANIMATIONS ================= */
    .reveal {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-left {
        opacity: 0;
        transform: translateX(-60px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-right {
        opacity: 0;
        transform: translateX(60px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-left.active,
    .fade-right.active {
        opacity: 1;
        transform: translateX(0);
    }

    /* ================= BENEFITS LIST ================= */
    .benefits-list {
        list-style: none;
        padding-left: 0;
    }

    .benefits-list li {
        margin-bottom: 0.75rem;
        padding-left: 1.5rem;
        position: relative;
        color: var(--text-light);
    }

    .benefits-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: 700;
        font-size: 1.125rem;
    }

    /* ================= CTA SECTION ================= */
    .cta {
        background: linear-gradient(135deg, var(--primary-color) 0%, #0b5ed7 100%);
        color: white;
        padding: var(--spacing-xl) 0;
        text-align: center;
    }

    .cta h2 {
        color: white;
        font-size: clamp(1.75rem, 3vw, 2.125rem);
        font-weight: 700;
        margin-bottom: 0.75rem;
        line-height: 1.25;
    }

    .cta p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
    }

    .cta .btn-light {
        background: white;
        color: var(--primary-color);
        font-weight: 600;
    }

    .cta .btn-light:hover {
        background: #f8f9fa;
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    /* ================= INFO CARDS ================= */
    .info-card {
        padding: 2rem;
        border-radius: 16px;
        box-shadow: var(--shadow-sm);
        transition: var(--transition-base);
        height: 100%;
        background: white;
    }

    .info-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .info-card h4,
    .info-card h5 {
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

    .info-card p {
        color: var(--text-light);
        margin-bottom: 0;
    }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 992px) {
        .hero-content {
            left: 5%;
            bottom: 15%;
            max-width: 90%;
        }

        .company-content {
            padding: 1.5rem;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }

    @media (max-width: 768px) {
        .hero-content {
            left: 1rem;
            right: 1rem;
            bottom: 12%;
            max-width: 100%;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
        }

        .carousel-control-prev {
            left: 1rem;
        }

        .carousel-control-next {
            right: 1rem;
        }

        .nav-link {
            margin-left: 0;
            padding: 0.75rem 0 !important;
            color: var(--text-dark) !important;
        }

        .whatsapp-float {
            bottom: 1.5rem;
            right: 1.5rem;
            width: 55px;
            height: 55px;
            font-size: 1.25rem;
        }

        .back-to-top {
            bottom: 90px;
            right: 1.5rem;
            width: 45px;
            height: 45px;
        }

        .footer-column {
            margin-bottom: 2rem;
        }
    }

    @media (max-width: 576px) {
        .section-padding {
            padding: var(--spacing-md) 0;
        }

        .testimonial-card {
            padding: 1.5rem;
        }

        .company-content {
            padding: 1rem 0;
        }

        .scroll-indicator {
            bottom: 2rem;
        }
    }

    /* ================= UTILITY CLASSES ================= */
    .text-center {
        text-align: center;
    }

    .mb-0 {
        margin-bottom: 0;
    }

    .mb-1 {
        margin-bottom: 0.5rem;
    }

    .mb-2 {
        margin-bottom: 1rem;
    }

    .mb-3 {
        margin-bottom: 1.5rem;
    }

    .mb-4 {
        margin-bottom: 2rem;
    }

    .mb-5 {
        margin-bottom: 3rem;
    }

    .mt-0 {
        margin-top: 0;
    }

    .mt-1 {
        margin-top: 0.5rem;
    }

    .mt-2 {
        margin-top: 1rem;
    }

    .mt-3 {
        margin-top: 1.5rem;
    }

    .mt-4 {
        margin-top: 2rem;
    }

    .mt-5 {
        margin-top: 3rem;
    }

    .bg-light {
        background-color: var(--light-bg);
    }

    /* ================= PREMIUM CONTACT PAGE DESIGN ================= */

    .contact-section {
        background: linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /* LEFT INFO CARD – Light Professional Glass Look */
    .contact-info-card {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(13, 110, 253, 0.08);
        padding: 45px;
        border-radius: 20px;
        height: 100%;
        box-shadow: 0 15px 40px rgba(13, 110, 253, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
        transition: 0.4s ease;
    }

    .contact-info-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(13, 110, 253, 0.12), 0 8px 25px rgba(0, 0, 0, 0.06);
    }

    .contact-info-card h3 {
        font-weight: 700;
        margin-bottom: 30px;
        color: #0d1b2a;
    }

    /* Contact Items */
    .contact-item {
        display: flex;
        gap: 18px;
        margin-bottom: 28px;
        align-items: flex-start;
    }

    .contact-item i {
        font-size: 22px;
        color: #0d6efd;
        background: rgba(13, 110, 253, 0.08);
        padding: 12px;
        border-radius: 12px;
    }

    .contact-item strong {
        display: block;
        font-size: 15px;
        margin-bottom: 5px;
        color: #0d1b2a;
    }

    .contact-item p {
        margin: 0;
        color: #5a6a7d;
        font-size: 14px;
    }

    /* RIGHT FORM CARD */
    .contact-form-card {
        background: #ffffff;
        padding: 50px;
        border-radius: 20px;
        border: 1px solid rgba(13, 110, 253, 0.08);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06), 0 10px 25px rgba(13, 110, 253, 0.06);
        transition: 0.4s ease;
    }

    .contact-form-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08), 0 15px 35px rgba(13, 110, 253, 0.08);
    }

    /* INPUT DESIGN */
    .custom-input {
        height: 56px;
        border-radius: 12px;
        border: 1px solid #dbe4f0;
        background: #f9fbfe;
        padding: 0 18px;
        transition: 0.3s ease;
        font-size: 14px;
    }

    textarea.custom-input {
        height: auto;
        padding-top: 14px;
    }

    .custom-input:focus {
        border-color: #0d6efd;
        background: #ffffff;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, .15);
    }

    /* BUTTON */
    .contact-btn {
        padding: 16px;
        border-radius: 12px;
        font-weight: 600;
        letter-spacing: 0.5px;
        background: linear-gradient(135deg, #0d6efd, #0b5ed7);
        border: none;
        transition: 0.3s ease;
    }

    .contact-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(13, 110, 253, .3);
    }

    /* MAP SECTION */
    .map-section {
        margin-top: 80px;
    }

    .map-section iframe {
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    }

    /* ================= PREMIUM UI ENHANCEMENTS AND PILING SECTION ================= */

    /* Hero Ken Burns & Mouse Scroll */
    .carousel-item.active .hero-slide {
        animation: kenBurns 15s ease-out forwards;
    }

    @keyframes kenBurns {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.1);
        }
    }

    .mouse {
        width: 30px;
        height: 50px;
        border: 2px solid #fff;
        border-radius: 15px;
        position: relative;
        margin: 0 auto;
    }

    .mouse::before {
        content: '';
        width: 4px;
        height: 8px;
        background: #fff;
        border-radius: 2px;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        animation: mouseScroll 1.5s infinite;
    }

    @keyframes mouseScroll {
        0% {
            top: 8px;
            opacity: 1;
        }

        100% {
            top: 24px;
            opacity: 0;
        }
    }

    /* Glassmorphism & Hover Cards */
    .glass-border {
        position: relative;
        padding: 10px;
    }

    .glass-border::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(255, 255, 255, 0));
        backdrop-filter: blur(10px);
        z-index: -1;
        transform: translate(-15px, 15px);
    }

    .glass-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .glass-hover-card {
        overflow: hidden;
        transition: all 0.4s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .glass-hover-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
    }

    .glass-hover-card .card-img-wrap {
        overflow: hidden;
    }

    .glass-hover-card:hover .card-img-top {
        transform: scale(1.1);
        filter: brightness(1.05);
    }

    /* Premium Button Enhancements */
    .premium-btn {
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .premium-btn::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        z-index: -1;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.5s ease-out;
    }

    .premium-btn:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    /* New Piling Highlights Section */
    .piling-highlight-section {
        background: #0f172a;
        /* Deep modern dark blue */
    }

    .piling-bg-blob {
        position: absolute;
        top: -20%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
        border-radius: 50%;
        z-index: 0;
        pointer-events: none;
    }

    .piling-img-card {
        position: relative;
    }

    .piling-img-card::after {
        content: '';
        position: absolute;
        inset: 0;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
        border-radius: inherit;
        pointer-events: none;
    }

    .text-light-50 {
        color: rgba(255, 255, 255, 0.7);
    }


    /* ================= MORE PREMIUM ANIMATIONS ================= */
    .piling-bg-blob-light {
        position: absolute;
        top: -20%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(13, 110, 253, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
        z-index: 0;
        pointer-events: none;
    }

    .floating-anim {
        animation: floatImage 6s ease-in-out infinite;
    }

    .floating-anim-reverse {
        animation: floatImageReverse 7s ease-in-out infinite;
    }

    @keyframes floatImage {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-15px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    @keyframes floatImageReverse {
        0% {
            transform: translateY(-15px);
        }

        50% {
            transform: translateY(0px);
        }

        100% {
            transform: translateY(-15px);
        }
    }

    /* Text Animation for specific headers */
    .animated-text {
        background: linear-gradient(90deg, #0d1b2a, #0d6efd, #0d1b2a);
        background-size: 200% auto;
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
        display: inline-block;
        animation: shineText 5s linear infinite;
    }

    @keyframes shineText {
        to {
            background-position: 200% center;
        }
    }


    /* ================= PREMIUM ANIMATED FOOTER ================= */
    .premium-footer {
        background: linear-gradient(135deg, #0f1a2c 0%, #081221 100%) !important;
    }

    .footer-bg-blob {
        position: absolute;
        bottom: -20%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
        border-radius: 50%;
        z-index: 0;
        pointer-events: none;
    }

    .social-hover {
        position: relative;
        overflow: hidden;
    }

    .social-icons a.social-hover {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .social-icons a.social-hover:hover {
        transform: scale(1.15) translateY(-5px);
        box-shadow: 0 10px 20px rgba(13, 110, 253, 0.4);
        background: #0d6efd;
        color: white;
    }

    .footer-column {
        position: relative;
    }

    .footer-column h5::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        height: 2px;
        width: 25px;
        background: #0d6efd;
        transition: width 0.4s ease;
    }

    .footer-column:hover h5::after {
        width: 45px;
    }

    .footer-nav li a {
        color: rgba(255, 255, 255, 0.7) !important;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .footer-nav li a i {
        font-size: 0.8rem;
        color: #0d6efd;
        transition: transform 0.3s ease;
    }

    .footer-nav li a:hover {
        color: #fff !important;
        transform: translateX(8px);
        /* Slider effect */
    }

    .footer-nav li a:hover i {
        transform: translateX(4px) scale(1.1);
    }

    .social-hover-text {
        transition: all 0.3s ease;
        display: inline-block;
    }

    .social-hover-text:hover {
        color: white !important;
        transform: translateY(-2px);
    }

/* ================= MOBILE RESPONSIVE (FINAL FIXES) ================= */
@media (max-width: 575.98px) {

    /* Navbar: ensure brand doesn't push toggler off screen */
    .navbar-brand {
        min-width: unset !important;
        max-width: 65%;
    }

    .navbar-brand .logo-img {
        height: 42px !important;
    }

    /* Hero CTA buttons: stack vertically on xs */
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .hero-cta .btn {
        margin-left: 0 !important;
        width: auto;
        min-width: 160px;
    }

    /* Hero content: more breathing room */
    .hero-content {
        left: 5% !important;
        right: 5%;
        bottom: 15% !important;
        max-width: 90% !important;
    }

    /* Service cards: prevent text overflow */
    .card-body {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Stats row: keep 2-col grid, ensure no bleed */
    .stats-section .row {
        --bs-gutter-x: 0.75rem;
    }

    /* Swiper showcase: ensure no horizontal bleed */
    .showcase-swiper-wrap,
    #showcaseSwiper {
        overflow: hidden;
    }
}