
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --charcoal: #0d0f12;
            --obsidian: #050708;
            --metallic-silver: #e8e8e8;
            --chrome: #f0f0f0;
            --gold-accent: #d4af37;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --transition-smooth: cubic-bezier(0.19, 1, 0.22, 1);
            --card-bg: rgba(25, 23, 17, 0.7);
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            background-color: var(--obsidian);
            color: var(--metallic-silver);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animation Classes */
        .hidden {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s var(--transition-smooth);
        }

        .show {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s var(--transition-smooth);
        }

        .slide-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s var(--transition-smooth);
        }

        .slide-left.show,
        .slide-right.show {
            opacity: 1;
            transform: translateX(0);
        }

        /* Navigation - Fixed */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 12px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(5, 7, 8, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .brand-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* ROUND LOGO */
        .logo-img {
            height: 45px;
            width: 45px;
            border-radius: 50%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.05);
        }

        /* Helvetica Now Condensed Font ONLY for Brand Text */
        .brand-text {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 1px;
            font-family: "Helvetica Now Condensed", "Arial Narrow", sans-serif;
        }

        /* Desktop Navigation Links */
        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: #dbdada;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 1.5px;
            position: relative;
            transition: all 0.35s ease;
            padding: 6px 0;
            font-family: "Poppins", "Inter", "Montserrat",
                "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold-accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #ffffff;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: #c0c0c0;
            transition: all 0.3s ease;
            z-index: 1003;
        }

        .menu-toggle:hover {
            color: var(--gold-accent);
        }

        /* Mobile Navigation - Sidebar Style (FROM TOP) */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(5, 7, 8, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1002;
            transition: right 0.4s ease;
            padding: 80px 30px 30px;
            border-left: 1px solid rgba(212, 175, 55, 0.1);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mobile-nav-links a {
            color: var(--metallic-silver);
            text-decoration: none;
            font-size: 18px;
            padding: 15px 20px;
            border-radius: 8px;
            display: block;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .mobile-nav-links a:hover {
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold-accent);
            border-left: 3px solid var(--gold-accent);
            padding-left: 25px;
        }

        .close-menu {
            position: absolute;
            top: 25px;
            right: 25px;
            background: none;
            border: none;
            color: var(--metallic-silver);
            font-size: 28px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-menu:hover {
            color: var(--gold-accent);
            transform: rotate(90deg);
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Carousel Container - FIXED POSITION */
        .carousel-container {
            width: 100%;
            height: 40vh;
            position: relative;
            margin-top: 69px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--obsidian);
        }

        /* RESPONSIVE IMAGE - FIXED FOR ALL SCREENS */
        .carousel-image {
            width: 139%;
            height: 100%;
            object-position: center 90%;
            display: block;
        }

        /* Section Base Styles */
        section {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .section-title {
            font-weight: bold;
        }

        .section-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: var(--gold-accent);
        }

        /* Hero Section - FIXED SPACING */
        #hero {
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: var(--obsidian);
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(232, 232, 232, 0.02) 0%, transparent 50%);
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            position: relative;
            z-index: 3;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 2.2rem;
            font-weight: 300;
            margin-bottom: 0.8rem;
            letter-spacing: 1.5px;
            line-height: 1.2;
        }

        .hero-title span {
            color: var(--gold-accent);
            font-weight: 400;
        }

        .hero-subtitle {
            font-size: 1rem;
            font-weight: 300;
            margin-bottom: 1.2rem;
            opacity: 0.9;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            padding: 0.9rem 2rem;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
            color: var(--gold-accent);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 1.2px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.5s var(--transition-smooth);
            backdrop-filter: blur(10px);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
        }

        /* Sticker Container */
        .sticker-container {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 2;
            pointer-events: none;
        }

        .sticker {
            position: absolute;
            width: 180px;
            height: 180px;
            border-radius: 15px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            box-shadow:
                inset 0 0 15px rgba(255, 255, 255, 0.1),
                0 10px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(212, 175, 55, 0.2);
            opacity: 0.7;
            transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            will-change: transform;
        }

       .sticker-1 {
    top: 5%;
    left: 10%;
    background-image: url('image/1.jpeg');
    transform: rotate(-5deg);
}


        .sticker-2 {
            top: 10%;
            right: 10%;
            background-image: url('image/image20.jpeg');
            transform: rotate(5deg);
        }

        .sticker-3 {
            bottom: 5%;
            left: 10%;
            background-image: url('image/3.jpeg');
            transform: rotate(-8deg);
        }

        .sticker-4 {
            bottom: 10%;
            right: 10%;
            background-image: url('image/4.jpeg');
            transform: rotate(8deg);
        }

        .mobile-hero-bg {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .mobile-sticker {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 12px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            box-shadow:
                inset 0 0 10px rgba(255, 255, 255, 0.1),
                0 5px 15px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(212, 175, 55, 0.2);
            opacity: 0.6;
        }

        .mobile-sticker-1 {
            top: 20%;
            left: 5%;
            transform: rotate(-5deg);
            background-image: url('image/1.jpeg');
        }

        .mobile-sticker-2 {
            top: 20%;
            right: 5%;
            transform: rotate(5deg);
            background-image: url('image/image20.jpeg');
        }

        .mobile-sticker-3 {
            bottom: 20%;
            left: 5%;
            transform: rotate(-8deg);
            background-image: url('image/3.jpeg');
        }

        .mobile-sticker-4 {
            bottom: 20%;
            right: 5%;
            transform: rotate(8deg);
            background-image: url('image/4.jpeg');
        }

        /* About Section - INCREASED WIDTH */
        #about {
            background: var(--obsidian);
            padding: 0;
        }

        #about .section-content {
            padding: 30px 20px;
        }

        #about .section-title {
            margin-bottom: 1.2rem;
            font-weight: bold;
        }

        .about-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .about-text {
            text-align: center;
            margin-bottom: 1.5rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-text p {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 0.8rem;
            color: var(--metallic-silver);
        }

        .about-highlights {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .highlight {
            background: var(--card-bg);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            text-align: center;
            width: 100%;
        }

        .highlight:hover {
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .highlight-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--chrome);
            text-align: center;
        }

        .highlight-title i {
            color: var(--gold-accent);
            margin-right: 10px;
        }

        .highlight-text {
            font-size: 0.95rem;
            opacity: 0.9;
            text-align: center;
            line-height: 1.6;
        }

        /* Services Section - FLIP CARDS */
        #services {
            background: linear-gradient(180deg, var(--obsidian) 0%, #0a0a0a 100%);
        }

        #services .section-content {
            padding: 30px 20px;
        }

        #services .section-title {
            font-weight: bold;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.2rem;
        }

        /* FLIP CARD CONTAINER */
        .flip-card {
            background-color: transparent;
            width: 100%;
            height: 300px;
            perspective: 1000px;
            border-radius: 15px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            border-radius: 15px;
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        /* Position the front and back side */
        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden; /* Safari */
            backface-visibility: hidden;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        /* Style the front side (image) */
        .flip-card-front {
            background-color: #111;
            color: white;
            background-size: cover;
            background-position: center;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .flip-card-front h3 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            padding: 15px;
            margin: 0;
            font-size: 1.3rem;
            color: var(--chrome);
        }

        /* Style the back side */
        .flip-card-back {
            background: var(--card-bg);
            border: 1px solid rgba(212, 175, 55, 0.2);
            color: white;
            transform: rotateY(180deg);
            padding: 1.5rem;
            text-align: center;
        }

        .flip-card-back h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--chrome);
        }

        .flip-card-back p {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Why Choose Us Section */
        #why-choose {
            background: var(--obsidian);
        }

        #why-choose .section-content {
            padding: 30px 20px;
        }

        #why-choose .section-title {
            font-weight: bold;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 0.8rem;
            margin-top: 1.2rem;
        }

        .feature-card {
            background: var(--card-bg);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 15px;
            padding: 1.2rem;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            text-align: center;
            min-height: 140px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .feature-card:hover {
            transform: translateY(-3px);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--chrome);
        }

        .feature-text {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.5;
        }

        /* Testimonials Section */
        #testimonials {
            padding: 20px 20px;
            background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
        }

        #testimonials .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 30px;
        }

        .testimonials-slider {
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        .testimonials-track {
            display: flex;
            gap: 20px;
        }

        .testimonial-card {
            width: 300px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 15px;
            padding: 30px;
            flex-shrink: 0;
            backdrop-filter: blur(5px);
            transition: transform 0.3s, border-color 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.4);
        }

        .quote-icon {
            font-size: 1.5rem;
            color: #d4af37;
            margin-bottom: 10px;
            opacity: 0.7;
        }

        .testimonial-text {
            font-style: italic;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .client-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #d4af37, #f0c040);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            color: #111;
        }

        .client-details h4 {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
        }

        /* Contact Section */
        #contact {
            background: var(--obsidian);
        }

        #contact .section-title {
            font-weight: bold;
        }

        #contact .section-content {
            padding: 30px 20px;
        }

        .contact-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            .contact-container {
                flex-direction: row;
                align-items: flex-start;
                gap: 2.5rem;
            }
        }

        .contact-info {
            width: 100%;
            text-align: center;
        }

        @media (min-width: 768px) {
            .contact-info {
                width: 45%;
                text-align: left;
            }
        }

        .contact-text {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.2rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            justify-content: center;
            text-align: left;
        }

        @media (min-width: 768px) {
            .contact-detail {
                justify-content: flex-start;
            }
        }

        .contact-detail i {
            color: var(--gold-accent);
            font-size: 1.1rem;
            margin-top: 3px;
            min-width: 20px;
        }

        .contact-detail h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: var(--chrome);
        }

        .contact-detail p {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.5;
        }

        .phone-number {
            word-break: break-word;
            overflow-wrap: break-word;
            display: block;
        }

        .contact-form-container {
            width: 100%;
        }

        @media (min-width: 768px) {
            .contact-form-container {
                width: 55%;
            }
        }

        .contact-form {
            background: var(--card-bg);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            backdrop-filter: blur(10px);
        }

        .form-group {
            position: relative;
            margin-bottom: 1.2rem;
        }

        .form-input {
            width: 100%;
            padding: 0.9rem 0;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--chrome);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-bottom-color: var(--gold-accent);
        }

        .form-label {
            position: absolute;
            top: 0.9rem;
            left: 0;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            pointer-events: none;
            width: 100%;
            text-align: left;
        }

        .form-input:focus+.form-label,
        .form-input:not(:placeholder-shown)+.form-label {
            top: -0.5rem;
            font-size: 0.85rem;
            color: var(--gold-accent);
        }

        /* FIXED: Quantity Input Group */
        .quantity-group {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.2rem;
            flex-wrap: wrap;
            gap: 10px;
            width: 100%;
        }

        .quantity-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            flex-shrink: 0;
        }

        /* FIXED: Quantity Input Styling */
        .quantity-input-container {
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 5px;
            width: auto;
            min-width: 150px;
        }

        .quantity-btn {
            background: transparent;
            border: none;
            color: var(--gold-accent);
            font-size: 1.2rem;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .quantity-btn:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        .quantity-input {
            width: 60px;
            padding: 0.5rem;
            background: transparent;
            border: none;
            color: var(--chrome);
            text-align: center;
            font-size: 1rem;
            /* -moz-appearance: textfield; */
        }

        .quantity-input::-webkit-outer-spin-button,
        .quantity-input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .quantity-input:focus {
            outline: none;
        }

        .submit-button {
            display: inline-block;
            padding: 0.9rem 1.8rem;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
            border: 1px solid rgba(212, 175, 55, 0.4);
            border-radius: 50px;
            color: var(--gold-accent);
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 0.5rem;
        }

        .submit-button:hover {
            background: rgba(212, 175, 55, 0.15);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
        }

        /* Footer */
        footer {
            background: #050505;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            padding: 2rem 20px 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
        }

        .footer-brand-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        /* ROUND FOOTER LOGO */
        .footer-logo {
            height: 50px;
            width: 50px;
            margin-bottom: 8px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Helvetica Now Condensed Font ONLY for Footer Brand */
        .footer-brand {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--chrome);
            font-family: "Helvetica Now Condensed", "Arial Narrow", sans-serif;
        }

        .footer-brand span {
            color: var(--gold-accent);
        }

        .footer-tagline {
            font-size: 0.85rem;
            opacity: 0.7;
        }

        .social-icons {
            display: flex;
            gap: 0.8rem;
            margin: 0.8rem 0;
        }

        .social-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--metallic-silver);
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            color: var(--gold-accent);
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateY(-3px);
            background: rgba(212, 175, 55, 0.1);
        }

        .copyright {
            width: 100%;
            text-align: center;
            margin-top: 1.2rem;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.8rem;
            opacity: 0.5;
        }

        .copyright a {
            color: var(--gold-accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .copyright a:hover {
            text-decoration: underline;
            opacity: 1;
        }

        /* WhatsApp Icon */
        .whatsapp-icon {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: white;
            color: #25d366;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: transform 0.3s, background-color 0.3s;
        }

        .whatsapp-icon:hover {
            transform: scale(1.1);
            background-color: #f0f0f0;
        }

        /* Responsive Design - FIXED FOR MOBILE */
        @media (max-width: 768px) {
            nav {
                padding: 8px 15px;
            }

            .brand-container {
                gap: 8px;
            }

            .logo-img {
                height: 40px;
                width: 40px;
            }

            .brand-text {
                font-size: 18px;
            }

            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
            }

            /* FIXED: Carousel image mobile responsive */
            .carousel-image {
                object-position: center center;
                width: 100%;
                height: 100%;
                display: block;
            }

            /* Hero height for mobile */
            #hero {
                height: auto;
                min-height: 40vh;
                padding: 40px 15px;
                margin-top: 0;
            }

            .hero-title {
                font-size: 1.8rem;
                margin-bottom: 0.5rem;
            }

            .hero-subtitle {
                font-size: 0.95rem;
                padding: 0 5px;
                margin-bottom: 1rem;
                line-height: 1.5;
            }

            .section-content {
                padding: 25px 15px;
            }

            .section-title {
                font-size: 1.6rem;
                margin-bottom: 1.2rem;
            }

            /* Hide desktop stickers and show mobile stickers */
            .sticker-container {
                display: none;
            }

            .mobile-hero-bg {
                display: block;
            }

            /* Reduce spacing in all sections for mobile */
            #about .section-content,
            #services .section-content,
            #why-choose .section-content,
            #testimonials .section-content,
            #contact .section-content {
                padding: 25px 15px;
            }

            .about-text {
                margin-bottom: 1.2rem;
            }

            .about-highlights {
                gap: 0.8rem;
            }

            .highlight {
                padding: 1.2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .flip-card {
                height: 250px;
            }

            .features-grid,
            .testimonials-container {
                gap: 0.8rem;
            }

            .feature-card,
            .testimonial-card {
                padding: 1.2rem;
            }

            .contact-container {
                gap: 1.5rem;
            }

            .contact-form {
                padding: 1.2rem;
            }

            .contact-detail {
                flex-direction: column;
                text-align: center;
                align-items: center;
                gap: 5px;
            }

            .contact-detail i {
                margin-top: 0;
                margin-bottom: 5px;
            }

            /* FIXED: Quantity input for mobile */
            .quantity-group {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .quantity-input-container {
                width: 100%;
                max-width: 200px;
                justify-content: center;
            }

            .quantity-input {
                width: 80px;
            }

            /* Remove backdrop filter on mobile for performance */
            .contact-form,
            .highlight,
            .feature-card,
            .testimonial-card {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                background: rgba(25, 23, 17, 0.85);
            }

            .footer-content {
                gap: 0.8rem;
            }

            .footer-logo {
                height: 45px;
                width: 45px;
            }

            .footer-brand {
                font-size: 1.2rem;
            }

            /* Mobile stickers adjustment */
            .mobile-sticker {
                width: 80px;
                height: 80px;
                opacity: 0.5;
            }

            .mobile-sticker-1 {
                top: 15%;
                left: 5%;
            }

            .mobile-sticker-2 {
                top: 15%;
                right: 5%;
            }

            .mobile-sticker-3 {
                bottom: 15%;
                left: 5%;
            }

            .mobile-sticker-4 {
                bottom: 15%;
                right: 5%;
            }

            /* Mobile nav now comes from top-right */
            .mobile-nav {
                width: 250px;
                padding: 70px 20px 25px;
            }

            .mobile-nav-links a {
                font-size: 16px;
                padding: 12px 15px;
            }

            .close-menu {
                top: 20px;
                right: 20px;
                font-size: 24px;
            }

            .whatsapp-icon {
                width: 50px;
                height: 50px;
                font-size: 24px;
                bottom: 15px;
                right: 15px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.6rem;
                 margin-top: 69px;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .cta-button,
            .submit-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .section-content {
                padding: 20px 10px;
            }

            .carousel-container {
                aspect-ratio: 4 / 3;
                max-height: 220px;
                margin-top: 55px;
            }

            /* Hero section on very small screens */
            #hero {
                min-height: 35vh;
                padding: 30px 10px;
            }

            .hero-subtitle {
                font-size: 0.85rem;
                margin-bottom: 0.8rem;
                line-height: 1.4;
            }

            #about .section-content,
            #services .section-content,
            #why-choose .section-content,
            #testimonials .section-content,
            #contact .section-content {
                padding: 20px 10px;
            }

            .contact-container {
                gap: 1.2rem;
            }

            .social-icon {
                width: 34px;
                height: 34px;
                font-size: 0.85rem;
            }

            .phone-number {
                font-size: 0.9rem;
            }

            .logo-img {
                height: 35px;
                width: 35px;
            }

            .brand-text {
                font-size: 16px;
            }

            .about-highlights {
                gap: 0.6rem;
            }

            .highlight {
                padding: 1rem;
            }

            .features-grid,
            .testimonials-container {
                gap: 0.6rem;
            }

            .feature-card,
            .testimonial-card {
                padding: 1rem;
            }

            .mobile-nav {
                width: 250px;
                padding: 60px 15px 20px;
            }

            .mobile-nav-links a {
                padding: 10px 12px;
                font-size: 14px;
            }

            .mobile-sticker {
                width: 70px;
                height: 70px;
            }

            .footer-logo {
                height: 40px;
                width: 40px;
            }

            .footer-brand {
                font-size: 1.1rem;
            }

            .flip-card {
                height: 220px;
            }

            .flip-card-front h3 {
                font-size: 1.1rem;
                padding: 10px;
            }

            .flip-card-back {
                padding: 1rem;
            }

            .flip-card-back h3 {
                font-size: 1.1rem;
            }

            .flip-card-back p {
                font-size: 0.85rem;
            }
        }

        /* Touch support for flip cards on mobile */
        @media (hover: none) and (pointer: coarse) {
            .flip-card {
                perspective: 1000px;
            }
            
            .flip-card-inner {
                transition: transform 0.6s;
            }
            
            .flip-card.flipped .flip-card-inner {
                transform: rotateY(180deg);
            }
            
            .flip-card:active .flip-card-inner {
                transform: rotateY(180deg);
            }
        }
    /* ----------------------error page ---------------------------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        /* body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        } */
        
        .container {
            max-width: 800px;
            width: 100%;
            text-align: center;
            background-color: white;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
        }
        
     
        
        .error-code {
            font-size: 120px;
            font-weight: 800;
            color: #4b6cb7;
            line-height: 1;
            margin-bottom: 10px;
            text-shadow: 3px 3px 0 rgba(75, 108, 183, 0.1);
        }
        
        .error-title {
            font-size: 32px;
            font-weight: 700;
            color: #182848;
            margin-bottom: 15px;
        }
        
        .error-message {
            font-size: 18px;
            color: #666;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
    
    
        

        
        .actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 28px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        
        .btn-primary {
            background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
            color: white;
            border: none;
        }
        
        .btn-secondary {
            background-color: transparent;
            color: #4b6cb7;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(75, 108, 183, 0.2);
        }
        
        .illustration {
            margin: 30px 0;
            color: #4b6cb7;
            font-size: 100px;
        }
        
        .home-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #4b6cb7;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            padding: 10px 20px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .home-link:hover {
            background-color: rgba(75, 108, 183, 0.1);
            transform: translateX(5px);
        }
        
        .footer {
            margin-top: 40px;
            color: #777;
            font-size: 14px;
            text-align: center;
        }
        
        .footer a {
            color: #4b6cb7;
            text-decoration: none;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 40px 25px;
            }
            
            .error-code {
                font-size: 90px;
            }
            
            .error-title {
                font-size: 28px;
            }
            
            .error-message {
                font-size: 16px;
            }
            
            .illustration {
                font-size: 80px;
            }
            
            .actions {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .error-code {
                font-size: 70px;
            }
            
            .error-title {
                font-size: 24px;
            }
            
            .illustration {
                font-size: 60px;
            }
        }