/* 
    VYOMN PROJECCTS - Premium Upgrade 
    High-End Industrial Corporate Styling
*/

:root {
    --deep-navy: #0B1C2D;
    --steel-blue: #1E3A5F;
    --charcoal: #111827;
    --neon-orange: #FF7A00;
    --bright-orange: #FF9A2A;
    --glass-dark: rgba(11, 28, 45, 0.95);
    --glass-light: rgba(255, 255, 255, 0.1);
    --gold-accent: #D4AF37;
}

/* Global Enhancements */
body {
    background-color: #F0F4F8;
    overflow-x: hidden;
}

.section-separator-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.section-separator-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.shape-fill {
    fill: #FFFFFF;
}

/* =========================================
   1. HERO SECTION PREMIUM UPGRADE
   ========================================= */
.hero-premium {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: var(--deep-navy);
    overflow: hidden;
    color: white;
    margin-top: -81px;
    /* Overlap header */
    padding-top: 80px;
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    /* For parallax */
    background: url('../images/hero-home-new.png') center/cover no-repeat;
    z-index: 1;
    transform: translateZ(0);
    will-change: transform;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 28, 45, 0.95) 0%,
            rgba(30, 58, 95, 0.8) 50%,
            rgba(11, 28, 45, 0.9) 100%);
    z-index: 2;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-text-content {
    max-width: 650px;
}

.hero-subtitle-pill {
    display: inline-block;
    background: rgba(255, 122, 0, 0.15);
    border: 1px solid var(--neon-orange);
    color: var(--neon-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.premium-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -2px;
    background: linear-gradient(to right, #FFFFFF, #E2E8F0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.premium-desc {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
    max-width: 550px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.btn-glow {
    background: linear-gradient(135deg, var(--neon-orange), var(--bright-orange));
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: glowSweep 3s infinite;
}

@keyframes glowSweep {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn-outline-glow {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(5px);
}

.btn-outline-glow:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Floating Trust Badges */
.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    opacity: 0;
    animation: fadeInRight 1s ease forwards 1s;
}

.trust-badge-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.trust-badge-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-orange);
}

.badge-icon {
    font-size: 2rem;
    color: var(--neon-orange);
    margin-bottom: 10px;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

/* =========================================
   2. ANIMATED TRUST BAR & STATS
   ========================================= */
.trust-bar-section {
    background: var(--charcoal);
    padding: 60px 0;
    position: relative;
    z-index: 5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Stats Counter */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: var(--container-width);
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-number[data-target]::after {
    content: '+';
    color: var(--neon-orange);
    font-size: 2rem;
    vertical-align: super;
}

.stat-label {
    color: #94A3B8;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Logo Marquee */
.logo-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marquee 30s linear infinite;
    padding: 20px 0;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    height: 130px !important;
    width: 130px !important;
    object-fit: contain !important;
    border-radius: 50% !important;
    border: 3px solid var(--neon-orange) !important;
    background-color: white !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    margin: 0 !important;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 5));
    }
}

/* =========================================
   3. SERVICES SECTION ENHANCEMENT
   ========================================= */
/* Enhances existing .core-service-card */
.core-service-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.core-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: linear-gradient(135deg, var(--neon-orange), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.core-service-card:hover::before {
    opacity: 1;
}

.core-service-icon {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.core-service-card:hover .core-service-icon {
    transform: translateY(-10px) scale(1.1);
    color: var(--white);
    text-shadow: 0 0 10px var(--neon-orange);
}

/* =========================================
   4. WHY CHOOSE US (PREMIUM DARK)
   ========================================= */
.section-premium-dark {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--charcoal) 100%);
    position: relative;
    color: white;
    overflow: hidden;
}

.section-premium-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.trust-strip {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 122, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.trust-strip-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-orange);
}

.why-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content-premium {
    position: relative;
    z-index: 2;
    min-width: 0;
    width: 100%;
}

.why-title-premium {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #FFFFFF, #94A3B8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.why-title-underline {
    width: 80px;
    height: 4px;
    background: var(--neon-orange);
    margin-bottom: 30px;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.5);
}

.why-subtitle-premium {
    font-size: 1.1rem;
    color: #CBD5E1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.feature-block-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.feature-block-premium:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 122, 0, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-premium {
    font-size: 1.8rem;
    color: var(--neon-orange);
    background: rgba(255, 122, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-text-premium h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
}

.feature-text-premium p {
    font-size: 0.95rem;
    color: #94A3B8;
    line-height: 1.5;
}

.why-image-wrapper-premium {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-width: 0;
}

.why-image-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 20px;
    width: 100%;
}

.collage-img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.collage-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6);
    z-index: 5;
    border-color: rgba(249, 115, 22, 0.5);
}

.collage-img-1 {
    height: 320px;
    margin-top: 40px;
}

.collage-img-2 {
    height: 260px;
}

.collage-img-3 {
    height: 260px;
    margin-top: -60px;
}

.collage-img-4 {
    height: 320px;
    margin-top: -120px;
}

.glass-badge-premium {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    width: max-content;
}

.glass-badge-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--neon-orange);
    filter: blur(50px);
    opacity: 0.4;
    z-index: -1;
}

.badge-number-lg {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.badge-text-sm {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #E2E8F0;
    letter-spacing: 1px;
}

/* Background Glow behind Image */
.glow-effect-bg {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .why-grid-premium {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-title-underline {
        margin: 0 auto 30px auto;
    }

    .feature-block-premium {
        text-align: left;
    }

    .why-image-premium {
        margin-top: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .glass-badge-premium {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: -20px;
        width: 80%;
    }
}

/* =========================================
   5. PROCESS SECTION ANIMATED
   ========================================= */
.process-grid {
    position: relative;
    /* Connecting Line logic handles better with ::before on container, but keeping grid */
}

.process-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--neon-orange);
}

.process-step {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 3;
}

.process-step::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed var(--neon-orange);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* =========================================
   6. TESTIMONIALS SLIDER
   ========================================= */
.testimonial-slider-container {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: slideLeft 40s linear infinite;
    width: max-content;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card-premium {
    min-width: 400px;
    background: #0F172A;
    /* Dark card */
    padding: 40px;
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.t-quote-watermark {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.03);
    font-family: serif;
    line-height: 0;
}

.t-rating {
    color: var(--gold-accent);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.t-text {
    color: #CBD5E1;
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--neon-orange);
    object-fit: cover;
}

.t-info h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.t-info span {
    color: #94A3B8;
    font-size: 0.9rem;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   7. ANIMATIONS & EFFECTS
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Additional Specific Mobile Refinements */
@media (max-width: 1024px) {

    /* Service Hero Refinement */
    .service-hero {
        min-height: 40vh;
        padding: 100px 0 60px 0;
        background-position: center top !important;
    }

    /* Service Card Accent Divider */
    .scm-content h3::after {
        content: '';
        display: block;
        width: 40px;
        height: 3px;
        background: var(--neon-orange);
        margin-top: 10px;
        border-radius: 2px;
    }

    /* Reduce blur effects on mobile for performance */
    .glass-badge-premium,
    .trust-badge-card,
    .btn-outline-glow {
        backdrop-filter: none !important;
        background: rgba(11, 28, 45, 0.95);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

/* =========================================
   8. MOBILE OPTIMIZATION (RESPONSIVE)
   ========================================= */

@media (max-width: 1024px) {

    /* Global Typography & Spacing */
    :root {
        --mobile-header-height: 70px;
    }

    html,
    body {
        font-size: 100%;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }

    section,
    .section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        max-width: 100%;
    }

    /* Fixed Premium Typography Scaling */
    h1,
    .page-title,
    .premium-headline {
        font-size: clamp(28px, 5vw, 42px) !important;
        line-height: 1.2;
    }

    h2,
    .section-title {
        font-size: 26px !important;
        line-height: 1.3;
    }

    h3,
    .mega-heading {
        font-size: 20px !important;
    }

    p {
        font-size: 16px !important;
        line-height: 1.6;
    }

    /* Header Mobile Fix */
    .header {
        height: var(--mobile-header-height);
        padding: 0;
    }

    .container-header {
        height: var(--mobile-header-height);
        padding: 0 20px;
    }

    .nav-toggle-label {
        top: 22px;
        /* Center in 70px header */
        right: 20px;
        width: 44px;
        /* Improved touch target */
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        top: var(--mobile-header-height);
        padding-top: 20px;
        padding-bottom: 40px;
    }


    .nav-list {
        padding: 24px 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .nav-item {
        margin: 0 !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        font-size: 1.05rem !important;
        padding: 20px 28px !important;
        border-bottom: none !important;
        width: 100% !important;
        display: block !important;
        color: var(--primary-color) !important;
    }

    /* Services Button (non-clickable) */
    .nav-link-button {
        background: none !important;
        border: none !important;
        text-align: left !important;
        cursor: pointer !important;
        font-family: inherit !important;
        font-weight: 600 !important;
    }

    .nav-link-button:hover {
        background: rgba(249, 115, 22, 0.05) !important;
    }


    /* Mobile Mega Menu Dropdown */
    .has-dropdown {
        height: auto !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .mega-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        padding: 0 !important;
        border-top: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
        background: #f8fafc !important;
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
    }

    /* Use JavaScript class instead of hover for mobile */
    .has-dropdown.dropdown-open .mega-menu {
        max-height: 2000px !important;
        padding: 20px 28px !important;
    }

    .mega-menu-content {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .mega-column {
        padding: 0 !important;
        margin: 0 !important;
    }

    .mega-heading {
        font-size: 0.95rem !important;
        margin-bottom: 16px !important;
        padding: 0 !important;
        border-bottom: 2px solid rgba(249, 115, 22, 0.2) !important;
        padding-bottom: 10px !important;
    }

    .mega-list {
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .mega-list li {
        margin-bottom: 10px !important;
        padding: 0 !important;
    }

    .mega-list a {
        font-size: 0.95rem !important;
        padding: 10px 0 !important;
        display: block !important;
        color: var(--secondary-color) !important;
    }

    .featured-box {
        display: none !important;
    }

    /* All Services Button */
    .all-services-column {
        display: block !important;
        margin-top: 12px !important;
        padding-top: 20px !important;
        border-top: 2px solid rgba(249, 115, 22, 0.2) !important;
    }

    .btn-all-services {
        width: 100% !important;
        text-align: center !important;
        padding: 16px 24px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    /* CTA Button in Nav */
    .btn-nav {
        display: block !important;
        width: calc(100% - 56px) !important;
        margin: 20px 28px !important;
        text-align: center !important;
    }

    /* Hero Section Mobile Fix */
    .hero-premium {
        min-height: 100svh;
        /* Full viewport height */
        height: auto;
        padding-top: 100px;
        /* Account for header */
        padding-bottom: 60px;
        align-items: center;
        margin-top: -70px;
        /* Offset header */
    }

    .hero-bg-layer {
        background-position: center top !important;
    }

    .hero-overlay-gradient {
        background: linear-gradient(180deg,
                rgba(11, 28, 45, 0.95) 0%,
                rgba(11, 28, 45, 0.85) 50%,
                rgba(11, 28, 45, 1) 100%);
    }

    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 20px;
    }

    .hero-text-content {
        max-width: 100%;
        margin-bottom: 40px;
        margin-right: 0;
    }

    .hero-subtitle-pill {
        margin-bottom: 16px;
        font-size: 0.8rem;
    }

    .premium-desc {
        font-size: 1.1rem !important;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: center;
    }

    .hero-cta-group .btn,
    .hero-cta-group a {
        width: 100%;
        max-width: 350px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 16px 20px;
        min-height: 54px;
        /* Touch friendly */
    }

    /* Dashboard / Badges Fix */
    .hero-badges {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trust-badge-card {
        padding: 15px;
        backdrop-filter: blur(5px);
        /* Reduce blur for performance */
    }

    .badge-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .badge-text {
        font-size: 0.8rem;
    }

    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .stat-item::after {
        display: none;
    }

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

    /* Service Pages Mobile Premium Fix */
    .services-grid-page {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card-main,
    .core-service-card {
        display: flex;
        flex-direction: column;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.03);
        margin-bottom: 20px;
    }

    .scm-img {
        height: auto;
        width: 100%;
        aspect-ratio: 16/9;
    }

    .scm-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .scm-content {
        padding: 25px 20px;
    }

    .link-arrow {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 0;
        /* Touch target */
    }

    /* Image Responsiveness Phase 5 */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Performance Optimizations */
    .hero-grid-lines {
        opacity: 0.15;
        animation: none;
        /* Disable animation for better scroll performance */
        background-size: 25px 25px;
    }

    .t-quote-watermark {
        display: none;
        /* Remove complex render item */
    }

    .testimonial-card-premium {
        min-width: 100%;
        /* Stack testimonials or full width carousels */
        padding: 25px;
    }

    /* Touch Targets */
    .btn,
    button,
    input[type="submit"] {
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        grid-template-columns: repeat(2, 1fr);
        /* Keep 2 cols even on small mobile if possible, typically better than 4 stacked */
        gap: 10px;
    }

    .premium-headline {
        font-size: 32px !important;
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatParticle 10s infinite ease-in-out;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-50px) scale(1.5);
        opacity: 0.6;
    }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .premium-headline {
        font-size: 3rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }

    .hero-text-content {
        margin-bottom: 60px;
    }

    .hero-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }

    .stat-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .premium-headline {
        font-size: 2.5rem;
    }

    .testimonial-card-premium {
        min-width: 300px;
        padding: 25px;
    }

    .logo-track {
        animation: marquee 10s linear infinite;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================
   9. FINAL MOBILE OVERRIDES (PRIORITY)
   ========================================= */
@media (max-width: 1024px) {

    /* =========================================
       9. NEW ARCHITECTED MOBILE NAVIGATION
       ========================================= */

    /* Scroll Lock on Body */
    body.mobile-menu-active {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    /* Fixed Header Fixes */
    .header {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px !important;
        z-index: 10000 !important;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding-top: env(safe-area-inset-top);
    }

    /* Proper Mobile Nav Container (Overlay) */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 9999 !important;
        display: flex !important;
        flex-direction: column !important;
        padding: calc(70px + env(safe-area-inset-top)) 0 40px 0 !important;
        transform: translateX(100%) !important;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* Open State */
    .nav-toggle:checked~.nav-menu {
        transform: translateX(0) !important;
        max-height: 100vh !important;
    }

    /* Menu Items List */
    .nav-list {
        display: flex !important;
        flex-direction: column !important;
        padding: 20px !important;
        margin: 0 !important;
        width: 100% !important;
        gap: 0 !important;
    }

    .nav-item {
        width: 100% !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        list-style: none !important;
    }

    .nav-link {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0 !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        color: var(--primary-color) !important;
        min-height: 48px;
        text-decoration: none !important;
    }

    /* Dropdown Toggle Arrow */
    .dropdown-icon {
        transition: transform 0.3s ease;
        font-size: 12px;
    }

    .dropdown-open .dropdown-icon {
        transform: rotate(180deg);
    }

    /* Services Accordion System */
    .has-dropdown {
        display: block !important;
        height: auto !important;
        width: 100% !important;
    }

    .has-dropdown:hover .mega-menu {
        max-height: 0 !important;
        /* Prevent hover from opening it on mobile */
        padding: 0 !important;
    }

    .dropdown-open.has-dropdown:hover .mega-menu,
    .dropdown-open .mega-menu {
        max-height: 3000px !important;
        /* Use large enough value */
        padding: 24px 20px !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    .mega-menu {
        position: static !important;
        width: 100% !important;
        max-height: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        background: #fcfcfc !important;
        /* Slightly distinct background */
        transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
        border: none !important;
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
        /* Always opaque when height > 0 */
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .mega-menu-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mega-column {
        margin: 0 !important;
    }

    .mega-heading {
        font-size: 0.85rem !important;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--accent-color) !important;
        margin-bottom: 15px !important;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mega-list {
        padding: 0 !important;
        margin: 0 !important;
    }

    .mega-list li {
        margin-bottom: 12px !important;
    }

    .mega-list a {
        font-size: 0.95rem !important;
        color: var(--secondary-color) !important;
        padding: 8px 0 !important;
        display: block !important;
    }

    /* All Services Mobile Button */
    .all-services-column {
        margin-top: 20px !important;
        padding-top: 20px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .btn-all-services {
        width: 100% !important;
        justify-content: center !important;
        background: var(--primary-color) !important;
        color: white !important;
        border-radius: 8px !important;
        padding: 14px !important;
    }

    /* Mobile CTA Button */
    .btn-nav {
        margin: 20px !important;
        width: calc(100% - 40px) !important;
        text-align: center !important;
        display: block !important;
        padding: 16px !important;
        border-radius: 10px !important;
    }

    /* Hamburger Animation Refinement */
    .nav-toggle-label {
        width: 44px;
        height: 44px;
        z-index: 10001 !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle:checked~.nav-toggle-label span {
        background: transparent !important;
    }

    .nav-toggle:checked~.nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    /* Content Visibility Behind Menu */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(11, 28, 45, 0.4);
        backdrop-filter: blur(4px);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .nav-toggle:checked~.nav-menu::before {
        opacity: 1;
    }

    /* Hero Padding for Fixed Header */
    main {
        padding-top: 70px;
    }

    /* Service Hero Refinement */
    .service-hero {
        min-height: 40vh !important;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
        background-position: center top !important;
    }

    /* Service Card Accent Divider */
    .scm-content h3 {
        position: relative;
        padding-bottom: 15px;
    }

    .scm-content h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--neon-orange);
        border-radius: 2px;
    }

    /* Reduce blur effects on mobile for performance */
    .glass-badge-premium,
    .trust-badge-card,
    .btn-outline-glow {
        backdrop-filter: none !important;
        background: rgba(11, 28, 45, 0.95);
        /* Solid fallback */
    }

    /* Force 2-Column Grid for Stats on Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* Fix Image Badge Cropping on Mobile */
    .why-image-premium {
        height: auto;
        min-height: 350px;
        overflow: visible !important;
        /* Allow badge to float or stay inside */
        margin-bottom: 60px;
        /* Space for the badge if it hangs */
    }

    .why-img-main-premium {
        height: 350px;
        object-fit: cover;
        border-radius: 20px;
    }

    .glass-badge-premium {
        bottom: 20px !important;
        /* Move it UP inside the container */
        width: 90% !important;
        padding: 15px !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .badge-number-lg {
        font-size: 2rem !important;
        /* Scale down text */
    }

    .whatsapp-float {
        bottom: 90px !important;
        /* Move WhatsApp up to avoid overlap */
        z-index: 99999 !important;
    }
}

/* =========================================
   8. INDUSTRY SEGMENTATION (Phase 2)
   ========================================= */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.industry-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--neon-orange);
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--neon-orange);
    margin-bottom: 20px;
}

.industry-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.industry-card p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =========================================
   9. BOLD METRICS (Phase 3)
   ========================================= */
.metrics-bold-section {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #1a2942 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.metrics-bold-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.metric-bold-item {
    position: relative;
    padding: 20px;
}

.metric-bold-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--neon-orange);
    display: block;
    margin-bottom: 10px;
    line-height: 1;
    font-family: var(--font-heading, "Manrope", sans-serif);
}

.metric-bold-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-bold-desc {
    font-size: 0.9rem;
    color: #94A3B8;
}

/* =========================================
   10. FEATURED CASE STUDY (Phase 5)
   ========================================= */
.case-study-feature {
    background: #F8FAFC;
    padding: 100px 0;
}

.case-study-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.case-study-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--charcoal);
    line-height: 1.2;
}

.case-study-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cs-meta-item {
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--steel-blue);
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cs-detail-block {
    margin-bottom: 25px;
    border-left: 3px solid var(--neon-orange);
    padding-left: 20px;
}

.cs-detail-block h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.cs-detail-block p {
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

.case-study-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.2);
    position: relative;
}

.case-study-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.case-study-image:hover img {
    transform: scale(1.05);
}

/* =========================================
   11. COMPLIANCE & ENGINEERING (Phase 6)
   ========================================= */
.compliance-section {
    background: white;
    padding: 100px 0;
    text-align: center;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.compliance-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.compliance-card:hover {
    border-color: var(--neon-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.compliance-icon {
    font-size: 2.5rem;
    color: var(--steel-blue);
    margin-bottom: 20px;
}

.compliance-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.compliance-card p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.5;
}

/* =========================================
   12. FAQ ACCORDION (Phase 7)
   ========================================= */
.faq-section {
    background: #F1F5F9;
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

details.faq-details {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

details.faq-details[open] {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

details.faq-details summary {
    padding: 20px 25px;
    font-weight: 700;
    color: var(--charcoal);
    cursor: pointer;
    position: relative;
    list-style: none;
    font-size: 1.1rem;
}

details.faq-details summary::-webkit-details-marker {
    display: none;
}

details.faq-details summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--neon-orange);
    font-weight: 300;
}

details.faq-details[open] summary::after {
    content: '-';
}

details.faq-details p {
    padding: 0 25px 25px 25px;
    color: #64748B;
    margin: 0;
    line-height: 1.6;
}

/* =========================================
   13. BLOG PREVIEW (Phase 8)
   ========================================= */
.blog-section {
    padding: 100px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #E2E8F0;
    background: white;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.blog-img-wrapper {
    height: 220px;
    overflow: hidden;
    background: #eee;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--neon-orange);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--charcoal);
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #64748B;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-link {
    color: var(--steel-blue);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.blog-link:hover {
    color: var(--neon-orange);
}

@media (max-width: 1024px) {
    .case-study-wrapper {
        grid-template-columns: 1fr;
    }

    .case-study-image {
        margin-top: 40px;
        order: -1;
        /* Image first on mobile? or keep text first. Let's keep text first. */
    }
}

/* =========================================
   14. NEW PORTFOLIO CLIENT CARDS
   ========================================= */
.portfolio-clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
}

.client-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--neon-orange);
}

.client-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
}

.client-logo-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5px;
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
    text-transform: capitalize;
    line-height: 1.2;
}

.client-gallery-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.client-gallery-scroll::-webkit-scrollbar {
    height: 6px;
}

.client-gallery-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.gallery-item {
    flex: 0 0 280px;
    /* Fixed width for gallery items */
    aspect-ratio: 4/3;
    /* Keeps it square-ish/rectangular as requested */
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    background: #eee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Mobile override for single column */
@media (max-width: 600px) {
    .portfolio-clients-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        flex: 0 0 85%;
        /* Shows part of next image to encourage scroll */
    }
}


/* =========================================
   15. HOME PAGE SHED SLIDER & INTERIOR GRID
   ========================================= */

/* Infinite Auto-Rotating Slider */
.sheds-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 60px 0;
    /* More padding */
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--charcoal) 100%);
    /* Dark theme bg */
}

.sheds-slider-track {
    display: flex;
    width: max-content;
    animation: shedScroll 40s linear infinite;
    /* Smooth slow scroll */
}

.sheds-slider-track:hover {
    animation-play-state: paused;
}

.shed-slide {
    width: 400px;
    /* Adjust based on preference */
    height: 300px;
    margin: 0 15px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.shed-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes shedScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assuming duplicated content handles seamless loop */
}

@media (max-width: 768px) {
    .shed-slide {
        width: 300px;
        height: 225px;
    }
}

/* Interior Grid */
.sheds-interior-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 0;
}

.interior-item {
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.interior-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.interior-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .sheds-interior-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sheds-interior-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   AUTHORITY VIDEO SECTION
   ========================================= */
.authority-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.authority-grid-premium>div {
    min-width: 0;
    width: 100%;
}

.authority-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 10px solid #ffffff;
}

.authority-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .authority-grid-premium {
        grid-template-columns: 1fr;
    }

    .authority-video-wrapper {
        margin-bottom: 30px;
    }
}


/* =========================================
   UPDATED AUTHORITY SECTION STYLES
   ========================================= */
.authority-highlight {
    color: var(--neon-orange);
    position: relative;
    display: inline-block;
}

.authority-highlight::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background-color: rgba(249, 115, 22, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.authority-title-animated {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.authority-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* Soft glowing colored shadow blending with neon orange and subtle dark blue */
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.25), 0 0 40px rgba(15, 23, 42, 0.1);
    /* Vibrant modern border */
    border: 4px solid rgba(249, 115, 22, 0.15);
    background: white;
    /* In case video takes a ms to load */
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.authority-video-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
    box-shadow: 0 35px 60px -15px rgba(249, 115, 22, 0.35), 0 0 50px rgba(15, 23, 42, 0.15);
    border-color: rgba(249, 115, 22, 0.4);
}

.video-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.1), transparent 50%);
    pointer-events: none;
    /* Let clicks pass through */
    z-index: 2;
}

/* =========================================
   MISSING PAGE GRIDS AND CARD STYLES
   ========================================= */

/* Contact Page Layout */
.contact-grid-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-details-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon-large {
    font-size: 2rem;
    color: var(--neon-orange);
    background: rgba(249, 115, 22, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 5px;
    color: var(--charcoal);
}

.contact-form-page {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

/* Service Detail Grid */
.service-detail-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.service-content {
    background: #fff;
    padding: 40px 50px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
}

.service-content h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1E293B;
    margin-top: 40px;
    margin-bottom: 18px;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #334155;
    margin-top: 30px;
    margin-bottom: 12px;
}

.service-content p {
    color: #475569;
    line-height: 1.85;
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.service-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.service-content ul li {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 8px;
}

.service-sidebar {
    background: #F8FAFC;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    align-self: start;
    position: sticky;
    top: 100px;
}

/* About Page Grids */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.story-img-wrapper {
    position: relative;
}

.year-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--neon-orange);
    color: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.year-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.year-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Vision Mission Grid */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--neon-orange);
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
}

.vm-icon {
    font-size: 3rem;
    color: var(--neon-orange);
    margin-bottom: 20px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.team-role {
    color: var(--neon-orange);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--steel-blue);
    margin-bottom: 15px;
}

.value-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Trust Grid About */
.trust-grid-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {

    .contact-grid-page,
    .story-grid,
    .trust-grid-about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
        margin-top: 30px;
    }

    .year-badge {
        bottom: 10px;
        right: 10px;
        padding: 15px 20px;
    }

    .year-num {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-page,
    .contact-details-box,
    .service-sidebar {
        padding: 20px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-icon-large {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

/* Blog Page Title Contrasts */
.header-title-premium {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Global High-Contrast Text Enforcement for Headers */
.page-title,
.hero-title {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7) !important;
}

.hero-subtitle,
.breadcrumb,
.breadcrumb a {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6) !important;
    font-weight: 500;
}

/* =========================================
   SIDEBAR & SERVICE DETAIL PAGE STYLES
   ========================================= */

/* Feature boxes inside main service content */
.service-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--neon-orange);
}

.feature-box h4 {
    color: var(--charcoal);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-box h4 i {
    color: var(--neon-orange);
    font-size: 1.2rem;
}

.feature-box p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Sidebar Components */
.sidebar-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
}

.sidebar-box:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    font-weight: 700;
}

.service-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-menu li {
    margin-bottom: 10px;
}

.service-menu li:last-child {
    margin-bottom: 0;
}

.service-menu li a {
    display: block;
    padding: 12px 20px;
    background: #f8fafc;
    color: var(--charcoal);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.service-menu li a:hover,
.service-menu li a.active {
    background: #fff;
    color: var(--neon-orange);
    border-left-color: var(--neon-orange);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* FAQ Items */
.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--neon-orange);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    display: block;
}

/* =========================================
   BLOG POST PAGE STYLES
   ========================================= */
.blog-post-header {
    background: linear-gradient(135deg, var(--deep-navy) 0%, rgba(15, 23, 42, 0.9) 100%), url('../images/hero-portfolio.png') center/cover;
    padding: 140px 0 80px 0;
    text-align: center;
    color: white;
}

.blog-meta-tag {
    display: inline-block;
    background: var(--neon-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.blog-content-body {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    margin-top: -40px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border-color);
}

.blog-content-body h2 {
    color: var(--charcoal);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.blog-content-body p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.blog-content-body strong {
    color: var(--charcoal);
}

.blog-content-body a {
    color: var(--neon-orange);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--charcoal);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: #f8fafc;
}

.cta-box {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-left: 4px solid var(--neon-orange);
    padding: 40px;
    border-radius: 0 12px 12px 0;
    margin: 50px 0 0 0;
}

.cta-box h3 {
    margin-bottom: 15px;
    color: var(--charcoal);
    font-size: 1.4rem;
}

.cta-box p {
    margin: 0;
}

@media (max-width: 768px) {
    .service-features-list {
        grid-template-columns: 1fr;
    }

    .blog-content-body {
        padding: 30px 20px;
        margin-top: -20px;
    }

    .blog-post-header {
        padding: 120px 0 60px 0;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }
}