  /* Home Header */
        .home-header {
            text-align: center;
            padding: 30px 0 40px;
        }
        
        .home-header h1 {
            font-size: 3.5rem;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 10px;
            font-family: 'BankGothic Md BT Medium', 'Montserrat', sans-serif;
        }
        
        .home-header .tagline {
            font-size: 1.3rem;
            color: #555;
            font-weight: 500;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            padding: 20px 0;
            margin: 40px 0 20px;
            position: relative;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 10px;
            display: inline-block;
            padding: 0 30px;
            background: var(--light);
            position: relative;
            z-index: 1;
        }

        .section-header .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .section-header::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            transform: translateY(-50%);
        }

        /* Mission Section */
        .mission-section {
            background: white;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 113, 188, 0.14);
            margin: 20px auto 50px;
            display: grid;
            grid-template-columns: 40% 60%;
            min-height: 520px;
            transition: transform 0.3s ease;
            position: relative;
        }

        .mission-section:hover {
            transform: translateY(-5px);
        }

        .mission-image {
            background: linear-gradient(135deg, var(--primary), #004c87);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }

        .mission-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            border: 12px solid white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.35);
            transition: transform 0.4s ease;
        }

        .mission-image img:hover {
            transform: scale(1.03);
        }

        .mission-content {
            padding: 60px 55px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .mission-content::before {
            content: '';
            position: absolute;
            left: 0; top: 0;
            width: 8px;
            height: 100%;
            background: var(--accent);
        }

        .mission-title {
            font-family: 'BankGothic Md BT Medium', 'Montserrat', sans-serif;
            font-size: 2.7rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 18px;
            line-height: 1.2;
        }

        .mission-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 5px;
            background: var(--accent);
            margin-top: 10px;
            border-radius: 3px;
        }

        .mission-text {
            font-size: 1.08rem;
            color: #444;
            margin-bottom: 18px;
            line-height: 1.75;
        }

        .highlight {
            background: rgba(216, 207, 33, 0.25);
            padding: 3px 8px;
            border-radius: 6px;
            color: var(--primary);
            font-weight: 700;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 8px;
        }

        .feature-item {
            background: rgba(0, 113, 188, 0.06);
            padding: 16px;
            border-radius: 14px;
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(0, 113, 188, 0.1);
            transform: translateX(6px);
        }

        .feature-title {
            font-weight: 700;
            color: var(--primary);
            font-size: 1rem;
        }

        .feature-desc {
            font-size: 0.9rem;
            color: #666;
            margin-top: 4px;
        }

        /* About Section */
        .about-wrapper {
            background: white;
            padding: 50px 60px;
            margin: 20px auto 80px;
            box-shadow: 0 20px 60px rgba(0, 113, 188, 0.14);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .about-wrapper:hover {
            transform: translateY(-5px);
        }

        .about-wrapper::before {
            content: '';
            position: absolute;
            left: 0; top: 0;
            width: 8px;
            height: 100%;
            background: var(--accent);
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 14px;
            line-height: 1.15;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 5px;
            background: var(--accent);
            margin-top: 10px;
            border-radius: 3px;
        }

        .subtitle {
            font-size: 1.05rem;
            color: #555;
            margin-bottom: 24px;
            font-weight: 500;
        }

        .about-text {
            font-size: 1.02rem;
            color: #444;
            margin-bottom: 18px;
            max-width: 100%;
            line-height: 1.65;
        }

        .about-text strong { 
            color: var(--primary); 
        }

      .hubs-video-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            background: linear-gradient(90deg, #ffe066 0%, #004c87 100%) !important;
        }


    /* Play button circle */
    .play-btn-circle {
        position: absolute;
        top: 40px !important; /* moved lower */
        left: 30px; /* slight right for better spacing */
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .play-btn-circle:hover {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.05);
    }
    .logos-slider {
        width: 100%;
        overflow: hidden;
        position: relative;
        padding: 20px 0;
    }

    .logos-track {
        display: flex;
        gap: 60px;
        width: max-content;

        /* Start fully off-screen right */
        transform: translateX(100%);

        animation: marquee 40s linear infinite;
        animation-delay: -10s; 
    }

    .logos-track img {
        height: 40px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.9;
        transition: opacity 0.3s;
    }

    .logos-track img:hover {
        opacity: 1;
        filter: grayscale(0);
    }

    @keyframes marquee {
        0% {
            transform: translateX(100%);   /* Start beyond right side */
        }
        100% {
            transform: translateX(-100%);  /* Move past the left side */
        }
    }


        @media (max-width: 768px) {
            
            .company-logos {
                gap: 20px;
            }
            
            .company-logo {
                font-size: 1.2rem;
            }
            
            .trusted-text {
                position: relative;
                text-align: center;
                margin-left: 0;
                margin-bottom: 20px;
            }
            
            .trusted-companies {
                margin-top: -40px;
            }
        }
        .play-btn-circle {
            position: absolute;
            left: 50px;
            top: 50%;
            transform: translateY(-50%);
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-btn-circle:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 20px rgba(255,255,255,0.3);
        }


        .trusted-companies {
            margin-top: 50px;
            text-align: center;
        }

        .trusted-text {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 35px;
        }

        .company-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 60px;
        }

        .company-logo {
            font-size: 1.1rem;
            font-weight: 600;
            color: #aaa;
            letter-spacing: 1px;
        }

        /* Services Header - Matching Image */
        .services-header-section {
            text-align: center;
            margin: 80px auto 50px;
        }

        .services-small-label {
            font-size: 0.85rem;
            color: black;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
        }

        .services-big-title {
            font-size: 2.8rem;
            color: #0071BC;
            font-weight: 700;
            margin: 0 0 20px 0;
        }

        .services-subtitle-text {
            font-size: 1rem;
            color: #777;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Services Cards - Matching Image Exactly */
        .services-cards-section {
            max-width: 1200px;
            margin: 0 auto 80px;
        }

        .services-two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .single-service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .single-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .service-card-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
            background: #2a2a2a;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-card-bottom {
            background: #1a1a1a;
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .service-card-title {
            font-size: 1.6rem;
            font-weight: 600;
            color: white;
            margin: 0;
        }

        .service-arrow-circle {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #1a1a1a;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .service-arrow-circle:hover {
            background: #f0f0f0;
            transform: translateX(5px);
        }

        /* Navigation dots */
        .page-navigation {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 113, 188, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-dot.active {
            background: var(--primary);
            transform: scale(1.3);
        }

        .nav-dot:hover {
            background: var(--accent);
            transform: scale(1.2);
        }

        .nav-dot::after {
            content: attr(title);
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary);
            color: white;
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .nav-dot:hover::after {
            opacity: 1;
            visibility: visible;
            right: 25px;
        }

        .clients-section {
            display: flex;
            justify-content: space-between;
            padding: 60px 80px;
            gap: 50px;
            background: #f9f3d6;
        }

        .left-side {
            width: 40%;
        }

        .subheading {
            font-size: 14px;
            color: #222;
            margin-bottom: 10px;
        }

        .heading {
            font-size: 34px;
            line-height: 1.2;
            color: #003d8f;
            margin: 0 0 20px;
        }

        .description {
            font-size: 15px;
            line-height: 1.6;
            color: #444;
        }

        .right-side {
            width: 50%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 50px;
        }

        .card {
            background: #f9f3d6 !important;
            border: 1.5px solid #e5e5e5;
            padding: 25px;
            box-sizing: border-box;
            border: none !important;
        }

       .icon {
            width: 60px;
            height: 60px;
            background: #0077cc;
            border-radius: 50%;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon img {
            width: 28px;  
            height: 28px;
        }


        .card h3 {
            margin: 0 0 5px;
            font-size: 18px;
            font-weight: 600;
        }

        .card p {
            margin: 0 0 12px;
            font-size: 14px;
            color: #555;
        }
        
       .works-section {
            padding: 40px 20px;
            background: #f8f8f8;
        }

        .works-title {
            text-align: center;
            font-size: 20px;
            font-weight: 600;
            color: #004aad;
            margin-bottom: 25px;
        }

        .works-gallery {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            grid-auto-rows: 10px; /* Small row height for flexibility */
        }

        .work-item {
            position: relative;
            /* overflow: hidden; */
            /* border-radius: 6px; */
        }

        .work-img {
            /* width: 100%;
            height: 100%; */
            /* border-radius: 6px; */
            object-fit: cover;
            display: block;
        }


          .images-wrapper-look img {
            object-fit: cover;
            width: 100%;
        }

        .images-wrapper-look .first-women img {
            max-width: 100%;
            height: 504px;
            margin-bottom: 24px;
        }

        .images-wrapper-look .living-room{
            width: 25%;
        }

        .images-wrapper-look .living-room img,
        .third-container img {
            /* width: 290px; */
            height: 504px;
        }

        .images-wrapper-look .orange-shade img {
            height: 240px;
            margin-bottom: 22px;
        }

        .images-wrapper-look .camera,
        .inner-sec-container{
            width: 50%;
        }

        .images-wrapper-look .camera img {
           width: 100%;
            height: 240px;
        }

        .images-look{
                width: 90%;
            }
       


        /* Different sizes for masonry effect */
        .work-item:nth-child(1) {
            grid-row: span 30; /* Tall image */
        }

        .work-item:nth-child(2) {
            grid-row: span 20; /* Medium image */
        }

        .work-item:nth-child(3) {
            grid-row: span 25; /* Medium-tall image */
        }

        .work-item:nth-child(4) {
            grid-row: span 15; /* Short image */
        }

        .work-item:nth-child(5) {
            grid-row: span 20; /* Medium image */
        }

        .work-item:nth-child(6) {
            grid-row: span 22; /* Medium image */
        }

        .work-item:nth-child(7) {
            grid-row: span 28; /* Tall image */
        }

        .work-item:nth-child(8) {
            grid-row: span 18; /* Medium-short image */
        }

        .work-item:nth-child(9) {
            grid-row: span 25; /* Medium-tall image */
        }

        .work-item:nth-child(10) {
            grid-row: span 20; /* Medium image */
        }

        .work-item:nth-child(11) {
            grid-row: span 30; /* Tall image */
        }

        .work-item:nth-child(12) {
            grid-row: span 22; /* Medium image */
        }

        .work-item:nth-child(13) {
            grid-row: span 25; /* Medium-tall image */
        }
        .team-section {
            margin: 0 auto;
            background: white;
            padding: 60px 20px;
            margin-left: auto;
            margin-right: auto;
            box-sizing: border-box;
        }

        .team-label {
            text-align: center;
            font-size: 14px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .team-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: #0066cc;
            margin-bottom: 15px;
        }

        .team-description {
            text-align: center;
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto 50px;
            line-height: 1.6;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
            width: 100%;
            box-sizing: border-box;
        }

        .team-member {
            text-align: center;
        }

        .member-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            display: block;
            border: 4px solid #f0f0f0;
        }

        .member-name {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .member-role {
            font-size: 14px;
            color: #888;
            margin-bottom: 15px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .social-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #333;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 14px;
            transition: background 0.3s ease;
        }

        .social-icon:hover {
            background: #0066cc;
        }

        /* === Hubs hero overrides to match 3D Hubs layout === */
        .hubs-hero-section {
            position: relative;
            padding: 40px 0 60px;
            margin-top: 10px;
            border-radius: 30px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            width: 100%;
            box-sizing: border-box;
        }

        .hubs-hero-section .container-fluid {
            width: 100%;
            padding: 0;
            box-sizing: border-box;
        }

        .hubs-hero-heading {
            max-width: 850px;
            margin: 0 auto 30px;
            text-align: center;
            color: #001b44;
        }

        .hubs-hero-heading .hero-pill {
            display: inline-block;
            padding: 6px 16px;
            margin-bottom: 12px;
            font-size: 0.78rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            border-radius: 999px;
            background: rgba(0,0,0,0.06);
            color: #333;
        }

        .hubs-hero-heading .hero-title {
            font-size: 3.0rem;
            line-height: 1.2;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .hero-inline-image {
            display: inline-block;
            vertical-align: middle;
            margin: 0 6px;
        }

        .hero-inline-image img {
            width: 100px;
            height: 50px;
            object-fit: cover;
            border-radius: 999px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.25);
            transform: translateY(-4px);
        }

        .hero-highlight {
            color: #0071BC;
        }

        .hubs-hero-heading .hero-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.98rem;
            color: #555;
            margin: 0;
        }

        .hubs-video-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 26px;
            box-shadow: 0 35px 80px rgba(0,0,0,0.45);
            box-sizing: border-box;
        }

        @media (min-width: 768px) {
            .hubs-video-wrapper {
                width: 100%;
                max-width: 1100px;
                margin: 0 auto;
                border-radius: 26px;
            }
        }

        .hubs-video {
            width: 100%;
            height: auto;
            display: block;
            margin: 0;
            padding: 0;
        }

        /* Video Controls Bar */
        .video-controls-bar {
            position: relative;
            width: calc(100% + 24px);
            background: rgba(0, 0, 0, 0.7);
            /* backdrop-filter: blur(10px); */
            padding: 12px 16px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            border-radius: 0 0 26px 26px;
            opacity: 0.9;
            transition: opacity 0.3s ease;
            box-sizing: border-box;
        }

        @media (min-width: 768px) {
            .video-controls-bar {
                width: 100%;
                max-width: 1100px;
                margin: 0 auto;
                border-radius: 0 0 26px 26px;
            }
        }

        .hubs-video-wrapper:hover .video-controls-bar {
            opacity: 1;
            background: rgba(0, 0, 0, 0.85);
        }

        .controls-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .video-control-btn {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
            flex-shrink: 0;
        }

        .video-control-btn:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
        }

        .video-control-btn img {
            display: block;
        }

        /* Volume Control */
        .volume-control {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .volume-slider {
            width: 70px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            outline: none;
            cursor: pointer;
            -webkit-appearance: none;
            appearance: none;
        }

        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 12px;
            height: 12px;
            background: white;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .volume-slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
        }

        .volume-slider::-moz-range-thumb {
            width: 12px;
            height: 12px;
            background: white;
            border-radius: 50%;
            cursor: pointer;
            border: none;
            transition: all 0.2s ease;
        }

        .volume-slider::-moz-range-thumb:hover {
            transform: scale(1.2);
        }

        /* Time Display */
        .time-display {
            color: white;
            font-size: 13px;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            white-space: nowrap;
            margin-left: 4px;
        }

        .time-separator {
            margin: 0 4px;
            opacity: 0.7;
        }

        /* Progress Bar */
        .progress-bar-container {
            width: 100%;
        }

        .progress-bar {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .progress-filled {
            height: 100%;
            background: white;
            border-radius: 2px;
            width: 0%;
            transition: width 0.1s linear;
        }

        .progress-bar:hover .progress-filled {
            background: #27ae60;
        }

        .play-btn-circle {
            display: none;
        }

        @media (max-width: 992px) {
            .fix-header-bottom { 
                padding-top: 90px; 
            }
            
            .mission-section {
                grid-template-columns: 1fr;
                margin: 20px auto 40px;
            }
            
            .mission-image { 
                padding: 40px; 
            }
            
            .mission-content { 
                padding: 50px 40px; 
            }
            
            .about-wrapper,
            .contact-wrapper { 
                padding: 40px 35px; 
                margin: 20px auto 60px; 
            }
            
            .section-title,
            .mission-title { 
                font-size: 2.5rem; 
            }
            
            .home-header h1 {
                font-size: 3rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .services-two-column {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .company-logos {
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .fix-header-bottom { 
                padding-top: 80px; 
            }
            
            .home-header h1 {
                font-size: 2.5rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
                padding: 0 20px;
            }
            
            .section-title,
            .mission-title { 
                font-size: 2.2rem; 
            }
            
            .about-wrapper,
            .mission-section,
            .contact-wrapper { 
                padding: 35px 25px; 
                margin: 20px auto 40px; 
            }
            
            .mission-image { 
                padding: 30px; 
            }
            
            .mission-content { 
                padding: 40px 25px; 
            }
            
            .about-text { 
                font-size: 1rem; 
                margin-bottom: 16px; 
            }
            
            .mission-text {
                font-size: 1rem;
            }
            
            .features-grid { 
                grid-template-columns: 1fr; 
            }
            
            .page-navigation {
                display: none;
            }
            
            .section-header::before {
                display: none;
            }
            
            .section-header h2 {
                background: none;
                padding: 0;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .services-two-column {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .service-card-image {
                height: 250px;
            }

            .service-card-bottom {
                padding: 20px 25px;
            }

            .service-card-title {
                font-size: 1.4rem;
            }

            .service-arrow-circle {
                width: 45px;
                height: 45px;
                font-size: 1.5rem;
            }

            .video-controls-bar {
                padding: 8px 12px;
                gap: 6px;
            }

            .controls-left {
                gap: 8px;
            }

            .video-control-btn {
                width: 32px;
                height: 32px;
            }

            .video-control-btn img {
                width: 16px;
                height: 16px;
            }

            .volume-slider {
                width: 50px;
            }

            .time-display {
                font-size: 11px;
            }

            .company-logos {
                gap: 25px;
            }

            .company-logo {
                font-size: 0.95rem;
            }

            .services-big-title {
                font-size: 2.2rem;
            }

            .services-small-label {
                font-size: 0.75rem;
            }

            .images-look{
                width: 96%;
            }

            .images-wrapper-look .living-room,
            .inner-sec-container{
                width: 100%;
            }
        }
         /* Service Card Responsive */
        .service-card {
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .service-card img {
            width: 100%;
            height: auto;
            max-width: 100%;
            object-fit: contain;
            display: block;
        }

        .services-inner-content {
            flex-grow: 1;
        }

        .service-card-info {
            margin-top: auto;
        }

        @media (max-width: 576px) {
            /* Mobile-first responsive adjustments */
            .px-3 {
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }

            .px-md-4 {
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }

            .px-lg-5 {
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }

            /* Heading adjustments for mobile */
            .hero-title {
                font-size: 1.75rem;
                line-height: 1.1;
            }

            .hero-subtitle {
                font-size: 0.85rem;
            }

            .heading {
                font-size: 1.5rem;
            }

            .subheading {
                font-size: 12px;
            }

            /* Video adjustments */
            .hubs-video-wrapper {
                max-width: 100%;
            }

            .video-controls-bar {
                padding: 8px 10px;
                gap: 5px;
                border-radius: 0 0 20px 20px;
            }

            .controls-left {
                gap: 6px;
                flex-wrap: wrap;
            }

            .video-control-btn {
                width: 32px;
                height: 32px;
            }

            .volume-slider {
                width: 50px;
            }

            .time-display {
                font-size: 11px;
            }

            /* Services adjustments */
            .service-card {
                padding: 1rem;
            }

            /* Works gallery */
            .works-gallery {
                grid-template-columns: 1fr;
            }

            /* Row gap adjustments */
            .row {
                --bs-gutter-y: 0.75rem;
            }

            .images-wrapper-look .first-women img {
                height: 300px;
            }
            .images-wrapper-look .living-room img{
                height: 400px;
            }

        }

        /* Image Lightbox Modal */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            animation: fadeIn 0.3s ease-in;
        }

        .image-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            position: relative;
            width: 90%;
            max-width: 900px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .modal-image {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 10px;
            animation: slideIn 0.3s ease-in;
        }

        .close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
            transition: transform 0.2s ease;
            background: none;
            border: none;
            padding: 0;
            outline: none;
            appearance: none;
            -webkit-appearance: none;
        }

        .close:hover {
            transform: scale(1.2);
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            width: 45px;
            height: 45px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s ease;
            outline: none;
            -webkit-appearance: none;
            appearance: none;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.1) rotate(90deg);
        }

        .close-btn:active {
            transform: scale(0.95);
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8);
            border: none;
            color: #000;
            font-size: 30px;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 5px;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .nav-btn:hover {
            background-color: rgba(255, 255, 255, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        .image-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 16px;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 10px 20px;
            border-radius: 20px;
            font-family: 'Montserrat', sans-serif;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Make work items clickable */
        .work-item {
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .work-item:hover {
            transform: scale(1.02);
        }