* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #e63946;
            --primary-green: #06d6a0;
            --primary-gold: #ffd700;
            --dark-bg: #0a0e27;
            --light-bg: #f8f9fa03;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glow-color: #ffd700;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--light-bg);
            color: #333;
            overflow-x: hidden;
            transition: all 0.5s ease;
        }

        body.dark-mode {
            background: var(--dark-bg);
            color: #fff;
        }

        /* 3D Canvas Background */
        #three-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .content-wrapper {
            position: relative;
            z-index: 1;
        }

        /* ensure hero content sits above the canvas */
        .hero {
            position: relative;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero {
    position: relative;
    height: 90vh;
    background: url('../img/banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(98, 98, 98, 0.7),
        rgba(101, 99, 99, 0.6)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}


        /* Desktop Navigation */
        .desktop-nav {
    position: fixed;
    top: 15px; /* reduced */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px; /* reduced gap */
    padding: 10px 25px; /* reduced padding */
    background: rgba(80, 79, 79, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 40px; /* smaller capsule */
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

.nav-logo img {
    height: 80px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s ease;
}

@media (max-width: 992px) {

    .desktop-nav {
        width: 95%;              /* fit inside screen */
        padding: 8px 15px;       /* smaller padding */
        gap: 10px;               /* smaller gap */
        border-radius: 30px;
        top: 10px;
    }

    .nav-logo img {
        height: 40px;            /* smaller logo */
    }

    .desktop-nav a {
        padding: 6px 10px;
        font-size: 13px;
    }
    
}

@media (max-width: 768px) {
    .desktop-nav .nav-link {
        display: none !important;
    }

    .nav-logo img {
        height: 90px;   /* increase this if you want bigger */
        width: auto;
    }

}

        body.dark-mode .desktop-nav {
            background: rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 215, 0, 0.5);
        }

        .desktop-nav a {
            color: #333;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        body.dark-mode .desktop-nav a {
            color: #fff;
        }

        .desktop-nav a:hover {
            background: rgba(255, 215, 0, 0.2);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
            transform: translateY(-2px);
        }

        .desktop-nav a.active {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
            color: white;
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
        }

        /* Mobile Bottom Navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            padding: 10px 0;
            border-top: 2px solid rgba(255, 215, 0, 0.3);
            z-index: 1000;
            box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
        }

        body.dark-mode .mobile-nav {
            background: rgba(0, 0, 0, 0.5);
        }

        .mobile-nav-items {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #333;
            text-decoration: none;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        body.dark-mode .mobile-nav-item {
            color: #fff;
        }

        .mobile-nav-item i {
            font-size: 24px;
            margin-bottom: 5px;
            transition: all 0.3s ease;
        }

        .mobile-nav-item:hover i, .mobile-nav-item.active i {
            transform: scale(1.2);
            color: var(--primary-gold);
            filter: drop-shadow(0 0 10px var(--primary-gold));
        }

        /* Floating Buttons */
        .floating-btn {
            position: fixed;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 215, 0, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid var(--primary-gold);
            cursor: move;
            z-index: 999;
            transition: all 0.3s ease;
            box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5);
        }

        .floating-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
        }

        .floating-btn i {
            font-size: 28px;
            color: var(--primary-gold);
            animation: pulse 2s infinite;
        }

        #fingerprintBtn {
            bottom: 150px;
            right: 30px;
        }

        #rocketBtn {
            bottom: 80px;
            right: 30px;
            opacity: 0;
            pointer-events: none;
        }

        #rocketBtn.active {
            opacity: 1;
            pointer-events: all;
        }

        #inquiryBtn {
            bottom: 220px;
            right: 30px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
        }

        /* Theme Toggle */
        .theme-toggle {
            position: fixed;
            top: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid var(--primary-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .theme-toggle:hover {
            transform: rotate(180deg);
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
        }

        .theme-toggle i {
            font-size: 24px;
            color: var(--primary-gold);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 100px 20px;
            position: relative;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-gold), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            animation: shine 3s infinite;
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
        }

        @keyframes shine {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.5); }
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Glass Cards */
        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 30px;
            border: 2px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        body.dark-mode .glass-card {
            background: rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 215, 0, 0.5);
        }

        .glass-card:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5);
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .glass-card:hover::before {
            left: 100%;
        }

        .about-hero h1 {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-gold), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            animation: shine 3s infinite;
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
        }

        @keyframes shine {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.5); }
        }


        .about-hero{
    height:90vh;
    background:linear-gradient( rgba(65, 65, 65, 0.7),rgba(46, 45, 45, 0.6)),
               url('../img/serviceban.jpg') center/cover no-repeat;
}




        .about-premium {
    padding: 100px 0;
}

.about-single-card {
    padding: 60px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    transition: 0.4s ease;
}

.about-single-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,215,0,0.15);
}

.about-subtitle {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: auto;
    opacity: 0.9;
}

.about-counter h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-gold);
}

.about-counter p {
    margin-top: 5px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.about-section{
    padding:80px 0;
}

.premium-card{
    position:relative;
    padding:50px 30px 35px;
    border-radius:22px;
    background:#ffffff;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:all .4s ease;
    height:100%;
    text-align:center;
    border:1px solid #f1f1f1;
}

.premium-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* Floating Icon */
.icon-box{
    width:70px;
    height:70px;
    margin:-85px auto 25px;
    background:#facc15;
    color:#000;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    box-shadow:0 15px 30px rgba(250,204,21,0.35);
    transition:.4s;
}

.premium-card:hover .icon-box{
    transform:rotate(8deg) scale(1.08);
}

.premium-card h4{
    font-weight:700;
    margin-bottom:15px;
    color: #000;
}

.premium-card p{
    color:#6b7280;
    font-size:15px;
    line-height:1.7;
}


.signature-expertise{
    padding:120px 0;
    color: var(--dark-bg);
    position:relative;
    overflow:hidden;
}

.signature-title{
    font-size:3rem;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:30px;
    background: linear-gradient(90deg,#facc15,#ffd700);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.signature-text{
    max-width:780px;
    margin:auto;
    font-size:1.1rem;
    color:#333;
    line-height:1.9;
}

body.dark-mode .signature-text{
    color:#fff;
}

.signature-line{
    width:120px;
    height:3px;
    background:#facc15;
    margin:50px auto;
    border-radius:10px;
}

.signature-services{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:35px;
    font-size:0.95rem;
    letter-spacing:1px;
    color:#333;
}

body.dark-mode .signature-services{
    color:#fff;
}

.signature-services span{
    position:relative;
    padding:8px 14px;
}

.signature-services span::after{
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:0%;
    height:2px;
    background:#facc15;
    transition:.4s;
}

.signature-services span:hover::after{
    width:100%;
}


/* ===============================
   JOURNEY SECTION
================================ */

.timeline{
    position:relative;
    max-width:900px;
    margin:auto;
}

.timeline::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    width:3px;
    height:100%;
    background:linear-gradient(var(--primary-gold),transparent);
    transform:translateX(-50%);
}

.timeline-item{
    position:relative;
    width:50%;
    padding:30px 40px;
}

.timeline-item:nth-child(odd){
    left:0;
    text-align:right;
}

.timeline-item:nth-child(even){
    left:50%;
}

.timeline-item::before{
    content:'';
    position:absolute;
    top:40px;
    width:18px;
    height:18px;
    background:var(--primary-gold);
    border-radius:50%;
    box-shadow:0 0 20px rgba(255,215,0,.6);
}

.timeline-item:nth-child(odd)::before{
    right:-9px;
}

.timeline-item:nth-child(even)::before{
    left:-9px;
}

.timeline-content{
    background:linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border:1px solid rgba(255,215,0,.2);
    backdrop-filter:blur(15px);
    padding:25px;
    border-radius:18px;
    transition:.4s;
}

.timeline-content:hover{
    transform:scale(1.05);
    border-color:rgba(255,215,0,.5);
    box-shadow:0 15px 45px rgba(0,0,0,.6);
}

.timeline-content h4{
    color:var(--primary-gold);
    font-weight:700;
}

@media(max-width:768px){

    .timeline::before{
        left:8px;
    }

    .timeline-item{
        width:100%;
        padding-left:30px;
        padding-right:0;
        margin-bottom:40px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even){
        left:0;
        text-align:left;
    }

    .timeline-item::before{
        left:0;
    }
}


.glass-card{
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border:1px solid rgba(255,215,0,0.2);
    border-radius:20px;
    padding:40px;
    transition:.4s;
}

.glass-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(255,215,0,0.15);
}

.section-title{
    font-weight:700;
    color:var(--primary-gold);
}

.why-premium{
    padding:60px;
    border-radius:28px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    border:1px solid #f1f1f1;
}

.why-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px 20px;
    border-radius:16px;
    border:1px solid #eee;
    transition:.35s;
    height:100%;
    font-weight:500;
}

.why-item i{
    width:45px;
    height:45px;
    border-radius:12px;
    background:#facc15;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#000;
    font-size:18px;
    box-shadow:0 8px 18px rgba(250,204,21,0.35);
    transition:.35s;
}

.why-item:hover{
    transform:translateY(-6px);
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.why-item:hover i{
    transform:scale(1.08) rotate(6deg);
}

.marquee{
    overflow:hidden;
}

.marquee-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation: scrollLeft 28s linear infinite;
}

/* PREMIUM CARD */
.premium-card{
    width:360px;
    padding:35px;
    border-radius:24px;
    
    position:relative;
    transition:.4s;
}

.premium-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 30px 70px rgba(0,0,0,0.15);
}

/* GOLD TOP LINE */
.premium-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#d4af37,#ffd700,#d4af37);
    border-radius:24px 24px 0 0;
}

/* STARS */
.stars{
    color:#facc15;
    font-size:20px;
    letter-spacing:4px;
    margin-bottom:15px;
}

.premium-card p{
    color:#555;
    line-height:1.7;
    margin-bottom:18px;
}

.premium-card h6{
    font-weight:600;
    color:#111;
}

/* CONTINUOUS LEFT MOVEMENT */
@keyframes scrollLeft{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}



        /* Section Titles */
        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            margin: 80px 0 50px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 2s infinite alternate;
            position: relative;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
            to { text-shadow: 0 0 40px rgba(255, 215, 0, 1); }
        }

        /* Service Cards */
        .service-card {
            margin-bottom: 30px;
        }

        .service-card .glass-card {
            height: 100%;
            text-align: center;
        }

        .service-card i {
            font-size: 4rem;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            display: block;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-gold);
        }

        /* Gallery Card */
.premium-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.4s ease;
}

.premium-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.5s ease;
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
    border-radius: 20px;
}

.gallery-overlay i {
    color: #FFD700;
    font-size: 30px;
    background: rgba(255, 215, 0, 0.15);
    padding: 18px;
    border-radius: 50%;
    transition: 0.3s ease;
}

/* Hover Effects */
.premium-gallery:hover img {
    transform: scale(1.1);
}

.premium-gallery:hover .gallery-overlay {
    opacity: 1;
}

.premium-gallery:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

/* Make video behave like image */
.premium-gallery video {
    width: 100%;
    height: 250px;       /* same as image */
    object-fit: cover;
    border-radius: 20px;
    display: block;
}


/* Zoom effect for video */
.premium-gallery:hover video {
    transform: scale(1.1);
}


.video-gallery .gallery-overlay {
    display: none;
}

/* ===============================
   PROJECT FILES SECTION
================================= */

.project-files-section {
    background: #f9f9f9;
}

.file-card {
    display: block;
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    height: 100%;
}

.file-icon {
    font-size: 50px;
    color: #E73910;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.file-card h5 {
    color: #222;
    margin-bottom: 8px;
}

.file-card p {
    color: #777;
    font-size: 14px;
}

/* Hover Effect */
.file-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(231, 57, 16, 0.2);
}

.file-card:hover .file-icon {
    transform: scale(1.1);
    color: #c52d0a;
}

/* =========================
   FAQ SECTION
=========================*/
.faq-section{
    padding:100px 0;
}

/* Title */
.section-title{
    font-weight:700;
}

/* Wrapper */
.faq-wrapper{
    max-width:900px;
    margin:auto;
}

/* Item */
.faq-item{
    border-bottom:1px solid rgba(0,0,0,0.2);
    padding:22px 0;
    cursor:pointer;
    transition:.3s;
}

body.dark-mode .faq-item{
    border-bottom:1px solid rgba(255,255,255,0.2);
}

/* Question */
.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:20px;
    font-weight:600;
}

/* Answer */
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    margin-top:12px;
    opacity:.8;
}

.faq-item.active .faq-answer{
    max-height:200px;
}

/* =========================
   TWO LINE ICON → X
=========================*/
.faq-toggle{
    width:26px;
    height:26px;
    position:relative;
}

.faq-toggle::before,
.faq-toggle::after{
    content:"";
    position:absolute;
    background:var(--primary-gold);
    transition:.35s;
}

/* horizontal */
.faq-toggle::before{
    width:100%;
    height:2px;
    top:50%;
    left:0;
    transform:translateY(-50%);
}

/* vertical */
.faq-toggle::after{
    width:2px;
    height:100%;
    left:50%;
    top:0;
    transform:translateX(-50%);
}

/* open → X */
.faq-item.active .faq-toggle::before{
    transform:rotate(45deg);
}

.faq-item.active .faq-toggle::after{
    transform:rotate(-45deg);
}


/* ==============================
   PREMIUM LIGHTBOX FIX
   ============================== */

.lightbox {
    position: fixed;
    inset: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 99999;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(255,215,0,0.6);
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 45px;
    color: #FFD700;
    cursor: pointer;
}

.dual-process{
    padding:100px 20px;
    color: var(--primary-red);
}

.section-title{
    text-align:center;
    font-size:34px;
    margin-bottom:60px;
}

.dual-process-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
    max-width:1200px;
    margin:auto;
}

.process-heading{
    margin-bottom:30px;
    font-size:22px;
    border-left:4px solid #c52222;
    padding-left:12px;
}

.process-text{
    color: var(--primary-gold);
}

.process-card{
    display:flex;
    align-items:center;
    gap:20px;
    background: rgba(255, 215, 0, 0.15);
    color: var(--dark-bg);
    padding:15px;
    margin-bottom:20px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.08);
    transition:.3s;
}

.process-subhead{
    color: orangered;
}

.process-card:hover{
    transform:translateY(-5px);
    border-color:#22c55e;
}

.process-img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:12px;
}

.process-text h4{
    margin-bottom:6px;
    font-size:18px;
}

/* ====== Mobile Responsive for Dual Process Section ====== */
@media (max-width: 768px) {
    .dual-process-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem; /* space between Construction and Real Estate columns */
    }

    .process-column {
        width: 100%;
    }

    .process-column .process-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    .process-column .process-card img.process-img {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
        border-radius: 12px; /* optional for better look */
    }

    .process-column .process-text h4.process-subhead {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .process-column .process-text p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .process-heading {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 1rem;
    }
}


        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(6, 214, 160, 0.1));
            margin: 50px 0;
            border-radius: 30px;
        }

        .cta-btn {
            display: inline-block;
            padding: 15px 40px;
            margin: 10px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(255, 215, 0, 0.8);
        }

        .cta-btn i {
            margin-right: 10px;
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(30px);
            border-radius: 30px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            border: 2px solid rgba(255, 215, 0, 0.5);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            position: relative;
            animation: modalPop 0.3s ease;
        }

        body.dark-mode .modal-content {
            background: rgba(0, 0, 0, 0.5);
        }

        @keyframes modalPop {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 30px;
            color: var(--primary-gold);
            cursor: pointer;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .social-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 215, 0, 0.2);
            border: 2px solid var(--primary-gold);
            color: var(--primary-gold);
            font-size: 24px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            transform: scale(1.2) rotate(360deg);
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
        }

        /* Form Styles */
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 15px;
            color: inherit;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 50px 20px;
            margin-top: 80px;
            text-align: center;
        }

        footer h4 {
            color: var(--primary-gold);
            margin-bottom: 20px;
        }

        footer a {
            color: var(--primary-green);
            text-decoration: none;
        }

        footer a:hover {
            color: var(--primary-gold);
        }

        /* Animations */
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .desktop-nav { display: flex; }
            .mobile-nav { display: block; }
            .hero-content h1 { font-size: 2.5rem; }
            .section-title { font-size: 2rem; }
            .theme-toggle { top: 15px; right: 15px; width: 50px; height: 50px; }
            .floating-btn { width: 50px; height: 50px; }
            #fingerprintBtn { bottom: 135px; right: 20px; }
            #rocketBtn { bottom: 80px; right: 20px; }
            #inquiryBtn { bottom: 190px; right: 20px; }
        }

        /* Loading Animation */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .page-loader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader-icon {
            font-size: 80px;
            color: var(--primary-gold);
            animation: spin 2s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        

        /* ======================================
   ULTRA MOBILE (320px) FULL OPTIMIZATION
   ====================================== */

@media (max-width:320px){

    body{
        font-size:14px;
    }

    /* HERO */
    .hero{
        padding:70px 12px;
    }

    .hero-content h1{
        font-size:1.8rem;
        line-height:1.2;
    }

    .hero-content p{
        font-size:0.95rem;
    }

    /* SECTION TITLES */
    .section-title{
        font-size:1.5rem;
        margin:40px 0 25px;
    }

    .mobile-nav{
        display:block;
        padding:6px 0;
    }

    .mobile-nav-item{
        font-size:10px;
    }

    .mobile-nav-item i{
        font-size:18px;
    }

    

    /* FLOATING BUTTONS */
    .floating-btn{
        width:42px;
        height:42px;
    }

    .floating-btn i{
        font-size:18px;
    }

    #fingerprintBtn{ bottom:110px; right:12px; }
    #rocketBtn{ bottom:60px; right:12px; }
    #inquiryBtn{ bottom:160px; right:12px; }

    /* GLASS / CARDS */
    .glass-card,
    .premium-card,
    .about-single-card{
        padding:18px;
        border-radius:14px;
    }

    /* PROCESS SECTION */
    .process-card{
        flex-direction:column;
        text-align:center;
        padding:12px;
    }

    .process-img{
        width:100%;
        height:auto;
    }

    /* TIMELINE */
    .timeline-item{
        padding:15px 15px 15px 25px;
    }

    /* CTA */
    .cta-btn{
        padding:12px 20px;
        font-size:14px;
    }

    /* FOOTER */
    footer{
        padding:35px 12px;
        font-size:13px;
    }
}

/* ABOUT PAGE - 320px */
@media (max-width:320px){

    /* ABOUT SECTION */
    .about-premium{
        padding:40px 12px;
    }

    .about-single-card{
        padding:18px;
        text-align:center;
    }

    .about-subtitle{
        font-size:1.05rem;
        line-height:1.3;
        margin-bottom:12px;
    }

    .about-text{
        font-size:0.9rem;
        line-height:1.6;
    }

    /* COUNTERS */
    .about-counter h2{
        font-size:1.5rem;
    }

    .about-counter p{
        font-size:0.75rem;
    }

    /* KNOW MORE BUTTON */
    .about-single-card .cta-btn{
        width:100%;
        font-size:14px;
        padding:12px 16px;
    }

}

/* ===============================
   PERFECT MOBILE VIEW (FULL FIX)
================================= */
@media (max-width: 768px) {

    /* General Section Spacing */
    section,
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Fix Banner / About Gap */
    .hero {
        padding: 120px 20px 80px 20px;
    }

    .about-premium {
        margin-top: 40px !important;
    }

    .about-single-card {
        padding: 25px !important;
    }

    /* Make ALL Bootstrap columns full width */
    .col-lg-3,
    .col-md-4,
    .col-md-6,
    .col-6,
    .col-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Services Cards */
    .service-card {
        margin-bottom: 20px;
    }

    .glass-card {
        padding: 25px;
    }

    /* Gallery - One per row */
    .premium-gallery {
        margin-bottom: 20px;
    }

    .premium-gallery img,
    .premium-gallery video {
        height: 220px !important;
    }

    /* CTA Section Full Width */
    .cta-section {
        padding: 40px 20px !important;
        text-align: center;
    }

    .cta-section .cta-btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    /* Contact Section */
    #contact .glass-card {
        padding: 25px;
    }

    /* Footer */
    footer .col-md-3 {
        text-align: center;
        margin-bottom: 30px;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 25px;
    }

    /* Counters spacing */
    .about-counter .col-4 {
        margin-bottom: 15px;
    }

}

/* =======================================================
   GLOBAL MOBILE RESPONSIVE (ALL PAGES)
======================================================= */
@media (max-width: 768px) {

    /* ===== HERO SECTION ===== */
    .about-hero h1,
    .hero-content h1 {
        font-size: 2rem;
    }

    .about-hero p,
    .hero-content p {
        font-size: 1rem;
        padding: 0 15px;
    }

    /* ===== SECTIONS ===== */
    section {
        padding: 40px 15px !important;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* ===== CARDS ===== */
    .premium-card,
    .glass-card {
        padding: 20px;
    }

    /* ===== SIGNATURE SERVICES ===== */
    .signature-services {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .signature-services span {
        font-size: 14px;
        padding: 8px 10px;
    }

    /* ===== TIMELINE ===== */
    .timeline {
        padding-left: 0;
    }

    .timeline-item {
        margin-bottom: 30px;
    }

    /* ===== WHY CHOOSE US GRID ===== */
    .why-item {
        padding: 20px;
        font-size: 14px;
    }

    /* ===== FAQ ===== */
    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13px;
    }

    /* ===== TESTIMONIAL MARQUEE ===== */
    .premium-card {
        min-width: 250px;
    }

    /* ===== FOOTER ===== */
    footer .col-md-3 {
        text-align: center;
        margin-bottom: 30px;
    }

    footer h4 {
        font-size: 18px;
    }

    footer p,
    footer a {
        font-size: 14px;
    }

    /* ===== FLOATING BUTTONS ===== */
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    #fingerprintBtn { bottom: 150px; right: 15px; }
    #rocketBtn { bottom: 90px; right: 15px; }
    #inquiryBtn { bottom: 210px; right: 15px; }

    /* ===== FORMS ===== */
    input,
    textarea,
    select {
        font-size: 14px;
    }

    .cta-btn {
        font-size: 14px;
        padding: 12px;
    }

}

/* ==========================================
   ABOUT PAGE – SIGNATURE + VISION MOBILE FIX
========================================== */
@media (max-width: 768px) {

    .about-hero {
        padding-top: 80px;
    }

    .desktop-nav {
    height: 90px;
}

    /* ===== SIGNATURE SECTION ===== */
    .signature-expertise {
        padding: 40px 15px;
    }

    .signature-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .signature-text {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 10px;
        text-align: justify;
    }

    .signature-line {
        margin: 20px auto;
        width: 60px;
    }

    /* Services stack vertically */
    .signature-services {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .signature-services span {
        display: block;
        width: 100%;
        font-size: 13px;
        padding: 10px;
        text-align: center;
    }

    /* ===== VISION / MISSION / MOTTO ===== */

    .premium-card {
        padding: 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .premium-card h4 {
        font-size: 18px;
        margin-top: 10px;
    }

    .premium-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .icon-box {
        margin-bottom: 10px;
    }

}

/* ==========================================
   MOBILE OVERFLOW FIX – PREMIUM CARDS
========================================== */
@media (max-width: 768px) {

    /* Prevent horizontal scroll globally */
    body {
        overflow-x: hidden;
    }

    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .col-md-4 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100%;
        max-width: 100%;
    }

    .premium-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto 20px auto;
    }

}

@media (max-width: 320px){

    html, body{
        width:100%;
        overflow-x:hidden;
    }

    .hero{
        width:100%;
        height:100vh;
        padding:0;
        margin:0;
    }

    .hero img,
    .hero video{
        width:100%;
        height:100vh;
        object-fit:cover;
    }

    .hero-content{
        width:100%;
        padding:0 15px;
        box-sizing:border-box;
    }

    .container{
        width:100%;
        max-width:100%;
        padding:0 12px;
    }

}

@media (max-width: 768px) {
    .marquee {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    }

    .marquee-track {
        gap: 14px;
        animation-duration: 22s;
        align-items: stretch;
    }

    .premium-card {
        width: 230px;
        min-width: 230px;
        height: 180px;
        padding: 18px 16px;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .premium-card .stars {
        font-size: 16px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .premium-card p {
        font-size: 13px;
        margin-bottom: 12px;
        flex-grow: 1;
    }

    .premium-card h6 {
        font-size: 12px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .marquee-track {
        gap: 12px;
        animation-duration: 18s;
    }

    .premium-card {
        width: 200px;
        min-width: 200px;
        height: 180px;
        padding: 16px 14px;
    }

    .premium-card p {
        font-size: 12px;
        line-height: 1.5;
    }
}