
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
            overflow-y: auto;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: linear-gradient(135deg, #0b1428 0%, #1a1a3e 40%, #0f1f3d 100%);
            display: flex;
            flex-direction: column;
            background-attachment: fixed;
        }

        /* ========== MARQUEE ========== */
        .top-marquee {
            background: linear-gradient(90deg, #0b1e3a, #1a3a7a, #0b1e3a);
            padding: 0.4rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            z-index: 1030;
            flex-shrink: 0;
        }

        .top-marquee .marquee-track {
            display: inline-block;
            animation: marqueeScroll 25s linear infinite;
            padding-left: 100%;
        }

        .top-marquee .marquee-track span {
            display: inline-block;
            padding: 0 2.5rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .top-marquee .marquee-track i {
            margin-right: 8px;
            color: #5b8cff;
        }

        .top-marquee .marquee-track .highlight {
            color: #4ade80;
            font-weight: 600;
        }

        .top-marquee .marquee-track .highlight-red {
            color: #f87171;
            font-weight: 600;
        }

        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ========== NAVBAR ========== */
        .navbar-ipo {
            background: rgba(12, 25, 55, 0.5);
            backdrop-filter: blur(18px) saturate(200%);
            -webkit-backdrop-filter: blur(18px) saturate(200%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 15px 45px -10px rgba(0, 10, 30, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            padding: 0.4rem 0;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            flex-shrink: 0;
        }

        .navbar-ipo.scrolled {
            background: rgba(8, 20, 48, 0.75);
            backdrop-filter: blur(24px) saturate(220%);
            box-shadow: 0 10px 40px -8px rgba(0, 0, 0, 0.4);
        }

        .navbar-ipo .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: -0.02em;
            color: #fff;
            text-shadow: 0 2px 20px rgba(26, 92, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s ease;
            flex-shrink: 0;
        }

        .navbar-ipo .navbar-brand:hover {
            transform: scale(1.02) translateY(-1px);
        }

        .navbar-ipo .navbar-brand i {
            background: linear-gradient(135deg, #5b8cff, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2rem;
            filter: drop-shadow(0 0 8px rgba(91, 140, 255, 0.3));
        }

        .navbar-ipo .navbar-brand span {
            background: linear-gradient(135deg, #ffffff 0%, #b8d0ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .navbar-ipo .navbar-nav {
            margin-left: auto !important;
            margin-right: 0.5rem !important;
            align-items: center;
        }

        .navbar-ipo .nav-link {
            font-weight: 600;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7) !important;
            padding: 0.5rem 1.1rem !important;
            border-radius: 60px;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            letter-spacing: 0.2px;
            margin: 0 2px;
        }

        .navbar-ipo .nav-link i {
            margin-right: 8px;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.4);
            transition: all 0.3s;
        }

        .navbar-ipo .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            width: 0%;
            height: 2.5px;
            background: linear-gradient(90deg, #5b8cff, #a78bfa, #5b8cff);
            border-radius: 10px;
            transform: translateX(-50%);
            transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 0 12px rgba(91, 140, 255, 0.5);
        }

        .navbar-ipo .nav-link:hover::after,
        .navbar-ipo .nav-link.active::after {
            width: 50%;
        }

        .navbar-ipo .nav-link:hover {
            color: #fff !important;
            transform: translateY(-4px) scale(1.03);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(4px);
            animation: navBounce 0.5s ease;
        }

        @keyframes navBounce {
            0% {
                transform: translateY(0) scale(1);
            }
            40% {
                transform: translateY(-6px) scale(1.05);
            }
            70% {
                transform: translateY(-2px) scale(1.01);
            }
            100% {
                transform: translateY(-4px) scale(1.03);
            }
        }

        .navbar-ipo .nav-link:hover i {
            color: #a78bfa;
            transform: scale(1.1) rotate(-4deg);
        }

        .navbar-ipo .nav-link.active {
            color: #fff !important;
            background: rgba(91, 140, 255, 0.1);
            backdrop-filter: blur(8px);
        }

        .navbar-ipo .nav-link.active i {
            color: #a78bfa;
        }

        .navbar-ipo .dropdown-menu {
            background: rgba(12, 25, 55, 0.7);
            backdrop-filter: blur(24px) saturate(200%);
            -webkit-backdrop-filter: blur(24px) saturate(200%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            padding: 0.4rem 0;
            margin-top: 0.4rem;
            transform: translateY(8px);
            transition: all 0.25s ease;
        }

        .navbar-ipo .dropdown-menu.show {
            transform: translateY(0px);
        }

        .navbar-ipo .dropdown-item {
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            padding: 0.5rem 1.8rem;
            border-radius: 16px;
            margin: 0 6px;
            transition: all 0.2s;
            font-size: 0.85rem;
        }

        .navbar-ipo .dropdown-item i {
            margin-right: 12px;
            color: rgba(167, 139, 250, 0.7);
            width: 1.2rem;
            text-align: center;
        }

        .navbar-ipo .dropdown-item:hover {
            background: rgba(91, 140, 255, 0.12);
            color: #fff;
            transform: translateX(6px);
        }

        .navbar-ipo .btn-glow-ipo {
            background: linear-gradient(135deg, #5b8cff, #7c6bf0);
            border: none;
            border-radius: 60px;
            padding: 0.35rem 1.5rem;
            font-weight: 700;
            color: #fff;
            box-shadow: 0 4px 20px rgba(91, 140, 255, 0.25);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 0.85rem;
            letter-spacing: 0.2px;
        }

        .navbar-ipo .btn-glow-ipo i {
            margin-right: 8px;
            transition: 0.3s;
        }

        .navbar-ipo .btn-glow-ipo:hover {
            transform: translateY(-3px) scale(1.04);
            box-shadow: 0 10px 35px rgba(91, 140, 255, 0.4);
            background: linear-gradient(135deg, #6f9aff, #8a7cf5);
            color: #fff;
            animation: btnBounce 0.5s ease;
        }

        @keyframes btnBounce {
            0% {
                transform: translateY(0) scale(1);
            }
            40% {
                transform: translateY(-5px) scale(1.04);
            }
            70% {
                transform: translateY(-2px) scale(1.01);
            }
            100% {
                transform: translateY(-3px) scale(1.04);
            }
        }

        .navbar-ipo .btn-glow-ipo:hover i {
            transform: rotate(10deg) scale(1.1);
        }

        .navbar-ipo .navbar-toggler {
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 40px;
            padding: 0.3rem 0.7rem;
            backdrop-filter: blur(8px);
            background: rgba(255, 255, 255, 0.03);
        }

        .navbar-ipo .navbar-toggler i {
            font-size: 1.6rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .navbar-ipo .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(91, 140, 255, 0.25);
        }

        .navbar-ipo .search-wrap {
            position: relative;
            margin-right: 0.5rem;
        }

        .navbar-ipo .search-wrap input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 60px;
            padding: 0.3rem 1rem 0.3rem 2.3rem;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            width: 140px;
            transition: all 0.3s ease;
        }

        .navbar-ipo .search-wrap input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .navbar-ipo .search-wrap input:focus {
            outline: none;
            border-color: rgba(91, 140, 255, 0.3);
            background: rgba(255, 255, 255, 0.08);
            width: 180px;
            box-shadow: 0 0 20px rgba(91, 140, 255, 0.05);
        }

        .navbar-ipo .search-wrap i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.9rem;
        }

        @media (max-width: 991.98px) {
            .navbar-ipo .search-wrap {
                width: 100%;
                margin: 0.3rem 0;
            }
            .navbar-ipo .search-wrap input {
                width: 100%;
            }
            .navbar-ipo .search-wrap input:focus {
                width: 100%;
            }
            .navbar-ipo .navbar-nav {
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding: 0.6rem 0.2rem;
                background: rgba(12, 25, 55, 0.3);
                backdrop-filter: blur(12px);
                border-radius: 30px;
                margin-top: 0.5rem;
                width: 100%;
            }
            .navbar-ipo .nav-link {
                padding: 0.6rem 1.2rem !important;
                border-radius: 40px;
                margin: 2px 0;
            }
            .navbar-ipo .nav-link::after {
                display: none;
            }
            .navbar-ipo .d-flex.gap-2 {
                flex-direction: column;
                width: 100%;
                gap: 0.5rem !important;
                margin-top: 0.5rem;
                align-items: stretch;
            }
            .navbar-ipo .btn-glow-ipo {
                width: 100%;
                text-align: center;
                justify-content: center;
                padding: 0.6rem;
            }
        }

        @media (max-width: 576px) {
            .navbar-ipo .navbar-brand {
                font-size: 1.3rem;
            }
            .top-marquee .marquee-track span {
                font-size: 0.65rem;
                padding: 0 1.5rem;
            }
        }

        /* ============================================================
           FULL SCREEN IMAGE SLIDER
           ============================================================ */
        .slider-section {
            width: 100%;
            padding: 0;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            /*height: calc(100vh - 130px);*/
            /*min-height: 450px;*/
            /*max-height: 800px;*/
            overflow: hidden;
            flex-shrink: 0;
        }

        .slider-wrapper {
            width: 100%;
            height: 100%;
            max-width: 100%;
            margin: 0;
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
            border: none;
            position: relative;
            background: #0b1428;
        }

        .slider-wrapper .carousel {
            border-radius: 0;
            overflow: hidden;
            /*height: 100%;*/
        }

        .slider-wrapper .carousel-inner {
            border-radius: 0;
            height: 100%;
        }

        .slider-wrapper .carousel-item {
            /*height: 100%;*/
            width: 100%;
            position: relative;
        }

        .slider-wrapper .carousel-item .slide-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .slider-wrapper .carousel-item .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(8, 20, 48, 0.4) 0%, rgba(0, 0, 0, 0.15) 100%);
            z-index: 1;
        }

        .slider-wrapper .carousel-caption {
            position: absolute;
            bottom: 15%;
            left: 10%;
            right: 10%;
            text-align: left;
            z-index: 10;
            background: rgba(12, 25, 55, 0.25);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 32px;
            padding: 2rem 2.5rem;
            max-width: 550px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
            transform: translateY(30px);
            opacity: 0;
            animation: slideCaptionUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
        }

        @keyframes slideCaptionUp {
            0% {
                transform: translateY(40px) scale(0.95);
                opacity: 0;
            }
            100% {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        .slider-wrapper .carousel-caption h3 {
            font-weight: 800;
            font-size: 2.5rem;
            color: #fff;
            letter-spacing: -0.02em;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            line-height: 1.1;
        }

        .slider-wrapper .carousel-caption h3 i {
            color: #5b8cff;
            margin-right: 12px;
            filter: drop-shadow(0 0 20px rgba(91, 140, 255, 0.3));
        }

        .slider-wrapper .carousel-caption p {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 400;
            font-size: 1rem;
            margin-top: 0.3rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .slider-wrapper .carousel-caption .badge-slide {
            background: rgba(91, 140, 255, 0.15);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #b8d0ff;
            padding: 0.25rem 1.2rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.65rem;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 0.6rem;
        }

        .slider-wrapper .carousel-control-prev,
        .slider-wrapper .carousel-control-next {
            width: 48px;
            height: 48px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(12, 25, 55, 0.3);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            opacity: 0.5;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            margin: 0 15px;
        }

        .slider-wrapper .carousel-control-prev {
            left: 15px;
        }
        .slider-wrapper .carousel-control-next {
            right: 15px;
        }

        .slider-wrapper .carousel-control-prev:hover,
        .slider-wrapper .carousel-control-next:hover {
            background: rgba(91, 140, 255, 0.25);
            opacity: 1;
            transform: translateY(-50%) scale(1.08);
            border-color: rgba(167, 139, 250, 0.3);
            box-shadow: 0 0 40px rgba(91, 140, 255, 0.15);
        }

        .slider-wrapper .carousel-control-prev i,
        .slider-wrapper .carousel-control-next i {
            font-size: 1.4rem;
            color: #fff;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .slider-wrapper .carousel-indicators {
            bottom: 15px;
            gap: 8px;
        }

        .slider-wrapper .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 20px;
            border: 0;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            backdrop-filter: blur(4px);
        }

        .slider-wrapper .carousel-indicators button.active {
            background: #5b8cff;
            width: 28px;
            box-shadow: 0 0 30px rgba(91, 140, 255, 0.3);
        }

        @media (max-width: 768px) {
            .slider-section {
                /*height: calc(100vh - 120px);*/
                /*min-height: 350px;*/
                /*max-height: 600px;*/
            }

            .slider-wrapper .carousel-caption {
                left: 5%;
                right: 5%;
                bottom: 12%;
                padding: 1.2rem 1.5rem;
                max-width: 100%;
                border-radius: 24px;
            }

            .slider-wrapper .carousel-caption h3 {
                font-size: 1.6rem;
            }

            .slider-wrapper .carousel-caption p {
                font-size: 0.85rem;
            }

            .slider-wrapper .carousel-control-prev,
            .slider-wrapper .carousel-control-next {
                width: 36px;
                height: 36px;
                margin: 0 6px;
            }

            .slider-wrapper .carousel-control-prev {
                left: 6px;
            }
            .slider-wrapper .carousel-control-next {
                right: 6px;
            }

            .slider-wrapper .carousel-control-prev i,
            .slider-wrapper .carousel-control-next i {
                font-size: 1rem;
            }

            .slider-wrapper .carousel-indicators {
                bottom: 10px;
                gap: 5px;
            }

            .slider-wrapper .carousel-indicators button {
                width: 8px;
                height: 8px;
            }

            .slider-wrapper .carousel-indicators button.active {
                width: 20px;
            }
        }

        @media (max-width: 480px) {
            .slider-section {
                /*height: calc(100vh - 110px);*/
                /*min-height: 280px;*/
                /*max-height: 450px;*/
            }

            .slider-wrapper .carousel-caption {
                padding: 0.8rem 1rem;
                border-radius: 18px;
                bottom: 10%;
            }

            .slider-wrapper .carousel-caption h3 {
                font-size: 1.1rem;
            }

            .slider-wrapper .carousel-caption p {
                font-size: 0.7rem;
            }

            .slider-wrapper .carousel-control-prev,
            .slider-wrapper .carousel-control-next {
                width: 28px;
                height: 28px;
            }
        }

        /* ============================================================
           WHAT WE DO BEST SECTION
           ============================================================ */
        .wwd-section {
            width: 100%;
            padding: 4rem 1rem 3rem;
            background: transparent;
            position: relative;
            flex-shrink: 0;
            overflow: hidden;
        }

        .wwd-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 0%, rgba(26, 92, 255, 0.04) 0%, transparent 60%);
            pointer-events: none;
        }

        .wwd-header {
            text-align: center;
            margin-bottom: 3rem;
            animation: headerFadeDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
        }

        @keyframes headerFadeDown {
            0% {
                opacity: 0;
                transform: translateY(-40px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .wwd-header .wwd-badge {
            display: inline-block;
            background: rgba(91, 140, 255, 0.12);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: #b8d0ff;
            padding: 0.3rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.7rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        .wwd-header .wwd-badge i {
            margin-right: 6px;
            color: #5b8cff;
        }

        .wwd-header h2 {
            font-weight: 800;
            font-size: 3rem;
            color: #fff;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 0.5rem;
        }

        .wwd-header h2 i {
            background: linear-gradient(135deg, #5b8cff, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-right: 10px;
        }

        .wwd-header .wwd-sub {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.05rem;
            font-weight: 400;
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .wwd-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .wwd-card {
            background: rgba(12, 25, 55, 0.3);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 32px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            cursor: default;
            animation: cardFadeUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
        }

        .wwd-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        .wwd-card:nth-child(2) {
            animation-delay: 0.4s;
        }
        .wwd-card:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes cardFadeUp {
            0% {
                opacity: 0;
                transform: translateY(60px) scale(0.9) rotateX(10deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1) rotateX(0);
            }
        }

        .wwd-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(91, 140, 255, 0.05), rgba(167, 139, 250, 0.02));
            border-radius: 32px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .wwd-card:hover::before {
            opacity: 1;
        }

        .wwd-card:hover {
            transform: translateY(-12px) scale(1.03);
            border-color: rgba(91, 140, 255, 0.2);
            box-shadow: 0 25px 70px -20px rgba(91, 140, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .wwd-card .card-icon {
            width: 80px;
            height: 80px;
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.2rem;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
        }

        .wwd-card:hover .card-icon {
            transform: scale(1.1) rotate(-8deg);
        }

        .wwd-card .card-icon .icon-glow {
            position: absolute;
            inset: -4px;
            border-radius: 32px;
            opacity: 0;
            transition: opacity 0.5s ease;
            filter: blur(12px);
        }

        .wwd-card:hover .card-icon .icon-glow {
            opacity: 0.4;
        }

        .wwd-card .card-icon.blue {
            background: rgba(91, 140, 255, 0.12);
            color: #5b8cff;
        }
        .wwd-card .card-icon.blue .icon-glow {
            background: rgba(91, 140, 255, 0.3);
        }
        .wwd-card .card-icon.green {
            background: rgba(74, 222, 128, 0.1);
            color: #4ade80;
        }
        .wwd-card .card-icon.green .icon-glow {
            background: rgba(74, 222, 128, 0.25);
        }
        .wwd-card .card-icon.orange {
            background: rgba(251, 191, 36, 0.12);
            color: #fbbf24;
        }
        .wwd-card .card-icon.orange .icon-glow {
            background: rgba(251, 191, 36, 0.25);
        }

        .wwd-card h4 {
            font-weight: 700;
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 0.6rem;
            letter-spacing: -0.01em;
            transition: color 0.3s ease;
        }

        .wwd-card:hover h4 {
            background: linear-gradient(135deg, #fff, #b8d0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .wwd-card p {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }

        .wwd-card:hover p {
            color: rgba(255, 255, 255, 0.75);
        }

        .wwd-card .card-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 60px;
            padding: 0.2rem 1.2rem;
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.3);
            letter-spacing: 0.5px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .wwd-card:hover .card-tag {
            background: rgba(91, 140, 255, 0.1);
            color: #b8d0ff;
            border-color: rgba(91, 140, 255, 0.1);
            transform: scale(1.05);
        }

        .wwd-card .card-number {
            position: absolute;
            top: 1.2rem;
            right: 1.5rem;
            font-size: 3.5rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.03);
            letter-spacing: -0.05em;
            line-height: 1;
            transition: all 0.5s ease;
            user-select: none;
        }

        .wwd-card:hover .card-number {
            color: rgba(91, 140, 255, 0.06);
            transform: scale(1.1) translateX(-4px);
        }

        .wwd-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.6s ease;
            pointer-events: none;
        }

        .wwd-card:hover::after {
            opacity: 1;
        }

        @media (max-width: 992px) {
            .wwd-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
            .wwd-card {
                padding: 2rem 1.5rem;
            }
            .wwd-card .card-icon {
                width: 64px;
                height: 64px;
                font-size: 2rem;
            }
            .wwd-card h4 {
                font-size: 1.2rem;
            }
            .wwd-card p {
                font-size: 0.85rem;
            }
            .wwd-header h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .wwd-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
                max-width: 500px;
            }
            .wwd-section {
                padding: 2.5rem 0.8rem 2rem;
            }
            .wwd-card {
                padding: 1.8rem 1.5rem;
            }
            .wwd-card .card-number {
                font-size: 2.5rem;
                top: 0.8rem;
                right: 1rem;
            }
            .wwd-header h2 {
                font-size: 2rem;
            }
            .wwd-header .wwd-sub {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .wwd-card .card-icon {
                width: 56px;
                height: 56px;
                font-size: 1.6rem;
                border-radius: 20px;
            }
            .wwd-card h4 {
                font-size: 1.1rem;
            }
            .wwd-card p {
                font-size: 0.8rem;
            }
            .wwd-header h2 {
                font-size: 1.6rem;
            }
        }

        /* ============================================================
           ABOUT US SECTION
           ============================================================ */
        .about-section {
            width: 100%;
            padding: 5rem 1rem;
            position: relative;
            flex-shrink: 0;
            overflow: hidden;
            min-height: 550px;
            background: transparent;
        }

        .about-full-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1600&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: 0;
            opacity: 0.15;
        }

        .about-full-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(11, 20, 40, 0.6), rgba(15, 30, 60, 0.4));
        }

        .about-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 4rem;
            min-height: 450px;
            position: relative;
            z-index: 1;
        }

        .about-content {
            flex: 1;
            padding: 2.5rem 3rem;
            animation: aboutFadeLeft 1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
            position: relative;
            z-index: 2;
            background: rgba(11, 20, 40, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 32px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
            transition: all 0.4s ease;
        }

        .about-content:hover {
            transform: translateY(-4px);
            box-shadow: 0 40px 80px -20px rgba(91, 140, 255, 0.1);
            border-color: rgba(91, 140, 255, 0.1);
        }

        @keyframes aboutFadeLeft {
            0% {
                opacity: 0;
                transform: translateX(-60px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .about-content .about-badge {
            display: inline-block;
            background: rgba(91, 140, 255, 0.12);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: #b8d0ff;
            padding: 0.3rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.7rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            transition: all 0.4s ease;
        }

        .about-content:hover .about-badge {
            background: rgba(91, 140, 255, 0.2);
            border-color: rgba(91, 140, 255, 0.15);
        }

        .about-content .about-badge i {
            margin-right: 6px;
            color: #5b8cff;
        }

        .about-content h2 {
            font-weight: 800;
            font-size: 3rem;
            color: #fff;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .about-content h2 i {
            background: linear-gradient(135deg, #5b8cff, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-right: 10px;
        }

        .about-content .about-text {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
            max-width: 600px;
            transition: color 0.3s ease;
        }

        .about-content:hover .about-text {
            color: rgba(255, 255, 255, 0.7);
        }

        .about-content .about-text strong {
            color: rgba(255, 255, 255, 0.85);
        }

        .about-content .about-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            margin-bottom: 2rem;
            padding: 0;
        }

        .about-content .about-features li {
            list-style: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: default;
        }

        .about-content .about-features li i {
            color: #5b8cff;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-content .about-features li:hover {
            color: #fff;
            transform: translateX(6px) scale(1.02);
        }

        .about-content .about-features li:hover i {
            color: #a78bfa;
            transform: scale(1.2) rotate(-10deg);
        }

        .about-content .about-btn {
            display: inline-block;
            background: linear-gradient(135deg, #5b8cff, #7c6bf0);
            border: none;
            border-radius: 60px;
            padding: 0.7rem 2.5rem;
            font-weight: 700;
            color: #fff;
            box-shadow: 0 4px 20px rgba(91, 140, 255, 0.25);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .about-content .about-btn:hover {
            transform: translateY(-3px) scale(1.04);
            box-shadow: 0 10px 35px rgba(91, 140, 255, 0.4);
            background: linear-gradient(135deg, #6f9aff, #8a7cf5);
            color: #fff;
        }

        .about-content .about-btn i {
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-content .about-btn:hover i {
            transform: translateX(6px) scale(1.1);
        }

        .about-image-right {
            flex: 1;
            
            border-radius: 32px;
            overflow: hidden;
            position: relative;
            animation: aboutFadeRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
            background-image: url('../about.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-image-right:hover {
            transform: scale(1.02) rotate(1deg);
            box-shadow: 0 30px 80px -20px rgba(91, 140, 255, 0.2);
            border-color: rgba(91, 140, 255, 0.15);
        }

        @keyframes aboutFadeRight {
            0% {
                opacity: 0;
                transform: translateX(60px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .about-image-right .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(8, 20, 48, 0.3), rgba(0, 0, 0, 0.1));
            border-radius: 32px;
            transition: all 0.5s ease;
        }

        .about-image-right:hover .image-overlay {
            background: linear-gradient(135deg, rgba(8, 20, 48, 0.1), rgba(0, 0, 0, 0.05));
        }

        .about-image-right .image-content {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            right: 2rem;
            z-index: 2;
        }

        .about-image-right .image-content .img-badge {
            display: inline-block;
            background: rgba(12, 25, 55, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.7);
            padding: 0.3rem 1.2rem;
            border-radius: 60px;
            font-size: 0.7rem;
            letter-spacing: 0.5px;
            transition: all 0.4s ease;
        }

        .about-image-right:hover .image-content .img-badge {
            background: rgba(91, 140, 255, 0.15);
            color: #b8d0ff;
            border-color: rgba(91, 140, 255, 0.15);
            transform: scale(1.05);
        }

        .about-image-right .image-content .img-badge i {
            color: #4ade80;
            margin-right: 6px;
        }

        @keyframes floatImage {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        .about-image-right {
            animation: aboutFadeRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both, floatImage 6s ease-in-out 2s infinite;
        }

        @media (max-width: 992px) {
            .about-wrapper {
                flex-direction: column;
                gap: 2rem;
                padding: 1rem 0;
            }
            .about-content {
                text-align: center;
                padding: 2rem 1.5rem;
                width: 100%;
            }
            .about-content .about-text {
                max-width: 100%;
            }
            .about-content .about-features {
                justify-content: center;
            }
            .about-content h2 {
                font-size: 2.5rem;
            }
            .about-image-right {
                width: 100%;
                
                background-attachment: scroll;
            }
            .about-full-bg {
                background-attachment: scroll;
            }
        }

        @media (max-width: 576px) {
            .about-section {
                padding: 3rem 0.8rem;
                min-height: 400px;
            }
            .about-content {
                padding: 1.5rem 1rem;
                border-radius: 24px;
            }
            .about-content h2 {
                font-size: 1.8rem;
            }
            .about-content .about-text {
                font-size: 0.9rem;
            }
            .about-content .about-features li {
                font-size: 0.85rem;
            }
            .about-image-right {
                /*min-height: 220px;*/
                background-image: url('../about.png');
            }
        }

        /* ============================================================
           PRODUCTS SECTION
           ============================================================ */
        .products-section {
            width: 100%;
            padding: 5rem 1rem 4rem;
            background: transparent;
            position: relative;
            flex-shrink: 0;
            overflow: hidden;
        }

        .products-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 0%, rgba(91, 140, 255, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }

        .products-header {
            text-align: center;
            margin-bottom: 3.5rem;
            animation: headerFadeDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
        }

        .products-header .products-badge {
            display: inline-block;
            background: rgba(91, 140, 255, 0.12);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: #b8d0ff;
            padding: 0.3rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.7rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        .products-header .products-badge i {
            margin-right: 6px;
            color: #5b8cff;
        }

        .products-header h2 {
            font-weight: 800;
            font-size: 3rem;
            color: #fff;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 0.5rem;
        }

        .products-header h2 i {
            background: linear-gradient(135deg, #5b8cff, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-right: 10px;
        }

        .products-header .products-sub {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.05rem;
            font-weight: 400;
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
            max-width: 1300px;
            margin: 0 auto;
        }

        .product-card {
            background: rgba(12, 25, 55, 0.25);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            cursor: default;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: productCardFade 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
        }

        .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;
        }
        .product-card:nth-child(7) {
            animation-delay: 0.35s;
        }
        .product-card:nth-child(8) {
            animation-delay: 0.4s;
        }
        .product-card:nth-child(9) {
            animation-delay: 0.45s;
        }

        @keyframes productCardFade {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .product-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(91, 140, 255, 0.04), rgba(167, 139, 250, 0.02));
            opacity: 0;
            transition: all 0.5s ease;
            z-index: 1;
            pointer-events: none;
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-12px) scale(1.03);
            border-color: rgba(91, 140, 255, 0.25);
            box-shadow: 0 25px 70px -15px rgba(91, 140, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .product-card .product-image {
            width: 100%;
            
            overflow: hidden;
            position: relative;
        }

        .product-card .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .product-card:hover .product-image img {
            transform: scale(1.12);
        }

        .product-card .product-image .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(8, 20, 48, 0.2), rgba(0, 0, 0, 0.1));
            transition: all 0.5s ease;
        }

        .product-card:hover .product-image .image-overlay {
            background: linear-gradient(135deg, rgba(8, 20, 48, 0.05), rgba(0, 0, 0, 0.05));
        }

        .product-card .product-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(12, 25, 55, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: #b8d0ff;
            padding: 0.2rem 0.9rem;
            border-radius: 60px;
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .product-card:hover .product-badge {
            background: rgba(91, 140, 255, 0.2);
            border-color: rgba(91, 140, 255, 0.15);
            transform: scale(1.05);
        }

        .product-card .product-badge.best {
            background: rgba(74, 222, 128, 0.15);
            color: #4ade80;
            border-color: rgba(74, 222, 128, 0.1);
        }

        .product-card:hover .product-badge.best {
            background: rgba(74, 222, 128, 0.25);
            color: #6ee7b7;
        }

        .product-card .product-badge.hot {
            background: rgba(248, 113, 113, 0.15);
            color: #f87171;
            border-color: rgba(248, 113, 113, 0.1);
        }

        .product-card:hover .product-badge.hot {
            background: rgba(248, 113, 113, 0.25);
            color: #fca5a5;
        }

        .product-card .product-badge.new {
            background: rgba(167, 139, 250, 0.15);
            color: #a78bfa;
            border-color: rgba(167, 139, 250, 0.1);
        }

        .product-card:hover .product-badge.new {
            background: rgba(167, 139, 250, 0.25);
            color: #c4b5fd;
        }

        .product-card .product-number {
            position: absolute;
            top: 1rem;
            right: 1.2rem;
            font-size: 2.5rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.04);
            letter-spacing: -0.05em;
            line-height: 1;
            z-index: 2;
            transition: all 0.5s ease;
            user-select: none;
        }

        .product-card:hover .product-number {
            color: rgba(91, 140, 255, 0.08);
            transform: scale(1.1) translateX(-4px);
        }

        .product-card .product-info {
            padding: 1.5rem 1.5rem 1.8rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .product-card .product-info h4 {
            font-weight: 700;
            font-size: 1.15rem;
            color: #fff;
            margin-bottom: 0.4rem;
            letter-spacing: -0.01em;
            transition: all 0.4s ease;
        }

        .product-card:hover .product-info h4 {
            background: linear-gradient(135deg, #fff, #b8d0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .product-card .product-info p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 0.6rem;
            transition: color 0.3s ease;
        }

        .product-card:hover .product-info p {
            color: rgba(255, 255, 255, 0.7);
        }

        .product-card .view-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 0.5rem;
            padding: 0.4rem 1.2rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 60px;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .product-card .view-more-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(91, 140, 255, 0.1), rgba(167, 139, 250, 0.05));
            opacity: 0;
            border-radius: 60px;
            transition: opacity 0.5s ease;
        }

        .product-card:hover .view-more-btn::before {
            opacity: 1;
        }

        .product-card:hover .view-more-btn {
            background: rgba(91, 140, 255, 0.1);
            border-color: rgba(91, 140, 255, 0.15);
            color: #b8d0ff;
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 8px 25px -5px rgba(91, 140, 255, 0.15);
        }

        .product-card .view-more-btn i {
            font-size: 0.8rem;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            z-index: 1;
        }

        .product-card:hover .view-more-btn i {
            transform: translateX(4px) scale(1.1);
            color: #a78bfa;
        }

        .product-card .view-more-btn .btn-text {
            position: relative;
            z-index: 1;
        }

        .product-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.6s ease;
            pointer-events: none;
            z-index: 1;
        }

        .product-card:hover::after {
            opacity: 1;
        }

        @media (max-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
            .product-card .product-image {
                height: 180px;
            }
            .product-card .product-info {
                padding: 1.2rem 1rem 1.5rem;
            }
            .product-card .product-info h4 {
                font-size: 1rem;
            }
            .product-card .product-info p {
                font-size: 0.8rem;
            }
            .product-card .view-more-btn {
                font-size: 0.65rem;
                padding: 0.35rem 1rem;
            }
            .products-header h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.2rem;
                max-width: 600px;
            }
            .products-section {
                padding: 3rem 0.8rem 2.5rem;
            }
            .product-card .product-image {
                height: 160px;
            }
            .product-card .product-info {
                padding: 1rem 0.8rem 1.2rem;
            }
            .product-card .product-number {
                font-size: 2rem;
                top: 0.7rem;
                right: 0.8rem;
            }
            .product-card .product-badge {
                font-size: 0.5rem;
                top: 0.7rem;
                left: 0.7rem;
                padding: 0.15rem 0.7rem;
            }
            .product-card .view-more-btn {
                font-size: 0.6rem;
                padding: 0.3rem 0.9rem;
            }
            .products-header h2 {
                font-size: 2rem;
            }
            .products-header .products-sub {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
                max-width: 400px;
            }
            .product-card .product-image {
                height: 130px;
            }
            .product-card .product-info {
                padding: 0.8rem 0.6rem 1rem;
            }
            .product-card .product-info h4 {
                font-size: 0.85rem;
            }
            .product-card .product-info p {
                font-size: 0.7rem;
                margin-bottom: 0.3rem;
            }
            .product-card .product-number {
                font-size: 1.5rem;
                top: 0.5rem;
                right: 0.6rem;
            }
            .product-card .product-badge {
                font-size: 0.45rem;
                top: 0.5rem;
                left: 0.5rem;
                padding: 0.1rem 0.5rem;
            }
            .product-card .view-more-btn {
                font-size: 0.55rem;
                padding: 0.2rem 0.7rem;
                gap: 4px;
            }
            .product-card .view-more-btn i {
                font-size: 0.6rem;
            }
            .products-header h2 {
                font-size: 1.6rem;
            }
            .products-header .products-sub {
                font-size: 0.8rem;
            }
        }

        /* ============================================================
           TESTIMONIAL SECTION
           ============================================================ */
        .testimonial-section {
            width: 100%;
            padding: 5rem 1rem 4rem;
            background: transparent;
            position: relative;
            flex-shrink: 0;
            overflow: hidden;
        }

        .testimonial-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 0%, rgba(91, 140, 255, 0.04) 0%, transparent 60%);
            pointer-events: none;
        }

        .testimonial-header {
            text-align: center;
            margin-bottom: 3rem;
            animation: headerFadeDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
        }

        .testimonial-header .testimonial-badge {
            display: inline-block;
            background: rgba(91, 140, 255, 0.12);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: #b8d0ff;
            padding: 0.3rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.7rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        .testimonial-header .testimonial-badge i {
            margin-right: 6px;
            color: #5b8cff;
        }

        .testimonial-header h2 {
            font-weight: 800;
            font-size: 3rem;
            color: #fff;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 0.5rem;
        }

        .testimonial-header h2 i {
            background: linear-gradient(135deg, #5b8cff, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-right: 10px;
        }

        .testimonial-header .testimonial-sub {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.05rem;
            font-weight: 400;
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .testimonial-scroll-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }

        .testimonial-scroll-wrapper::before,
        .testimonial-scroll-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 80px;
            height: 100%;
            z-index: 5;
            pointer-events: none;
        }

        .testimonial-scroll-wrapper::before {
            left: 0;
            background: linear-gradient(90deg, #0b1428, transparent);
        }

        .testimonial-scroll-wrapper::after {
            right: 0;
            background: linear-gradient(270deg, #0b1428, transparent);
        }

        .testimonial-track {
            display: flex;
            gap: 2rem;
            animation: testimonialScroll 30s linear infinite;
            width: max-content;
            padding: 0.5rem 0;
        }

        .testimonial-track:hover {
            animation-play-state: paused;
        }

        @keyframes testimonialScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .testimonial-card {
            min-width: 320px;
            max-width: 340px;
            background: rgba(12, 25, 55, 0.3);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 28px;
            padding: 2rem 1.8rem;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            flex-shrink: 0;
        }

        .testimonial-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(91, 140, 255, 0.2);
            box-shadow: 0 20px 60px -15px rgba(91, 140, 255, 0.15);
        }

        .testimonial-card .quote-icon {
            font-size: 2.5rem;
            color: rgba(91, 140, 255, 0.15);
            margin-bottom: 0.5rem;
            transition: all 0.5s ease;
        }

        .testimonial-card:hover .quote-icon {
            color: rgba(91, 140, 255, 0.3);
            transform: scale(1.1) rotate(-5deg);
        }

        .testimonial-card .testimonial-text {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 1.2rem;
            font-family: 'Outfit', sans-serif;
        }

        .testimonial-card .testimonial-stars {
            color: #fbbf24;
            font-size: 0.8rem;
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
        }

        .testimonial-card .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-card .testimonial-author .avatar {
            width: 50px;
            height: 50px;
            border-radius: 60px;
            background: linear-gradient(135deg, rgba(91, 140, 255, 0.15), rgba(167, 139, 250, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #5b8cff;
            border: 1px solid rgba(255, 255, 255, 0.06);
            flex-shrink: 0;
            transition: all 0.5s ease;
        }

        .testimonial-card:hover .testimonial-author .avatar {
            background: linear-gradient(135deg, rgba(91, 140, 255, 0.25), rgba(167, 139, 250, 0.2));
            transform: scale(1.05);
            border-color: rgba(91, 140, 255, 0.15);
        }

        .testimonial-card .testimonial-author .author-info h5 {
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.1rem;
            transition: color 0.3s ease;
        }

        .testimonial-card:hover .testimonial-author .author-info h5 {
            background: linear-gradient(135deg, #fff, #b8d0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .testimonial-card .testimonial-author .author-info span {
            color: rgba(255, 255, 255, 0.35);
            font-size: 0.75rem;
            letter-spacing: 0.3px;
        }

        @media (max-width: 768px) {
            .testimonial-card {
                min-width: 280px;
                max-width: 300px;
                padding: 1.5rem 1.2rem;
            }
            .testimonial-header h2 {
                font-size: 2rem;
            }
            .testimonial-card .testimonial-text {
                font-size: 0.85rem;
            }
            .testimonial-scroll-wrapper::before,
            .testimonial-scroll-wrapper::after {
                width: 40px;
            }
        }

        @media (max-width: 480px) {
            .testimonial-card {
                min-width: 240px;
                max-width: 260px;
                padding: 1.2rem 1rem;
            }
            .testimonial-header h2 {
                font-size: 1.6rem;
            }
            .testimonial-card .testimonial-text {
                font-size: 0.8rem;
            }
            .testimonial-card .testimonial-author .avatar {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            .testimonial-scroll-wrapper::before,
            .testimonial-scroll-wrapper::after {
                width: 25px;
            }
        }

        /* ============================================================
           FOOTER SECTION - With Map
           ============================================================ */
        .footer-section {
            width: 100%;
            background: rgba(8, 20, 48, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 4rem 0 2rem;
            position: relative;
            flex-shrink: 0;
            overflow: hidden;
        }

        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 0%, rgba(91, 140, 255, 0.05) 0%, transparent 60%);
            pointer-events: none;
        }

        .footer-section .footer-glow {
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 200px;
            background: radial-gradient(ellipse, rgba(91, 140, 255, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .footer-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.8fr;
            gap: 3rem;
            padding: 0 1rem;
        }

        /* Footer Brand */
        .footer-brand .footer-logo {
            font-weight: 800;
            font-size: 1.8rem;
            color: #fff;
            text-shadow: 0 2px 20px rgba(26, 92, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }

        .footer-brand .footer-logo:hover {
            transform: scale(1.02) translateX(4px);
        }

        .footer-brand .footer-logo i {
            background: linear-gradient(135deg, #5b8cff, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2.2rem;
        }

        .footer-brand .footer-logo span {
            background: linear-gradient(135deg, #ffffff 0%, #b8d0ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            max-width: 350px;
        }

        .footer-brand .footer-social {
            display: flex;
            gap: 0.8rem;
        }

        .footer-brand .footer-social a {
            width: 44px;
            height: 44px;
            border-radius: 60px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 1.1rem;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-decoration: none;
        }

        .footer-brand .footer-social a:hover {
            background: rgba(91, 140, 255, 0.15);
            border-color: rgba(91, 140, 255, 0.15);
            color: #5b8cff;
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 25px -5px rgba(91, 140, 255, 0.15);
        }

        .footer-brand .footer-social a:nth-child(2):hover {
            background: rgba(167, 139, 250, 0.15);
            border-color: rgba(167, 139, 250, 0.15);
            color: #a78bfa;
        }

        .footer-brand .footer-social a:nth-child(3):hover {
            background: rgba(74, 222, 128, 0.12);
            border-color: rgba(74, 222, 128, 0.12);
            color: #4ade80;
        }

        .footer-brand .footer-social a:nth-child(4):hover {
            background: rgba(251, 191, 36, 0.12);
            border-color: rgba(251, 191, 36, 0.12);
            color: #fbbf24;
        }

        /* Footer Links */
        .footer-links h5 {
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
            position: relative;
            display: inline-block;
        }

        .footer-links h5::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 30px;
            height: 2.5px;
            background: linear-gradient(90deg, #5b8cff, #a78bfa);
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(91, 140, 255, 0.3);
            transition: width 0.3s ease;
        }

        .footer-links:hover h5::after {
            width: 50px;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links ul li {
            margin-bottom: 0.6rem;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links ul li a i {
            font-size: 0.6rem;
            opacity: 0;
            transform: translateX(-5px);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .footer-links ul li a:hover {
            color: #b8d0ff;
            transform: translateX(6px);
        }

        .footer-links ul li a:hover i {
            opacity: 1;
            transform: translateX(0);
            color: #5b8cff;
        }

        /* Footer Contact + Map */
        .footer-contact-map {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-contact-map h5 {
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-contact-map h5::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 30px;
            height: 2.5px;
            background: linear-gradient(90deg, #5b8cff, #a78bfa);
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(91, 140, 255, 0.3);
            transition: width 0.3s ease;
        }

        .footer-contact-map:hover h5::after {
            width: 50px;
        }

        .footer-contact-map .contact-items {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .footer-contact-map .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: default;
        }

        .footer-contact-map .contact-item:hover {
            transform: translateX(4px);
        }

        .footer-contact-map .contact-item .contact-icon {
            width: 36px;
            height: 36px;
            border-radius: 60px;
            background: rgba(91, 140, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5b8cff;
            font-size: 0.9rem;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }

        .footer-contact-map .contact-item:hover .contact-icon {
            background: rgba(91, 140, 255, 0.15);
            border-color: rgba(91, 140, 255, 0.1);
            transform: scale(1.05);
        }

        .footer-contact-map .contact-item .contact-text {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .footer-contact-map .contact-item:hover .contact-text {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-contact-map .contact-item .contact-text strong {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
        }

        /* Map Container */
        .footer-map {
            width: 100%;
            height: 200px;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            margin-top: 0.5rem;
            position: relative;
        }

        .footer-map:hover {
            transform: scale(1.02);
            border-color: rgba(91, 140, 255, 0.15);
            box-shadow: 0 10px 40px -10px rgba(91, 140, 255, 0.1);
        }

        .footer-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(0.3) brightness(0.8);
            transition: filter 0.5s ease;
        }

        .footer-map:hover iframe {
            filter: grayscale(0) brightness(1);
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 1.5rem;
            margin-top: 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            padding: 1.5rem 1rem 0;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.25);
            font-size: 0.8rem;
            margin: 0;
        }

        .footer-bottom p i {
            color: #f87171;
            margin: 0 4px;
            animation: heartBeat 1.5s ease-in-out infinite;
        }

        @keyframes heartBeat {
            0%,
            100% {
                transform: scale(1);
            }
            15% {
                transform: scale(1.2);
            }
            30% {
                transform: scale(1);
            }
            45% {
                transform: scale(1.15);
            }
            60% {
                transform: scale(1);
            }
        }

        .footer-bottom .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.25);
            text-decoration: none;
            font-size: 0.75rem;
            transition: all 0.3s ease;
        }

        .footer-bottom .footer-bottom-links a:hover {
            color: #b8d0ff;
        }

        /* Responsive Footer */
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            .footer-brand .footer-social {
                justify-content: center;
            }
            .footer-links h5::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .footer-contact-map h5::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .footer-links ul li a {
                justify-content: center;
            }
            .footer-contact-map .contact-item {
                justify-content: center;
            }
            .footer-map {
                height: 180px;
                max-width: 500px;
                margin: 0.5rem auto 0;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-bottom .footer-bottom-links {
                justify-content: center;
            }
            .footer-section {
                padding: 3rem 0 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .footer-map {
                height: 150px;
            }
        }

        /* ========== LIGHT THEME OVERRIDES ========== */
        :root {
            --primary-color: #c4913a;
            --primary-dark: #991b1b;
            --primary-soft: #fee2e2;
            --secondary-color: #ddaa53;
            --success-color: #16a34a;
            --page-bg: #ffffff;
            --section-soft: #fff7ed;
            --section-mint: #f1f8f4;
            --section-rose: #fff1f2;
            --ink: #162033;
            --nav-ink: #243044;
            --muted: #637083;
            --line: rgba(22, 32, 51, 0.1);
            --card: rgba(255, 255, 255, 0.92);
            --accent: var(--primary-color);
            --accent-2: var(--secondary-color);
            --accent-3: var(--success-color);
        }

        body {
            background: var(--page-bg) !important;
            color: var(--ink);
            background-attachment: scroll;
        }

        .top-marquee {
            background: linear-gradient(90deg, #fee2e2 0%, #fff7ed 48%, #fde68a 100%) !important;
            border-bottom: 1px solid rgba(220, 38, 38, 0.2);
            box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.75);
        }

        .top-marquee .marquee-track span {
            color: var(--primary-dark) !important;
            font-weight: 700;
            letter-spacing: 0.7px;
        }

        .top-marquee .marquee-track .highlight {
            color: #15803d !important;
        }

        .top-marquee .marquee-track .highlight-red {
            color: var(--primary-color) !important;
        }

        .navbar-ipo .dropdown-item,
        .about-content .about-text,
        .about-content .about-features li,
        .products-header .products-sub,
        .testimonial-header .testimonial-sub,
        .wwd-header .wwd-sub,
        .product-card .product-info p,
        .testimonial-card .testimonial-text,
        .footer-brand p,
        .footer-links ul li a,
        .footer-contact-map .contact-item .contact-text,
        .footer-bottom p,
        .footer-bottom .footer-bottom-links a {
            color: var(--muted) !important;
        }

        .top-marquee .marquee-track i,
        .about-content .about-badge i,
        .products-header .products-badge i,
        .testimonial-header .testimonial-badge i,
        .wwd-header .wwd-badge i,
        .about-content .about-features li i,
        .footer-links ul li a:hover i,
        .footer-contact-map .contact-item .contact-icon {
            color: var(--accent) !important;
        }

        .navbar-ipo .nav-link {
            color: var(--nav-ink) !important;
            font-weight: 700;
        }

        .navbar-ipo .nav-link i {
            color: rgba(220, 38, 38, 0.72) !important;
        }

        .navbar-ipo,
        .navbar-ipo.scrolled {
            background: rgba(255, 255, 255, 0.9) !important;
            border-bottom: 1px solid var(--line);
            box-shadow: 0 12px 35px -22px rgba(22, 32, 51, 0.45);
        }

        .navbar-ipo .navbar-brand,
        .navbar-ipo .nav-link:hover,
        .navbar-ipo .nav-link.active,
        .navbar-ipo .dropdown-item:hover,
        .about-content h2,
        .products-header h2,
        .testimonial-header h2,
        .wwd-header h2,
        .wwd-card h4,
        .product-card .product-info h4,
        .testimonial-card .testimonial-author .author-info h5,
        .footer-brand .footer-logo,
        .footer-links h5,
        .footer-contact-map h5,
        .footer-contact-map .contact-item .contact-text strong {
            color: var(--ink) !important;
            text-shadow: none !important;
        }

        .navbar-ipo .navbar-brand span,
        .footer-brand .footer-logo span {
            background: none !important;
            -webkit-text-fill-color: var(--ink) !important;
        }

        .navbar-ipo .navbar-brand i,
        .about-content h2 i,
        .products-header h2 i,
        .testimonial-header h2 i,
        .wwd-header h2 i,
        .footer-brand .footer-logo i {
            background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
            filter: none !important;
        }

        .navbar-ipo .nav-link::after,
        .footer-links h5::after,
        .footer-contact-map h5::after {
            background: linear-gradient(90deg, var(--accent), var(--accent-2)) !important;
            box-shadow: none !important;
        }

        .navbar-ipo .nav-link:hover,
        .navbar-ipo .nav-link.active,
        .navbar-ipo .search-wrap input,
        .navbar-ipo .navbar-toggler,
        .navbar-ipo .dropdown-menu {
            background: rgba(255, 247, 237, 0.9) !important;
            border-color: rgba(220, 38, 38, 0.14) !important;
        }

        .navbar-ipo .nav-link:hover,
        .navbar-ipo .nav-link.active {
            background: var(--primary-soft) !important;
            color: var(--primary-dark) !important;
        }

        .navbar-ipo .nav-link:hover i,
        .navbar-ipo .nav-link.active i {
            color: var(--primary-color) !important;
        }

        .navbar-ipo .search-wrap input {
            color: var(--ink) !important;
        }

        .navbar-ipo .search-wrap input::placeholder {
            color: #9aa3af !important;
        }

        .navbar-ipo .btn-glow-ipo,
        .about-content .about-btn,
        .product-card .view-more-btn {
            background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
            color: #ffffff !important;
            box-shadow: 0 12px 28px -16px rgba(220, 38, 38, 0.55) !important;
        }

        .slider-section {
            background: #ffffff !important;
        }

        .slider-wrapper {
            background: #fff7ed !important;
            box-shadow: 0 24px 60px -35px rgba(22, 32, 51, 0.5) !important;
        }

        .slider-wrapper .carousel-caption {
            background: rgba(255, 255, 255, 0.76) !important;
            border: 1px solid rgba(255, 255, 255, 0.65) !important;
            box-shadow: 0 24px 55px -30px rgba(22, 32, 51, 0.55) !important;
        }

        .slider-wrapper .carousel-caption h3,
        .slider-wrapper .carousel-caption p {
            color: var(--ink) !important;
            text-shadow: none !important;
        }

        .slider-wrapper .carousel-caption .badge-slide,
        .about-content .about-badge,
        .products-header .products-badge,
        .testimonial-header .testimonial-badge,
        .wwd-header .wwd-badge,
        .wwd-card .card-tag,
        .product-card .product-badge {
            background: rgba(254, 243, 199, 0.85) !important;
            border: 1px solid rgba(245, 158, 11, 0.22) !important;
            color: #92400e !important;
        }

        .wwd-section,
        .testimonial-section {
            background: var(--section-soft) !important;
        }

        .about-section {
            background: var(--section-mint) !important;
        }

        .products-section {
            background: #ffffff !important;
        }

        .about-full-bg {
            opacity: 0.08 !important;
        }

        .about-full-bg::after,
        .about-image-right .image-overlay {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 247, 237, 0.22)) !important;
        }

        .wwd-section::before,
        .products-section::before,
        .testimonial-section::before,
        .footer-section::before,
        .footer-section .footer-glow {
            background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.12), transparent 62%) !important;
        }

        .about-content,
        .wwd-card,
        .product-card,
        .testimonial-card {
            background: var(--card) !important;
            border: 1px solid var(--line) !important;
            box-shadow: 0 18px 45px -28px rgba(22, 32, 51, 0.42) !important;
        }

        .about-content:hover,
        .wwd-card:hover,
        .product-card:hover,
        .testimonial-card:hover {
            border-color: rgba(220, 38, 38, 0.18) !important;
            box-shadow: 0 26px 60px -32px rgba(220, 38, 38, 0.45) !important;
        }

        .wwd-card::before,
        .product-card::before {
            background: linear-gradient(135deg, rgba(254, 243, 199, 0.55), rgba(255, 241, 242, 0.35)) !important;
        }

        .wwd-card .card-icon.blue,
        .testimonial-card .testimonial-author .avatar {
            background: rgba(254, 226, 226, 0.75) !important;
            color: var(--accent) !important;
        }

        .wwd-card .card-icon.green {
            background: rgba(220, 252, 231, 0.85) !important;
            color: var(--accent-3) !important;
        }

        .wwd-card .card-icon.orange {
            background: rgba(254, 243, 199, 0.85) !important;
            color: var(--accent-2) !important;
        }

        .wwd-card p,
        .product-card .product-info p,
        .testimonial-card .testimonial-author .author-info span {
            color: var(--muted) !important;
        }

        .wwd-card .card-number,
        .product-card .product-number,
        .testimonial-card .quote-icon {
            color: rgba(220, 38, 38, 0.13) !important;
        }

        .testimonial-scroll-wrapper::before {
            background: linear-gradient(90deg, var(--section-soft), transparent) !important;
        }

        .testimonial-scroll-wrapper::after {
            background: linear-gradient(270deg, var(--section-soft), transparent) !important;
        }

        .footer-section {
            background: #fff1f2 !important;
            border-top: 1px solid rgba(220, 38, 38, 0.12) !important;
        }

        .footer-brand .footer-social a {
            background: #ffffff !important;
            border-color: var(--line) !important;
            color: var(--accent) !important;
        }

        .footer-links ul li a:hover,
        .footer-bottom .footer-bottom-links a:hover {
            color: var(--accent) !important;
        }

        .footer-bottom {
            border-top: 1px solid rgba(22, 32, 51, 0.08) !important;
        }
    

/* ============================================================
   PAYMENT FLIP CARDS
   ============================================================ */
.flip-card-pay {
    background-color: transparent;
    width: 100%;
    height: 380px;
    perspective: 1000px;
    margin: 0 auto;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.flip-card-pay:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border: 1px solid var(--line);
}

.flip-card-front {
    background: var(--card);
}

.bank-bg { background: linear-gradient(135deg, #f0f7ff, #ffffff); }
.gpay-bg { background: linear-gradient(135deg, #f1f8f4, #ffffff); }
.phonepe-bg { background: linear-gradient(135deg, #f9f0ff, #ffffff); }

.icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background: #ffffff;
    transition: all 0.3s ease;
}

.bank-circle { border: 2px solid #5b8cff; color: #5b8cff; font-size: 3rem; }
.gpay-circle { border: 2px solid #16a34a; }
.phonepe-circle { border: 2px solid #9333ea; }

.flip-card-front h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.hover-hint {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.float-anim {
    animation: floatRight 1.5s infinite ease-in-out;
}

@keyframes floatRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.pay-logo { max-width: 60px; }
.phonepe-logo { max-width: 65px; margin-top: 5px; }

.flip-card-back {
    background: #ffffff;
    transform: rotateY(180deg);
    border-color: rgba(91, 140, 255, 0.2);
}

.flip-card-back h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

.pay-details { width: 100%; }

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px dashed var(--line);
    font-size: 0.95rem;
}
.detail-row:last-child { border-bottom: none; }
.detail-row span { color: var(--muted); font-weight: 500; }
.detail-row strong { color: var(--nav-ink); font-weight: 700; }

.qr-code {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.border-purple { border: 2px solid #9333ea; }

.hover-grow { transition: transform 0.3s; }
.hover-grow:hover { transform: translateY(-8px); }

/* ============================================================
   ABOUT / CONTACT / PAYMENT PAGE STYLES
   (hero-banner, section-pad, cards, forms, etc.)
   ============================================================ */

/* --- Hero Banner (about/contact/payment) --- */
.hero-banner {
    width: 100%;
    min-height: 260px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1705753438748-ca42c3d79b1b?w=1600&q=80') center/cover;
    opacity: 0.15;
}

.hero-banner > div {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-banner h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-banner p {
    color: rgba(255,255,255,0.88);
    font-size: 1.05rem;
    margin: 0;
}

.banner-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 0.3rem 1.2rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* --- Section Padding --- */
.section-pad {
    padding: 4rem 0;
}

.section-soft {
    background: var(--section-soft) !important;
}

.section-mint {
    background: var(--section-mint) !important;
}

/* --- Section Title --- */
.section-title {
    margin-bottom: 2.5rem;
}

.section-title .pill,
.pill {
    display: inline-block;
    background: rgba(254,243,199,0.85);
    border: 1px solid rgba(245,158,11,0.22);
    color: #92400e;
    padding: 0.3rem 1.2rem;
    border-radius: 60px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}

.section-title h2 i {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 8px;
}

.section-title p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 520px;
}

/* --- Eyebrow / Hero Copy --- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary-color);
    background: var(--primary-soft);
    padding: 0.3rem 1.1rem;
    border-radius: 60px;
    margin-bottom: 1rem;
}

.hero-copy {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 540px;
}

/* --- Hero Grid (About) --- */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.page-hero {
    padding: 4rem 0 3rem;
}

.hero-panel .hero-photo {
    width: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--section-soft), var(--primary-soft));
    border-radius: 24px;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    border: 1px solid var(--line);
}

.hero-note {
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    color: var(--muted);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    width: 100%;
}

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-banner h2 { font-size: 1.7rem; }
    .section-title h2 { font-size: 1.6rem; }
}

/* --- Story Image Placeholder --- */
.story-img {
    width: 100%;
    min-height: 320px;
    background: linear-gradient(135deg, var(--primary-soft), var(--section-soft));
    border-radius: 24px;
    border: 1px solid var(--line);
}

/* --- Stat Cards --- */
.stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(220,38,38,0.2);
    box-shadow: 0 12px 30px rgba(220,38,38,0.1);
    transform: translateY(-4px);
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-card span {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
}

/* --- Check List --- */
.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.6rem 0;
    color: var(--muted);
    border-bottom: 1px dashed var(--line);
    font-size: 0.95rem;
}

.check-list li:last-child { border-bottom: none; }

.check-list li i {
    color: var(--success-color);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 1rem;
}

/* --- Value Cards --- */
.value-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220,38,38,0.2);
    box-shadow: 0 20px 45px rgba(220,38,38,0.12);
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin: 1rem 0 0.5rem;
}

.value-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Icon Box --- */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.value-card:hover .icon-box,
.quality-card:hover .icon-box,
.contact-card:hover .icon-box {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

/* --- Safety Panel --- */
.safety-panel {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* --- Quality Cards --- */
.quality-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.quality-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220,38,38,0.2);
    box-shadow: 0 15px 35px rgba(220,38,38,0.1);
}

.quality-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0.8rem 0 0.4rem;
}

.quality-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Timeline --- */
.timeline-item {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(220,38,38,0.1);
    border-color: rgba(220,38,38,0.2);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.3rem 1.2rem;
    border-radius: 60px;
    margin-bottom: 1rem;
}

.timeline-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Contact Cards --- */
.contact-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220,38,38,0.2);
    box-shadow: 0 20px 50px rgba(220,38,38,0.12);
}

.contact-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin: 1rem 0 0.5rem;
}

.contact-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.contact-card a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.contact-card a:hover { text-decoration: underline; }

/* --- Contact Form --- */
.contact-form {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 12px;
    border-color: var(--line);
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    background: #fafafa;
    color: var(--ink);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
    background: #fff;
}

.contact-form .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--nav-ink);
    margin-bottom: 0.4rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(220,38,38,0.3);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220,38,38,0.4);
}

/* --- Info Panel (Contact) --- */
.info-panel {
    background: linear-gradient(135deg, var(--primary-soft), var(--section-soft));
    border: 1px solid rgba(220,38,38,0.15);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
}

.info-panel h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}

.info-panel p {
    font-size: 0.92rem;
    color: var(--muted);
}

.quick-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--muted);
    border-bottom: 1px dashed var(--line);
}

.quick-list li:last-child { border-bottom: none; }
.quick-list li i { color: var(--success-color); }

/* --- Map Panel (Contact) --- */
.map-panel {
    background: var(--section-soft);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.5rem;
}

.map-box {
    width: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.map-box::before {
    content: '\F3E0';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 4rem;
    color: rgba(220,38,38,0.15);
}

.map-label {
    background: #fff;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 100%;
}

/* --- Step Cards (Contact Order flow) --- */
.step-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.8rem 1.5rem;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220,38,38,0.2);
    box-shadow: 0 16px 40px rgba(220,38,38,0.1);
}

.step-num {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    box-shadow: 0 6px 16px rgba(220,38,38,0.3);
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* --- FAQ Cards (Contact) --- */
.faq-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.8rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.faq-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220,38,38,0.2);
    box-shadow: 0 15px 38px rgba(220,38,38,0.1);
}

.faq-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.7rem;
}

.faq-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* --- btn-primary-soft --- */
.btn-primary-soft {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff !important;
    border: none;
    border-radius: 60px;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(220,38,38,0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary-soft:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(220,38,38,0.4);
}

/* --- Payment Card Front Content --- */
.front-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0.5rem;
}

.front-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
    text-align: center;
}

.front-content .hover-hint {
    margin-top: 0.5rem;
}
