        :root {
            --bg-cream: #D5FFD0;
            --hc-blue: #40DFEF; /* Professional Blue */
            --hc-black: #3C2C3E;
            --hc-white: #E2F6CA;
        }

        body {
font-family: "Playfair Display", serif;  
          background-color: var(--bg-cream);
            color: var(--hc-black);
            margin: 0;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            color: var(--hc-blue);
            font-weight: 700;
        }

        p {
            color: var(--hc-black);
            line-height: 1.6;
        }

        /* Hero Section Styling */
        .hero-section {
            height: 100vh;
            background: linear-gradient(rgba(30, 64, 175, 0.2), rgba(30, 64, 175, 0.2)), 
                        url('https://i.pinimg.com/736x/a9/08/2a/a9082a8bf65e3d66ae5dc1b41fe909e8.jpg') center/cover no-repeat;
            position: relative;
            animation: fadeIn 1.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

.header-box {
    background: white;
    padding: 0.2rem 2rem; /* reduced from 1rem */
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}


        .btn-blue {
            background-color: var(--hc-blue);
            color: var(--hc-white) !important;
            padding: 0.5rem 1.5rem;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .btn-blue:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* Card Styling */
        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(30, 64, 175, 0.1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        /* Navigation */
        .page-content { display: none; }
        .page-content.active { display: block; }

        /* Cart Sidebar */
        #cartSidebar {
            position: fixed;
            right: -400px;
            top: 0;
            width: 400px;
            height: 100%;
            background: white;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        #cartSidebar.open { right: 0; }

        .cart-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            display: none;
            z-index: 999;
        }

        .cart-overlay.open { display: block; }

        /* Quick View Modal */
        #quickViewModal {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        /* Footer Styling */
        footer {
            background-color: #111827; /* Dark Navy/Blue */
            color: white;
        }

        .cart-count {
            background: #EF4444;
            color: white;
            font-size: 0.7rem;
            padding: 2px 6px;
            border-radius: 99px;
            position: absolute;
            top: -5px;
            right: -10px;
        }
    /* Full colored login container */
.login-colored-box {
    background: #0d6efd;
    margin-top: ;
    padding: 0.5rem 1.2rem;
    display: flex;
    align-items: center;
}

/* Remove default button look */
.login-btn {
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Hover effect */
.login-colored-box:hover {
    background: #0b5ed7;
    transition: 0.3s ease;
}
