
        :root {
            --primary-red: #e61e2a;
            --ocean-black: #000000;
            --market-gray: #f8f9fa;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, .navbar-brand {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            font-weight: 700;
        }
        .bg-black { background-color: var(--ocean-black) !important; }
        .text-primary-red { color: var(--primary-red); }
        .btn-primary-red {
            background-color: var(--primary-red);
            color: white;
            border: none;
            border-radius: 0;
            padding: 12px 30px;
            font-family: 'Oswald', sans-serif;
            letter-spacing: 1px;
            transition: 0.3s;
        }
        .btn-primary-red:hover {
            background-color: #c41a23;
            color: white;
            transform: translateY(-2px);
        }
        /* Navbar */
        .navbar { padding: 15px 0; }
        .navbar-brand img { height: 70px; transition: 0.3s; }
        .nav-link {
            color: #ccc !important;
            font-family: 'Oswald', sans-serif;
            margin: 0 15px;
            letter-spacing: 1px;
        }
        .nav-link:hover { color: var(--primary-red) !important; }

        /* Hero */
        .hero {
            height: 80vh;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/banner.avif');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        }
        .hero h1 { font-size: 5rem; letter-spacing: -2px; }
        .hero .badge {
            border: 2px solid var(--primary-red);
            color: var(--primary-red);
            padding: 8px 20px;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        /* Products */
        .product-card {
            border: none;
            border-radius: 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: 0.3s;
            margin-bottom: 30px;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .product-img-wrapper {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
        }
        .product-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }
        .product-card:hover img { transform: scale(1.1); }
        .price-tag {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-red);
        }

        /* About */
        .about-section { padding: 100px 0; }
        .section-title {
            position: relative;
            margin-bottom: 50px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-red);
        }

        /* Footer */
        footer {
            background: #0a0a0a;
            color: #888;
            padding: 80px 0 30px;
        }
        footer h4 { color: white; margin-bottom: 25px; }
        .social-icons a {
            width: 40px;
            height: 40px;
            background: #222;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            transition: 0.3s;
            text-decoration: none;
        }
        .social-icons a:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }
        .testimonial-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

/* Premium Card Style */
.testimonial-card {
    position: relative;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    transition: all 0.4s ease;
    height: 100%;

    /* Premium layered shadow */
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.06),
        0 20px 50px rgba(0, 0, 0, 0.04);
}

/* Soft top highlight */
.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

/* Hover Effect */
.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.10),
        0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Quote Icon */
.testimonial-card i {
    font-size: 32px;
    color: var(--primary-red);
    opacity: 0.8;
}

/* Name Style */
.testimonial-name {
    margin-top: 20px;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 0.5px;
}


.policy-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('../images/banner.avif');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.policy-header h1 {
    font-size: 3rem;
    letter-spacing: 2px;
}

/* Policy Card */
.policy-card {
    background: #ffffff;
    padding: 50px;
    margin-top: -50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* Section Style */
.policy-section {
    margin-bottom: 40px;
}

.policy-section h3 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.policy-section ul {
    padding-left: 20px;
}

.policy-section ul li {
    margin-bottom: 8px;
}

/* Highlight Box (Payment Security) */
.highlight-box {
    background: #fff5f5;
    border-left: 5px solid var(--primary-red);
    padding: 20px;
    border-radius: 10px;
}

/* Contact Box */
.contact-box {
    background: var(--dark-black);
    color: #000000;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.contact-box strong {
    color: var(--primary-red);
}

.terms-header {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('../images/banner.avif');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.terms-header h1 {
    font-size: 3rem;
    letter-spacing: 2px;
}

/* MAIN CARD */
.terms-card {
    background: white;
    padding: 50px;
    margin-top: -50px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* SECTION STYLE */
.terms-section {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h3 {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.terms-section ul {
    padding-left: 20px;
}

.terms-section ul li {
    margin-bottom: 8px;
}

/* HIGHLIGHT BOX (Refund Policy) */
.highlight-section {
    background: #fff5f5;
    border-left: 5px solid var(--primary-red);
    padding: 20px;
    border-radius: 10px;
}

/* Razorpay Emphasis */
.payment-box {
    background: #f2f7ff;
    border-left: 5px solid #007bff;
    padding: 20px;
    border-radius: 10px;
}