   /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: #f8f9fd;
            color: #1c1c1c;
            line-height: 1.6;
            padding-top: 140px; /* Space for fixed header */
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        button {
            cursor: pointer;
            border: none;
            outline: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            font-size: 34px;
            color: #2f57ff;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .btn {
            margin-top: 25px;
            background-color: #2f57ff;
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 500;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        
        .btn:hover {
            background-color: #1e46e8;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(47, 87, 255, 0.2);
        }
        
        /* Fixed Header Wrapper */
        .fixed-header {
            position: fixed; 
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }
        
        /* Topbar Styles */
        .topbar {
            background-color: #00104e;
            color: white;
            padding: 12px 0;
            font-size: 14px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .topbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .social-icons {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .social-icons span {
            margin-right: 10px;
            font-weight: 500;
        }
        
        .social-icons a {
            color: white;
            margin: 0 8px;
            font-size: 16px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .social-icons a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .contact-info i {
            margin-right: 8px;
            font-size: 14px;
        }
        
        .email-link, .phone-link {
            display: flex;
            align-items: center;
            transition: opacity 0.3s;
        }
        
        .email-link:hover, .phone-link:hover {
            opacity: 0.9;
        }
        
        /* Header Styles */
        .header {
            background-color: white;
            padding: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        .logo1 {
            width: 100%;
            height: 50px;
        }
       
        .nav-links {
            display: flex;
            gap: 0;
            align-items: center;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            font-weight: 500;
            color: #333;
            transition: all 0.3s;
            position: relative;
            padding: 25px 20px;
            display: inline-block;
        }
        
        .nav-link:hover {
            color: #2f57ff;
            background-color: #f8f9fd;
        }
        
        .nav-link i {
            margin-left: 5px;
            font-size: 12px;
        }
        
        /* Mega Menu Styles - UPDATED */
        .mega-menu {
            position: absolute;
            left: 0;
            top: 100%;
            width: 900px;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 0 0 10px 10px;
            display: none;
            z-index: 1000;
            padding: 30px;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        
        .nav-item:hover .mega-menu {
            display: grid;
            opacity: 1;
            transform: translateY(0);
        }
        
        .mega-menu-column h4 {
            color: #2f57ff;
            margin-bottom: 15px;
            font-size: 16px;
            font-weight: 600;
            padding-bottom: 8px;
            border-bottom: 2px solid #eef3ff;
        }
        
        .mega-menu-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .mega-menu-links a {
            color: #555;
            padding: 6px 0;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .mega-menu-links a:hover {
            color: #2f57ff;
            transform: translateX(5px);
        }
        
        .mega-menu-links a i {
            margin-right: 8px;
            color: #2f57ff;
            font-size: 12px;
        }
        
        /* Special styling for Printing & Advertising mega menu - FIXED */
        .mega-menu.printing {
            width: 900px;
            left: 0;
        }
        
        /* Special styling for Gift Items mega menu */
        .mega-menu.gift {
            width: 900px;
            left: auto;
            right: 0;
        }
        
        /* Badges & ID Cards mega menu specific styling */
        .mega-menu.badges {
            width: 900px;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
        }
        
        .nav-item:hover .mega-menu.badges {
            transform: translateX(-50%) translateY(0);
        }
        
        .whatsapp-btn {
            background-color: #25d366;
            color: white;
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 500;
            display: flex;
            align-items: center;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
            margin-left: 20px;
            white-space: nowrap;
        }
        
        .whatsapp-btn:hover {
            background-color: #1da851;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
        }
        
        .whatsapp-btn i {
            margin-right: 8px;
            font-size: 18px;
        }
        
        /* HERO SECTION WITH SLIDER - UPDATED */
        .hero {
            height: 100vh;
            min-height: 500px;
            max-height: 1500px;
            position: relative;
            overflow: hidden;
            margin-top: -20px;
        }
        
        .hero-container {
            margin-top: 80px;
            display: grid;
            grid-template-columns: 1fr;
            height: 100%;
        }
        
        /* Hero Slider Styles */
        .hero-slider-container {
            justify-content: center;
            align-items: center;
            margin-top: -25px;
            width: 110%;
            height: 100%;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .hero-slider {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 8s ease;
        }
        
        .hero-slide.active img {
            transform: scale(1.05);
        }
        
        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: #2f57ff;
            transform: scale(1.2);
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
        }
        
        .slider-nav-btn {
            background-color: rgba(47, 87, 255, 0.8);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid white;
        }
        
        .slider-nav-btn:hover {
            background-color: #2f57ff;
            transform: scale(1.1);
        }
        
        .hero-content h1 {
            font-size: 42px;
            color: #2f57ff;
            margin-top: 25px;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .hero-content p {
            
            color: #555;
            font-size: 16px;
            margin-top: 10px;
            line-height: 1.8;
        }
        
        /* Hero Tags - FIXED SPACING */
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 30px;
        }
        
        .hero-tags span {
            background-color: white;
            padding: 10px 18px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
            transition: all 0.3s;
            white-space: nowrap;
        }
        
        .hero-tags span:hover {
            background-color: #2f57ff;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(47, 87, 255, 0.2);
        }
        
        /* Services Section - FIXED HEIGHT ISSUE */
        .services {
            padding: 80px 0;
            text-align: center;
            position: relative;
        }
        
        /* Running Text Header for Services Section - FIXED SPACING */
        .services-header {
            margin-top: -160px;
            background: linear-gradient(90deg, #f8f9fd 0%, #eef3ff 50%, #f8f9fd 100%);
            padding: 20px 0;
            overflow: hidden;
            position: relative;
            border-top: 1px solid rgba(47, 87, 255, 0.1);
            border-bottom: 1px solid rgba(47, 87, 255, 0.1);
        }
        
        .running-text {
            padding-top: 100px;
            font-size: 42px;
            font-weight: 800;
            color: rgba(47, 87, 255, 0.15);
            white-space: nowrap;
            display: inline-block;
            animation: runText 20s linear infinite;
            text-transform: uppercase;
            letter-spacing: 3px;
            padding: 0 20px;
        }
        
        @keyframes runText {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        
        .services h2 {
            text-align: center;
            margin-top: -20px;
            margin-bottom: 50px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .service-card {
            margin: 1px;
            background-color: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: auto;
            min-height: 380px;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .service-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
            display: block;
        }
        
        .service-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: #1c1c1c;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1.3;
        }
        
        .service-content p {
            color: #666;
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.5;
            flex-grow: 1;
        }
        
        .service-link {
            color: #2f57ff;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            padding: 12px 0;
            border-top: 1px solid #eee;
            margin-top: 10px;
        }
        
        .service-link:hover {
            color: #1e46e8;
        }
        
        .service-link i {
            margin-left: 8px;
            font-size: 14px;
        }
        
        .view-all-btn {
            background-color: white;
            color: #2f57ff;
            border: 2px solid #2f57ff;
            padding: 12px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            display: inline-block;
            transition: all 0.3s ease;
            margin-top: 50px;
        }
        
        .view-all-btn:hover {
            background-color: #2f57ff;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(47, 87, 255, 0.2);
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
            background-color: white;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-text h2 {
            margin-bottom: 20px;
        }
        
        .about-text p {
            color: #555;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        /* Design Mockups Grid */
        .mockup-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .mockup-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            height: 150px;
        }
        
        .mockup-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .mockup-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .experience-box {
            background-color: #eef3ff;
            border-radius: 20px;
            padding: 50px 25px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .experience-box h3 {
            font-size: 60px;
            color: #2f57ff;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 10px;
        }
        
        .experience-box p {
            font-size: 18px;
            font-weight: 500;
            color: #333;
        }
        
        /* Printing Gallery Section - NEW SECTION */
        .printing-gallery {
            padding: 80px 0;
            background-color: #f8f9fd;
        }
        
        .gallery-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .gallery-header .section-title {
            margin-bottom: 10px;
        }
        
        .gallery-subtitle {
            color: #666;
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .gallery-item {
            background-color: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .gallery-img-container {
            height: 250px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.05);
        }
        
        .gallery-content {
            padding: 25px;
        }
        
        .gallery-content h3 {
            font-size: 20px;
            color: #2f57ff;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .gallery-content p {
            color: #555;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .gallery-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }
        
        .gallery-tag {
            background-color: #eef3ff;
            color: #2f57ff;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .gallery-btn {
            text-align: center;
            margin-top: 30px;
        }
        
        /* Features Section - FIXED BACKGROUND IMAGE PATH */
        .features {
            position: relative;
            padding: 70px 0;
            overflow: hidden;
        }
        
        .features-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://megacom.ae/wp-content/uploads/2024/05/large-format-printer-1024x585.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -2;
        }
        
        .features-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.8));
            z-index: -1;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            position: relative;
            z-index: 1;
        }
        
        .feature-box {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px 25px;
            text-align: center;
            color: white;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 220px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .feature-box:hover {
            background-color: rgba(47, 87, 255, 0.3);
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.4);
        }
        
        .feature-icon {
            font-size: 40px;
            color: white;
            margin-bottom: 20px;
            background: rgba(47, 87, 255, 0.8);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .feature-box:hover .feature-icon {
            color: white;
            background: rgba(47, 87, 255, 1);
            transform: scale(1.1);
        }
        
        .feature-box h4 {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .feature-box p {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        /* Support Section - FIXED */
        .support {
            margin: 100px auto;
            background-color: #0b1f4d;
            padding: 50px 0;
            color: white;
            border-radius: 50px;
            width: calc(100% - 100px);
        }
        
        .support-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }
        
        .support-text {
            text-align: left;
        }
        
        .support h2 {
            color: white;
            margin-bottom: 5px;
            text-align: left;
        }
        
        .support p {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .support-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 30px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .support label {
            font-weight: 500;
            color: white;
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        .support input,
        .support textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .support textarea {
            min-height: 120px;
            resize: vertical;
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
        }
        
        .support input::placeholder,
        .support textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .support input:focus,
        .support textarea:focus {
            outline: none;
            border-color: #2f57ff;
            background: rgba(255, 255, 255, 0.15);
        }
        
        .support-image {
            border-radius: 15px;
        }
        
        .support-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
            display: block;
            min-height: 350px;
        }
        
        .support-image:hover img {
            transform: scale(1.05);
        }
        
        /* FAQ Section - UPDATED WITH TWO COLUMNS */
        .faq-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .faq-two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }
        
        .faq-left {
            background-color: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .faq-right {
            background-color: #00104e;
            border-radius: 20px;
            padding: 40px;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .faq-right .section-title {
            color: white;
            text-align: left;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .faq-header .section-title {
            margin-bottom: 15px;
        }
        
        .faq-subtitle {
            color: #666;
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        .faq-container {
            max-width: 100%;
        }
        
        .faq-item {
            background-color: #f8f9fd;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            border: 1px solid #eef3ff;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: #2f57ff;
            box-shadow: 0 5px 15px rgba(47, 87, 255, 0.1);
        }
        
        .faq-question {
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 500;
            font-size: 18px;
            color: #1c1c1c;
        }
        
        .faq-question:hover {
            color: #2f57ff;
        }
        
        .faq-icon {
            color: #2f57ff;
            font-size: 14px;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #555;
            line-height: 1.6;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 25px 25px 25px;
            max-height: 500px;
        }
        
        .faq-answer p {
            margin-bottom: 15px;
        }
        
        .faq-answer ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .faq-answer li {
            margin-bottom: 8px;
            line-height: 1.6;
        }
        
        /* Why Choose Us Section */
        .why-choose-us {
            height: 100%;
        }
        
        .why-choose-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-top: 30px;
        }
        
        .why-choose-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .why-choose-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .why-choose-icon {
            background: #2f57ff;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .why-choose-content h4 {
            font-size: 18px;
            margin-bottom: 8px;
            color: white;
            font-weight: 600;
        }
        
        .why-choose-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            line-height: 1.6;
        }
        
        .faq-cta {
            text-align: center;
            margin-top: 40px;
        }
        
        /* Google Map Section */
        .map-section {
            margin: 50px;
            padding: 0;
        }
        
        .map-container {
            margin: 50px;
            height: 200px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }
        
        .map-container iframe {
            border-radius: 20px;
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(20%);
        }
        
        /* Footer */
        .footer {
            background-color: #08142e;
            color: #ccc;
            padding: 70px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/footer-bg.svg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.1;
            z-index: 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .footer-column h3 {
            color: white;
            font-size: 22px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-column h4 {
            color: white;
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .footer-links a {
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #2f57ff;
        }
        
        .contact-details p {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            line-height: 1.6;
        }
        
        .contact-details i {
            margin-right: 10px;
            color: #2f57ff;
            margin-top: 3px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #999;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }
        
        .footer-bottom-links a {
            color: #ccc;
            transition: color 0.3s;
            padding: 5px 0;
        }
        
        .footer-bottom-links a:hover {
            color: #2f57ff;
        }
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #2f57ff;
            cursor: pointer;
            padding: 10px;
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .mega-menu {
                width: 800px;
            }
            
            .mega-menu.printing,
            .mega-menu.badges,
            .mega-menu.gift {
                width: 800px;
            }
            
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            .hero-container {
                gap: 30px;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .running-text {
                font-size: 36px;
                letter-spacing: 2px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .support-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .support-text {
                text-align: center;
            }
            
            .support h2 {
                text-align: center;
            }
            
            .experience-box {
                max-width: 400px;
                margin: 0 auto;
            }
            
            body {
                padding-top: 160px;
            }
            
            .mega-menu {
                width: 700px;
                grid-template-columns: repeat(2, 1fr);
            }
            
            .mega-menu.printing,
            .mega-menu.badges,
            .mega-menu.gift {
                width: 700px;
                grid-template-columns: repeat(2, 1fr);
            }
            
            .mega-menu.badges {
                left: 0;
                transform: translateX(0) translateY(10px);
            }
            
            .nav-item:hover .mega-menu.badges {
                transform: translateX(0) translateY(0);
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .hero {
                height: auto;
                min-height: auto;
                padding: 60px 0;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-slider-container {
                height: 400px;
            }
            
            .hero-content {
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .running-text {
                font-size: 32px;
                letter-spacing: 1px;
            }
            
            .map-container {
                height: 350px;
            }
            
            .gallery-grid {
                gap: 20px;
            }
            
            /* FAQ Two Column Responsive */
            .faq-two-column {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                padding: 10px 0;
            }
            
            .logo {
                padding: 10px 0;
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-item {
                width: 100%;
            }
            
            .nav-link {
                padding: 15px 0;
                width: 100%;
                border-bottom: 1px solid #eee;
            }
            
            .mega-menu {
                position: static;
                width: 100%;
                display: none;
                box-shadow: none;
                padding: 15px;
                border-radius: 0;
                background-color: #f9f9f9;
                grid-template-columns: 1fr;
                opacity: 1;
                transform: none;
            }
            
            .nav-item:hover .mega-menu {
                display: none;
            }
            
            .mega-menu.active {
                display: grid;
            }
            
            .mega-menu.printing,
            .mega-menu.badges,
            .mega-menu.gift {
                width: 100%;
                grid-template-columns: 1fr;
                left: 0;
                right: 0;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .topbar-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 8px;
            }
            
            body {
                padding-top: 200px;
            }
            
            .whatsapp-btn {
                margin: 20px 0 10px 0;
                width: 100%;
                justify-content: center;
                display: flex;
            }
            
            .feature-box {
                min-height: 200px;
                padding: 25px 20px;
            }
            
            .feature-icon {
                width: 70px;
                height: 70px;
                font-size: 35px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .footer-bottom-links {
                gap: 20px;
                justify-content: center;
            }
            
            .mockup-grid {
                grid-template-columns: 1fr;
            }
            
            .mockup-item {
                height: 180px;
            }
            
            .service-img {
                height: 180px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .service-card {
                min-height: 350px;
            }
            
            .hero-slider-container {
                height: 350px;
            }
            
            .slider-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .running-text {
                font-size: 28px;
                letter-spacing: 1px;
                animation: runText 15s linear infinite;
            }
            
            .map-container {
                height: 300px;
            }
            
            /* Printing Gallery Responsive */
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .gallery-img-container {
                height: 220px;
            }
            
            /* FAQ Responsive */
            .faq-left,
            .faq-right {
                padding: 30px;
            }
            
            .faq-question {
                font-size: 16px;
                padding: 18px 20px;
            }
            
            .faq-answer {
                font-size: 14px;
            }
            
            /* Why Choose Us Responsive */
            .why-choose-item {
                padding: 15px;
            }
            
            .why-choose-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            /* Disable fixed background on mobile */
            .features-bg {
                background-attachment: scroll;
                background-position: center center;
            }
        }
        
        @media (max-width: 576px) {
            .nav-links {
                flex-direction: column;
                align-items: center;
                gap: 0;
            }
            
            .services, .about, .features, .support, .printing-gallery, .faq-section {
                padding: 60px 0;
            }
            
            .footer-bottom-links {
                gap: 15px;
            }
            
            .support-image img {
                height: 250px;
            }
            
            .experience-box {
                padding: 40px 30px;
            }
            
            .experience-box h3 {
                font-size: 50px;
            }
            
            .service-img {
                height: 160px;
            }
            
            .service-card {
                min-height: 320px;
            }
            
            .service-content h3 {
                font-size: 16px;
                min-height: 40px;
            }
            
            .feature-box {
                min-height: 180px;
                padding: 20px 15px;
            }
            
            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 30px;
                margin-bottom: 15px;
            }
            
            .support {
                width: calc(100% - 20px);
                margin: 60px auto;
                padding: 50px 20px;
            }
            
            .hero-slider-container {
                height: 300px;
            }
            
            .hero-content h1 {
                font-size: 28px;
            }
            
            .hero-tags {
                gap: 8px;
            }
            
            .hero-tags span {
                font-size: 13px;
                padding: 8px 16px;
            }
            
            .running-text {
                font-size: 24px;
                letter-spacing: 1px;
                animation: runText 12s linear infinite;
            }
            
            .services-header {
                padding: 20px 0;
                margin-bottom: 40px;
            }
            
            .map-container {
                height: 250px;
            }
            
            /* Printing Gallery Mobile */
            .gallery-header .section-title {
                font-size: 26px;
            }
            
            .gallery-subtitle {
                font-size: 16px;
            }
            
            .gallery-content {
                padding: 20px;
            }
            
            .gallery-content h3 {
                font-size: 18px;
            }
            
            .gallery-content p {
                font-size: 14px;
            }
            
            /* FAQ Mobile */
            .faq-header .section-title {
                font-size: 26px;
            }
            
            .faq-subtitle {
                font-size: 16px;
            }
            
            .faq-question {
                font-size: 15px;
                padding: 16px 18px;
            }
            
            .faq-left,
            .faq-right {
                padding: 25px 20px;
            }
        }
        
        @media (max-width: 400px) {
            .whatsapp-btn {
                font-size: 14px;
                padding: 10px 15px;
            }
            
            .footer-bottom-links {
                flex-direction: column;
                gap: 10px;
            }
            
            .service-img {
                height: 150px;
            }
            
            .service-card {
                min-height: 300px;
            }
            
            .hero-slider-container {
                height: 250px;
            }
            
            .slider-nav-btn {
                width: 35px;
                height: 35px;
                font-size: 16px;
                padding: 0 15px;
            }
            
            .running-text {
                font-size: 20px;
                letter-spacing: 1px;
            }
            
            .gallery-img-container {
                height: 200px;
            }
            
            /* FAQ Small Mobile */
            .faq-question {
                font-size: 14px;
                padding: 14px 16px;
            }
            
            .why-choose-item {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }
        
        /* Fallback images for service cards */
        .service-img {
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            font-size: 14px;
            position: relative;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 1;
        }
        
        .service-img::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            z-index: 0;
        }
        
        .service-img::after {
            content: "Image Preview";
            position: absolute;
            color: #666;
            font-size: 12px;
            z-index: 2;
            bottom: 10px;
            left: 0;
            width: 100%;
            text-align: center;
            background: rgba(255, 255, 255, 0.8);
            padding: 5px;
        }
        
        /* Ensure images show properly */
        .service-img.loaded::before,
        .service-img.loaded::after {
            display: none;
        }
        
        /* Hero slider fallback */
        .hero-slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            z-index: 0;
        }
        
        .hero-slide.loaded::before {
            display: none;
        }
        
        /* Gallery image fallback */
        .gallery-img-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            z-index: 0;
        }
        
        .gallery-img-container.loaded::before {
            display: none;
        }