
        /* Hero Section - Compact */
        .hero-section {
            position: relative;
            height: 60vh;
            min-height: 500px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Slides */
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(1.05);
            transition: all 0.8s ease;
            z-index: 1;
            display: flex;
            align-items: center;
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }

        /* Background */
        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 70%);
        }

        /* Content */
        .hero-content {
            position: relative;
            z-index: 3;
            color: white;
            padding: 0 3rem 0 0;
            /* Right padding to avoid arrow overlap */
        }

        .hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.8rem;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .text-golden {
            background: linear-gradient(135deg, var(--primary-gold), #F4D03F);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .product-name {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-gold);
            margin-bottom: 0.8rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .hero-description {
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 500px;
        }

        /* Price & Action */
        .price-action {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-gold);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .btn {
            padding: 0.8rem 1.8rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-golden {
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            color: white;
            border: 2px solid var(--primary-gold);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .btn-golden:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
            color: white;
        }

        /* Navigation */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            left: 0;
            display: flex;
            justify-content: space-between;
            padding: 0 1rem;
            z-index: 10;
            pointer-events: none;
        }

        .nav-btn {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: all;
            flex-shrink: 0;
        }

        .nav-btn:hover {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
            transform: scale(1.1);
        }

        /* Dots */
        .slider-dots {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.8rem;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border: none;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--primary-gold);
            transform: scale(1.2);
        }

        /* Responsive Design */

        /* Large Desktops - 1200px+ */
        @media (min-width: 1200px) {
            .hero-section {
                height: 65vh;
                min-height: 550px;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .product-name {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 1.1rem;
                max-width: 550px;
            }

            .price {
                font-size: 2.2rem;
            }
        }

        /* Tablets and Small Desktops - 992px to 1199px */
        @media (max-width: 1199.98px) {
            .hero-section {
                height: 55vh;
                min-height: 450px;
            }

            .hero-title {
                font-size: 2.3rem;
            }

            .product-name {
                font-size: 1.7rem;
            }

            .hero-description {
                max-width: 480px;
            }

            .price {
                font-size: 1.9rem;
            }
        }

        /* Tablets - 768px to 991px */
        @media (max-width: 991.98px) {
            .hero-section {
                height: 50vh;
                min-height: 400px;
            }

            .hero-content {
                text-align: center;
            }

            .hero-title {
                font-size: 2.1rem;
            }

            .product-name {
                font-size: 1.6rem;
            }

            .hero-description {
                max-width: 100%;
                margin: 0 auto 1.5rem;
            }

            .price-action {
                justify-content: center;
            }

            .price {
                font-size: 1.8rem;
            }
        }

        /* Mobile Large - 576px to 767px */
        @media (max-width: 767.98px) {
            .hero-section {
                height: 45vh;
                min-height: 350px;
            }

            .hero-content {
                text-align: center;
            }

            .hero-badge {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
                margin-bottom: 0.8rem;
            }

            .hero-title {
                font-size: 1.8rem;
                margin-bottom: 0.5rem;
            }

            .product-name {
                font-size: 1.4rem;
                margin-bottom: 0.8rem;
            }

            .hero-description {
                font-size: 0.9rem;
                margin-bottom: 1.2rem;
                padding: 0 1rem;
            }

            .price-action {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }

            .price {
                font-size: 1.6rem;
            }

            .btn {
                width: 80%;
                max-width: 250px;
                padding: 0.8rem 1.5rem;
            }

            .slider-nav {
                width: calc(100% - 2rem);
                left: 1rem;
            }

            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }

            .slider-dots {
                bottom: 1.5rem;
            }

            .dot {
                width: 10px;
                height: 10px;
            }
        }

        /* Mobile Medium - 480px to 575px */
        @media (max-width: 575.98px) {
            .hero-section {
                height: 42vh;
                min-height: 320px;
            }

            .hero-content {
                padding: 1rem 0;
            }

            .hero-badge {
                font-size: 0.7rem;
                padding: 0.3rem 0.8rem;
            }

            .hero-title {
                font-size: 1.6rem;
                line-height: 1.2;
            }

            .product-name {
                font-size: 1.3rem;
            }

            .hero-description {
                font-size: 0.85rem;
                margin-bottom: 1rem;
                padding: 0 0.5rem;
                width: 60%;
            }

            .price {
                font-size: 1.5rem;
            }

            .btn {
                width: 90%;
                max-width: 220px;
                padding: 0.7rem 1.3rem;
                font-size: 0.85rem;
            }

            .nav-btn {
                width: 38px;
                height: 38px;
                font-size: 0.8rem;
            }

            .slider-nav {
                width: calc(100% - 1rem);
                left: 0.5rem;
            }

            .slider-dots {
                bottom: 1.2rem;
                gap: 0.6rem;
            }

            .dot {
                width: 8px;
                height: 8px;
            }
        }

        /* Mobile Small - 320px to 479px */
        @media (max-width: 479.98px) {
            .hero-section {
                height: 40vh;
                min-height: 300px;
            }

            .hero-content {
                padding: 0.8rem 1rem;
                /* Minimal padding for small screens */
            }

            .hero-badge {
                font-size: 0.65rem;
                padding: 0.25rem 0.7rem;
                margin-bottom: 0.6rem;
            }

            .hero-title {
                font-size: 1.4rem;
                margin-bottom: 0.4rem;
            }

            .product-name {
                font-size: 1.2rem;
                margin-bottom: 0.6rem;
            }

            .hero-description {
                font-size: 0.8rem;
                margin-bottom: 0.8rem;
                line-height: 1.4;
                width: 60%;
            }

            .price {
                font-size: 1.3rem;
            }

            .btn {
                width: 95%;
                max-width: 200px;
                padding: 0.6rem 1.2rem;
                font-size: 0.8rem;
            }

            .nav-btn {
                width: 35px;
                height: 35px;
                font-size: 0.75rem;
            }

            .slider-dots {
                bottom: 1rem;
                gap: 0.5rem;
            }

            .dot {
                width: 7px;
                height: 7px;
            }
        }

        /* Extra Small Mobile - Under 320px */
        @media (max-width: 319.98px) {
            .hero-section {
                height: 38vh;
                min-height: 280px;
            }

            .hero-title {
                font-size: 1.2rem;
            }

            .product-name {
                font-size: 1.1rem;
            }

            .hero-description {
                font-size: 0.75rem;
                padding: 0 0.25rem;
            }

            .price {
                font-size: 1.2rem;
            }

            .btn {
                font-size: 0.75rem;
                padding: 0.5rem 1rem;
            }

            .nav-btn {
                width: 32px;
                height: 32px;
                font-size: 0.7rem;
            }
        }

        /* Landscape Mobile Orientation */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero-section {
                height: 85vh;
                min-height: 350px;
            }

            .hero-content {
                padding: 1rem 0;
            }

            .hero-title {
                font-size: 1.6rem;
                margin-bottom: 0.3rem;
            }

            .product-name {
                font-size: 1.2rem;
                margin-bottom: 0.5rem;
            }

            .hero-description {
                font-size: 0.8rem;
                margin-bottom: 0.8rem;
            }

            .price-action {
                gap: 0.8rem;
            }

            .slider-dots {
                bottom: 0.8rem;
            }
        }
   
  
        /* about css */
       
        /* Swasthamen Compact Luxury About Section */
        .swasthamen-luxury-sanctuary {
            padding: 80px 0;
            background: linear-gradient(135deg,
                    #ffffff 60%,
                    #fdfcf9 30%,
                    rgba(212, 175, 55, 0.08) 10%);
            position: relative;
            overflow: hidden;
        }

        /* Elegant Background */
        .swasthamen-ethereal-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .swasthamen-golden-mist {
            position: absolute;
            top: -20%;
            right: -10%;
            width: 60%;
            height: 140%;
            background: radial-gradient(ellipse,
                    rgba(212, 175, 55, 0.06) 0%,
                    rgba(212, 175, 55, 0.02) 40%,
                    transparent 70%);
            animation: swasthamen-mist-flow 15s infinite ease-in-out;
        }

        .swasthamen-sacred-geometry {
            position: absolute;
            top: 30%;
            left: 30%;
            width: 40%;
            height: 40%;
            background-image:
                radial-gradient(circle at center,
                    transparent 48%,
                    rgba(212, 175, 55, 0.02) 50%,
                    transparent 52%);
            animation: swasthamen-sacred-rotation 30s linear infinite;
            opacity: 0.7;
        }

        .swasthamen-luxury-sanctuary .container {
            position: relative;
            z-index: 2;
        }

        /* Royal Insignia */
        .swasthamen-royal-insignia {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 2rem;
        }

        .swasthamen-crown-emblem {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #D4AF37, #F4D03F, #D4AF37);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            box-shadow:
                0 8px 25px rgba(212, 175, 55, 0.4),
                inset 0 2px 8px rgba(255, 255, 255, 0.3);
            animation: swasthamen-crown-pulse 3s infinite ease-in-out;
        }

        .swasthamen-crown-emblem i {
            font-size: 1.8rem;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .swasthamen-heritage-badge {
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            color: #D4AF37;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        /* Sovereign Title */
        .swasthamen-sovereign-title {
            font-size: 2.8rem;
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .swasthamen-golden-emphasis {
            background: linear-gradient(135deg, #D4AF37, #F4D03F, #D4AF37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            animation: swasthamen-golden-shimmer 4s infinite ease-in-out;
        }

        .swasthamen-elite-description {
            font-size: 1.2rem;
            color: #555;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* Luxury Pillars */
        .swasthamen-luxury-pillar {
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.95),
                    rgba(255, 255, 255, 0.9));
            border-radius: 20px;
            padding: 2rem 1.5rem;
            height: 100%;
            position: relative;
            border: 1px solid rgba(212, 175, 55, 0.15);
            box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.08),
                0 0 20px rgba(212, 175, 55, 0.05);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            overflow: hidden;
        }

        .swasthamen-luxury-pillar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #D4AF37, #F4D03F, #D4AF37);
            transition: all 0.3s ease;
        }

        .swasthamen-luxury-pillar:hover {
            transform: translateY(-8px);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.12),
                0 0 30px rgba(212, 175, 55, 0.15);
        }

        .swasthamen-luxury-pillar:hover::before {
            height: 100%;
            opacity: 0.03;
        }

        .swasthamen-pillar-crown {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .swasthamen-gem-holder {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg,
                    rgba(212, 175, 55, 0.1),
                    rgba(212, 175, 55, 0.05));
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            transition: all 0.3s ease;
        }

        .swasthamen-luxury-pillar:hover .swasthamen-gem-holder {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-color: #D4AF37;
            transform: scale(1.05);
        }

        .swasthamen-gem-holder i {
            font-size: 1.8rem;
            color: #D4AF37;
            transition: all 0.3s ease;
        }

        .swasthamen-luxury-pillar:hover .swasthamen-gem-holder i {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .swasthamen-pillar-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1rem;
            text-align: center;
        }

        .swasthamen-pillar-text {
            color: #666;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .swasthamen-pillar-signature {
            text-align: center;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            padding-top: 1rem;
        }

        .swasthamen-pillar-signature span {
            font-size: 0.85rem;
            color: #D4AF37;
            font-weight: 600;
            font-style: italic;
        }

        /* Mission Palace */
        .swasthamen-mission-palace {
            background: linear-gradient(135deg,
                    rgba(212, 175, 55, 0.05),
                    rgba(255, 255, 255, 0.95));
            border-radius: 20px;
            padding: 2rem;
            border: 2px solid rgba(212, 175, 55, 0.2);
            box-shadow:
                0 15px 40px rgba(0, 0, 0, 0.08),
                inset 0 1px 3px rgba(255, 255, 255, 0.5);
            position: relative;
            backdrop-filter: blur(10px);
        }

        .swasthamen-palace-seal {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid #ffffff;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }

        .swasthamen-palace-seal i {
            font-size: 1.2rem;
            color: #ffffff;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
        }

        .swasthamen-palace-scroll {
            margin-top: 1rem;
        }

        .swasthamen-decree-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1rem;
            text-align: center;
        }

        .swasthamen-decree-text {
            color: #444;
            line-height: 1.7;
            font-size: 1rem;
            text-align: justify;
        }

        /* Virtues Constellation */
        .swasthamen-virtues-constellation {
            position: relative;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .swasthamen-virtue-star {
            position: absolute;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .swasthamen-virtue-star:nth-child(1) {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .swasthamen-virtue-star:nth-child(2) {
            top: 50%;
            right: 0;
            transform: translateY(-50%);
        }

        .swasthamen-virtue-star:nth-child(3) {
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
        }

        .swasthamen-virtue-star:nth-child(4) {
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .swasthamen-star-core {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.9),
                    rgba(248, 248, 248, 0.95));
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .swasthamen-virtue-star:hover .swasthamen-star-core {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-color: #D4AF37;
            transform: scale(1.1);
        }

        .swasthamen-star-core i {
            font-size: 1.3rem;
            color: #D4AF37;
            transition: all 0.3s ease;
        }

        .swasthamen-virtue-star:hover .swasthamen-star-core i {
            color: #ffffff;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
        }

        .swasthamen-virtue-label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: 0.3px;
        }

        .swasthamen-constellation-crown {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .swasthamen-crown-jewel {
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, #D4AF37, #B8941F);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.5rem;
            box-shadow:
                0 0 30px rgba(212, 175, 55, 0.5),
                inset 0 2px 8px rgba(255, 255, 255, 0.3);
            animation: swasthamen-crown-glow 4s infinite ease-in-out;
        }

        .swasthamen-crown-jewel i {
            font-size: 2rem;
            color: #ffffff;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
        }

        .swasthamen-crown-text {
            font-size: 0.9rem;
            font-weight: 700;
            color: #D4AF37;
            letter-spacing: 0.5px;
        }

        /* Royal Invitation */
        .swasthamen-royal-invitation {
            background: linear-gradient(135deg,
                    rgba(26, 26, 26, 0.95),
                    rgba(42, 42, 42, 0.98));
            border-radius: 20px;
            padding: 2.5rem;
            border: 2px solid #D4AF37;
            box-shadow:
                0 20px 50px rgba(0, 0, 0, 0.3),
                inset 0 1px 3px rgba(212, 175, 55, 0.2);
            position: relative;
            overflow: hidden;
        }

        .swasthamen-royal-invitation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 30%,
                    rgba(212, 175, 55, 0.1),
                    transparent 70%);
        }

        .swasthamen-invitation-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #D4AF37;
            margin-bottom: 1.5rem;
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
            position: relative;
            z-index: 2;
        }

        .swasthamen-imperial-cta {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: linear-gradient(135deg, #D4AF37, #F4D03F, #D4AF37);
            color: #1a1a1a;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow:
                0 8px 25px rgba(212, 175, 55, 0.4),
                inset 0 1px 3px rgba(255, 255, 255, 0.3);
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .swasthamen-imperial-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.3),
                    transparent);
            transition: all 0.6s ease;
        }

        .swasthamen-imperial-cta:hover {
            transform: translateY(-3px);
            box-shadow:
                0 12px 35px rgba(212, 175, 55, 0.6),
                0 0 20px rgba(212, 175, 55, 0.3);
            color: #1a1a1a;
        }

        .swasthamen-imperial-cta:hover::before {
            left: 100%;
        }

        .swasthamen-imperial-cta i {
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .swasthamen-imperial-cta:hover i {
            transform: translateX(5px);
        }

        /* Animations */
        @keyframes swasthamen-mist-flow {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 1;
            }

            50% {
                transform: translateY(-20px) rotate(2deg);
                opacity: 0.8;
            }
        }

        @keyframes swasthamen-sacred-rotation {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes swasthamen-crown-pulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4),
                    inset 0 2px 8px rgba(255, 255, 255, 0.3);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6),
                    inset 0 2px 10px rgba(255, 255, 255, 0.4);
            }
        }

        @keyframes swasthamen-golden-shimmer {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes swasthamen-crown-glow {

            0%,
            100% {
                box-shadow: 0 0 30px rgba(212, 175, 55, 0.5),
                    inset 0 2px 8px rgba(255, 255, 255, 0.3);
            }

            50% {
                box-shadow: 0 0 40px rgba(212, 175, 55, 0.7),
                    inset 0 2px 12px rgba(255, 255, 255, 0.4);
            }
        }

        /* Responsive Design */
        @media (max-width: 991.98px) {
            .swasthamen-luxury-sanctuary {
                padding: 60px 0;
            }

            .swasthamen-sovereign-title {
                font-size: 2.2rem;
            }

            .swasthamen-elite-description {
                font-size: 1.1rem;
            }

            .swasthamen-luxury-pillar {
                padding: 1.5rem;
                margin-bottom: 2rem;
            }

            .swasthamen-virtues-constellation {
                height: 250px;
                margin-top: 2rem;
            }

            .swasthamen-mission-palace {
                margin-bottom: 3rem;
            }
        }

        @media (max-width: 767.98px) {
            .swasthamen-luxury-sanctuary {
                padding: 50px 0;
            }

            .swasthamen-sovereign-title {
                font-size: 1.8rem;
            }

            .swasthamen-elite-description {
                font-size: 1rem;
            }

            .swasthamen-luxury-pillar {
                padding: 1.2rem;
            }

            .swasthamen-gem-holder {
                width: 60px;
                height: 60px;
            }

            .swasthamen-gem-holder i {
                font-size: 1.5rem;
            }

            .swasthamen-pillar-title {
                font-size: 1.2rem;
            }

            .swasthamen-pillar-text {
                font-size: 0.9rem;
            }

            .swasthamen-virtues-constellation {
                height: 200px;
            }

            .swasthamen-star-core {
                width: 50px;
                height: 50px;
            }

            .swasthamen-star-core i {
                font-size: 1.1rem;
            }

            .swasthamen-crown-jewel {
                width: 60px;
                height: 60px;
            }

            .swasthamen-crown-jewel i {
                font-size: 1.5rem;
            }

            .swasthamen-royal-invitation {
                padding: 2rem 1.5rem;
            }

            .swasthamen-invitation-title {
                font-size: 1.5rem;
            }

            .swasthamen-imperial-cta {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .swasthamen-luxury-sanctuary {
                padding: 40px 0;
            }

            .swasthamen-crown-emblem {
                width: 50px;
                height: 50px;
            }

            .swasthamen-crown-emblem i {
                font-size: 1.5rem;
            }

            .swasthamen-heritage-badge {
                font-size: 0.8rem;
                padding: 6px 15px;
            }

            .swasthamen-sovereign-title {
                font-size: 1.6rem;
            }

            .swasthamen-elite-description {
                font-size: 0.95rem;
                padding: 0 1rem;
            }

            .swasthamen-luxury-pillar {
                padding: 1rem;
            }

            .swasthamen-gem-holder {
                width: 50px;
                height: 50px;
            }

            .swasthamen-gem-holder i {
                font-size: 1.3rem;
            }

            .swasthamen-pillar-title {
                font-size: 1.1rem;
            }

            .swasthamen-pillar-text {
                font-size: 0.85rem;
            }

            .swasthamen-mission-palace {
                padding: 1.5rem;
            }

            .swasthamen-decree-title {
                font-size: 1.3rem;
            }

            .swasthamen-decree-text {
                font-size: 0.9rem;
            }

            .swasthamen-virtues-constellation {
                height: 180px;
            }

            .swasthamen-star-core {
                width: 45px;
                height: 45px;
            }

            .swasthamen-star-core i {
                font-size: 1rem;
            }

            .swasthamen-virtue-label {
                font-size: 0.8rem;
            }

            .swasthamen-crown-jewel {
                width: 50px;
                height: 50px;
            }

            .swasthamen-crown-jewel i {
                font-size: 1.3rem;
            }

            .swasthamen-crown-text {
                font-size: 0.8rem;
            }

            .swasthamen-royal-invitation {
                padding: 1.5rem 1rem;
            }

            .swasthamen-invitation-title {
                font-size: 1.3rem;
            }

            .swasthamen-imperial-cta {
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        @media (max-width: 400px) {
            .swasthamen-luxury-sanctuary {
                padding: 30px 0;
            }

            .swasthamen-sovereign-title {
                font-size: 1.4rem;
            }

            .swasthamen-elite-description {
                font-size: 0.9rem;
            }

            .swasthamen-luxury-pillar {
                padding: 0.8rem;
            }

            .swasthamen-pillar-title {
                font-size: 1rem;
            }

            .swasthamen-pillar-text {
                font-size: 0.8rem;
            }

            .swasthamen-mission-palace {
                padding: 1.2rem;
            }

            .swasthamen-decree-title {
                font-size: 1.1rem;
            }

            .swasthamen-decree-text {
                font-size: 0.85rem;
            }

            .swasthamen-virtues-constellation {
                height: 160px;
            }

            .swasthamen-star-core {
                width: 40px;
                height: 40px;
            }

            .swasthamen-crown-jewel {
                width: 45px;
                height: 45px;
            }

            .swasthamen-royal-invitation {
                padding: 1.2rem 0.8rem;
            }

            .swasthamen-invitation-title {
                font-size: 1.1rem;
            }

            .swasthamen-imperial-cta {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
            }
        }

        /* Performance Optimizations */
        .swasthamen-luxury-sanctuary * {
            will-change: transform;
        }

        .swasthamen-golden-mist,
        .swasthamen-sacred-geometry,
        .swasthamen-crown-emblem,
        .swasthamen-virtue-star {
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        /* Print Styles */
        @media print {
            .swasthamen-luxury-sanctuary {
                background: white !important;
                color: black !important;
                padding: 20px 0;
            }

            .swasthamen-ethereal-backdrop,
            .swasthamen-virtues-constellation {
                display: none !important;
            }

            .swasthamen-luxury-pillar,
            .swasthamen-mission-palace,
            .swasthamen-royal-invitation {
                box-shadow: none !important;
                border: 1px solid #ccc !important;
                background: white !important;
                break-inside: avoid;
            }

            .swasthamen-sovereign-title,
            .swasthamen-golden-emphasis {
                color: black !important;
                background: none !important;
                -webkit-text-fill-color: initial !important;
            }
        }
    










        
        /* Advanced CTA Bar Styles */
        .cta-bar {
            position: relative;
            padding: 1rem 0;
            overflow: hidden;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 30%, #2d2d2d 70%, #000000 100%);
            border-top: 3px solid transparent;
            border-image: linear-gradient(90deg, var(--primary-gold), var(--dark-gold), var(--primary-gold)) 1;
            box-shadow:
                0 -2px 20px rgba(212, 175, 55, 0.3),
                0 4px 30px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .cta-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .golden-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(2px 2px at 20% 30%, var(--primary-gold), transparent),
                radial-gradient(2px 2px at 40% 70%, rgba(212, 175, 55, 0.8), transparent),
                radial-gradient(1px 1px at 60% 20%, var(--primary-gold), transparent),
                radial-gradient(1px 1px at 80% 80%, rgba(212, 175, 55, 0.6), transparent),
                radial-gradient(2px 2px at 90% 40%, var(--primary-gold), transparent);
            animation: sparkle 4s linear infinite;
        }

        .wave-animation {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            animation: wave 3s linear infinite;
        }

        .cta-bar-content {
            position: relative;
            z-index: 10;
            max-width: 100%;
        }

        .cta-message {
            flex: 1;
            min-width: 0;
        }

        .power-icon {
            position: relative;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .icon-ring {
            position: absolute;
            width: 45px;
            height: 45px;
            border: 2px solid var(--primary-gold);
            border-radius: 50%;
            animation: rotate 3s linear infinite;
        }

        .icon-ring::before {
            content: '';
            position: absolute;
            top: -2px;
            right: -2px;
            width: 6px;
            height: 6px;
            background: var(--primary-gold);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--primary-gold);
        }

        .power-icon i {
            font-size: 1.2rem;
            color: var(--primary-gold);
            z-index: 2;
            animation: pulse-glow 2s ease-in-out infinite;
        }

        .energy-pulse {
            position: absolute;
            width: 50px;
            height: 50px;
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            animation: energy-pulse 2s ease-out infinite;
        }

        .message-content {
            flex: 1;
        }

        .main-text {
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.2rem;
        }

        .highlight {
            color: var(--pure-white);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .power-word {
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.3rem;
            font-weight: 900;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
            animation: power-glow 3s ease-in-out infinite;
        }

        .sub-text {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            background: rgba(37, 211, 102, 0.2);
            padding: 0.2rem 0.5rem;
            border-radius: 10px;
            border: 1px solid rgba(37, 211, 102, 0.3);
        }

        .live-dot {
            width: 6px;
            height: 6px;
            background: #25d366;
            border-radius: 50%;
            animation: blink 1.5s ease-in-out infinite;
        }

        .live-text {
            font-size: 0.7rem;
            color: #25d366;
            font-weight: 600;
        }

        .action-group {
            display: flex;
            gap: 0.8rem;
            align-items: center;
        }

        .action-btn {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 117px;
            height: 60px;
            text-decoration: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }

        .button-align {
            display: flex;
            justify-content: center;
            gap: 4%;
            align-items: center;
        }

        .btn-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 15px;
            transition: all 0.4s ease;
        }

        .call-btn .btn-bg {
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            border: 1px solid rgba(0, 123, 255, 0.3);
        }

        .whatsapp-btn .btn-bg {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            border: 1px solid rgba(37, 211, 102, 0.3);
        }

        .shop-btn .btn-bg {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .btn-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--pure-white);
        }

        .btn-content i {
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
            display: block;
        }

        .btn-text {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1;
            margin-bottom: 0.1rem;
            white-space: nowrap;
        }

        .btn-subtitle {
            font-size: 0.6rem;
            opacity: 0.9;
            font-weight: 500;
        }

        .btn-glow {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 17px;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .call-btn .btn-glow {
            background: linear-gradient(135deg, rgba(0, 123, 255, 0.6), rgba(0, 86, 179, 0.6));
            box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
        }

        .whatsapp-btn .btn-glow {
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.6), rgba(18, 140, 126, 0.6));
            box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
        }

        .shop-btn .btn-glow {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.6), rgba(184, 148, 31, 0.6));
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
        }

        .featured-badge {
            position: absolute;
            top: 2px;
            right: 8px;
            background: linear-gradient(135deg, #ff4757, #ff3742);
            color: white;
            font-size: 0.6rem;
            font-weight: 900;
            padding: 0.2rem 0.4rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(255, 71, 87, 0.5);
            animation: badge-pulse 2s ease-in-out infinite;
        }

        /* Hover Effects */
        .action-btn:hover {
            transform: translateY(-3px) scale(1.05);
        }

        .action-btn:hover .btn-glow {
            opacity: 1;
        }

        .action-btn:hover .btn-bg {
            transform: scale(1.1);
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 2;
        }

        .floating-leaf {
            position: absolute;
            color: rgba(212, 175, 55, 0.3);
            font-size: 0.8rem;
            animation: float-leaf 6s ease-in-out infinite;
        }

        .leaf-1 {
            top: 20%;
            left: 15%;
            animation-delay: 0s;
        }

        .leaf-2 {
            top: 60%;
            right: 20%;
            animation-delay: 2s;
        }

        .leaf-3 {
            bottom: 30%;
            left: 70%;
            animation-delay: 4s;
        }

        /* Animations */
        @keyframes sparkle {

            0%,
            100% {
                opacity: 0.3;
            }

            50% {
                opacity: 1;
            }
        }

        @keyframes wave {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(0%);
            }
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse-glow {

            0%,
            100% {
                text-shadow: 0 0 5px var(--primary-gold);
            }

            50% {
                text-shadow: 0 0 20px var(--primary-gold), 0 0 30px var(--primary-gold);
            }
        }

        @keyframes energy-pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        @keyframes power-glow {

            0%,
            100% {
                text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
            }

            50% {
                text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.6);
            }
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }

        @keyframes badge-pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        @keyframes float-leaf {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            33% {
                transform: translateY(-10px) rotate(120deg);
            }

            66% {
                transform: translateY(5px) rotate(240deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 991.98px) {
            .cta-bar {
                padding: 0.8rem 0;
            }

            .power-icon {
                width: 40px;
                height: 40px;
            }

            .icon-ring {
                width: 35px;
                height: 35px;
            }

            .main-text {
                font-size: 1rem;
            }

            .power-word {
                font-size: 1.1rem;
            }

            .action-btn {
                width: 110px;
                height: 55px;
            }

            .action-group {
                gap: 0.6rem;
            }
        }

        @media (max-width: 767.98px) {
            .cta-bar {
                padding: 0.7rem 0;
            }

            .cta-bar-content {
                flex-direction: column;
                gap: 0.8rem;
                text-align: center;
            }

            .cta-message {
                justify-content: center;
            }

            .live-indicator {
                margin-top: 0.3rem;
            }

            .action-btn {
                width: 110px;
                height: 50px;
            }

            .btn-text {
                font-size: 0.65rem;
            }

            .btn-subtitle {
                font-size: 0.55rem;
            }
        }

        @media (max-width: 576px) {
            .power-icon {
                width: 35px;
                height: 35px;
            }

            .main-text {
                font-size: 0.9rem;
            }

            .power-word {
                font-size: 1rem;
            }

            .sub-text {
                font-size: 0.75rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .action-btn {
                width: 110px;
                height: 45px;
            }

            .action-group {
                gap: 0.5rem;
            }

            .floating-leaf {
                display: none;
            }
        }

        @media (max-width: 400px) {
            .cta-bar {
                padding: 0.6rem 0;
            }

            .action-btn {
                width: 110px;
                height: 42px;
            }

            .btn-content i {
                font-size: 1rem;
            }

            .btn-text {
                font-size: 0.6rem;
            }

            .btn-subtitle {
                display: none;
            }

            .featured-badge {
                font-size: 0.5rem;
                padding: 0.1rem 0.3rem;
            }
        }
    





/* Products Section Styles */
.products-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #ffffff 60%, #f8f9fa 30%, rgba(212, 175, 55, 0.05) 10%);
}

.section-title {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.title-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    margin: 0 auto;
    border-radius: 1px;
}

/* Product Cards */
.product-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

/* Product Images */
.product-image {
    position: relative;
    height: 280px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(212, 175, 55, 0.1));
    transition: all 0.3s ease;
}

.product-card:hover .image-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(212, 175, 55, 0.2));
}

/* Badges */
.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    animation: pulse 2s infinite;
}

.premium-badge {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    color: #D4AF37;
}

.bestseller-badge {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: white;
}

.new-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.advanced-badge {
    background: linear-gradient(135deg, #6f42c1, #7c63c4);
    color: white;
}

/* Product Content */
.product-title {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
     height: 50px; 
}

.product-description {
    color: #666;
    
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  
     min-height: 60px;  
     overflow: hidden; 
    display: -webkit-box;
    -webkit-line-clamp: 3; /* max 3 lines dikhana */
    -webkit-box-orient: vertical;
}

.price-rating-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.current-price {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: bold;
}

.original-price {
    color: #999;
    font-size: 0.8rem;
    text-decoration: line-through;
    margin-left: 0.25rem;
}

.rating i {
    color: #D4AF37;
    font-size: 0.8rem;
}

/* Buttons */
.add-to-cart-btn {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    transform: translateY(-1px);
    color: white;
}

.cta-primary {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-2px);
    color: white;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-image {
        height: 200px;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .product-image {
        height: 180px;
    }
}

/* Cart notification */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}





/* Why Choose Us Section Styles */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #B8941F, #D4AF37) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
    }
    
    .feature-card {
        padding: 1.5rem !important;
    }
    
    .feature-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .feature-icon i {
        font-size: 1.5rem !important;
    }
    
    .cta-wrapper {
        padding: 1.5rem !important;
    }
    
    .cta-wrapper h4 {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .feature-card {
        padding: 1.2rem !important;
    }
    
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .feature-icon i {
        font-size: 1.3rem !important;
    }
    
    .feature-title {
        font-size: 1rem !important;
    }
    
    .feature-description {
        font-size: 0.85rem !important;
    }
    
    .btn-premium {
        padding: 10px 25px !important;
        font-size: 0.9rem !important;
    }
}

/* Animation for section reveal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }





.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-pill:hover {
    transform: translateY(-2px);
}

.value-pill:nth-child(odd):hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.value-pill:nth-child(even):hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-card, .mission-card {
        padding: 2rem !important;
    }
    
    .vision-card h3, .mission-card h3 {
        font-size: 1.3rem !important;
    }
    
    .vision-card p, .mission-card p {
        font-size: 0.95rem !important;
    }
    
    .value-pill {
        font-size: 0.85rem !important;
        padding: 0.5rem 1rem !important;
    }
}

@media (max-width: 576px) {
    .vision-card, .mission-card {
        padding: 1.5rem !important;
        margin-bottom: 2rem;
    }
    
    .icon-wrapper {
        width: 50px !important;
        height: 50px !important;
    }
    
    .icon-wrapper i {
        font-size: 1.2rem !important;
    }
    
    .value-pill {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
        margin-bottom: 0.5rem;
    }
}




:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8941F;
    --pure-black: #000000;
    --soft-black: #1a1a1a;
    --pure-white: #ffffff;
    --light-gray: #f8f9fa;
    --accent-gray: #e9ecef;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--pure-white) 60%, var(--light-gray) 30%, rgba(212, 175, 55, 0.05) 10%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    pointer-events: none;
}

/* Section Header */
.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--pure-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--soft-black);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card.featured {
    border: 2px solid var(--primary-gold);
    background: linear-gradient(135deg, var(--pure-white) 95%, rgba(212, 175, 55, 0.02) 5%);
}

.testimonial-card.featured::before {
    transform: scaleX(1);
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.rating-stars i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    opacity: 0.3;
}

/* Testimonial Content */
.testimonial-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--soft-black);
    margin: 0;
    font-style: italic;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info {
    flex: 1;
}

.author-info h6 {
    margin: 0 0 0.2rem 0;
    color: var(--soft-black);
    font-weight: 600;
}

.author-info span {
    color: #666;
    font-size: 0.85rem;
}

.verified-badge {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* Trust Container */
.trust-container {
    background: var(--pure-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.trust-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 98%, rgba(212, 175, 55, 0.05) 2%);
    pointer-events: none;
}

.trust-item {
    padding: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1);
    color: var(--dark-gold);
}

.trust-label {
    color: var(--soft-black);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .trust-icon {
        font-size: 2rem;
    }
    
    .trust-container {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .trust-icon {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .trust-label {
        font-size: 0.85rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.4s;
}





    :root {
        --primary-gold: #D4AF37;
        --dark-gold: #B8941F;
        --pure-black: #000000;
        --soft-black: #1a1a1a;
        --pure-white: #ffffff;
        --light-gray: #f8f9fa;
    }

    .certification-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, var(--pure-white) 60%, var(--light-gray) 30%, rgba(212, 175, 55, 0.05) 10%);
    }

    .badge-text {
        background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
        color: var(--pure-white);
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .section-title {
        color: var(--soft-black);
        font-weight: 700;
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .text-gold {
        color: var(--primary-gold);
    }

    .section-description {
        color: #666;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .cert-card {
        background: var(--pure-white);
        border-radius: 20px;
        padding: 2rem 1.5rem;
        text-align: center;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(212, 175, 55, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .cert-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    }

    .cert-logo {
        width: 120px;
        height: 80px;
        margin: 0 auto;
        background: var(--light-gray);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid rgba(212, 175, 55, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .cert-card:hover .cert-logo {
        transform: scale(1.05);
        border-color: var(--primary-gold);
    }

    .cert-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
    }

    .cert-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: pulse 2s infinite;
    }

    .cert-badge i {
        font-size: 0.6rem;
        color: var(--pure-white);
    }

    .cert-title {
        color: var(--soft-black);
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .cert-description {
        color: #666;
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0;
    }

    .trust-section {
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .trust-title {
        color: var(--soft-black);
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .trust-description {
        color: #666;
        font-size: 1rem;
        max-width: 500px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .feature-item {
        display: flex;
        align-items: center;
    }

    .feature-item span {
        color: #666;
        font-size: 0.9rem;
    }

    .feature-dot {
        width: 8px;
        height: 8px;
        background: var(--primary-gold);
        border-radius: 50%;
        margin-right: 8px;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }

    /* Responsive Design */
    @media (max-width: 767.98px) {
        .certification-section {
            padding: 3rem 0;
        }

        .section-title {
            font-size: 1.8rem;
        }
        
        .cert-card {
            padding: 1.5rem 1rem;
        }
        
        .cert-logo {
            width: 100px;
            height: 70px;
        }
        
        .trust-features .d-flex {
            flex-direction: column;
            gap: 1rem;
        }
    }

    @media (max-width: 575.98px) {
        .certification-section {
            padding: 2.5rem 0;
        }
        
        .section-title {
            font-size: 1.6rem;
        }
        
        .cert-card {
            padding: 1.2rem 0.8rem;
        }
        
        .cert-logo {
            width: 90px;
            height: 60px;
        }
    }



 
/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: var(--pure-white);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 60%, rgba(212, 175, 55, 0.05) 30%, transparent 10%);
    z-index: 1;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--soft-black);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.title-divider::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
}

/* Accordion Styles */
.accordion {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    background: var(--pure-white);
    transition: all 0.3s ease;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-item:hover {
    background: rgba(248, 249, 250, 0.5);
    transform: translateX(2px);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--soft-black);
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    color: var(--dark-gold);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4AF37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.2rem;
    height: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-button i {
    color: var(--primary-gold);
    font-size: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) i {
    opacity: 1;
    transform: scale(1.1);
}

.accordion-body {
    padding: 1.5rem 2rem 2rem;
    background: var(--pure-white);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.accordion-body p {
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

/* CTA Button */
.faq-cta-btn {
    background: linear-gradient(135deg, var(--pure-black), var(--soft-black));
    color: var(--pure-white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
    color: var(--pure-white);
}

.faq-cta-btn i {
    transition: transform 0.3s ease;
}

.faq-cta-btn:hover i {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .accordion-button {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.2rem 1.5rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .accordion-button {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .accordion-button i {
        margin-bottom: 0.5rem;
        margin-right: 0 !important;
    }
    
    .accordion-body {
        padding: 1rem 1.2rem 1.2rem;
    }
    
    .accordion-body p {
        font-size: 0.95rem;
    }
    
    .faq-cta-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
    
    .accordion-body p {
        font-size: 0.9rem;
    }
    
    .faq-cta-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Smooth animations */
.accordion-collapse {
    transition: all 0.3s ease-in-out;
}

/* Hover effects for better interactivity */
.accordion-item:hover .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
}

.accordion-item:hover .accordion-button.collapsed {
    background: rgba(248, 249, 250, 0.8);
    color: var(--primary-gold);
}
