/* ==========================================
   TRADETRACK TRADERS - PREMIUM DESIGN SYSTEM
   ========================================== */

/* Custom CSS Variables */
:root {
    --bg-main: #0D0D0D;
    --bg-darker: #050505;
    --bg-card: rgba(22, 22, 22, 0.65);
    --bg-card-hover: rgba(30, 30, 30, 0.85);
    
    --accent: #5BC236;
    --accent-glow: rgba(91, 194, 54, 0.45);
    --accent-hover: #4fb02d;
    --accent-rgb: 91, 194, 54;
    
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --text-muted: #666666;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(91, 194, 54, 0.25);
    
    --shadow-main: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-glow: 0 0 25px 0 rgba(91, 194, 54, 0.2);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Reset & Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Particle Background Setup */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

main {
    position: relative;
    z-index: 2;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

/* Section Common Styling */
.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header.align-left {
    text-align: left;
    margin-bottom: 30px;
}

.section-header .subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.section-header .section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 15px auto 0;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin-top: 15px;
    border-radius: 2px;
}

.title-underline.centered {
    margin-right: auto;
    margin-left: auto;
}

/* Glassmorphism Cards Base */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: var(--shadow-main);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.05), transparent 40%);
    z-index: 1;
    pointer-events: none;
}

/* Button Component Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    gap: 10px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-main);
    box-shadow: 0 4px 20px rgba(91, 194, 54, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 6px 25px rgba(91, 194, 54, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-outline:hover {
    background-color: rgba(91, 194, 54, 0.1);
    box-shadow: 0 4px 15px rgba(91, 194, 54, 0.2);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba59;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.btn-whatsapp-icon {
    background-color: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 10px;
    border-radius: 8px;
    line-height: 1;
}

.btn-whatsapp-icon:hover {
    background-color: #25D366;
    color: #FFFFFF;
    transform: scale(1.05);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.badge-accent {
    color: var(--accent);
    border-color: rgba(91, 194, 54, 0.3);
    background-color: rgba(91, 194, 54, 0.1);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent);
}

/* Custom glowing effects */
.text-glowing {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.accent-text {
    color: var(--accent);
    display: block;
}


/* ==========================================
   NAVBAR & NAVIGATION STYLE
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 12px 0;
    background-color: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.brand-subtitle {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--accent);
    margin-top: -3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 4px;
    transition: var(--transition-fast);
}

/* Active mobile menu toggle */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
    padding: 0 40px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mobile-link:hover, .mobile-link.active {
    color: var(--accent);
}

.mobile-menu-ctas {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    margin-top: 30px;
}


/* ==========================================
   HERO SECTION STYLE
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 140px;
    background-image: url('assets/hero_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.75) 0%, rgba(13, 13, 13, 0.95) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    flex: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Right Side: Floating Visual Slider Layout */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.showcase-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background-color: var(--accent);
    opacity: 0.15;
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: floatGlow 8s infinite alternate ease-in-out;
}

.showcase-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    z-index: 2;
}

.showcase-slider {
    position: relative;
    width: 100%;
    height: 380px;
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9) translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.6s;
    z-index: 1;
}

.showcase-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    z-index: 2;
}

.product-showcase-card {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border-color: var(--border-glass);
    transition: var(--transition-smooth);
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.45) 0%, rgba(13, 13, 13, 0.65) 100%);
}

.product-showcase-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(91, 194, 54, 0.15);
}

.card-lighting {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(91, 194, 54, 0.12), transparent 60%);
    pointer-events: none;
}

.product-badge {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    border: 1px solid rgba(91, 194, 54, 0.3);
    padding: 4px 10px;
    border-radius: 30px;
    background-color: rgba(91, 194, 54, 0.08);
}

.showcase-img-container {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 10px 0;
}

.showcase-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
    animation: floatCard 4s infinite alternate ease-in-out;
}

.showcase-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.showcase-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Slider Controls (Chevron & Dots) */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    padding: 8px 16px;
}

.slider-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    color: var(--accent);
    background-color: rgba(255, 255, 255, 0.05);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dots .dot.active {
    background-color: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* Hero Bottom Highlights */
.hero-highlights {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    border-top: 1px solid var(--border-glass);
    background-color: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(10px);
    width: 100%;
    margin-top: 40px;
}

.highlight-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
    padding: 10px;
    border-radius: 12px;
}

.highlight-icon {
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
}

.highlight-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}


/* ==========================================
   ABOUT US SECTION STYLE
   ========================================== */
.about-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-darker) 100%);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    width: 100%;
}

.image-frame-container {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.frame-border {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 2px solid var(--accent);
    opacity: 0.15;
    border-radius: 30px;
    pointer-events: none;
    z-index: 1;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow-main);
    border: 1px solid var(--border-glass);
    z-index: 2;
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(13, 13, 13, 0.95);
    border: 2px solid var(--accent);
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 130px;
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.text-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Counter Grid */
.counters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.counter-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    transition: var(--transition-smooth);
}

.counter-item:hover {
    border-color: var(--accent);
    background: rgba(91, 194, 54, 0.03);
    transform: translateY(-3px);
}

.counter-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
}

.counter-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-left: 2px;
}

.counter-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    width: 100%;
    margin-top: 4px;
    font-weight: 500;
}


/* ==========================================
   PRODUCTS SECTION STYLE
   ========================================== */
.products-section {
    background-color: var(--bg-darker);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Dynamic product cards with hover 3D-lift and lighting glow */
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.4) 0%, rgba(13, 13, 13, 0.6) 100%);
    border: 1px solid var(--border-glass);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(91, 194, 54, 0.18);
}

.product-card-lighting {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(91, 194, 54, 0.1), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.product-img-wrapper {
    position: relative;
    padding: 30px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(5, 5, 5, 0.4);
    border-bottom: 1px solid var(--border-glass);
}

.product-img-large {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.7));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-large {
    transform: scale(1.08) rotate(2deg);
}

/* Premium 3D Mockup render visual additions */
.render-bg {
    background: radial-gradient(circle at 50% 50%, rgba(91, 194, 54, 0.08) 0%, rgba(5, 5, 5, 0.6) 100%);
}

.render-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: var(--accent);
    opacity: 0.1;
    filter: blur(35px);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.product-render-img {
    z-index: 2;
    position: relative;
}

.product-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.product-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.product-description-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    min-height: 48px;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.product-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-tick {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.product-action-footer {
    margin-top: auto;
}

.enquire-btn {
    width: 100%;
}


/* ==========================================
   WHY CHOOSE US SECTION STYLE
   ========================================== */
.why-section {
    background-color: var(--bg-main);
    overflow: hidden;
}

.why-bg-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-color: var(--accent);
    opacity: 0.02;
    filter: blur(150px);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 30px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-color: var(--border-glass);
    height: 100%;
}

.why-card:hover {
    border-color: var(--accent);
    background: rgba(30, 30, 30, 0.85);
    box-shadow: 0 10px 30px rgba(91, 194, 54, 0.08);
}

.why-icon-container {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background-color: rgba(91, 194, 54, 0.1);
    border: 1px solid rgba(91, 194, 54, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon-container {
    background-color: var(--accent);
    color: var(--bg-main);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(91, 194, 54, 0.3);
}

.why-icon-container svg {
    width: 26px;
    height: 26px;
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}


/* ==========================================
   GALLERY SECTION STYLE
   ========================================== */
.gallery-section {
    background-color: var(--bg-darker);
}

.gallery-masonry {
    column-count: 4;
    column-gap: 20px;
    width: 100%;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-main);
    background-color: rgba(20, 20, 20, 0.5);
}

.gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.5) 70%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.gallery-overlay .gallery-cat {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-primary);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    object-fit: contain;
}

#lightbox-caption {
    color: var(--text-primary);
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.lightbox-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 30px;
    cursor: pointer;
    padding: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-fast);
}

.lightbox-btn:hover {
    color: var(--accent);
}

.lightbox-btn.prev {
    left: 30px;
}

.lightbox-btn.next {
    right: 30px;
}


/* ==========================================
   TESTIMONIALS SECTION STYLE
   ========================================== */
.testimonials-section {
    background-color: var(--bg-main);
    overflow: hidden;
}

.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95) translateY(15px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    height: 40px;
    margin-top: -30px;
}

.stars {
    color: #F2C94C;
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    margin-top: auto;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.author-title {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonial Controls (Arrows & Dots) */
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.t-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.t-btn:hover {
    border-color: var(--accent);
    color: var(--bg-main);
    background-color: var(--accent);
}

.t-dots {
    display: flex;
    gap: 8px;
}

.t-dots .t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.t-dots .t-dot.active {
    background-color: var(--accent);
    width: 20px;
    border-radius: 4px;
}


/* ==========================================
   BRANDS SECTION STYLE (INFINITY SCROLL)
   ========================================== */
.brands-section {
    padding: 60px 0;
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.brands-heading {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.brands-slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.brands-slider-container::before,
.brands-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-slider-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-darker) 0%, transparent 100%);
}

.brands-slider-container::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-darker) 0%, transparent 100%);
}

.brands-slider {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: infiniteScroll 30s linear infinite;
}

.brand-item {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.35;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.brand-item:hover {
    opacity: 0.95;
    color: var(--accent);
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* ==========================================
   FAQ SECTION STYLE (ACCORDION)
   ========================================== */
.faq-section {
    background-color: var(--bg-main);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-color: var(--border-glass);
    background: var(--bg-card);
    border-radius: 12px;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
    border-color: rgba(91, 194, 54, 0.3);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.faq-trigger:hover {
    color: var(--accent);
}

.faq-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 30px;
}

.faq-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-bottom: 24px;
    line-height: 1.6;
}


/* ==========================================
   CONTACT SECTION STYLE & FORMS
   ========================================== */
.contact-section {
    background-color: var(--bg-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-info-card, .contact-form-card {
    padding: 40px;
    height: 100%;
    border-color: var(--border-glass);
}

.contact-info-card h3, .contact-form-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.card-glow-element {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(91, 194, 54, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.info-details p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hover-link:hover {
    color: var(--accent);
}

.quick-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-instruction {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group label .required {
    color: #EB5757;
}

.form-control {
    width: 100%;
    background-color: rgba(5, 5, 5, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus {
    border-color: var(--accent);
    background-color: rgba(13, 13, 13, 0.8);
    box-shadow: 0 0 12px rgba(91, 194, 54, 0.15);
}

.select-field {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23B3B3B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.select-field option {
    background-color: var(--bg-darker);
    color: var(--text-primary);
}

.text-area {
    resize: none;
}

.form-status {
    font-size: 0.9rem;
    text-align: center;
    border-radius: 8px;
    padding: 10px;
    display: none;
}

.form-status.success {
    display: block;
    background-color: rgba(37, 211, 102, 0.1);
    color: #27AE60;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.form-status.error {
    display: block;
    background-color: rgba(235, 87, 87, 0.1);
    color: #EB5757;
    border: 1px solid rgba(235, 87, 87, 0.2);
}

/* Map frame configuration */
.map-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-main);
}

.map-container iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}


/* ==========================================
   FOOTER STYLE
   ========================================== */
.footer-section {
    background-color: #050505;
    border-top: 1px solid var(--border-glass);
    position: relative;
    z-index: 10;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
}

.footer-about-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.gst-badge-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.gst-label {
    color: var(--text-muted);
    font-weight: 600;
}

.gst-value {
    color: var(--accent);
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-details li {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-link-item:hover {
    color: var(--accent);
}

.highlight-link {
    color: var(--accent) !important;
    font-weight: 600;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--border-glass);
    background-color: #030303;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.designed-by {
    color: var(--text-secondary);
    font-weight: 500;
}


/* ==========================================
   FLOATING ACTION BUTTONS
   ========================================== */
.floating-action-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.btn-float-whatsapp {
    background-color: #25D366;
}

.btn-float-whatsapp:hover {
    background-color: #20ba59;
    transform: scale(1.1);
}

.btn-float-call {
    background-color: #2D9CDB;
}

.btn-float-call:hover {
    background-color: #2087c2;
    transform: scale(1.1);
}

.btn-float-top {
    background: rgba(22, 22, 22, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.btn-float-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-float-top:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.1);
}

.float-btn svg {
    width: 24px;
    height: 24px;
}

.hover-label {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: rgba(13, 13, 13, 0.95);
    border: 1px solid var(--border-glass);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.float-btn:hover .hover-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}


/* ==========================================
   ANIMATION KEYFRAMES
   ========================================== */
@keyframes floatCard {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes floatGlow {
    0% {
        transform: translate(-10px, -10px);
    }
    100% {
        transform: translate(10px, 10px);
    }
}


/* ==========================================
   RESPONSIVENESS (MOBILE-FIRST DESIGNS)
   ========================================== */

/* High-res laptops & desktops <= 1200px */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-masonry {
        column-count: 3;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Medium Tablets & iPads <= 992px */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    .section-padding {
        padding: 80px 0;
    }
    .section-header .section-title {
        font-size: 2.1rem;
    }
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding-bottom: 40px;
    }
    .hero-content {
        align-items: center;
    }
    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visual {
        order: -1; /* product showcase goes on top on mobile */
        margin-top: 20px;
    }
    .hero-highlights {
        margin-top: 20px;
    }
    .highlight-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-masonry {
        column-count: 2;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .nav-menu, .btn-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Small Tablets & Large Phones <= 768px */
@media (max-width: 768px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-masonry {
        column-count: 2;
    }
    .testimonial-card {
        padding: 24px;
    }
    .testimonial-text {
        font-size: 1.05rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-group {
        margin-bottom: 20px;
    }
    .form-group:last-child {
        margin-bottom: 0;
    }
    .faq-trigger {
        padding: 20px;
        font-size: 1.05rem;
    }
    .faq-content {
        padding: 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    /* Ensuring the top showcase (slider) has 100% visibility on mobile */
    .showcase-slider-wrapper {
        max-width: 100%;
    }
    .showcase-slider {
        height: 350px;
    }
    .product-showcase-card {
        padding: 20px;
    }
    .showcase-img-container {
        width: 160px;
        height: 160px;
    }
}

/* Small Mobile Devices <= 480px */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .btn {
        width: 100%;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .highlight-container {
        grid-template-columns: 1fr;
    }
    .counters-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .gallery-masonry {
        column-count: 1;
    }
    .faq-trigger {
        font-size: 0.95rem;
    }
    .experience-badge {
        bottom: -15px;
        right: -10px;
        padding: 12px;
        min-width: 100px;
    }
    .experience-badge .number {
        font-size: 1.5rem;
    }
    .experience-badge .text {
        font-size: 0.65rem;
    }
    .showcase-slider {
        height: 320px;
    }
    .showcase-img-container {
        width: 140px;
        height: 140px;
    }
    .showcase-info h3 {
        font-size: 1.2rem;
    }
    .floating-action-container {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 48px;
        height: 48px;
    }
}
