    /* Google Font */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Rouge+Script&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #411A69;
            color: #fff;
            line-height: 1.6;
        }

        /* Navbar */
        header {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            padding: 0px 6% !important;
            background: rgba(0, 0, 0, 0.2) !important;
            position: sticky !important;
            top: 0 !important;
             /* background: linear-gradient(to right, #271848 0%, #6a1b9a 50%, #271848 100%) !important; */
        }

        .logo span {
            color: #D8B4FE !important;
        }

        .logo a img {
            font-family: 'Dancing Script', cursive !important;
            font-size: 18px !important;
            margin: 0 !important;
            color: #D8B4FE !important;
            height: 100px !important;
            width: 100% !important;
            object-fit: cover !important;
            cursor: pointer !important;
            z-index: 0;
        }

        header .logo {
            font-size: 1.5rem !important;
            font-weight: 700 !important;
        }

        nav ul {
            display: flex !important;
            list-style: none !important;
            gap: 30px !important;
        }

        nav a {
            color: #fff !important;
            text-decoration: none !important;
            font-weight: 500 !important;
            transition: color 0.3s !important;
            position: relative !important;
        }

        nav a:hover {
            color: #D8B4FE !important;
        }

        nav a::after {
            content: "" !important;
            position: absolute !important;
            left: 0 !important;
            right: 0 !important;
            bottom: -6px !important;
            height: 2px !important;
            background: #D8B4FE !important;
            transform: scaleX(0) !important;
            transform-origin: left !important;
            transition: transform .25s ease !important;
        }

        nav a:hover::after, nav a.active::after {
            transform: scaleX(1) !important;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none !important;
            flex-direction: column !important;
            justify-content: space-between !important;
            width: 30px !important;
            height: 21px !important;
            cursor: pointer !important;
            z-index: 999999999999999999999 !important;
        }
        

        .hamburger span {
            height: 3px !important;
            width: 100% !important;
            background-color: #fff !important;
            border-radius: 3px !important;
            transition: all 0.3s ease !important;
        }

        /* Hero Section */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 60px 8%;
            gap: 40px;
            flex-wrap: wrap;
        }

        .img-box {
            /* background: linear-gradient(135deg, #C029FF, #F94A8C) !important; */
            border-radius: 8px;
            flex: none;
        }
        .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ya contain bhi use kar sakte ho agar crop nahi karna */
    border-radius: 8px; /* same border radius jaisa parent ka */
    display: block;
}


        .images-placeholder {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* column-1 */
        .col1 {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .col1-bottom {
            display: flex;
            gap: 15px;
        }

        /* column-2 */
        .col2 {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* column-2 ke upar ke 2 boxes side by side */
        .col2-top {
            display: flex;
            gap: 15px;
        }

        /* Box styles */
        .box1 {
            width: 300px;
            height: 296px;
            /* background: #f94a8c; */
        }

        .box2 {
            width: 193px;
            height: 192px;
            /* background: #c029ff; */
        }

        .box3 {
            width: 193px;
            height: 192px;
            background: #f94a8c;
        }

        .box4 {
            width: 187px;
            height: 186px;
            background: #c029ff;
        }

        .box5 {
            width: 100px;
            height: 185px;
            background: #f94a8c;
        }

        .box6 {
            width: 193px;
            height: 86px;
            background: #c029ff;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            font-weight: 700;
        }

        .hero-text p {
            margin: 15px 0;
        }

        .btns {
            background: linear-gradient(135deg, #C029FF, #F94A8C);
            color: #fff;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .btns:hover {
            background: linear-gradient(135deg, #F94A8C, #C029FF);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        /* Why Choose Section */
        .why-choose {
            text-align: center;
            padding: 60px 8%;
        }

        .why-choose h1 {
            font-size: 2.5rem;
            font-weight: 700;
        }

        .features {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 30px;
        }

        .feature-card {
            background: #fff;
            color: #333;
            padding: 20px;
            border-radius: 10px;
            text-align: left;
            display: flex;
        }

        .feature-card p {
            color: #561B84BF;
        }

        .feature-card h3 {
            margin-bottom: 10px;
        }

        /* About Section */
        .about {
            text-align: center;
            padding: 60px 8%;
        }

        .about p {
            max-width: 700px;
            margin: 20px auto;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        /* Footer */
        footer {
            text-align: left !important;
            padding: 40px 0;
            background: linear-gradient(to bottom, #271848 0%, #6a1b9a 50%, #271848 100%) !important;
            margin-top: 60px;
            padding-left: 2rem !important;
        }

        .socials a:hover {
            color: #F94A8C !important;
        }

        footer p {
            font-size: 2rem !important;
            font-weight: bold !important;
            margin-bottom: 20px;
        }

        .socials {
            display: flex !important;
            justify-content: start !important;
            flex-direction: column !important;
            gap: 20px;
        }

        .socials a {
            color: white !important;
            text-decoration: none;
            font-weight: 500;
        }

        .copyright {
            margin-top: 20px;
        }

        .socials a:hover {
            color: #F94A8C;
        }

        .email-text {
            color: white !important;
            font-weight: 500;
        }

        /* Scroll Animations */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Search Bar Custom Style */
        .search-bar {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0px auto;
            max-width: 100%;
            background: transparent;
            border: 1px solid #9D98AC80;
            border-radius: 50px;
            padding: 8px 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .search-bar input {
            flex: 1;
            border: none;
            outline: none;
            background: transparent;
            padding: 10px 15px;
            font-size: 16px;
            color: #fff;
        }

        .search-bar input::placeholder {
            color: #ddd;
        }

        .search-bar button {
            background: linear-gradient(135deg, #C029FF, #F94A8C);
            border: none;
            outline: none;
            padding: 10px 20px;
            border-radius: 25px;
            color: #fff;
            font-weight: 500;
            cursor: pointer;
            transition: 0.3s;
        }

        .search-bar button:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, #F94A8C, #C029FF);
        }

        .card-btn {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            margin-top: 1rem 1rem;
            list-style: none;
        }

        .card-btn a {
            list-style: none;
        }

        .card-btn-wrapper {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 5px;
            overflow: hidden;
            margin: 2rem;
            position: relative;
        }

        .card-btn {
            display: flex;
            gap: 5px;
            transition: transform 0.3s ease;
        }

        .btnss {
            background-color: #411A69;
            color: #fff;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            white-space: nowrap;
            box-shadow: 0 0 0 1px #fff, 0 2px 5px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            margin: 1rem 0;
            min-width: 128px;
            height: 46px;
            text-align: center;
            list-style: none;
            display: inline-block;
        }

        .btnss:hover {
            background: linear-gradient(135deg, #F94A8C, #C029FF);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .btnss.active {
            background: linear-gradient(135deg, #C029FF, #F94A8C);
            color: #fff;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            white-space: nowrap;
        }

        .prev-btn, .next-btn {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: #fff;
            font-size: 22px;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
            transition: background 0.3s;
        }

        .prev-btn:hover, .next-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .product-image {
            width: 600px !important;
            height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            margin: 2rem;
            overflow: hidden;
            transform: translateY(-8px) !important;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            display: block;
        }

        .product-card {
            background: transparent !important;
            border: 1px solid #9D98AC80 !important;
            width: 100% !important;
        }

        /* Underline for NAV links */
        nav a {
            position: relative;
        }

        nav a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -6px;
            height: 2px;
            background: #D8B4FE;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .25s ease;
        }

        nav a:hover::after, nav a.active::after {
            transform: scaleX(1);
        }

        /* Underline for CATEGORY buttons (.btnss) */
        .btnss {
            position: relative;
        }

        .btnss::after {
            content: "";
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: -8px;
            height: 3px;
            border-radius: 3px;
            background: transparent;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .25s ease, background .25s ease;
        }

        .btnss:hover::after, .btnss.active::after {
            background: linear-gradient(135deg, #C029FF, #F94A8C);
            transform: scaleX(1);
        }


        .accordion-item h2 #okkk{
            color: #ddd !important;
            position: relative;
        }
        /* RESPONSIVE DESIGN */
        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            nav ul {
                gap: 15px;
            }
        }

        @media (max-width: 768px) {
          .hamburger {
                cursor: pointer;
                z-index: 10000 !important; /* menu ke upar hi rahe */
              }

            .hamburger {
                display: flex !important;
                position: absolute;
                top: 30px;
                right: 20px;
                
            }

            /* Fix for mobile hamburger menu overlay */
            nav ul {
                position: fixed !important;
                top: 0 !important;
                right: -100% !important;
                height: 30% !important;
                width: 50% !important;
                flex-direction: column !important;
                background: #411A69 !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 20px !important;
                transition: right 0.3s ease !important;
                z-index: 1000!important;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1) !important;
                border-bottom-left-radius: 20px !important;
                border: 1px solid #9D98AC80;
            }

            nav ul.active {
                right: 0 !important;
            }

            #nav-menu {
                z-index: 999 !important;
            }

            .container {
                z-index: 0 !important;
            }

            /* category buttons ko neeche push karna */
            .card-btn-wrapper, .card-btn, .btnss {
                position: relative !important;
                z-index: 0 !important;
            }

            /* Hamburger Cross Animation */
            .hamburger.active span:nth-child(1) {
                transform: translateY(9px) rotate(45deg) !important;
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0 !important;
            }

            .hamburger.active span:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg) !important;
            }

            header {
                display: flex;
                gap: 15px;
            }

            .logo img {
                align-items: start;
            }

            .hamburger {
                display: flex;
                position: absolute;
                top: 30px;
                right: 20px;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero-text h1 {
                font-size: 1rem;
            }

            .features {
                grid-template-columns: 1fr;
            }

            /* mobile view: show only 3 buttons */
            .card-btn-wrapper {
                justify-content: space-between;
            }

            .card-btn {
                min-width: calc(100% - 100px);
                overflow: hidden;
            }

            .card-btn-wrapper {
                width: 100%;
                margin: 1rem 0;
            }

            /* Mobile view - 1 product per row */
            .products {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .product-card {
                margin: 0 auto;
                max-width: 400px;
            }

            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .search-bar input {
                width: 200px;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

        }

        @media (max-width: 630px) {
            /* Box styles */
            .box1 {
                width: 200px;
                height: 206px;
                background: #f94a8c;
            }

            .box2 {
                width: 103px;
                height: 112px;
                background: #c029ff;
            }

            .box3 {
                width: 103px;
                height: 112px;
                background: #f94a8c;
            }

            .box4 {
                width: 107px;
                height: 106px;
                background: #c029ff;
            }

            .box5 {
                width: 78px;
                height: 105px;
                background: #f94a8c;
            }

            .box6 {
                width: 103px;
                height: 70px;
                background: #c029ff;
            }
        }

        @media (max-width: 410px) {
            .box1 {
                width: 140px;
                height: 147px;
                background: #f94a8c;
            }

            .box2 {
                width: 74px;
                height: 82px;
                background: #c029ff;
            }

            .box3 {
                width: 74px;
                height: 82px;
                background: #f94a8c;
            }

            .box4 {
                width: 77px;
                height: 86px;
                background: #c029ff;
            }

            .box5 {
                width: 50px;
                height: 85px;
                background: #f94a8c;
            }

            .box6 {
                width: 73px;
                height: 50px;
                background: #c029ff;
            }

            .hero-text h1 {
                font-size: 1.5rem;
            }

            .hero-text p {
                font-size: 0.9rem;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .card-btn-wrapper {
                padding: 0 35px;
            }

            .btnss {
                padding: 10px 20px;
                font-size: 14px;
            }

            .hero-text h1 {
                font-size: 1.8rem;
            }

            .product-info h3 {
                font-size: 1.2rem;
            }

            .view-detail {
                padding: 12px 25px;
                font-size: 16px;
            }
        }

        /* Desktop: show buttons inline */
        @media (min-width: 769px) {
          .card-btn {
    border: none !important;
    outline: none !important;
}
.card-btn:focus,
.card-btn:active,
.card-btn:hover {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}    
.card-btn-wrapper {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
            .card-btn {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
            }

            .swiper-button-prev, .swiper-button-next {
                display: none;
            }
        }

        /* Mobile: slider look */
        @media (max-width: 768px) {
            .card-btn {
                display: flex;
            }

            .btnss {
                flex-shrink: 0;
                min-width: 128px;
                text-align: center;
            }
        }

        /* Responsive product grid */
        @media (max-width: 1200px) {
            .products {
                grid-template-columns: repeat(2, 1fr);
            }

            .product-card {
                max-width: 100%;
            }
        }

        @media (max-width: 996px) {
            .product-card {
                flex-direction: column;
                height: auto;
                padding: 1rem;
            }

            .product-image {
                background-color: transparent !important;
                width: 241px !important;
                height: 350px !important;
                margin: 2rem 2rem 1rem !important;
                justify-content: center !important;
                align-self: center !important;
            }

            .product-image img {
                width: 241px !important;
                height: 250px !important;
                justify-content: center !important;
                align-self: center !important;
                object-fit: cover !important;
                object-position: center !important;
                justify-content: stretch !important;
            }
        }

        .product-image {
            width: 100% !important;
            max-width: 400px !important;
            margin: 2rem 2rem !important;
            border-radius: 20px !important;
            overflow: hidden !important;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) !important;
            text-align: center !important;
        }

        .product-image img {
            max-width: 100% !important;
            height: 100% !important;
            display: inline-block !important;
            border-radius: 20px !important;
            border-radius: 20px !important;
        }

        .view-detail {
            border: none !important;
            outline: none !important;
        }

        /* Modal Customization */
        .modal-content {
            background: #411A69 !important;
            color: #fff !important;
            border-radius: 15px !important;
            border: 1px solid #9D98AC80;
        }

        .btn-close-white {
            filter: invert(1) grayscale(100%) brightness(200%);
        }

        .modal-product-img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        @media (max-width: 480px) {
            .card-btn-wrapper {
                padding: 0 35px;
            }

            .btnss {
                padding: 10px 20px;
                font-size: 14px;
            }

            .hero-text h1 {
                font-size: 1.8rem;
            }

            .product-info h3 {
                font-size: 1.2rem;
            }

            .view-detail {
                padding: 12px 25px;
                font-size: 16px;
            }
        }