
        /* CSS Variables */
        :root {
            --primary: #2A6B7E;
            --secondary: #4CAF50;
            --accent: #FF7043;
            --light: #F5F7FA;
            --dark: #2C3E50;
            --text: #333333;
            --white: #FFFFFF;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--white);
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-primary {
            background-color: var(--secondary);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #3d8b40;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: var(--primary);
            color: var(--white);
        }

        .btn-secondary:hover {
            background-color: #1f5565;
            transform: translateY(-2px);
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        /* Promotion bar above navbar */
        .promo-bar {
            background: linear-gradient(90deg, rgba(58,123,213,0.95), rgba(106,145,240,0.95));
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
        }
        .promo-wrap {
            overflow: hidden;
            position: relative;
            white-space: nowrap;
            animation: promoSlide 18s linear infinite;
        }
        /* each duplicated track should at least fill the visible area so
           sliding one full width (-100%) reveals the next identical track */
        .promo-track {
            display: inline-block;
            white-space: nowrap;
            will-change: transform;
            padding: 10px 0;
            min-width: 100%;
        }
        .promo-track span {
            display: inline-block;
            margin-right: 28px;
        }

        /* marquee animation - slide one full track out so the duplicate follows */
      @keyframes promoSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
        /* animate each duplicated track so the loop is seamless */
        .promo-wrap .promo-track { animation: promoScroll 18s linear infinite; }
        .promo-wrap .promo-track[aria-hidden="true"] { animation-delay: 9s; }

        /* ensure header stays below promo bar when sticky */
        header { top: 0; }

        /* Respect user reduced motion preference */
        @media (prefers-reduced-motion: reduce) {
            .promo-wrap .promo-track { animation: none; }
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 8px;
            color: var(--secondary);
        }

        .nav-menu {
            display: flex;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            font-weight: 500;
            transition: var(--transition);
        }

        .nav-menu a:hover {
            color: var(--secondary);
        }

        .header-actions {
            display: flex;
            align-items: center;
        }

        .search-container {
            position: relative;
            margin-right: 20px;
        }

        .search-input {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 200px;
            transition: var(--transition);
        }

        .search-input:focus {
            width: 250px;
            outline: none;
            border-color: var(--primary);
        }

        .search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
        }

        .header-actions i {
            font-size: 1.2rem;
            margin-left: 20px;
            cursor: pointer;
            transition: var(--transition);
        }

        .header-actions i:hover {
            color: var(--secondary);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(42, 107, 126, 0.85), rgba(42, 107, 126, 0.85)), url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 150px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* Categories Section */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .category-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            height: 300px;
        }

        .category-card:hover {
            transform: translateY(-10px);
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .category-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: var(--white);
        }

        /* Featured Products */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .product-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            background-color: var(--white);
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
        }

        .product-image {
            height: 200px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 20px;
        }

        .product-price {
            font-weight: 700;
            color: var(--accent);
            margin: 10px 0;
        }

        .product-rating {
            color: var(--secondary);
            margin-bottom: 10px;
        }

        /* About Section */
        .about {
            background-color: var(--light);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-text h2 {
            margin-bottom: 20px;
        }

        .features-list {
            margin-top: 20px;
        }

        .features-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .features-list i {
            color: var(--secondary);
            margin-right: 10px;
        }

        /* Testimonials */
        .testimonials-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonials-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial {
            min-width: 100%;
            padding: 30px;
            text-align: center;
            background-color: var(--light);
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: 600;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background-color: var(--primary);
        }

        /* Blog Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .blog-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-image {
            height: 200px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 20px;
        }

        .blog-date {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 10px;
        }

        /* Newsletter */
        .newsletter {
            background-color: var(--primary);
            color: var(--white);
            text-align: center;
            padding: 60px 0;
        }

        .newsletter h2 {
            margin-bottom: 20px;
        }

        .newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-family: inherit;
        }

        .newsletter-form button {
            background-color: var(--secondary);
            color: var(--white);
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background-color: #3d8b40;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a:hover {
            color: var(--secondary);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .social-icons a:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--white);
                box-shadow: var(--shadow);
                transition: var(--transition);
                padding: 20px 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 10px 0;
                text-align: center;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .search-container {
                display: none;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .newsletter-form button {
                border-radius: 4px;
                padding: 12px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .section {
                padding: 60px 0;
            }
        }

        /* Feature Highlight styles (numbered list + image) */
        .feature-highlight {
            background-color: var(--white);
            color: var(--dark);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 520px;
            gap: 40px;
            align-items: center;
        }
        .feature-text .kicker {
            font-size: 0.85rem;
            color: #666;
            text-transform: none;
            margin-bottom: 12px;
        }
        .feature-text h2 {
            font-size: 2.2rem;
            margin-bottom: 24px;
        }
        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .feature-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        .feature-item .num {
            font-weight: 700;
            color: var(--primary);
            min-width: 54px;
            font-size: 1rem;
        }
        .feature-item-content h3 {
            margin: 0 0 6px 0;
            font-size: 1.05rem;
        }
        .feature-item-content .muted {
            color: #777;
            margin: 0;
        }
        .feature-list hr {
            border: none;
            border-top: 1px solid #eee;
            margin: 12px 0;
        }
        .feature-image img {
            width: 100%;
            border-radius: 6px;
            box-shadow: 0 10px 30px rgba(30,30,30,0.08);
            display: block;
        }

        @media (max-width: 992px) {
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .feature-image { order: -1; margin-bottom: 20px; }
        }


        /* Social Showcase (mobile UI demos) */
        .social-showcase {
            background: linear-gradient(180deg, rgba(250,250,252,0.6), rgba(245,247,250,0.4));
            color: var(--dark);
        }
        .social-showcase .section-tagline {
            text-align: center;
            color: #64748b;
            max-width: 820px;
            margin: 0 auto 28px;
        }
        .mobile-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            align-items: start;
            justify-items: center;
        }
        .mobile-card {
            width: 100%;
            max-width: 300px;
        }
        .phone-frame {
            width: 100%;
            background: #0b1220;
            border-radius: 28px;
            padding: 14px;
            box-shadow: 0 12px 30px rgba(10,20,30,0.12);
            position: relative;
            overflow: hidden;
        }
        .phone-frame::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 6px;
            background: rgba(255,255,255,0.06);
            border-radius: 4px;
            z-index: 5;
        }
        .platform-badge {
            position: absolute;
            top: 12px;
            left: 14px;
            background: rgba(255,255,255,0.9);
            color: var(--dark);
            padding: 6px 10px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.85rem;
            z-index: 10;
            box-shadow: 0 6px 18px rgba(10,20,30,0.12);
        }
        .platform-badge.fb { background: #1877F2; color: #fff; }
        .platform-badge.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
        .platform-badge.tt { background: #010101; color: #fff; }

        .phone-screen {
            border-radius: 16px;
            overflow: hidden;
            background: #000;
            height: 560px; /* aspect-like phone height */
        }
        .phone-screen video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Small screens: stack and scale down */
        @media (max-width: 992px) {
            .mobile-grid { grid-template-columns: repeat(2, 1fr); }
            .phone-screen { height: 420px; }
        }
        @media (max-width: 576px) {
            .mobile-grid { grid-template-columns: 1fr; }
            .mobile-card { max-width: 360px; }
            .phone-screen { height: 520px; }
        }

        /* Mission Section Styles */
        .mission {
            background: linear-gradient(180deg, rgba(58,123,213,0.06) 0%, rgba(42,107,126,0.02) 100%);
            text-align: center;
        }
        .mission .section-title {
            color: var(--dark);
        }
        .mission p {
            max-width: 900px;
            margin: 0 auto 20px;
            font-size: 1.05rem;
            color: #2b2b2b;
        }
        .read-more-btn {
            margin-top: 10px;
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 20px;
        }
        .modal-overlay.active {
            display: flex;
        }
        .modal {
            background: var(--white);
            max-width: 800px;
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(10,10,10,0.2);
            overflow: hidden;
        }
        .modal-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .modal-body {
            padding: 20px;
            line-height: 1.6;
        }
        .modal-actions {
            padding: 20px;
            display: flex;
            gap: 10px;
            justify-content: flex-end;
            border-top: 1px solid #f1f1f1;
        }
        .modal-close {
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
        }

        /* Wave Border Styles */
        .wave-border {
            width: 100%;
            overflow: hidden;
            line-height: 0;
            /* pull the wave up so it overlaps the section below and doesn't create a large white gap */
            margin-bottom: -40px;
        }
        .wave-svg {
            display: block;
            width: 100%;
            height: 100px;
        }
        .wave { fill: #e9f1ff; }
        .wave--front { fill: rgba(58,123,213,0.12); }
        .wave--back { fill: rgba(58,123,213,0.06); }

        /* animate waves by translating on X axis */
        @keyframes waveMove {
            0% { transform: translateX(0); }
            100% { transform: translateX(-25%); }
        }
        .wave-group {
            transform-origin: center;
        }
        .wave-animate-1 {
            animation: waveMove 8s linear infinite;
        }
        .wave-animate-2 {
            animation: waveMove 12s linear infinite;
        }

        /* Make sure the categories section doesn't get hidden under the overlapping wave */
        .section#categories {
            padding-top: 60px; /* keeps a comfortable spacing from the wave */
        }

        @media (max-width: 992px) {
            .wave-border { margin-bottom: -30px; }
            .wave-svg { height: 80px; }
            .section#categories { padding-top: 50px; }
        }

        @media (max-width: 576px) {
            .wave-border { margin-bottom: -20px; }
            .wave-svg { height: 60px; }
            .section#categories { padding-top: 40px; }
        }

/* Custom Scrollbar Styling */
/* WebKit-based browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.04);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--secondary), var(--primary));
    border-radius: 10px;
    border: 3px solid rgba(255,255,255,0.12);
}
::-webkit-scrollbar-thumb:hover {
    filter: brightness(0.95);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) rgba(0,0,0,0.04);
}

/* Keep focus visible */
::-webkit-scrollbar-thumb:focus,
::-webkit-scrollbar-thumb:active {
    outline: 2px solid rgba(255,255,255,0.12);
}

.promo-wrap {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.promo-track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  padding: 10px 0;
  min-width: 100%;
  animation: promoSlide 18s linear infinite;
}

@keyframes promoSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Ensure header stays below promo bar when sticky */
header {
  top: 0;
}