                    :root {
    --primary-red: #ff0000;
    --accent-purple: #8b00ff;
    --gradient-red-purple: linear-gradient(135deg, var(--primary-red), var(--accent-purple));
    --dark-bg: #1a0d1e;
    --light-bg: #f8f4ff;
    --white: #ffffff;
    --text-dark: #2d1b3f;
    --shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--gradient-red-purple);
    padding: 1rem 0;
    /*position: fixed;*/
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: var(--primary-red);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    /* width: 100%; */
    width: 100vw;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

/* .popup-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow);
    position: relative;
    animation: popupSlideIn 0.3s ease-out;
} */


.popup-content {
    /* background: var(--white); */
    /* padding: 2.5rem; */
    /* border-radius: 20px; */
    /* max-width: 500px; */
    width: 90%;
    max-height: 90vh;
    /* overflow-y: auto; */
    /* box-shadow: var(--shadow); */
    /* position: relative; */
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.7) translateY(-50px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 35px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 600;
}

section {
    padding: 100px 0;
    /* min-height: 100vh; */
}

/* Old Hero Section Start*/

/* #hero {
background: var(--gradient-red-purple);
color: var(--white);
text-align: center;
display: flex;
align-items: center;
min-height: 100vh;
}

#hero .hero-content h1 {
font-size: clamp(2.5rem, 5vw, 4rem);
margin-bottom: 1rem;
} */


/* Old Hero Section End */
/*@@@@@@@@@@@@@@ New Hero Section End @@@@@@@@@@@*/


/* Pure CSS Hero Slider - LIGHTER COLORS */
.hero-css-slider {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    /*margin-top: 80px;*/
}

.slider-container {
    position: relative;
    height: 100vh;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* LIGHTER GRADIENT BACKGROUNDS */
.slide:nth-child(1) {
    background: linear-gradient(135deg, #ff4d4d 0%, #b366ff 50%, #d94fff 100%);
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, #b366ff 0%, #ff4d4d 50%, #ff6b6b 100%);
}

.slide:nth-child(3) {
    background: linear-gradient(-45deg, #ff4d4d 0%, #b366ff 50%, #ff6b6b 100%);
}

/* LIGHTER OVERLAY */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 66%);
    /* background: rgba(0, 0, 0, 0.25); */
    /* Reduced from 0.5 to 0.25 */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideContentIn 1.2s ease-out forwards;
}

@keyframes slideContentIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    /* Reduced shadow */
}

.hero-content h1 span {
    background: linear-gradient(45deg, #ffffff, rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.hero-btn {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-red);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4); */
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    /* box-shadow: 0 25px 50px rgba(255, 255, 255, 0.5); */
    color: var(--primary-red);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dot.active,
.dot:hover {
    background: var(--gradient-red-purple);
    transform: scale(1.3);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-content p {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .slider-dots {
        bottom: 25px;
        gap: 10px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 15px;
    }

    .hero-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/*@@@@@@@@@@ New Hero Section End @@@@@@@@@@@@@@@*/



#about {
    background: var(--light-bg);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-red-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

#products {
    background: var(--dark-bg);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 200px;
    /*object-fit: cover;*/
        object-fit: contain;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.view-more {
    display: block;
    margin: 3rem auto 0;
    padding: 1rem 3rem;
    background: var(--gradient-red-purple);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.view-more:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.form-section {
    background: var(--light-bg);
}

form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-red-purple);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    /* box-shadow: var(--shadow); */
}

.error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.2) !important;
}

.success {
    border-color: #44ff44 !important;
    box-shadow: 0 0 0 3px rgba(68, 255, 68, 0.2) !important;
}

/* Why Choose Us */

#why-choose-us {
    /* background: var(--light-bg); */
    background: var(--dark-bg);
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-red-purple);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-red-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.why-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    #why-choose-us {
        padding: 80px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }

    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}


/* Why Choose Us */

/* Footer Styles */
#footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-logo {
    height: auto;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 15px rgba(255, 0, 0, 0.5));
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-contact li a {
    color: #fff;
    text-decoration: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-contact i {
    color: var(--accent-purple);
    margin-right: 0.8rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gradient-red-purple);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Responsive */

/* Footer Responsive */
@media (max-width: 886px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Footer Responsive */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        /*position: fixed;*/
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--gradient-red-purple);
        flex-direction: column;
        padding: 2rem;
        /* transform: translateY(-100%); */
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin: 1rem 0;
        text-align: center;
    }

    .nav-menu li a {
        font-size: 1.3rem;
    }

    section {
        padding: 80px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    /* .footer-logo {
    height: 50px;
} */
}

@media (max-width: 480px) {
    .popup-content {
        /* padding: 2rem;
        margin: 1rem; */
    }
}





/* Thank You Page Styles */
.thankyou_bg {
    background: #00000030;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    overflow-x: hidden;
}

.thankyou-container {
    /* background: rgba(255, 255, 255, 0.1); */
    background: var(--dark-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 30px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(26, 13, 30, 0.8);
    position: relative;
}

.thankyou-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-red-purple);
}

.thankyou-container h1 {
    font-size: clamp(2rem, 8vw, 5rem);
    background: var(--gradient-red-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.thankyou-container p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.thankyou-container .btn-home {
    padding: 1rem 3rem;
    background: var(--gradient-red-purple);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    display: inline-block;
    /* box-shadow: 0 10px 30px rgba(255,0,0,0.4); */
}

.thankyou-container .btn-home:hover {
    transform: scale(1.05);
    /* box-shadow: 0 20px 50px rgba(255,0,0,0.5);  */
}

@media (max-width: 768px) {
    .thankyou-container {
        padding: 3rem 2rem;
        /* margin: 1rem; */
    }
}

@media (max-width: 480px) {
    .thankyou-container {
        padding: 2.5rem 1.5rem;
    }

    .thankyou-container p {
        font-size: 1.1rem;
    }
}

/* Thankyou page end */    