        /* ============================================================
           CSS CUSTOM PROPERTIES â€” DESIGN TOKENS
           Oru edathula maatnaa ella edathulaiyum maarum!
        ============================================================ */
        :root {
            /* ===== PRIMARY BRAND COLOR (Orange) ===== */
            --primary:              #a10353;
            --primary-light:        #ee85b2;
            --primary-lighter:      #ed6ea7;
            --primary-dark:         #8d0f50;
            --primary-rgb:          255, 107, 74;
            --primary-rgb-light:    255, 176, 124;

            /* ===== TEXT COLORS ===== */
            --text-dark:            #2d2a24;
            --text-medium:          #4a3f38;
            --text-light:           #5a4f47;
            --text-dark-rgb:        45, 42, 36;
            --text-medium-rgb:      74, 63, 56;

            /* ===== BACKGROUND COLORS ===== */
            --bg-base:              #f5f0eb;
            --bg-white:             #fffcf9;
            --bg-light:             #fff9f5;
            --bg-warm:              #fefcf9;
        }
        /* ----- RESET & BASE ----- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
        }

        body {
            background: var(--bg-base);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* ----- MARQUEE ----- */
        .marquee-wrap {
            background: linear-gradient(135deg, var(--bg-warm), #f5ede7);
            padding: 5px 0;
            border-bottom: 3px solid var(--primary);
            box-shadow: 0 4px 30px rgba(var(--primary-rgb), 0.08);
            position: relative;
            overflow: hidden;
        }

        .marquee-wrap::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(45deg,
                    transparent,
                    transparent 10px,
                    rgba(var(--primary-rgb), 0.02) 10px,
                    rgba(var(--primary-rgb), 0.02) 20px);
            pointer-events: none;
        }

        .marquee-content {
            display: flex;
            gap: 80px;
            white-space: nowrap;
            animation: scrollMarquee 22s linear infinite;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: var(--text-medium);
        }

        .marquee-content i {
            color: var(--primary);
            margin: 0 12px;
            animation: pulseIcon 1.8s ease-in-out infinite;
        }

        .marquee-content span {
            background: rgba(var(--primary-rgb), 0.08);
            padding: 0 24px;
            border-radius: 40px;
            border: 2px solid rgba(var(--primary-rgb), 0.12);
        }

        @keyframes scrollMarquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes pulseIcon {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.6;
            }

            50% {
                transform: scale(1.3);
                opacity: 1;
            }
        }

        /* ====== NAVBAR ====== */
        nav {
            background: var(--bg-white);
            padding: 8px 48px; /* Reduced padding to decrease navbar height */
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid rgba(var(--primary-rgb), 0.10);
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
        }

        nav.scrolled {
            background: var(--bg-white);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border-bottom: 2px solid rgba(var(--primary-rgb), 0.15);
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: transform 0.3s ease;
            text-decoration: none;
        }

        .logo img {
            height: 100px; /* Increased image size */
            margin-top: -30px; /* Negative margins to prevent navbar height from increasing */
            margin-bottom: -40px;
            width: auto;
            object-fit: contain;
            transition: all 0.3s ease;
            filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
            position: relative;
            z-index: 10;
        }

        .logo:hover {
            transform: scale(1.02);
        }

        .logo:hover img {
            filter: drop-shadow(0 6px 15px rgba(var(--primary-rgb), 0.2));
        }

        .logo i {
            color: var(--primary);
            font-size: 2rem;
            text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.15);
            animation: logoGlow 3s ease-in-out infinite;
        }

        @keyframes logoGlow {
            0%,
            100% {
                text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.15);
            }
            50% {
                text-shadow: 0 0 40px rgba(var(--primary-rgb), 0.3);
            }
        }

        .nav-links {
            display: flex;
            gap: 8px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 1rem;
            font-weight: 500;
            padding: 12px 22px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            background: transparent;
            letter-spacing: 0.3px;
            border: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
            transform: scaleX(0);
            transform-origin: right center;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .nav-links a:hover::before {
            transform: scaleX(1);
            transform-origin: left center;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            inset: 4px;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06), rgba(var(--primary-rgb-light), 0.03));
            border-radius: 20px;
            opacity: 0;
            transform: scale(0.9) rotate(-2deg);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: -1;
        }

        .nav-links a:hover::after {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        .nav-links a i {
            color: var(--primary);
            font-size: 1.1rem;
            transition: all 0.4s ease;
            opacity: 0.6;
        }

        .nav-links a:hover i {
            opacity: 1;
            transform: translateY(-2px) rotate(8deg);
            color: var(--primary-dark);
        }

        .nav-links a.active {
            color: var(--primary);
            font-weight: 700;
            background: rgba(var(--primary-rgb), 0.10);
            border-radius: 30px;
        }

        .nav-links a.active i {
            opacity: 1;
            color: var(--primary);
        }

        .nav-links a.active::before {
            transform: scaleX(1);
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
            color: #fff !important;
            border: 2px solid var(--primary) !important;
            padding: 12px 32px !important;
            border-radius: 40px !important;
            font-weight: 700 !important;
            box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.15);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
        }

        .nav-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .nav-cta:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 35px rgba(var(--primary-rgb), 0.25);
        }

        .nav-cta:hover::before {
            opacity: 1;
        }

        .nav-cta i {
            color: #fff !important;
            opacity: 1 !important;
            margin-right: 8px;
        }

        .nav-cta:hover i {
            transform: rotate(8deg) !important;
        }

        .particle {
            display: none;
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
            animation: particleFloat 1.5s ease-out forwards;
            pointer-events: none;
        }

        @keyframes particleFloat {
            0% {
                opacity: 1;
                transform: translate(0, 0) scale(1);
            }

            100% {
                opacity: 0;
                transform: translate(var(--tx), var(--ty)) scale(0);
            }
        }

        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--text-medium);
            cursor: pointer;
            background: rgba(var(--primary-rgb), 0.06);
            padding: 8px 16px;
            border-radius: 30px;
            border: 2px solid rgba(var(--primary-rgb), 0.08);
            transition: all 0.3s ease;
        }

        .hamburger:hover {
            background: rgba(var(--primary-rgb), 0.12);
            transform: rotate(90deg);
        }

        .nav-links.open {
            display: flex;
            flex-direction: column;
            padding: 24px 20px;
            gap: 4px;
            background: var(--bg-white);
            border-radius: 30px;
            margin-top: 16px;
            border: 2px solid rgba(var(--primary-rgb), 0.10);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }

        .nav-links.open a {
            width: 100%;
            justify-content: center;
            padding: 14px 20px;
            border-radius: 20px;
        }

        .nav-links.open a:hover {
            background: rgba(var(--primary-rgb), 0.06);
        }

        /* ====== SLIDER ====== */
        .slider-section {
            padding: 0;
            max-width: 100%;
            margin: 0;
        }

        .slider-container {
            position: relative;
            border-radius: 0;
            overflow: hidden;
            background: var(--bg-light);
            transition: 0.3s ease;
            border: none;
            width: auto;
            height: calc(900px - 119px); /* Adjusting for navbar height */
        }

        .slider-container:hover {
            /* Removing hover effect for full width slider */
        }

        .slider-track {
            display: flex;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            will-change: transform;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            padding: 40px;
            background-blend-mode: overlay;
            /* background-color: rgba(0, 0, 0, 0.1); */
        }

        .slide::before {
            display: none;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            background: rgba(255, 252, 249, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 28px 40px;
            border-radius: 40px 12px 40px 12px;
            border-left: 4px solid var(--primary);
            max-width: 600px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
            animation: slideFade 0.7s ease;
        }

        @keyframes slideFade {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.96);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .slide-content h2 {
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--text-dark), var(--text-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .slide-content p {
            color: var(--text-medium);
            font-size: 1rem;
            line-height: 1.6;
            -webkit-text-fill-color: var(--text-medium);
        }

        .slide-content .tag {
            display: inline-block;
            background: rgba(var(--primary-rgb), 0.08);
            padding: 4px 18px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--primary);
            border: 2px solid rgba(var(--primary-rgb), 0.08);
            margin-top: 12px;
        }

        .slider-controls {
            position: absolute;
            bottom: 30px;
            right: 30px;
            display: flex;
            gap: 16px;
            z-index: 10;
        }

        .slider-btn {
            background: rgba(255, 252, 249, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 2px solid rgba(var(--primary-rgb), 0.08);
            color: var(--text-medium);
            width: 52px;
            height: 52px;
            border-radius: 30px;
            font-size: 1.4rem;
            cursor: pointer;
            transition: 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
        }

        .slider-btn:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            transform: scale(1.08);
            box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.15);
        }

        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 40px;
            display: flex;
            gap: 18px;
            z-index: 10;
        }

        .dot {
            width: 30px;
            height: 8px;
            background: rgba(var(--text-dark-rgb), 0.12);
            border-radius: 20px;
            cursor: pointer;
            transition: 0.4s ease;
            border: 2px solid rgba(var(--primary-rgb), 0.06);
        }

        .dot.active {
            background: var(--primary);
            width: 52px;
            box-shadow: 0 0 24px rgba(var(--primary-rgb), 0.15);
            border-color: var(--primary);
        }

        .dot:hover {
            background: rgba(var(--primary-rgb), 0.25);
            border-color: var(--primary);
        }

        /* ====== WELCOME SECTION ====== */
        .welcome-section {
            padding: 80px 40px 100px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .welcome-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: floatBg 20s ease-in-out infinite;
        }

        .welcome-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(var(--primary-rgb-light), 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: floatBg 25s ease-in-out infinite reverse;
        }

        .welcome-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(var(--primary-rgb), 0.05);
            border-radius: 50%;
            animation: floatParticle 18s ease-in-out infinite;
            z-index: 1;
        }

        .welcome-particle:nth-child(1) {
            top: 15%;
            left: 8%;
            animation-delay: 0s;
            width: 12px;
            height: 12px;
        }

        .welcome-particle:nth-child(2) {
            top: 25%;
            right: 10%;
            animation-delay: 3s;
        }

        .welcome-particle:nth-child(3) {
            bottom: 20%;
            left: 5%;
            animation-delay: 6s;
            width: 15px;
            height: 15px;
        }

        .welcome-particle:nth-child(4) {
            bottom: 10%;
            right: 8%;
            animation-delay: 9s;
        }

        .welcome-particle:nth-child(5) {
            top: 50%;
            left: 50%;
            animation-delay: 12s;
            width: 10px;
            height: 10px;
        }

        .welcome-particle:nth-child(6) {
            top: 60%;
            right: 20%;
            animation-delay: 15s;
        }

        @keyframes floatParticle {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: 0.2;
            }

            25% {
                transform: translate(40px, -50px) scale(1.4);
                opacity: 0.6;
            }

            50% {
                transform: translate(-30px, -90px) scale(0.8);
                opacity: 0.3;
            }

            75% {
                transform: translate(50px, -40px) scale(1.6);
                opacity: 0.7;
            }

            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.2;
            }
        }

        @keyframes floatBg {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(30px, -30px) scale(1.1);
            }

            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        .welcome-container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .welcome-content {
            animation: welcomeSlideIn 1s ease;
        }

        @keyframes welcomeSlideIn {
            0% {
                opacity: 0;
                transform: translateX(-80px) scale(0.95);
            }

            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .welcome-badge {
            display: inline-block;
            background: rgba(var(--primary-rgb), 0.08);
            padding: 8px 24px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--primary);
            border: 2px solid rgba(var(--primary-rgb), 0.1);
            margin-bottom: 20px;
            animation: badgePulse 2s ease-in-out infinite;
        }

        @keyframes badgePulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.08);
            }
        }

        .welcome-content h1 {
            font-size: 3.8rem;
            font-weight: 900;
            line-height: 1.05;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--text-dark), var(--text-light), var(--primary), var(--primary-lighter));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 5s ease-in-out infinite;
            background-size: 300% 300%;
            letter-spacing: -1px;
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .welcome-content h1 .welcome-highlight {
            display: inline-block;
            position: relative;
            -webkit-text-fill-color: var(--primary);
            animation: textGlow 2s ease-in-out infinite alternate;
        }

        @keyframes textGlow {
            0% {
                text-shadow: 0 0 20px rgba(var(--primary-rgb), 0);
            }

            100% {
                text-shadow: 0 0 40px rgba(var(--primary-rgb), 0.15);
            }
        }

        .welcome-content h1 .welcome-highlight::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-lighter), var(--primary));
            border-radius: 10px;
            animation: underlineWave 2.5s ease-in-out infinite;
            background-size: 200% 100%;
        }

        @keyframes underlineWave {

            0%,
            100% {
                transform: scaleX(1);
                background-position: 0% 50%;
            }

            50% {
                transform: scaleX(0.8);
                background-position: 100% 50%;
            }
        }

        .welcome-content .welcome-desc {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 25px;
            max-width: 520px;
            animation: fadeInUp 1.2s ease;
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .welcome-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 35px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 20px;
            background: rgba(255, 252, 249, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 30px 8px 30px 8px;
            border: 2px solid rgba(var(--primary-rgb), 0.08);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: default;
            position: relative;
            overflow: hidden;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.04), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .feature-item:hover {
            transform: translateX(10px) scale(1.02);
            background: rgba(var(--primary-rgb), 0.08);
            border-color: rgba(var(--primary-rgb), 0.15);
            box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.06);
        }

        .feature-item:hover::before {
            opacity: 1;
        }

        .feature-item i {
            color: var(--primary);
            font-size: 1.2rem;
            animation: iconSpin 8s linear infinite;
            transition: all 0.5s ease;
        }

        .feature-item:hover i {
            animation: iconBounce 0.6s ease;
        }

        @keyframes iconBounce {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.3) rotate(10deg);
            }
        }

        @keyframes iconSpin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .feature-item span {
            color: var(--text-medium);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .welcome-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 45px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            border: none;
            border-radius: 40px 8px 40px 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 4px 30px rgba(var(--primary-rgb), 0.15);
            position: relative;
            overflow: hidden;
        }

        .welcome-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .welcome-btn:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 12px 50px rgba(var(--primary-rgb), 0.25);
        }

        .welcome-btn:hover::before {
            opacity: 1;
        }

        .welcome-btn i {
            position: relative;
            z-index: 2;
            animation: btnArrow 1.8s ease-in-out infinite;
        }

        .welcome-btn span {
            position: relative;
            z-index: 2;
        }

        @keyframes btnArrow {

            0%,
            100% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(8px);
            }
        }

        .welcome-visual {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            animation: welcomeSlideInRight 1s ease;
        }

        @keyframes welcomeSlideInRight {
            0% {
                opacity: 0;
                transform: translateX(80px) scale(0.95);
            }

            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .welcome-card {
            padding: 30px 24px;
            background: rgba(255, 252, 249, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 40px 12px 40px 12px;
            border: 2px solid rgba(var(--primary-rgb), 0.08);
            text-align: center;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: default;
            position: relative;
            overflow: hidden;
        }

        .welcome-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.04), rgba(var(--primary-rgb-light), 0.02));
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .welcome-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 25px 70px rgba(var(--primary-rgb), 0.08);
            border-color: rgba(var(--primary-rgb), 0.15);
        }

        .welcome-card:hover::before {
            opacity: 1;
        }

        .welcome-card .card-icon {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 12px;
            display: block;
            animation: cardIconFloat 3.5s ease-in-out infinite;
            transition: all 0.5s ease;
        }

        .welcome-card:hover .card-icon {
            animation: cardIconBounce 0.6s ease;
        }

        @keyframes cardIconBounce {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.2) rotate(-5deg);
            }
        }

        @keyframes cardIconFloat {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-12px) rotate(6deg);
            }
        }

        .welcome-card:nth-child(2) .card-icon {
            animation-delay: 0.5s;
        }

        .welcome-card:nth-child(3) .card-icon {
            animation-delay: 1s;
        }

        .welcome-card:nth-child(4) .card-icon {
            animation-delay: 1.5s;
        }

        .welcome-card h3 {
            font-size: 1.15rem;
            color: var(--text-dark);
            margin-bottom: 6px;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .welcome-card:hover h3 {
            color: var(--primary);
        }

        .welcome-card p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        .welcome-card .card-number {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 2.5rem;
            font-weight: 900;
            color: rgba(var(--primary-rgb), 0.06);
            font-family: 'Georgia', serif;
            transition: all 0.5s ease;
        }

        .welcome-card:hover .card-number {
            color: rgba(var(--primary-rgb), 0.12);
            transform: scale(1.2);
        }

        .welcome-card:nth-child(1) {
            grid-column: 1 / 2;
        }

        .welcome-card:nth-child(2) {
            grid-column: 2 / 3;
        }

        .welcome-card:nth-child(3) {
            grid-column: 1 / 2;
        }

        .welcome-card:nth-child(4) {
            grid-column: 2 / 3;
        }

        /* ====== WHY CHOOSE US ====== */
        .why-choose-section {
            padding: 100px 40px 120px;
            position: relative;
            background-attachment: fixed;
            /*background-image: url('assets/images/about_us.jpg');*/
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .why-choose-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(248, 244, 240, 0.88), rgba(255, 252, 249, 0.5));
            z-index: 1;
        }

        .why-choose-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(45deg,
                    transparent,
                    transparent 20px,
                    rgba(var(--primary-rgb), 0.02) 20px,
                    rgba(var(--primary-rgb), 0.02) 40px);
            z-index: 1;
            pointer-events: none;
        }

        .why-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .why-choose-section .floating-particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(var(--primary-rgb), 0.06);
            border-radius: 50%;
            animation: floatParticle 15s linear infinite;
            z-index: 1;
        }

        .why-choose-section .floating-particle:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .why-choose-section .floating-particle:nth-child(2) {
            top: 20%;
            right: 8%;
            animation-delay: 3s;
            width: 8px;
            height: 8px;
        }

        .why-choose-section .floating-particle:nth-child(3) {
            bottom: 30%;
            left: 3%;
            animation-delay: 6s;
        }

        .why-choose-section .floating-particle:nth-child(4) {
            bottom: 15%;
            right: 5%;
            animation-delay: 9s;
            width: 10px;
            height: 10px;
        }

        .why-choose-section .floating-particle:nth-child(5) {
            top: 50%;
            left: 50%;
            animation-delay: 12s;
            width: 5px;
            height: 5px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeUp 0.8s ease;
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(40px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-header .badge {
            display: inline-block;
            background: rgba(var(--primary-rgb), 0.08);
            padding: 8px 28px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--primary);
            border: 2px solid rgba(var(--primary-rgb), 0.08);
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 12px;
            background: linear-gradient(135deg, var(--text-dark), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 20px;
        }

        .why-card {
            background: rgba(255, 252, 249, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 40px 30px 35px;
            border-radius: 50px 16px 50px 16px;
            border: 2px solid rgba(var(--primary-rgb), 0.12);
            text-align: center;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            cursor: default;
            opacity: 0;
            transform: translateY(60px);
            animation: cardReveal 0.8s ease forwards;
        }

        .why-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .why-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .why-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .why-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        @keyframes cardReveal {
            0% {
                opacity: 0;
                transform: translateY(60px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }



        .why-card:hover::before {
            opacity: 0.4;
            animation: borderRotate 3s linear infinite;
        }

        @keyframes borderRotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .why-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50px 16px 50px 16px;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.04), rgba(var(--primary-rgb-light), 0.02));
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .why-card:hover::after {
            opacity: 1;
        }

        .why-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 70px rgba(var(--primary-rgb), 0.1);
            border-color: rgba(var(--primary-rgb), 0.2);
        }

        .why-icon-wrap {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--primary-rgb-light), 0.04));
            border-radius: 30px 8px 30px 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            border: 2px solid rgba(var(--primary-rgb), 0.08);
        }

        .why-card:hover .why-icon-wrap {
            transform: rotate(-8deg) scale(1.05);
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(var(--primary-rgb-light), 0.06));
            border-color: rgba(var(--primary-rgb), 0.12);
        }

        .why-icon-wrap i {
            font-size: 2.5rem;
            color: var(--primary);
            transition: all 0.5s ease;
        }

        .why-card:hover .why-icon-wrap i {
            transform: scale(1.1) rotate(8deg);
            color: var(--primary-dark);
        }

        .why-number {
            position: absolute;
            top: 12px;
            right: 18px;
            font-size: 3rem;
            font-weight: 900;
            color: rgba(var(--primary-rgb), 0.06);
            font-family: 'Georgia', serif;
            transition: all 0.5s ease;
            line-height: 1;
        }

        .why-card:hover .why-number {
            color: rgba(var(--primary-rgb), 0.12);
            transform: scale(1.1);
        }

        .why-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .why-card:hover h3 {
            color: var(--primary);
        }

        .why-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 18px;
        }

.why-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary, #ff6b4a);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 999;
    pointer-events: auto !important;
    cursor: pointer !important;
    background: transparent;
    border: none;
    padding: 5px 0;
}

.why-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary, #ff6b4a), var(--primary-lighter, #ffb07c));
    transition: width 0.4s ease;
}

.why-link:hover::after {
    width: 100%;
}

.why-link i {
    transition: transform 0.4s ease;
}

.why-link:hover i {
    transform: translateX(6px);
}

/* Make sure parent doesn't block clicks */
.why-card {
    position: relative;
    pointer-events: auto !important;
}

/* Check if any parent has pointer-events: none */
.why-card * {
    pointer-events: auto !important;
}

        .why-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
            padding-top: 50px;
            border-top: 2px solid rgba(var(--primary-rgb), 0.08);
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(255, 252, 249, 0.7);
            backdrop-filter: blur(8px);
            border-radius: 40px 8px 40px 8px;
            border: 2px solid rgba(var(--primary-rgb), 0.06);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0;
            transform: scale(0.8);
            animation: statReveal 0.8s ease forwards;
        }

        .stat-item:nth-child(1) {
            animation-delay: 0.5s;
        }

        .stat-item:nth-child(2) {
            animation-delay: 0.6s;
        }

        .stat-item:nth-child(3) {
            animation-delay: 0.7s;
        }

        .stat-item:nth-child(4) {
            animation-delay: 0.8s;
        }

        @keyframes statReveal {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .stat-item:hover {
            transform: translateY(-6px);
            background: rgba(255, 252, 249, 0.85);
            border-color: rgba(var(--primary-rgb), 0.12);
            box-shadow: 0 10px 40px rgba(var(--primary-rgb), 0.06);
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--primary-lighter));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            line-height: 1.2;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 0.95rem;
            font-weight: 500;
            margin-top: 4px;
        }

        /* ====== ABOUT US ====== */
        .about-section {
            padding: 100px 40px 20px;
            background: linear-gradient(180deg, var(--bg-warm), #f8f4f0);
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -15%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.02) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatBg 24s ease-in-out infinite;
        }

        .about-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(var(--primary-rgb-light), 0.02) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatBg 20s ease-in-out infinite reverse;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 20px;
        }

        .about-content {
            animation: aboutSlideLeft 1s ease;
        }

        @keyframes aboutSlideLeft {
            0% {
                opacity: 0;
                transform: translateX(-80px);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .about-content .about-badge {
            display: inline-block;
            background: rgba(var(--primary-rgb), 0.08);
            padding: 8px 28px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--primary);
            border: 2px solid rgba(var(--primary-rgb), 0.08);
            margin-bottom: 20px;
            animation: badgePulse 2s ease-in-out infinite;
        }

        .about-content h2 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--text-dark), var(--text-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-content h2 .about-highlight {
            display: inline-block;
            position: relative;
            -webkit-text-fill-color: var(--primary);
        }

        .about-content h2 .about-highlight::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
            border-radius: 10px;
            animation: underlineWave 2s ease-in-out infinite;
        }

        .about-content .about-desc {
            font-size: 1.05rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .about-content .about-desc strong {
            color: var(--primary);
        }

        .about-features-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin: 25px 0 30px;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            background: rgba(255, 252, 249, 0.7);
            backdrop-filter: blur(8px);
            border-radius: 30px 8px 30px 8px;
            border: 2px solid rgba(var(--primary-rgb), 0.06);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: default;
        }

        .about-feature-item:hover {
            transform: translateX(6px) scale(1.02);
            background: rgba(var(--primary-rgb), 0.08);
            border-color: rgba(var(--primary-rgb), 0.12);
            box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.06);
        }

        .about-feature-item .af-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--primary-rgb-light), 0.04));
            border-radius: 12px 3px 12px 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s ease;
            border: 2px solid rgba(var(--primary-rgb), 0.06);
        }

        .about-feature-item:hover .af-icon {
            transform: rotate(-6deg) scale(1.05);
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(var(--primary-rgb-light), 0.06));
            border-color: rgba(var(--primary-rgb), 0.1);
        }

        .about-feature-item .af-icon i {
            color: var(--primary);
            font-size: 1rem;
        }

        .about-feature-item span {
            color: var(--text-medium);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .about-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 40px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            border: none;
            border-radius: 40px 8px 40px 8px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 4px 25px rgba(var(--primary-rgb), 0.15);
            position: relative;
            overflow: hidden;
        }

        .about-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .about-btn:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 8px 40px rgba(var(--primary-rgb), 0.25);
        }

        .about-btn:hover::before {
            opacity: 1;
        }

        .about-btn i {
            position: relative;
            z-index: 2;
            animation: btnArrow 1.5s ease-in-out infinite;
        }

        .about-btn span {
            position: relative;
            z-index: 2;
        }

        .about-image-full {
            animation: aboutSlideRight 1s ease;
        }

        @keyframes aboutSlideRight {
            0% {
                opacity: 0;
                transform: translateX(80px) scale(0.95);
            }

            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .about-image-full img {
            width: 100%;
             
            object-fit: cover;
            border-radius: 60px 16px 60px 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
            border: 2px solid rgba(var(--primary-rgb), 0.08);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .about-image-full img:hover {
            transform: scale(1.02);
            box-shadow: 0 30px 80px rgba(var(--primary-rgb), 0.08);
            border-color: rgba(var(--primary-rgb), 0.12);
        }

        .about-stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 25px;
        }

        .about-stat-card {
            padding: 20px 16px;
            background: rgba(255, 252, 249, 0.7);
            backdrop-filter: blur(8px);
            border-radius: 30px 8px 30px 8px;
            border: 2px solid rgba(var(--primary-rgb), 0.06);
            text-align: center;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0;
            transform: translateY(30px);
            animation: statCardReveal 0.8s ease forwards;
        }

        .about-stat-card:nth-child(1) {
            animation-delay: 0.3s;
        }

        .about-stat-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .about-stat-card:nth-child(3) {
            animation-delay: 0.5s;
        }

        @keyframes statCardReveal {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .about-stat-card:hover {
            transform: translateY(-6px) scale(1.03);
            background: rgba(255, 252, 249, 0.85);
            border-color: rgba(var(--primary-rgb), 0.12);
            box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.06);
        }

        .about-stat-card .stat-number-sm {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--primary-lighter));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            line-height: 1.2;
        }

        .about-stat-card .stat-label-sm {
            color: var(--text-light);
            font-size: 0.85rem;
            font-weight: 500;
        }

        .about-brand-strip {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .brand-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            background: rgba(255, 252, 249, 0.7);
            backdrop-filter: blur(8px);
            border-radius: 30px 6px 30px 6px;
            border: 2px solid rgba(var(--primary-rgb), 0.06);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0;
            transform: translateY(30px);
            animation: brandReveal 0.8s ease forwards;
        }

        .brand-item:nth-child(1) {
            animation-delay: 0.6s;
        }

        .brand-item:nth-child(2) {
            animation-delay: 0.7s;
        }

        .brand-item:nth-child(3) {
            animation-delay: 0.8s;
        }

        @keyframes brandReveal {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .brand-item:hover {
            transform: translateY(-4px) scale(1.02);
            background: rgba(255, 252, 249, 0.85);
            border-color: rgba(var(--primary-rgb), 0.12);
            box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.06);
        }

        .brand-item .brand-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--primary-rgb-light), 0.04));
            border-radius: 16px 3px 16px 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s ease;
            border: 2px solid rgba(var(--primary-rgb), 0.06);
        }

        .brand-item:hover .brand-icon {
            transform: rotate(-6deg);
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(var(--primary-rgb-light), 0.06));
            border-color: rgba(var(--primary-rgb), 0.1);
        }

        .brand-item .brand-icon i {
            font-size: 1.1rem;
            color: var(--primary);
        }

        .brand-item .brand-text h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .brand-item .brand-text p {
            font-size: 0.75rem;
            color: var(--text-light);
        }


        /* ============================================================
           COLLECTIONS / PRODUCTS SECTION - WITH VISIBLE BORDERS
           ============================================================ */
        .collections-section {
            padding: 100px 40px 120px;
            background: var(--bg-base);
            position: relative;
            overflow: hidden;
        }

        .collections-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.02) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatBg 22s ease-in-out infinite;
        }

        .collections-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(var(--primary-rgb-light), 0.02) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatBg 18s ease-in-out infinite reverse;
        }

        .collections-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Product Card - WITH VISIBLE BORDERS */
        .product-card {
            background: #ffffff;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 50px 16px 50px 16px;
            border: 3px solid rgba(var(--primary-rgb), 0.15);
            padding: 0;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            animation: productReveal 0.8s ease forwards;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .product-card:nth-child(1) {
            animation-delay: 0.05s;
        }

        .product-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .product-card:nth-child(3) {
            animation-delay: 0.15s;
        }

        .product-card:nth-child(4) {
            animation-delay: 0.2s;
        }

        .product-card:nth-child(5) {
            animation-delay: 0.25s;
        }

        .product-card:nth-child(6) {
            animation-delay: 0.3s;
        }

        @keyframes productReveal {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.95);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Rotating border animation on hover */
.product-card {
    position: relative;
    background: #ffffff;
    border-radius: 52px 18px 52px 18px;
    padding: 25px;
    transition: all 0.4s ease;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 52px 18px 52px 18px;
    background: linear-gradient(135deg, #673DE6 30%, #ff6b4a 70%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.product-card:hover::before {
    opacity: 0.12;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(103, 61, 230, 0.06);
}

        .product-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50px 16px 50px 16px;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03), rgba(var(--primary-rgb-light), 0.02));
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .product-card:hover::after {
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 70px rgba(var(--primary-rgb), 0.1);
            border-color: rgba(var(--primary-rgb), 0.3);
        }

        /* Product Image */
        .product-image {
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
            transition: all 0.6s ease;
            overflow: hidden;
            border-radius: 48px 14px 0 0;
            border-bottom: 3px solid rgba(var(--primary-rgb), 0.08);
        }

        .product-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.04));
            pointer-events: none;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

        /* Badge on image */
        .product-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 30px 4px 30px 4px;
            z-index: 2;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
            border: 2px solid rgba(255, 255, 255, 0.2);
            animation: badgeGlow 2s ease-in-out infinite;
        }

        @keyframes badgeGlow {

            0%,
            100% {
                box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
            }

            50% {
                box-shadow: 0 4px 30px rgba(var(--primary-rgb), 0.5);
            }
        }

        /* Wishlist Icon */
        .product-wishlist {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 38px;
            height: 38px;
            border-radius: 30px 4px 30px 4px;
            background: rgba(255, 252, 249, 0.8);
            backdrop-filter: blur(8px);
            border: 2px solid rgba(var(--primary-rgb), 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-medium);
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.4s ease;
            z-index: 2;
        }

        .product-wishlist:hover {
            background: var(--primary);
            color: #fff;
            transform: scale(1.1) rotate(10deg);
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.15);
        }

        /* Product Body */
        .product-body {
            padding: 22px 24px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-category {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .product-category i {
            font-size: 0.6rem;
        }

        .product-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 6px;
            transition: color 0.3s ease;
        }

        .product-card:hover .product-title {
            color: var(--primary);
        }

        .product-desc {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.5;
            margin-bottom: 14px;
            flex: 1;
        }

        /* Stars */
        .product-stars {
            color: #ffb800;
            font-size: 0.85rem;
            margin-bottom: 12px;
            letter-spacing: 2px;
        }

        .product-stars i {
            transition: all 0.3s ease;
        }

        .product-card:hover .product-stars i {
            animation: starPop 0.4s ease forwards;
        }

        .product-card:hover .product-stars i:nth-child(1) {
            animation-delay: 0s;
        }

        .product-card:hover .product-stars i:nth-child(2) {
            animation-delay: 0.05s;
        }

        .product-card:hover .product-stars i:nth-child(3) {
            animation-delay: 0.1s;
        }

        .product-card:hover .product-stars i:nth-child(4) {
            animation-delay: 0.15s;
        }

        .product-card:hover .product-stars i:nth-child(5) {
            animation-delay: 0.2s;
        }

        @keyframes starPop {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.4);
                color: #ff8c00;
            }

            100% {
                transform: scale(1);
            }
        }

        .product-stars .star-count {
            color: var(--text-light);
            font-size: 0.75rem;
            font-weight: 500;
            margin-left: 4px;
        }

        /* Price & Button */
        .product-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 14px;
            border-top: 2px solid rgba(var(--primary-rgb), 0.08);
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .product-price .current {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--text-dark);
        }

        .product-price .original {
            font-size: 0.9rem;
            color: #a09890;
            text-decoration: line-through;
        }

        .product-price .discount {
            font-size: 0.7rem;
            font-weight: 700;
            color: #22c55e;
            background: rgba(34, 197, 94, 0.1);
            padding: 2px 10px;
            border-radius: 20px;
            border: 1px solid rgba(34, 197, 94, 0.15);
        }

        .product-add-btn {
            width: 44px;
            height: 44px;
            border-radius: 30px 4px 30px 4px;
            border: 2px solid rgba(var(--primary-rgb), 0.08);
            background: rgba(var(--primary-rgb), 0.04);
            color: var(--primary);
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-add-btn:hover {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            transform: scale(1.08) rotate(8deg);
            box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.15);
            border-color: var(--primary);
        }

        .product-add-btn i {
            transition: all 0.4s ease;
        }

        .product-add-btn:hover i {
            transform: rotate(10deg) scale(1.1);
        }


        /* ====== TESTIMONIALS - INFINITE SCROLL ====== */
        .testimonials-section {
            padding: 100px 40px 120px;
            background: linear-gradient(180deg, #f8f4f0, var(--bg-warm));
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.02) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatBg 20s ease-in-out infinite;
        }

        .testimonials-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(var(--primary-rgb-light), 0.02) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatBg 25s ease-in-out infinite reverse;
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .testimonial-infinite-wrapper {
            position: relative;
            overflow: hidden;
            padding: 10px 0;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .testimonial-infinite-track {
            display: flex;
            gap: 30px;
            animation: infiniteScroll 30s linear infinite;
            width: max-content;
            padding: 10px 5px;
        }

        .testimonial-infinite-track:hover {
            animation-play-state: paused;
        }

        @keyframes infiniteScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .testimonial-infinite-card {
            min-width: 350px;
            max-width: 350px;
            flex-shrink: 0;
            background: #ffffff;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 50px 16px 50px 16px;
            padding: 35px 30px 30px;
            border: 3px solid rgba(var(--primary-rgb), 0.12);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.9);
            animation: testimonialReveal 0.8s ease forwards;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .testimonial-infinite-card:nth-child(1) {
            animation-delay: 0.05s;
        }

        .testimonial-infinite-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .testimonial-infinite-card:nth-child(3) {
            animation-delay: 0.15s;
        }

        .testimonial-infinite-card:nth-child(4) {
            animation-delay: 0.2s;
        }

        .testimonial-infinite-card:nth-child(5) {
            animation-delay: 0.25s;
        }

        .testimonial-infinite-card:nth-child(6) {
            animation-delay: 0.3s;
        }

        .testimonial-infinite-card:nth-child(7) {
            animation-delay: 0.35s;
        }

        .testimonial-infinite-card:nth-child(8) {
            animation-delay: 0.4s;
        }

        @keyframes testimonialReveal {
            0% {
                opacity: 0;
                transform: scale(0.9);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .testimonial-infinite-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

    

        .testimonial-infinite-card:hover::after {
            opacity: 0.4;
            animation: borderRotate 3s linear infinite;
        }

        .testimonial-infinite-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.1);
            border-color: rgba(var(--primary-rgb), 0.25);
        }

        .testimonial-infinite-card .ti-quote {
            font-size: 2.5rem;
            color: rgba(var(--primary-rgb), 0.12);
            margin-bottom: 10px;
            transition: all 0.4s ease;
            line-height: 1;
        }

        .testimonial-infinite-card:hover .ti-quote {
            color: rgba(var(--primary-rgb), 0.25);
            transform: scale(1.1) rotate(-4deg);
        }

        .testimonial-infinite-card .ti-stars {
            color: #ffb800;
            font-size: 1rem;
            margin-bottom: 12px;
            letter-spacing: 3px;
        }

        .testimonial-infinite-card .ti-stars i {
            transition: all 0.3s ease;
        }

        .testimonial-infinite-card:hover .ti-stars i {
            animation: starPop 0.5s ease forwards;
        }

        .testimonial-infinite-card:hover .ti-stars i:nth-child(1) {
            animation-delay: 0s;
        }

        .testimonial-infinite-card:hover .ti-stars i:nth-child(2) {
            animation-delay: 0.05s;
        }

        .testimonial-infinite-card:hover .ti-stars i:nth-child(3) {
            animation-delay: 0.1s;
        }

        .testimonial-infinite-card:hover .ti-stars i:nth-child(4) {
            animation-delay: 0.15s;
        }

        .testimonial-infinite-card:hover .ti-stars i:nth-child(5) {
            animation-delay: 0.2s;
        }

        .testimonial-infinite-card .ti-text {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--text-medium);
            margin-bottom: 16px;
            font-weight: 400;
            position: relative;
            padding-left: 0;
        }

        .testimonial-infinite-card .ti-text::before {
            content: '"';
            font-size: 2.5rem;
            color: rgba(var(--primary-rgb), 0.04);
            position: absolute;
            top: -8px;
            left: -6px;
            font-family: Georgia, serif;
            transition: all 0.4s ease;
        }

        .testimonial-infinite-card:hover .ti-text::before {
            color: rgba(var(--primary-rgb), 0.1);
            transform: translateY(-4px);
        }

        .testimonial-infinite-card .ti-user {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 14px;
            border-top: 2px solid rgba(var(--primary-rgb), 0.06);
        }

        .testimonial-infinite-card .ti-avatar {
            width: 48px;
            height: 48px;
            border-radius: 20px 4px 20px 4px;
            background: linear-gradient(135deg, var(--primary), var(--primary-lighter));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0;
            transition: all 0.5s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .testimonial-infinite-card:hover .ti-avatar {
            transform: rotate(-6deg) scale(1.05);
            box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.15);
        }

        .testimonial-infinite-card .ti-user-info h5 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

        .testimonial-infinite-card .ti-user-info span {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .testimonial-infinite-card .ti-badge {
            display: inline-block;
            background: rgba(var(--primary-rgb), 0.06);
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.6rem;
            font-weight: 600;
            color: var(--primary);
            margin-top: 3px;
            border: 2px solid rgba(var(--primary-rgb), 0.06);
            transition: all 0.3s ease;
        }

        .testimonial-infinite-card:hover .ti-badge {
            background: rgba(var(--primary-rgb), 0.1);
            border-color: rgba(var(--primary-rgb), 0.1);
        }


        /* ============================================================
           FOOTER
           ============================================================ */
        .footer {
            background: linear-gradient(180deg, var(--text-dark), #1a1815);
            color: #c8c0b8;
            position: relative;
            overflow: hidden;
            padding: 0px 0 0;
        }

        .footer-particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(var(--primary-rgb), 0.04);
            animation: footerParticleFloat 20s ease-in-out infinite;
            pointer-events: none;
        }

        .footer-particle:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .footer-particle:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 30%;
            right: 8%;
            animation-delay: 4s;
        }

        .footer-particle:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 15%;
            animation-delay: 8s;
        }

        .footer-particle:nth-child(4) {
            width: 100px;
            height: 100px;
            bottom: 10%;
            right: 5%;
            animation-delay: 12s;
        }

        .footer-particle:nth-child(5) {
            width: 50px;
            height: 50px;
            top: 50%;
            left: 50%;
            animation-delay: 16s;
        }

        @keyframes footerParticleFloat {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }

            33% {
                transform: translate(30px, -40px) scale(1.2);
                opacity: 0.6;
            }

            66% {
                transform: translate(-20px, 20px) scale(0.8);
                opacity: 0.2;
            }

            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary), var(--primary-lighter), var(--primary), transparent);
            background-size: 200% 100%;
            animation: footerBorderGlow 3s ease-in-out infinite;
        }

        @keyframes footerBorderGlow {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        .footer .container {
            position: relative;
            z-index: 2;
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            transition: all 0.4s ease;
            text-decoration: none;
        }

        .footer-logo img {
            max-height: 65px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
            transition: all 0.4s ease;
        }

        .footer-logo:hover img {
            filter: drop-shadow(0 6px 18px rgba(var(--primary-rgb), 0.3));
        }

        .footer-logo:hover {
            transform: scale(1.05);
        }

        .footer-logo i {
            -webkit-text-fill-color: initial;
            color: var(--primary);
            font-size: 2rem;
            animation: logoGlow 3s ease-in-out infinite;
        }

        .footer-desc {
            color: #a09890;
            font-size: 0.95rem;
            line-height: 1.8;
            max-width: 320px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            border-radius: 30px 6px 30px 6px;
            background: rgba(255, 255, 255, 0.04);
            border: 2px solid rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a09890;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .footer-social a::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 30px 6px 30px 6px;
        }

        .footer-social a:hover {
            transform: translateY(-6px) scale(1.05);
            border-color: var(--primary);
            box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.15);
            color: #fff;
        }

        .footer-social a:hover::before {
            opacity: 1;
        }

        .footer-social a i {
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .footer-social a:hover i {
            transform: rotate(10deg) scale(1.1);
        }

        .footer h4 {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .footer h4::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 30px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
            border-radius: 10px;
            transition: width 0.4s ease;
        }

        .footer h4:hover::after {
            width: 50px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #a09890;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
            transition: width 0.4s ease;
        }

        .footer-links a:hover {
            color: #fff;
            transform: translateX(6px);
        }

        .footer-links a:hover::before {
            width: 100%;
        }

        .footer-links a i {
            color: var(--primary);
            font-size: 0.7rem;
            transition: all 0.4s ease;
            opacity: 0.6;
        }

        .footer-links a:hover i {
            transform: rotate(10deg) scale(1.2);
            opacity: 1;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
            transition: all 0.4s ease;
            padding: 6px 0;
        }

        .footer-contact-item:hover {
            transform: translateX(6px);
        }

        .footer-contact-item .contact-icon {
            width: 40px;
            height: 40px;
            border-radius: 16px 3px 16px 3px;
            background: rgba(var(--primary-rgb), 0.06);
            border: 2px solid rgba(var(--primary-rgb), 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }

        .footer-contact-item:hover .contact-icon {
            background: rgba(var(--primary-rgb), 0.1);
            border-color: rgba(var(--primary-rgb), 0.1);
            transform: rotate(-6deg) scale(1.05);
        }

        .footer-contact-item .contact-icon i {
            color: var(--primary);
            font-size: 1rem;
        }

        .footer-contact-item .contact-text {
            color: #a09890;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .footer-contact-item .contact-text strong {
            color: #fff;
            font-weight: 600;
        }

        .footer-newsletter {
            display: flex;
            gap: 10px;
            margin-top: 16px;
        }

        .footer-newsletter input {
            flex: 1;
            padding: 14px 18px;
            border-radius: 40px 6px 40px 6px;
            border: 2px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.04);
            color: #fff;
            font-size: 0.95rem;
            transition: all 0.4s ease;
            outline: none;
        }

        .footer-newsletter input::placeholder {
            color: #6a625a;
        }

        .footer-newsletter input:focus {
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.04);
        }

        .footer-newsletter button {
            padding: 14px 28px;
            border-radius: 6px 40px 6px 40px;
            border: none;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }

        .footer-newsletter button::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .footer-newsletter button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.2);
        }

        .footer-newsletter button:hover::before {
            opacity: 1;
        }

        .footer-newsletter button span {
            position: relative;
            z-index: 2;
        }

        .footer-bottom {
            margin-top: 15px;
            padding: 30px 0;
            border-top: 2px solid rgba(255, 255, 255, 0.04);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            color: #6a625a;
            font-size: 0.9rem;
            margin: 0;
        }

        .footer-bottom p i {
            color: var(--primary);
            animation: heartBeat 1.5s ease-in-out infinite;
            display: inline-block;
        }

        @keyframes heartBeat {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.3);
            }
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            color: #6a625a;
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.4s ease;
            position: relative;
        }

        .footer-bottom-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
            transition: width 0.4s ease;
        }

        .footer-bottom-links a:hover {
            color: #fff;
        }

        .footer-bottom-links a:hover::after {
            width: 100%;
        }

        /* Note section text */
        .footer-info-box {
            background: rgba(var(--primary-rgb), 0.05);
            border-left: 3px solid var(--primary);
            border-radius: 0 8px 8px 0;
            padding: 14px 16px;
            transition: all 0.3s ease;
        }

        .footer-info-box:hover {
            background: rgba(var(--primary-rgb), 0.09);
        }

        .footer-info-text {
            font-size: 0.68rem;
            line-height: 1.3;
            color: #a09890;
            margin: 0;
        }

        /* D Refresh Tech credit link */
        .footer-credit-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .footer-credit-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
            transition: width 0.35s ease;
        }

        .footer-credit-link:hover {
            color: var(--primary-lighter);
            letter-spacing: 0.3px;
        }

        .footer-credit-link:hover::after {
            width: 100%;
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 52px;
            height: 52px;
            border-radius: 30px 6px 30px 6px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            border: none;
            font-size: 1.3rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.2);
            z-index: 999;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.3);
        }

        .scroll-top i {
            animation: scrollTopArrow 2s ease-in-out infinite;
        }

        @keyframes scrollTopArrow {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-4px);
            }
        }


        /* ====== RESPONSIVE ====== */
        @media (max-width: 1024px) {
            .welcome-container {
                gap: 40px;
            }

            .welcome-content h1 {
                font-size: 3rem;
            }

            .welcome-features {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-content h2 {
                font-size: 2.8rem;
            }

            .about-features-list {
                grid-template-columns: 1fr 1fr;
            }

            .testimonial-infinite-card {
                min-width: 300px;
                max-width: 300px;
            }

            .footer .row>div {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 850px) {
            nav {
                padding: 14px 24px;

            }

            .nav-links {
                display: none;
                width: 90%;
                flex-direction: column;
                padding: 20px 0 10px;
                gap: 8px;
                background: rgba(255, 252, 249, 0.96);
                backdrop-filter: blur(20px);
                border-radius: 30px;
                border: 2px solid rgba(var(--primary-rgb), 0.08);
                 position: absolute;
                top: calc(100% + 10px);
                left: 5%;
                z-index: 1000;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            }

            .nav-links.open {
                display: flex;
            }

            .hamburger {
                display: block;
            }

            .slide {
                height: 100%;
                padding: 24px;
            }

            .slide-content {
                padding: 20px 24px;
                max-width: 100%;
            }

            .slider-container {
                height: 400px;
                border-radius: 0;
            }
            .slide-content h2 {
                font-size: 1.6rem;
            }

            .slider-controls {
                bottom: 16px;
                right: 16px;
                gap: 10px;
            }

            .slider-btn {
               display: none;
            }

            .slider-dots {
                left: 20px;
                bottom: 20px;
                gap: 12px;
            }

            .dot {
                width: 22px;
                height: 6px;
            }

            .dot.active {
                width: 38px;
            }

            .welcome-section {
                padding: 60px 24px 80px;
            }

            .welcome-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .welcome-content h1 {
                font-size: 2.4rem;
            }

            .welcome-visual {
                grid-template-columns: 1fr 1fr;
            }

            .welcome-card {
                padding: 24px 18px;
            }

            .why-choose-section {
                padding: 60px 24px 80px;
            }

            .section-header h2 {
                font-size: 2.4rem;
            }

            .why-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .why-card {
                padding: 30px 20px 25px;
            }

            .why-stats {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            .about-section {
                padding: 60px 24px 20px;
            }

            .about-grid {
                gap: 30px;
            }

            .about-content h2 {
                font-size: 2.2rem;
            }

            .about-features-list {
                grid-template-columns: 1fr;
            }

            .about-brand-strip {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .about-image-full img {
               
            }

            .about-stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .collections-section {
                padding: 60px 24px 80px;
            }

            .product-image {
                height: 180px;
            }

            .testimonials-section {
                padding: 60px 24px 80px;
            }

            .testimonial-infinite-card {
                min-width: 280px;
                max-width: 280px;
                padding: 28px 22px 24px;
            }

            .testimonial-infinite-track {
                gap: 20px;
                animation-duration: 25s;
            }

            .footer {
                padding: 0px 0 0;
            }

            .footer .row>div {
                margin-bottom: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                justify-content: center;
                flex-wrap: wrap;
            }

            .footer-newsletter {
                flex-direction: column;
            }

            .footer-newsletter button {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .marquee-content {
                font-size: 0.9rem;
                gap: 40px;
            }

            .slider-section {
                padding: 0%;
            }

            .logo {
                font-size: 1.5rem;
            }

            .logo img {
                max-height: 60px;
            }

            .footer-logo img {
                max-height: 80px;
            }

            .nav-cta {
                padding: 10px 20px !important;
                font-size: 0.85rem;
            }

            .slide {
                height: 100%;
            }

            .slide-content h2 {
                font-size: 1.3rem;
            }
.slider-container {
                height: 200px;
            }
            .welcome-content h1 {
                font-size: 2rem;
            }

            .welcome-visual {
                grid-template-columns: 1fr;
            }

            .welcome-card:nth-child(1),
            .welcome-card:nth-child(2),
            .welcome-card:nth-child(3),
            .welcome-card:nth-child(4) {
                grid-column: 1 / 2;
            }

            .welcome-features {
                grid-template-columns: 1fr;
            }

            .feature-item:hover {
                transform: translateX(0);
            }

            .welcome-btn {
                padding: 14px 30px;
                font-size: 1rem;
                width: 100%;
                justify-content: center;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .why-stats {
                grid-template-columns: 1fr 1fr;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .about-content h2 {
                font-size: 1.8rem;
            }

            .about-features-list {
                grid-template-columns: 1fr;
            }

            .about-btn {
                width: 100%;
                justify-content: center;
                padding: 14px 30px;
            }

            .about-image-full img {
               
            }

            .about-stats-grid {
                grid-template-columns: 1fr;
            }

            .about-brand-strip {
                grid-template-columns: 1fr;
            }

            .collections-section {
                padding: 40px 16px 60px;
            }

            .product-image {
                height: 160px;
            }

            .product-body {
                padding: 18px 18px 20px;
            }

            .product-title {
                font-size: 1rem;
            }

            .product-price .current {
                font-size: 1.1rem;
            }

            .testimonial-infinite-card {
                min-width: 260px;
                max-width: 260px;
            }

            .testimonial-infinite-track {
                gap: 16px;
                animation-duration: 20s;
            }

            .footer-logo {
                font-size: 1.8rem;
            }

            .scroll-top {
                width: 44px;
                height: 44px;
                font-size: 1rem;
                bottom: 16px;
                right: 16px;
            }
        }

        /* ===== PAYMENT SECTION ===== */
          /* ===== HERO BANNER ===== */
        .payment-hero {
            position: relative;
            padding: 80px 0 90px;
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-medium) 100%);
            overflow: hidden;
            isolation: isolate;
        }

        .payment-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.04"><path d="M20 20 L80 20 L80 80 L20 80 Z" stroke="%23ff6b4a" stroke-width="0.4" fill="none"/><circle cx="50" cy="50" r="18" stroke="%23ffb07c" stroke-width="0.3" fill="none"/></svg>');
            background-size: 60px 60px;
            pointer-events: none;
        }

        .payment-hero .glow-orbs {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15), transparent 70%);
            top: -120px;
            right: -80px;
            animation: orbFloat 14s ease-in-out infinite alternate;
            z-index: 0;
        }

        .payment-hero .glow-orbs:nth-child(2) {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(var(--primary-rgb-light), 0.10), transparent 70%);
            bottom: -80px;
            left: -60px;
            top: auto;
            right: auto;
            animation-delay: 5s;
        }

        @keyframes orbFloat {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-40px, 40px) scale(1.2); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
        }

        .hero-content .breadcrumb-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(6px);
            padding: 8px 24px;
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }

        .hero-content .breadcrumb-custom i {
            color: var(--primary);
            font-size: 0.7rem;
        }

        .hero-content .breadcrumb-custom span {
            color: #fff;
        }

        .hero-content h1 {
            font-size: 4.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #fff, var(--primary-lighter));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            animation: heroTextGlow 3s ease-in-out infinite alternate;
        }

        @keyframes heroTextGlow {
            0% { text-shadow: 0 0 20px rgba(var(--primary-rgb), 0); }
            100% { text-shadow: 0 0 40px rgba(var(--primary-rgb), 0.25); }
        }

        .hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 580px;
            margin: 0 auto 10px;
        }

        .hero-content .hero-line {
            display: inline-block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
            border-radius: 20px;
            margin-top: 16px;
            animation: linePulse 2s ease-in-out infinite;
        }

        @keyframes linePulse {
            0%, 100% { width: 60px; opacity: 0.6; }
            50% { width: 100px; opacity: 1; }
        }
        .payment-section {
            padding: 60px 20px 80px;
            background: var(--bg-base);
        }

        .payment-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .payment-heading {
            text-align: center;
            margin-bottom: 48px;
        }

        .payment-heading .badge-icon {
            display: inline-block;
            background: rgba(var(--primary-rgb), 0.08);
            padding: 6px 28px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--primary);
            border: 2px solid rgba(var(--primary-rgb), 0.06);
            margin-bottom: 14px;
        }

        .payment-heading h2 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--text-dark), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .payment-heading p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 520px;
            margin: 0 auto;
        }

        /* ---- card grid ---- */
        .card-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .payment-card {
            flex: 1 1 280px;
            max-width: 340px;
            min-width: 240px;
            background: #ffffff;
            border-radius: 48px 16px 48px 16px;
            padding: 32px 24px 36px;
            border: 2px solid rgba(var(--primary-rgb), 0.10);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.02);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            cursor: default;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeUp 0.8s ease forwards;
        }

        .payment-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .payment-card:nth-child(2) {
            animation-delay: 0.15s;
        }

        .payment-card:nth-child(3) {
            animation-delay: 0.2s;
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(40px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /*.payment-card::before {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    inset: -3px;*/
        /*    border-radius: 50px 18px 50px 18px;*/
        /*    background: linear-gradient(135deg, transparent 40%, var(--primary), transparent 60%);*/
        /*    opacity: 0;*/
        /*    transition: 0.6s ease;*/
        /*    z-index: 0;*/
        /*}*/

        .payment-card:hover::before {
            opacity: 0.20;
            animation: borderRotate 3s linear infinite;
        }

        @keyframes borderRotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .payment-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 48px 16px 48px 16px;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.02), rgba(var(--primary-rgb-light), 0.01));
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .payment-card:hover::after {
            opacity: 1;
        }

        .payment-card:hover {
            transform: translateY(-16px) scale(1.02);
            box-shadow: 0 30px 70px rgba(var(--primary-rgb), 0.08);
            border-color: rgba(var(--primary-rgb), 0.20);
        }

        /* card icon */
        .card-icon-wrap {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06), rgba(var(--primary-rgb-light), 0.03));
            border-radius: 40px 8px 40px 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            border: 2px solid rgba(var(--primary-rgb), 0.06);
            transition: 0.5s ease;
            position: relative;
            z-index: 2;
        }

        .payment-card:hover .card-icon-wrap {
            transform: rotate(-6deg) scale(1.05);
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.10), rgba(var(--primary-rgb-light), 0.05));
            border-color: rgba(var(--primary-rgb), 0.12);
        }

        .card-icon-wrap i {
            font-size: 3.2rem;
            color: var(--primary);
            transition: 0.4s ease;
        }

        .payment-card:hover .card-icon-wrap i {
            transform: scale(1.08) rotate(4deg);
            color: var(--primary-dark);
        }

        /* card title */
        .payment-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 6px;
            position: relative;
            z-index: 2;
            transition: color 0.3s ease;
        }

        .payment-card:hover h3 {
            color: var(--primary);
        }

        .payment-card .sub {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 18px;
            position: relative;
            z-index: 2;
        }

        /* details (hidden by default, shown on hover) */
        .card-details {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .payment-card:hover .card-details {
            max-height: 300px;
            opacity: 1;
            margin-top: 8px;
        }

        .card-details .detail-item {
            background: rgba(255, 252, 249, 0.6);
            backdrop-filter: blur(4px);
            border-radius: 30px 6px 30px 6px;
            padding: 12px 16px;
            margin-bottom: 10px;
            border: 2px solid rgba(var(--primary-rgb), 0.04);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: 0.3s ease;
            transform: translateY(10px);
            animation: detailFade 0.5s ease forwards;
        }

        .card-details .detail-item:nth-child(1) {
            animation-delay: 0.05s;
        }

        .card-details .detail-item:nth-child(2) {
            animation-delay: 0.1s;
        }

        .card-details .detail-item:nth-child(3) {
            animation-delay: 0.15s;
        }

        .card-details .detail-item:nth-child(4) {
            animation-delay: 0.2s;
        }

        @keyframes detailFade {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card-details .detail-item i {
            color: var(--primary);
            width: 22px;
            text-align: center;
            font-size: 1rem;
        }

        .card-details .detail-item strong {
            font-weight: 600;
            color: var(--text-dark);
        }

        /* specific card colors */
        .payment-card.bank-card .card-icon-wrap i {
            color: #1e3a5f;
        }

        .payment-card.bank-card:hover h3 {
            color: #1e3a5f;
        }

        .payment-card.bank-card::before {
            background: linear-gradient(135deg, transparent 40%, #1e3a5f, transparent 60%);
        }

        .payment-card.gpay-card .card-icon-wrap i {
            color: #1a73e8;
        }

        .payment-card.gpay-card:hover h3 {
            color: #1a73e8;
        }

        .payment-card.gpay-card::before {
            background: linear-gradient(135deg, transparent 40%, #1a73e8, transparent 60%);
        }

        .payment-card.phonepay-card .card-icon-wrap i {
            color: #5f259f;
        }

        .payment-card.phonepay-card:hover h3 {
            color: #5f259f;
        }

        .payment-card.phonepay-card::before {
            background: linear-gradient(135deg, transparent 40%, #5f259f, transparent 60%);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3rem;
            }

            .payment-heading h2 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .payment-hero {
                padding: 50px 0 60px;
            }

            .hero-content h1 {
                font-size: 2.4rem;
            }

            .payment-heading h2 {
                font-size: 2rem;
            }

            .card-grid {
                gap: 20px;
            }

            .payment-card {
                flex: 1 1 100%;
                max-width: 360px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .payment-heading h2 {
                font-size: 1.6rem;
            }

            .payment-card {
                padding: 22px 16px 26px;
            }

            .card-icon-wrap {
                width: 72px;
                height: 72px;
            }

            .card-icon-wrap i {
                font-size: 2.6rem;
            }
        }

        /* ===== CONTACT SECTION ===== */
        .contact-section {
            padding: 60px 20px 80px;
            background: var(--bg-base);
        }

        .contact-wrapper {
            max-width: 1300px;
            margin: 0 auto;
        }

        /* heading */
        .contact-heading {
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-heading .badge-icon {
            display: inline-block;
            background: rgba(var(--primary-rgb), 0.08);
            padding: 6px 28px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--primary);
            border: 2px solid rgba(var(--primary-rgb), 0.06);
            margin-bottom: 14px;
        }

        .contact-heading h2 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--text-dark), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .contact-heading p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 520px;
            margin: 0 auto;
        }

        /* grid: form + info */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: stretch;
        }

        /* ----- FORM CARD (left) ----- */
        .form-card {
            background: #ffffff;
            border-radius: 60px 16px 60px 16px;
            padding: 40px 38px 44px;
            border: 2px solid rgba(var(--primary-rgb), 0.06);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.02);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeUp 0.8s ease forwards;
        }

        .form-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(40px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-card::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -30%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.03), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .form-card:hover {
            box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.04);
            border-color: rgba(var(--primary-rgb), 0.10);
        }

        .form-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

        .form-card h3 span {
            color: var(--primary);
        }

        .form-card .form-sub {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 28px;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group label {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-dark);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-group label i {
            color: var(--primary);
            font-size: 0.8rem;
        }

        .form-control {
            background: rgba(255, 252, 249, 0.6);
            border: 2px solid rgba(var(--primary-rgb), 0.06);
            border-radius: 30px 6px 30px 6px;
            padding: 14px 20px;
            font-size: 0.95rem;
            color: var(--text-dark);
            transition: all 0.4s ease;
            box-shadow: none;
        }

        .form-control:focus {
            background: #ffffff;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.06);
        }

        .form-control::placeholder {
            color: #a09890;
            font-size: 0.9rem;
        }

        textarea.form-control {
            border-radius: 30px 6px 30px 6px;
            min-height: 140px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border: none;
            border-radius: 40px 6px 40px 6px;
            padding: 16px 40px;
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .submit-btn:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.20);
        }

        .submit-btn:hover::before {
            opacity: 1;
        }

        .submit-btn span {
            position: relative;
            z-index: 2;
        }

        .submit-btn i {
            position: relative;
            z-index: 2;
            animation: btnArrow 1.8s ease-in-out infinite;
        }

        @keyframes btnArrow {

            0%,
            100% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(8px);
            }
        }

        /* ----- INFO CARD (right) ----- */
        .info-card {
            background: #ffffff;
            border-radius: 60px 16px 60px 16px;
            padding: 40px 36px 44px;
            border: 2px solid rgba(var(--primary-rgb), 0.06);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.02);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeUp 0.8s ease forwards;
            animation-delay: 0.2s;
        }

        .info-card::before {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -20%;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(var(--primary-rgb-light), 0.04), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: floatBg 18s ease-in-out infinite;
        }

        .info-card::after {
            content: '';
            position: absolute;
            top: -10%;
            right: -10%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.03), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: floatBg 22s ease-in-out infinite reverse;
        }

        @keyframes floatBg {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(30px, -20px) scale(1.1);
            }

            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        .info-card:hover {
            box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.04);
            border-color: rgba(var(--primary-rgb), 0.10);
        }

        .info-card .info-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 28px;
            position: relative;
            z-index: 2;
        }

        .info-card .info-header .icon-box {
            width: 56px;
            height: 56px;
            background: rgba(var(--primary-rgb), 0.06);
            border-radius: 30px 6px 30px 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(var(--primary-rgb), 0.06);
            flex-shrink: 0;
            transition: 0.4s ease;
        }

        .info-card:hover .info-header .icon-box {
            background: rgba(var(--primary-rgb), 0.10);
            border-color: rgba(var(--primary-rgb), 0.10);
            transform: rotate(-6deg);
        }

        .info-card .info-header .icon-box i {
            font-size: 1.8rem;
            color: var(--primary);
        }

        .info-card .info-header h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
        }

        .info-card .info-header h3 small {
            font-size: 0.85rem;
            font-weight: 400;
            color: var(--text-light);
            display: block;
            margin-top: 2px;
        }

        /* contact items */
        .contact-items {
            position: relative;
            z-index: 2;
            flex: 1;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 18px 0;
            border-bottom: 2px solid rgba(var(--primary-rgb), 0.04);
            transition: all 0.4s ease;
            cursor: default;
        }

        .contact-item:last-child {
            border-bottom: none;
        }

        .contact-item:hover {
            transform: translateX(8px);
        }

        .contact-item .ci-icon {
            width: 44px;
            height: 44px;
            background: rgba(var(--primary-rgb), 0.04);
            border-radius: 30px 4px 30px 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 2px solid rgba(var(--primary-rgb), 0.04);
            transition: 0.4s ease;
        }

        .contact-item:hover .ci-icon {
            background: rgba(var(--primary-rgb), 0.08);
            border-color: rgba(var(--primary-rgb), 0.08);
            transform: rotate(-6deg) scale(1.05);
        }

        .contact-item .ci-icon i {
            font-size: 1.2rem;
            color: var(--primary);
        }

        .contact-item .ci-text {
            flex: 1;
        }

        .contact-item .ci-text .label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #a09890;
            display: block;
        }

        .contact-item .ci-text .value {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.5;
        }

        .contact-item .ci-text .value a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item .ci-text .value a:hover {
            color: var(--primary);
        }

        /* social */
        .social-section {
            margin-top: 24px;
            padding-top: 20px;
            border-top: 2px solid rgba(var(--primary-rgb), 0.04);
            position: relative;
            z-index: 2;
        }

        .social-section .social-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #a09890;
            display: block;
            margin-bottom: 12px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .social-links a {
            width: 48px;
            height: 48px;
            border-radius: 30px 6px 30px 6px;
            background: rgba(255, 252, 249, 0.6);
            border: 2px solid rgba(var(--primary-rgb), 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 30px 6px 30px 6px;
        }

        .social-links a:hover {
            transform: translateY(-6px) scale(1.05);
            border-color: var(--primary);
            box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.12);
            color: #fff;
        }

        .social-links a:hover::before {
            opacity: 1;
        }

        .social-links a i {
            position: relative;
            z-index: 2;
            transition: 0.4s ease;
        }

        .social-links a:hover i {
            transform: rotate(8deg) scale(1.1);
        }

        /* ===== MAP SECTION ===== */
        .map-section {
            padding: 20px 20px 60px;
            background: var(--bg-base);
        }

        .map-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            border-radius: 60px 16px 60px 16px;
            overflow: hidden;
            border: 3px solid rgba(var(--primary-rgb), 0.08);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.02);
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeUp 0.8s ease forwards;
            animation-delay: 0.3s;
        }

        .map-wrapper:hover {
            border-color: rgba(var(--primary-rgb), 0.15);
            box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.04);
            transform: scale(1.005);
        }

        .map-wrapper iframe {
            width: 100%;
            height: 380px;
            display: block;
            border: 0;
        }

        /* ===== FLOATING PARTICLES ===== */
        .float-particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(var(--primary-rgb), 0.03);
            pointer-events: none;
            z-index: 1;
        }

        .float-particle:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            right: 5%;
            animation: floatParticle 14s ease-in-out infinite;
        }

        .float-particle:nth-child(2) {
            width: 50px;
            height: 50px;
            bottom: 15%;
            left: 8%;
            animation: floatParticle 18s ease-in-out infinite reverse;
        }

        @keyframes floatParticle {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }

            33% {
                transform: translate(20px, -30px) scale(1.3);
                opacity: 0.7;
            }

            66% {
                transform: translate(-15px, 20px) scale(0.8);
                opacity: 0.4;
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .contact-heading h2 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .contact-hero {
                padding: 50px 0 60px;
            }

            .hero-content h1 {
                font-size: 2.4rem;
            }

            .contact-heading h2 {
                font-size: 2rem;
            }

            .form-card {
                padding: 30px 22px 34px;
            }

            .info-card {
                padding: 30px 22px 34px;
            }

            .contact-item {
                padding: 14px 0;
            }

            .map-wrapper iframe {
                height: 260px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .contact-heading h2 {
                font-size: 1.6rem;
            }

            .form-card {
                padding: 24px 16px 28px;
                border-radius: 40px 12px 40px 12px;
            }

            .info-card {
                padding: 24px 16px 28px;
                border-radius: 40px 12px 40px 12px;
            }

            .submit-btn {
                padding: 14px 24px;
                font-size: 0.95rem;
            }

            .social-links a {
                width: 42px;
                height: 42px;
                font-size: 1rem;
            }

            .contact-item .ci-text .value {
                font-size: 0.9rem;
            }

            .map-wrapper iframe {
                height: 200px;
            }
        }

        /* ----- BANNER / HERO (about) ----- */
        .about-hero {
            position: relative;
            padding: 60px 0 80px;
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-medium) 100%);
            overflow: hidden;
            isolation: isolate;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.04"><path d="M20 20 L80 20 L80 80 L20 80 Z" stroke="%23ff6b4a" stroke-width="0.4" fill="none"/><circle cx="50" cy="50" r="18" stroke="%23ffb07c" stroke-width="0.3" fill="none"/></svg>');
            background-size: 60px 60px;
            pointer-events: none;
        }

        .about-hero .glow-orbs {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15), transparent 70%);
            top: -100px;
            right: -100px;
            animation: orbFloat 12s ease-in-out infinite alternate;
            z-index: 0;
        }

        .about-hero .glow-orbs:nth-child(2) {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(var(--primary-rgb-light), 0.12), transparent 70%);
            bottom: -60px;
            left: -60px;
            top: auto;
            right: auto;
            animation-delay: 4s;
        }

        @keyframes orbFloat {
            0% {
                transform: translate(0, 0) scale(1);
            }

            100% {
                transform: translate(-40px, 40px) scale(1.2);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
        }

        .hero-content .breadcrumb-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(6px);
            padding: 8px 24px;
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 24px;
        }

        .hero-content .breadcrumb-custom i {
            color: var(--primary);
            font-size: 0.7rem;
        }

        .hero-content .breadcrumb-custom span {
            color: #fff;
        }

        .hero-content h1 {
            font-size: 4.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #fff, var(--primary-lighter));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            animation: heroTextGlow 3s ease-in-out infinite alternate;
        }

        @keyframes heroTextGlow {
            0% {
                text-shadow: 0 0 20px rgba(var(--primary-rgb), 0);
            }

            100% {
                text-shadow: 0 0 40px rgba(var(--primary-rgb), 0.25);
            }
        }

        .hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 580px;
            margin: 0 auto 10px;
        }

        .hero-content .hero-line {
            display: inline-block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
            border-radius: 20px;
            margin-top: 16px;
            animation: linePulse 2s ease-in-out infinite;
        }

        @keyframes linePulse {

            0%,
            100% {
                width: 60px;
                opacity: 0.6;
            }

            50% {
                width: 100px;
                opacity: 1;
            }
        }

        /* ----- about content + image ----- */
        .about-content-section {
            padding: 80px 0 60px;
            background: var(--bg-base);
            position: relative;
        }

        .about-content-section .container {
            position: relative;
            z-index: 2;
        }

        .about-text h2 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--text-dark), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }

        .about-text h2 span {
            display: inline-block;
            position: relative;
            -webkit-text-fill-color: var(--primary);
        }

        .about-text h2 span::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
            border-radius: 20px;
            animation: underlineWave 2.2s ease-in-out infinite;
        }

        @keyframes underlineWave {

            0%,
            100% {
                transform: scaleX(1);
            }

            50% {
                transform: scaleX(0.7);
            }
        }

        .about-text p {
            color: var(--text-medium);
            line-height: 1.8;
            font-size: 1.05rem;
            margin-bottom: 18px;
        }

        .about-text .about-highlight {
            color: var(--primary);
            font-weight: 600;
        }

        .about-image-wrap {
            position: relative;
            border-radius: 60px 16px 60px 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
            border: 3px solid rgba(var(--primary-rgb), 0.12);
            transition: all 0.6s ease;
        }

        .about-image-wrap:hover {
            transform: scale(1.02) rotate(-1deg);
            box-shadow: 0 30px 80px rgba(var(--primary-rgb), 0.10);
            border-color: rgba(var(--primary-rgb), 0.2);
        }

        .about-image-wrap img {
            width: 100%;
            height: 100%;
            min-height: 320px;
            object-fit: cover;
            transition: 0.6s ease;
        }

        .about-image-wrap:hover img {
            transform: scale(1.04);
        }

        .about-image-wrap .floating-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 252, 249, 0.85);
            backdrop-filter: blur(8px);
            padding: 12px 22px;
            border-radius: 40px 8px 40px 8px;
            border-left: 4px solid var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-dark);
            animation: badgeFloat 3s ease-in-out infinite;
        }

        .about-image-wrap .floating-badge i {
            color: var(--primary);
            margin-right: 10px;
        }

        @keyframes badgeFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        /* ----- STATS (attractive) ----- */
        .stats-about {
            padding: 40px 0 60px;
            background: var(--bg-warm);
        }

        .stat-card-about {
            background: #ffffff;
            border-radius: 40px 12px 40px 12px;
            padding: 32px 16px 28px;
            text-align: center;
            border: 2px solid rgba(var(--primary-rgb), 0.08);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            height: 100%;
            opacity: 0;
            transform: translateY(40px);
            animation: statReveal 0.8s ease forwards;
        }

        .stat-card-about:nth-child(1) {
            animation-delay: 0.05s;
        }

        .stat-card-about:nth-child(2) {
            animation-delay: 0.1s;
        }

        .stat-card-about:nth-child(3) {
            animation-delay: 0.15s;
        }

        .stat-card-about:nth-child(4) {
            animation-delay: 0.2s;
        }

        @keyframes statReveal {
            0% {
                opacity: 0;
                transform: translateY(40px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }


        .stat-card-about:hover::before {
            opacity: 0.3;
            animation: borderRotate 3s linear infinite;
        }

        @keyframes borderRotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .stat-card-about:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 60px rgba(var(--primary-rgb), 0.08);
            border-color: rgba(var(--primary-rgb), 0.15);
        }

        .stat-card-about .stat-icon {
            font-size: 2.6rem;
            color: var(--primary);
            margin-bottom: 12px;
            display: inline-block;
            animation: iconPulse 2.4s ease-in-out infinite;
        }

        .stat-card-about:nth-child(2) .stat-icon {
            animation-delay: 0.3s;
        }

        .stat-card-about:nth-child(3) .stat-icon {
            animation-delay: 0.6s;
        }

        .stat-card-about:nth-child(4) .stat-icon {
            animation-delay: 0.9s;
        }

        @keyframes iconPulse {

            0%,
            100% {
                transform: scale(1) rotate(0deg);
            }

            50% {
                transform: scale(1.15) rotate(6deg);
            }
        }

        .stat-card-about .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--primary-lighter));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            line-height: 1.2;
        }

        .stat-card-about .stat-label {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1rem;
            margin-top: 4px;
        }

        /* ----- BRAND SLIDER (infinite scroll) ----- */
        .brand-slider-section {
            padding: 70px 0 90px;
            background: var(--bg-base);
            overflow: hidden;
        }

        .brand-slider-section .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .brand-slider-section .section-header .badge {
            display: inline-block;
            background: rgba(var(--primary-rgb), 0.08);
            padding: 6px 24px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--primary);
            border: 2px solid rgba(var(--primary-rgb), 0.06);
            margin-bottom: 12px;
        }

        .brand-slider-section .section-header h2 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--text-dark), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* infinite scroll wrapper */
        .brand-infinite-wrapper {
            position: relative;
            overflow: hidden;
            padding: 10px 0;
            mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
        }

        .brand-infinite-track {
            display: flex;
            gap: 30px;
            animation: infiniteBrandScroll 28s linear infinite;
            width: max-content;
            padding: 6px 0;
        }

        .brand-infinite-track:hover {
            animation-play-state: paused;
        }

        @keyframes infiniteBrandScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

 .brand-slider-section {
    padding: 60px 0;
    background: #faf8f6;
}

.brand-infinite-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.brand-infinite-wrapper::before,
.brand-infinite-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.brand-infinite-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #faf8f6, transparent);
}

.brand-infinite-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #faf8f6, transparent);
}

.brand-infinite-track {
    display: flex;
    gap: 25px;
    animation: brandScroll 25s linear infinite;
    width: max-content;
}

.brand-infinite-track:hover {
    animation-play-state: paused;
}

@keyframes brandScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-item-slide {
    flex: 0 0 140px;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    border: 2px solid rgba(var(--primary-rgb), 0.08);
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.brand-item-slide:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.1);
}

.brand-item-slide .brand-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item-slide .brand-logo img {
    max-width: 100%;
    height: 70px;
    object-fit: contain;
    transition: 0.4s ease;
    filter: grayscale(0%);
}

.brand-item-slide:hover .brand-logo img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .brand-item-slide {
        flex: 0 0 110px;
        padding: 15px 10px;
        min-height: 90px;
    }
    .brand-item-slide .brand-logo img {
        height: 50px;
    }
    .brand-infinite-track {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .brand-item-slide {
        flex: 0 0 90px;
        padding: 12px 8px;
        min-height: 70px;
        border-radius: 12px;
    }
    .brand-item-slide .brand-logo img {
        height: 40px;
    }
    .brand-infinite-track {
        gap: 10px;
    }
}

        /* ----- CORE VALUES (animated) ----- */
        .core-values-section {
            padding: 80px 0 100px;
            background: var(--bg-warm);
            position: relative;
            overflow: hidden;
        }

        .core-values-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.02), transparent 70%);
            border-radius: 50%;
            animation: floatBg 20s ease-in-out infinite;
        }

        @keyframes floatBg {

            0%,
            100% {
                transform: translate(0, 0);
            }

            33% {
                transform: translate(30px, -30px);
            }

            66% {
                transform: translate(-20px, 20px);
            }
        }

        .core-values-section .container {
            position: relative;
            z-index: 2;
        }

        .core-value-card {
            background: #ffffff;
            border-radius: 40px 12px 40px 12px;
            padding: 32px 24px 28px;
            border: 2px solid rgba(var(--primary-rgb), 0.08);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            text-align: center;
            height: 100%;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
            opacity: 0;
            transform: translateY(50px);
            animation: valueReveal 0.8s ease forwards;
            position: relative;
            overflow: hidden;
        }

        .core-value-card:nth-child(1) {
            animation-delay: 0.05s;
        }

        .core-value-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .core-value-card:nth-child(3) {
            animation-delay: 0.15s;
        }

        .core-value-card:nth-child(4) {
            animation-delay: 0.2s;
        }

        .core-value-card:nth-child(5) {
            animation-delay: 0.25s;
        }

        .core-value-card:nth-child(6) {
            animation-delay: 0.3s;
        }

        @keyframes valueReveal {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .core-value-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.02), rgba(var(--primary-rgb-light), 0.01));
            opacity: 0;
            transition: 0.6s ease;
        }

        .core-value-card:hover::after {
            opacity: 1;
        }

        .core-value-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 70px rgba(var(--primary-rgb), 0.06);
            border-color: rgba(var(--primary-rgb), 0.15);
        }

        .core-value-card .value-icon {
            font-size: 2.8rem;
            color: var(--primary);
            display: inline-block;
            margin-bottom: 16px;
            transition: 0.5s ease;
            animation: iconFloat 3s ease-in-out infinite;
        }

        .core-value-card:nth-child(2) .value-icon {
            animation-delay: 0.2s;
        }

        .core-value-card:nth-child(3) .value-icon {
            animation-delay: 0.4s;
        }

        .core-value-card:nth-child(4) .value-icon {
            animation-delay: 0.6s;
        }

        .core-value-card:nth-child(5) .value-icon {
            animation-delay: 0.8s;
        }

        .core-value-card:nth-child(6) .value-icon {
            animation-delay: 1s;
        }

        @keyframes iconFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .core-value-card:hover .value-icon {
            animation: none;
            transform: rotate(-6deg) scale(1.1);
        }

        .core-value-card h4 {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .core-value-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ----- mission & vision strips ----- */
        .mission-vision-strip {
            background: var(--text-dark);
            padding: 60px 0;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .mission-vision-strip::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(var(--primary-rgb), 0.02) 20px, rgba(var(--primary-rgb), 0.02) 40px);
        }

        .mission-vision-strip .container {
            position: relative;
            z-index: 2;
        }

        .mv-item {
            text-align: center;
            padding: 20px 10px;
        }

        .mv-item .mv-icon {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 16px;
            display: inline-block;
            animation: mvFloat 3s ease-in-out infinite;
        }

        .mv-item:nth-child(2) .mv-icon {
            animation-delay: 0.5s;
        }

        @keyframes mvFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .mv-item h3 {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, var(--primary-lighter));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .mv-item p {
            color: rgba(255, 255, 255, 0.75);
            max-width: 500px;
            margin: 0 auto;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        /* ----- responsive ----- */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3.2rem;
            }

            .about-text h2 {
                font-size: 2.4rem;
            }

            .stat-card-about .stat-number {
                font-size: 2.4rem;
            }

            .brand-item-slide {
                flex: 0 0 150px;
            }

            .mv-item h3 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .about-hero {
                padding: 40px 0 60px;
            }

            .hero-content h1 {
                font-size: 2.6rem;
            }

            .about-text h2 {
                font-size: 2rem;
            }

            .about-image-wrap img {
                min-height: 240px;
            }

            .stat-card-about {
                padding: 24px 12px;
            }

            .brand-item-slide {
                flex: 0 0 130px;
                padding: 20px 12px;
            }

            .core-value-card {
                padding: 24px 16px;
            }

            .mv-item h3 {
                font-size: 1.6rem;
            }

            .brand-infinite-track {
                gap: 20px;
                animation-duration: 22s;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .about-text h2 {
                font-size: 1.8rem;
            }

            .stat-card-about .stat-number {
                font-size: 2rem;
            }

            .brand-item-slide {
                flex: 0 0 200px;
                padding: 20px 12px;
            }

            .brand-item-slide .brand-logo {
                font-size: 2.2rem;
                margin-bottom: 8px;
            }

            .brand-item-slide h5 {
                font-size: 0.95rem;
                margin-bottom: 2px;
            }

            .brand-item-slide p {
                font-size: 0.75rem;
            }

            .brand-infinite-track {
                gap: 14px;
                animation-duration: 18s;
            }
        }

        /* ===== HERO BANNER ===== */
        .contact-hero {
            position: relative;
            padding: 80px 0 90px;
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-medium) 100%);
            overflow: hidden;
            isolation: isolate;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.04"><path d="M20 20 L80 20 L80 80 L20 80 Z" stroke="%23ff6b4a" stroke-width="0.4" fill="none"/><circle cx="50" cy="50" r="18" stroke="%23ffb07c" stroke-width="0.3" fill="none"/></svg>');
            background-size: 60px 60px;
            pointer-events: none;
        }

        .contact-hero .glow-orbs {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15), transparent 70%);
            top: -120px;
            right: -80px;
            animation: orbFloat 14s ease-in-out infinite alternate;
            z-index: 0;
        }

        .contact-hero .glow-orbs:nth-child(2) {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(var(--primary-rgb-light), 0.10), transparent 70%);
            bottom: -80px;
            left: -60px;
            top: auto;
            right: auto;
            animation-delay: 5s;
        }

        @keyframes orbFloat {
            0% {
                transform: translate(0, 0) scale(1);
            }

            100% {
                transform: translate(-40px, 40px) scale(1.2);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
        }

        .hero-content .breadcrumb-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(6px);
            padding: 8px 24px;
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }

        .hero-content .breadcrumb-custom i {
            color: var(--primary);
            font-size: 0.7rem;
        }

        .hero-content .breadcrumb-custom span {
            color: #fff;
        }

        .hero-content h1 {
            font-size: 4.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #fff, var(--primary-lighter));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            animation: heroTextGlow 3s ease-in-out infinite alternate;
        }

        @keyframes heroTextGlow {
            0% {
                text-shadow: 0 0 20px rgba(var(--primary-rgb), 0);
            }

            100% {
                text-shadow: 0 0 40px rgba(var(--primary-rgb), 0.25);
            }
        }

        .hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 580px;
            margin: 0 auto 10px;
        }

        .hero-content .hero-line {
            display: inline-block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
            border-radius: 20px;
            margin-top: 16px;
            animation: linePulse 2s ease-in-out infinite;
        }

        @keyframes linePulse {

            0%,
            100% {
                width: 60px;
                opacity: 0.6;
            }

            50% {
                width: 100px;
                opacity: 1;
            }
        }
       .product-footer a{
    text-decoration: none !important;
}
.product-footer{
        display: flex;
    justify-content: flex-end;   /* Right side */
    align-items: center;
}
   
        /* ===== Hero Banners Mobile Sizing (About, Contact, Payment) ===== */
        @media (max-width: 768px) {
            .payment-hero, .about-hero, .contact-hero {
                padding: 50px 0 60px !important;
            }
            .hero-content h1 {
                font-size: 2.2rem !important;
            }
            .hero-content p {
                font-size: 1rem !important;
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .payment-hero, .about-hero, .contact-hero {
                padding: 40px 0 50px !important;
            }
            .hero-content h1 {
                font-size: 1.8rem !important;
                line-height: 1.3;
            }
            .hero-content p {
                font-size: 0.95rem !important;
            }
            .payment-hero::before, .about-hero::before, .contact-hero::before {
                background-size: 40px 40px !important;
            }
            .payment-hero .glow-orbs, .about-hero .glow-orbs, .contact-hero .glow-orbs {
                width: 250px !important;
                height: 250px !important;
                filter: blur(30px) !important;
            }
            .breadcrumb-custom {
                font-size: 0.85rem !important;
                margin-bottom: 12px !important;
            }
        }     
        
        .brand-slider-section {
    padding: 60px 0;
    background: #f8f5f0;
    overflow: hidden;
}

.brand-infinite-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.brand-infinite-wrapper::before,
.brand-infinite-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-infinite-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #f8f5f0 0%, transparent 100%);
}

.brand-infinite-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #f8f5f0 0%, transparent 100%);
}

.brand-infinite-track {
    display: flex;
    gap: 40px;
    animation: scrollBrands 20s linear infinite;
    width: max-content;
}

.brand-infinite-track:hover {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-item-slide {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    min-width: 140px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.brand-item-slide:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 74, 0.15);
    border-color: rgba(255, 107, 74, 0.2);
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f5f0;
    transition: all 0.4s ease;
}

.brand-item-slide:hover .brand-logo {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 107, 74, 0.2);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.brand-item-slide:hover .brand-logo img {
    filter: brightness(1.05) contrast(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .brand-item-slide {
        padding: 15px 20px;
        min-width: 100px;
    }
    
    .brand-logo {
        width: 60px;
        height: 60px;
    }
    
    .brand-infinite-track {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .brand-item-slide {
        padding: 12px 15px;
        min-width: 80px;
    }
    
    .brand-logo {
        width: 50px;
        height: 50px;
    }
    
    .brand-infinite-track {
        gap: 15px;
    }
}
/* Method 1: Using negative margin */
.footer .col-lg-3:has(h4:contains("Get In Touch")) {
    margin-left: -15px;
}

/* Method 2: Using transform */
.footer .col-lg-3:has(h4:contains("Get In Touch")) {
    transform: translateX(-10px);
}

/* Method 3: Using padding adjustment */
.footer .col-lg-3:has(h4:contains("Get In Touch")) {
    padding-left: 0 !important;
    padding-right: 20px !important;
}