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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
        }

        /* Enhanced Navbar */
       .navbar {
                position: fixed;
                top: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                padding: 1.2rem 2rem;
                z-index: 1000;
                transition: all 0.3s ease;
                border-bottom: 1px solid rgba(102, 126, 234, 0.1);
                box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
       }

.navbar.scrolled {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links li a:hover {
    color: #667eea;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links li a:hover::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(102, 126, 234, 0.1);
    font-size: 1.2rem;
}

.cart-icon:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #18b4dd 0%, #00ff0b 100%);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

/* Desktop fix: keep cart icon far right */
@media (min-width: 769px) {
    .nav-container {
        display: flex;
        align-items: center;
    }
    .nav-links {
        display: flex;
        gap: 2.5rem;
        margin-left: auto;
        margin-right: 2rem;
    }
    .cart-icon {
        margin-left: auto;
    }
    .nav-toggle {
        display: none; /* hide hamburger in desktop */
    }
}



        /* Enhanced Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at top left, rgba(255,255,255,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(255,255,255,0.1) 0%, transparent 50%),
                linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
            animation: heroFlow 20s ease-in-out infinite;
        }

        @keyframes heroFlow {
            0%, 100% { 
                transform: translateX(0) translateY(0) scale(1); 
                opacity: 0.8;
            }
            33% { 
                transform: translateX(20px) translateY(-20px) scale(1.05); 
                opacity: 1;
            }
            66% { 
                transform: translateX(-10px) translateY(15px) scale(0.95); 
                opacity: 0.9;
            }
        }

        .hero-content {
            max-width: 900px;
            padding: 2rem;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 2;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            line-height: 1.1;
            font-family: 'Bebas Neue', sans-serif;

            color: white;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 
                 0 0 10px rgba(102, 126, 234, 0.5);
            letter-spacing: 1px;
        }




        .hero-tagline {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            opacity: 0.95;
            font-weight: 300;
        }

        .changing-punchline {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 2.5rem;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .punchline-text {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
            background: rgba(255,255,255,0.1);
            padding: 1rem 2rem;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .punchline-text.active {
            opacity: 1;
            transform: translateY(0);
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            background: white;
            color: #667eea;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Main Content */
        .main-content {
            padding: 6rem 2rem 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section {
            margin-bottom: 6rem;
        }

        /* Enhanced Section Titles with Differentiation */
       .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 4rem;
            font-weight: 800;
            position: relative;
            padding: 0; /* Removed extra padding */
            margin-top: -77px; /* Ensure no top margin */
        }


        .portfolio-title {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .portfolio-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 3px;
        }

        .resume-title {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .resume-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            border-radius: 3px;
        }

        /* Section Backgrounds for Differentiation */
        .portfolio-section {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
            padding: 4rem 2rem;
            border-radius: 30px;
            margin: -6rem 0;
            position: relative;
            overflow: hidden;
        }

        .portfolio-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23667eea' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='8'/%3E%3C/g%3E%3C/svg%3E");
            animation: patternMove 25s linear infinite;
        }

        .resume-section {
            background: linear-gradient(135deg, #fff5f8 0%, #ffe8ef 100%);
            padding: 4rem 2rem;
            border-radius: 30px;
            margin: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .resume-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f5576c' fill-opacity='0.03'%3E%3Crect x='25' y='25' width='10' height='10'/%3E%3C/g%3E%3C/svg%3E");
            animation: patternMove 30s linear infinite reverse;
        }

        @keyframes patternMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

      /* Template Grid */
.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Slightly smaller than 320px */
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.template-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.template-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.15);
}

.template-image {
    width: 100%;
    height: 220px; /* Keep large visual */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.template-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

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

.template-info {
    padding: 1rem; /* Reduced padding */
}

.template-type {
    color: #667eea;
    font-size: 0.7rem; /* Slightly smaller */
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.template-title {
    font-size: 1.1rem; /* Slightly reduced */
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

/* Template Price */ 

.template-price {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: baseline;
}

.template-price .mrp {
    text-decoration: line-through;
    color: #888;
    font-size: 0.95rem;
}

.template-price .discount {
    color: #e63946;
    font-weight: bold;
    font-size: 0.95rem;
}

.template-price .final-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1d3557;
}


.add-to-cart-btn {
    width: 100%;
    padding: 0.6rem; /* Tighten button */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}


        /* Redesigned How to Order Section */
       .how-to-order {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 1.5rem; /* Reduced padding */
    margin: 4rem 0; /* Reduced margin */
    border-radius: 30px; /* Slightly smaller radius */
    color: white;
    position: relative;
    overflow: hidden;
}

.how-to-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    animation: orderFlow 18s ease-in-out infinite;
}

@keyframes orderFlow {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(2deg); }
}

.how-to-order-title {
    font-size: 2.8rem; /* Reduced from 3.5rem */
    text-align: center;
    margin-bottom: 3rem; /* Reduced space below */
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Reduced min-width */
    gap: 2rem; /* Reduced gap */
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.step {
    text-align: center;
    padding: 2rem; /* Reduced from 3rem */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px; /* Slightly smaller */
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: stepSlideIn 0.8s ease-out forwards;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }

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

.step:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.step-number {
    width: 70px; /* Reduced from 90px */
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem; /* Reduced */
    font-weight: 800;
    margin: 0 auto 1.5rem auto;
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step:hover .step-number {
    background: white;
    color: #667eea;
    transform: scale(1.15) rotate(10deg);
    border-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.step h3 {
    margin-bottom: 1rem; /* Reduced */
    font-size: 1.5rem; /* Slightly smaller */
    font-weight: 700;
}

.step p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6; /* Tighter lines */
    font-size: 1rem; /* Slightly smaller */
}

       .contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 1.5rem; /* Reduced padding */
    border-radius: 25px;
    margin: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Force fit more in a row */
    gap: 2rem; /* Reduced gap */
    max-width: 1000px;
    margin: 0 auto;
}

.contact-method {
    text-align: center;
    padding: 2rem; /* Reduced from 3rem */
    background: white;
    border-radius: 20px; /* Slightly smaller */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.contact-icon {
    width: 60px;  /* Reduced from 80px */
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: white;
    font-size: 1.5rem;  /* Reduced from 2rem */
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
}

.linkedin-icon {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
}

.email-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-method:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-method h3 {
    font-size: 1.3rem;  /* Reduced */
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #333;
}

.contact-method p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;  /* Slightly smaller */
}

.contact-method a {
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;  /* Reduced */
    transition: all 0.3s ease;
}

.contact-method a:hover {
    color: #764ba2;
    text-decoration: underline;
}

       .footer {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%);
    color: #ffffff;
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 30px 30px 0 0; /* Rounded top corners */
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
    animation: patternMove 40s linear infinite;
    opacity: 0.2;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #f0f0f0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.footer-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-content a {
    color: #8ab4f8;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-content a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-content .social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-content .social-links a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-content .social-links a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}


        .footer-logo {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-tagline {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-divider {
            width: 100px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            margin: 2rem auto;
            border-radius: 2px;
        }

        .footer-copyright {
            font-size: 1rem;
            opacity: 0.8;
            margin-top: 2rem;
        }

        .trademark {
            font-size: 1.2rem;
            font-weight: 700;
            margin-top: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-tagline {
                font-size: 1.2rem;
            }

            .changing-punchline {
                font-size: 1.3rem;
            }

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

            .steps-container {
                grid-template-columns: 1fr;
            }

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

            .how-to-order-title {
                font-size: 2.5rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }
            .nav-toggle {
                display: block;
                background: none;
                border: none;
                font-size: 1.6rem;
                color: inherit;
                cursor: pointer;
            }

            .nav-links.mobile-active {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                position: absolute;
                top: 70px; /* just below navbar */
                right: 1rem;
                background: white;
                padding: 1rem;
                border-radius: 10px;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            }

        }

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

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

        /* Cart and Preview Modal styles remain the same */
        .cart-modal, .preview-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 2000;
            backdrop-filter: blur(8px);
        }

        .cart-content, .preview-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
        }

        .cart-header, .preview-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .close-cart, .close-preview {
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #666;
            transition: all 0.3s ease;
        }

        .close-cart:hover, .close-preview:hover {
            color: #667eea;
            transform: scale(1.1);
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            padding: 1.5rem;
            border-bottom: 1px solid #eee;
            border-radius: 10px;
            margin-bottom: 1rem;
            background: #f8f9fa;
        }

        .cart-total {
            font-size: 1.5rem;
            font-weight: 800;
            text-align: right;
            margin: 1.5rem 0;
            color: #667eea;
        }

        .checkout-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 15px;
            font-weight: 700;
            cursor: pointer;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .checkout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        /* Feedback Form */
        .feedback-form {
            max-width: 700px;
            margin: 0 auto;
            padding: 3rem;
            background: white;
            border-radius: 25px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(102, 126, 234, 0.08);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 700;
            color: #333;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

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

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 15px;
            font-weight: 700;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        html { scroll-behavior: smooth; }
.section { scroll-margin-top: 100px; }

/* view live Button */

.view-live-btn {
    display: block;
    margin-top: 10px;
    text-align: center;
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-live-btn:hover {
    background: #667eea;
    color: white;
}

/* BLOG */

.blog-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
  padding: 4rem 2rem;
  border-radius: 30px;
}

.featured-blog {
  display: flex;
  gap: 2rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
}

.featured-blog img {
  width: 40%;
  object-fit: cover;
}

.featured-content {
  padding: 2rem;
}

.blog-tag {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.blog-meta {
  color: #666;
  font-size: 0.85rem;
  margin-top: 0.8rem;
}

.blog-readmore, .blog-card a {
  color: #667eea;
  font-weight: 700;
  text-decoration: none;
}

.blog-readmore:hover, .blog-card a:hover {
  text-decoration: underline;
}
/* Responsive fixes */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.mobile-active {
        display: flex;
    }

      .cart-icon {
        position: absolute;
        right: 60px; /* keeps space between cart and hamburger */
        top: 15px;
        cursor: pointer;
        font-size: 1.4rem;
        display: flex;
        align-items: center;
    }

    .cart-icon .cart-count {
        background: #28a745;
        color: white;
        font-size: 0.75rem;
        padding: 2px 6px;
        border-radius: 50%;
        margin-left: 5px;
    }

    .template-card {
        width: 100%;
        max-width: 350px;
        margin: auto;
    }

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

    .preview-modal iframe,
    .preview-modal img {
        width: 100% !important;
        height: auto !important;
    }

    .cart-modal {
        width: 90%;
        right: 5%;
        left: 5%;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }

    .contact-method {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}
