/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --gold-accent: #FFC107;
    --gold-dark: #FFB300;
    --gold-light: #FFD700;
    --dark-bg: #1A1A1A;
    --light-bg: #2D2D2D;
    --black-bg: #0A0A0A;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --gradient-primary: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 8px 32px 0 rgba(255, 193, 7, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bg-dark: #0a0e14;
    --navbar-height: 80px; /* default fixed navbar height used to offset content (desktop) */

    /* Logo style start here */
            --gold-accent: #D4AF37;      /* Classic Gold */
            --gold-light: #FFD700;       /* Mustard/Bright Gold */
            --text-white: #FFFFFF;       /* Crisp White */
            --glow-gold: rgba(212, 175, 55, 0.3);
            /* Logo style ends here */
}



/* Tosater styles */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Base toast */
.toast {
    min-width: 280px;
    max-width: 360px;
    padding: 14px 18px;
    background: #0f0f0f; /* dark gray / near black */
    color: #ffffff;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    border-left: 4px solid #d4af37; /* gold accent */
    animation: toastSlideIn 0.35s ease, toastFadeOut 0.35s ease 3.5s forwards;
}

/* Variants */
.toast.success {
    border-left-color: #d4af37;
}

.toast.error {
    border-left-color: #c0392b;
}

.toast.warning {
    border-left-color: #f1c40f;
}

.toast.info {
    border-left-color: #d4af37;
}

/* Animations */
@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(120%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastFadeOut {
    to {
        opacity: 0;
        transform: translateX(120%);
    }
}


/* Logo style start */
.logo-container {
            position: relative;
            width: 30px;
            height: 30px;
            border: 3px solid var(--gold-accent);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 0 25px var(--glow-gold);
            transition: all 0.4s ease;
            padding-left: 60px;
           
            
        }

        /* The NL Monogram Symbol */
        .symbol {
            position: relative;
            width: 120px;
            height: 100px;
            margin-bottom: 15px;
            /* margin-top: 10px; */
        }


        /* Gold Gradient Monogram */
        .char-nl {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
            clip-path: polygon(0% 0%, 35% 0%, 35% 60%, 75% 0%, 100% 0%, 100% 100%, 65% 100%, 65% 40%, 25% 100%, 0% 100%);
            filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.3));
        }

        /* The White "Next" Arrow Element for High Contrast */
        .arrow-line {
            position: absolute;
          
            top: 45%;
            left: -10%;
            /* width: 125%;  original */
            width: 80%;
            height: 10px;
            background: var(--text-white);
            transform: rotate(-35deg);
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
            z-index: 2;
            border-radius: 2px;
           
        }

        /* Text Styling - Crisp White */
        .text-container {
            font-size: 34px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-white);
        }

        .gold-text {
            color: var(--gold-light);
        }

        /* Call to Action Button Style */
        .cta-button {
            margin-top: 40px;
            padding: 12px 30px;
            background-color: var(--gold-light);
            color: #000;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
            transition: transform 0.2s;
        }

        .cta-button:hover {
            transform: scale(1.05);
            background-color: var(--gold-accent);
        }

     
/* Logo style end */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--black-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
     /* font-family: "Courier Prime", monospace;
  font-weight: 100;
  font-style: normal; */
/* 
 font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: italic; */
}

/* ============================================
   Scroll Progress Indicator
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

/* ============================================
   Animated Background Particles
   ============================================ */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 20s infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* ============================================
   Interactive Cursor Effect (Optional)
   ============================================ */
@media (min-width: 1024px) {
    .cursor-dot {
        width: 8px;
        height: 8px;
        background: var(--gold-accent);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.1s ease;
        display: none;
    }
    
    .cursor-dot.active {
        display: block;
    }
    
    .interactive-element:hover ~ .cursor-dot,
    .interactive-element:hover {
        transform: scale(1.5);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation & Header (Glassmorphism)
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    padding-left: 2rem;
}

.logo-text {
    color: var(--gold-accent);
    font-weight: 800;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    display: block;
    position: relative;
}

/* Products dropdown preview (show two products with icons) */
.products-preview {
    width: 320px;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
}
.products-preview img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
    transition: transform 0.28s var(--transition);
}
.products-preview:hover img { transform: scale(1.06) rotate(-1deg); }
.products-preview h5 {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    color: var(--text-primary);
}
.products-preview { animation: slideIn 0.28s cubic-bezier(0.2,0.8,0.2,1) both; }
.products-preview:nth-child(1) { animation-delay: 0.02s; }
.products-preview:nth-child(2) { animation-delay: 0.06s; }
@keyframes slideIn {
    from { transform: translateY(-6px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* =========================
   Partners / Marquee (themed)
   ========================= */
.partners-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--light-bg) 100%);
    position: relative;
    z-index: 1;
}
.partners-section .section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--gold-accent);
    text-shadow: 0 0 20px rgba(212,175,55,0.18);
    text-align: center;
    margin-bottom: 6px;
}
.partners-section .section-subtitle {
    margin-top: 6px;
    margin-bottom: 18px;
    text-align: center;
    color: var(--text-secondary);
}
.partners-marquee {
    margin-top: 18px;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    gap: 20px;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: marquee 30s linear infinite;
}
.marquee-group {
    display: flex;
    gap: 20px;
    align-items: center;
}
.partner-card {
    min-width: 150px;
    max-width: 220px;
    height: 100px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(238, 233, 233, 0.01)); */
    background: white;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6), 0 6px 20px rgba(212,175,55,0.04);
    border: 1px solid rgba(255,255,255,0.04);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.98rem;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    outline: none;
}
.partner-logo {
    max-height: 40px;
    max-width: 160px;
    object-fit: contain;
    /* filter: grayscale(100%) brightness(0.95); */
    display: block;
}
.partner-name { font-size: 0.82rem; color: var(--text-secondary); opacity: 0.95; }
.partner-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.6), 0 8px 30px rgba(212,175,55,0.06); }
.partner-card:focus { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,0.7), 0 0 0 4px rgba(212,175,55,0.06); border-color: rgba(212,175,55,0.08); }

/* ensure duplicate items do not receive focus */
.marquee-group[aria-hidden="true"] .partner-card { pointer-events: none; }

@media (max-width: 900px) {
    .partner-card { min-width: 130px; padding:10px 12px; }
    .partner-logo { max-height: 34px; }
}
@media (max-width: 600px) {
    .partner-card { min-width: 110px; padding:8px 10px; }
    .partner-logo { max-height: 28px; }
}

/* Pause on hover */
.partners-section:hover .marquee-track { animation-play-state: paused; }

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

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .partner-card { min-width: 130px; height: 64px; font-size: 0.9rem; }
    .marquee-track { gap: 16px; }
}
@media (max-width: 600px) {
    .partner-card { min-width: 110px; height: 56px; font-size: 0.85rem; border-radius: 12px; }
    .partners-section { padding: 28px 0; }
}
.products-preview p { margin: 0; color: var(--text-secondary); font-size: 0.85rem; }
.products-preview .product-preview-link { display:flex; gap:12px; align-items:center; color:inherit; text-decoration:none; }
.products-preview .product-preview-link:focus { outline: 2px dashed rgba(212,175,55,0.4); outline-offset: 4px; border-radius:6px; }

/* show dropdown on hover */
.nav-item.products:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* small animation for product cards */
.product-card { transform: translateY(0); transition: transform 0.36s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.36s, border-color 0.28s ease; border: 1px solid transparent; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.6); border-color: var(--gold-accent); }
.product-card:focus { outline: none; box-shadow: 0 24px 50px rgba(0,0,0,0.65), 0 0 0 4px rgba(212,175,55,0.06); }
.product-card:hover .product-image { transform: scale(1.03); }


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

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

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

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    min-width: 240px;
    background: rgba(45, 45, 45, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 16px;
    list-style: none;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 193, 7, 0.1);
    z-index: 1001;
}

/* Right-align dropdown for items near the end */
.nav-item:last-child .dropdown-menu,
.nav-item:nth-last-child(2) .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.dropdown-icon {
    font-size: 1.25rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--gold-accent);
    border-radius: 0 4px 4px 0;
    transition: height 0.2s ease;
}

.dropdown-menu a:hover {
    color: var(--gold-accent);
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.05) 100%);
    padding-left: 2rem;
}

.dropdown-menu a:hover .dropdown-icon {
    transform: scale(1.2) rotate(5deg);
}

.dropdown-menu a:hover::before {
    height: 60%;
}

/* CTA Button with Pulse Effect */
.cta-button {
    background: var(--gradient-primary);
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px;
    color: #1A1A1A !important;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold-accent);
    border-radius: 3px;
    transition: var(--transition);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    /* height: 140vh; */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* allow CTAs to extend if needed so they aren't clipped by the section box
       video slider itself remains clipped via .hero-video-slider */
    overflow: visible;
    /* Use navbar height variable to ensure hero content never hides behind fixed header */
    padding-top: calc(var(--navbar-height, 72px) + 52px);
    padding-bottom: 3rem;
    
    
}

/* Video Slider */
.hero-video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.video-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

.video-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Slightly enhance video visibility */
    filter: brightness(1.06) contrast(1.08) saturate(1.06);
    transition: filter 300ms ease, transform 600ms ease;
    transform: scale(1.015); /* subtle zoom for better fill */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lessen darkness so background video is more visible while keeping text readable */
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.42) 0%, rgba(10, 10, 10, 0.38) 100%);
    z-index: 1;
}

/* Video Slider Indicators */
.video-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

@media (min-width: 1024px) {
    .video-slider-indicators { bottom: 22px; gap: 10px; }
    .video-indicator { opacity: 0.95; }
}

.video-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.video-indicator.active {
    background: var(--gold-accent);
    width: 40px;
    border-radius: 6px;
    border-color: var(--gold-accent);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
}

/* Floating Animation for Cartoon Images */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(2deg);
    }
    66% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

.floating-animation img {
    transition: transform 0.3s ease;
}

.floating-animation:hover img {
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    padding-top: 1rem; /* Extra padding to clear fixed header */
    max-width: 900px;
    margin: 0 auto;
    /* padding-bottom: 10rem; */
/* Ensure CTAs in hero are above any overlays or video elements */
.hero-content {
    z-index: 1200; /* sit above navbar overlays and indicators */
}
.hero-cta {
    position: relative;
    z-index: 1201;
}
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    font-size: 3rem;
    margin-bottom: 10px;
    margin-top: 15px;
    display: block;
    animation: fadeInUp 0.8s ease-out;
      
}

@media(max-width:768px){
    .title-line{
         font-size: 25px;
    margin-bottom: 10px;
    margin-top: 15px;
    display: block;
    animation: fadeInUp 0.8s ease-out;
    }
}


.title-line.highlight {
    color: var(--gold-accent);
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Detail Slider */
.detail-slider {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-glass);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.slider-track {
    position: relative;
    min-height: 120px;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.slider-item.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.slider-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.slider-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gold-accent);
}

.slider-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--gold-accent);
    width: 30px;
    border-radius: 5px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    /* padding-bottom: 2rem; */
}

.btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    /* width: 60px; */
}

.btn-primary {
    background: var(--gradient-primary);
    color: #1A1A1A;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--gold-accent);
}

.btn-secondary:hover {
    background: var(--gold-accent);
    color: #1A1A1A;
    transform: translateY(-2px);
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-left {
    transform: translateX(-100px);
}

.scroll-reveal-right {
    transform: translateX(100px);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-left {
    transform: translateX(-100px);
}

.scroll-reveal-right {
    transform: translateX(100px);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   Building Animation (Scale, Rotate, Bounce)
   ============================================ */
.build-animation {
    opacity: 0;
    transform: scale(0.5) rotate(5deg);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.build-animation.revealed {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.build-animation[data-direction="left"] {
    transform: scale(0.5) rotate(5deg) translateX(-50px);
}

.build-animation[data-direction="right"] {
    transform: scale(0.5) rotate(-5deg) translateX(50px);
}

.build-animation[data-direction="left"].revealed,
.build-animation[data-direction="right"].revealed {
    transform: scale(1) rotate(0deg) translateX(0);
}

/* ============================================
   Fade In Up Animation
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Zoom In Animation
   ============================================ */
.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.zoom-in.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   Rotate In Animation
   ============================================ */
.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rotate-in.revealed {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* ============================================
   Slide Up Animation
   ============================================ */
.slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Additional Unique Animations
   ============================================ */
/* Flip In Left */
.flip-in-left {
    opacity: 0;
    transform: perspective(1000px) rotateY(-90deg) translateX(-100px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.flip-in-left.revealed {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg) translateX(0);
}

/* Bounce In */
.bounce-in {
    opacity: 0;
    transform: scale(0.3) translateY(-100px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.revealed {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Spin In */
.spin-in {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.spin-in.revealed {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Slide In Left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-150px) rotate(-5deg);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.revealed {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

/* Scale In */
.scale-in {
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-in.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Slide In Right */
.slide-in-right {
    opacity: 0;
    transform: translateX(150px) rotate(5deg);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.revealed {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

/* List Item Animate */
.list-item-animate {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.list-item-animate.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Portfolio Element Animations */
.fade-in-badge {
    opacity: 0;
    transform: scale(0.5) translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-badge.revealed {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.slide-in-category {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.slide-in-category.revealed {
    opacity: 1;
    transform: translateY(0);
}

.title-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.title-animate.revealed {
    opacity: 1;
    transform: translateY(0);
}

.text-animate {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.text-animate.revealed {
    opacity: 1;
    transform: translateY(0);
}

.stat-animate {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.stat-animate.revealed {
    opacity: 1;
    transform: scale(1);
}

.link-animate {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.link-animate.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 6rem 0;
    padding-top: calc(6rem + 20px); /* Extra space from header */
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1; /* ensure services sits below hero CTAs which have higher z-index */
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gold-accent);
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

/* Cartoon images for services */
.service-icon img.service-cartoon {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,250,250,0.9));
    padding: 8px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s var(--easing), box-shadow 0.35s var(--easing);
}

.service-card:hover img.service-cartoon {
    transform: translateY(-6px) rotate(-4deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

@media (max-width: 600px) {
    .service-icon img.service-cartoon {
        width: 72px;
        height: 72px;
        border-radius: 12px;
        padding: 6px;
    }
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 1rem;
    color: var(--gold-light);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 6rem 0;
    padding-top: calc(6rem + 20px); /* Extra space from header */
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* ============================================
   Chatbot Widget
   ============================================ */
.chatbot-widget {
    position: fixed; /* anchor to viewport */
    right: 10px; 
    bottom: calc(20px + env(safe-area-inset-bottom, 0px)); /* respect notches / safe area */
    z-index: 10050; /* above navbar and other UI */
    font-family: inherit;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;

    /* padding-left: 1200px; */
 /* left: 85%;  */
 /* padding-left: 10px; */
    
   
}

/* Prevent the wrapper from blocking clicks across the page (especially on small screens). Only children should receive pointer events. */
.chatbot-widget {
    width: auto;
    pointer-events: none;
}

.chatbot-widget .chatbot-toggle {
    pointer-events: auto; /* toggle must always be clickable */
}

.chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold-accent), var(--gold-dark));
    color: #000;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.chatbot-panel {
    width: 300px;
    max-width: calc(90vw - 48px);
    height: 420px;
    background: linear-gradient(180deg, rgba(26,26,26,0.98), rgba(34,34,34,0.98));
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(12px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.chatbot-panel[aria-hidden="false"],
.chatbot-panel.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chatbot-header {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.chatbot-header h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--gold-accent);
}

.chatbot-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
}

.chatbot-body {
    padding: 12px;
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.chatbot-messages {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chatbot-messages li {
    max-width: 85%;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.3;
}

.chatbot-messages li.user {
    align-self: flex-end;
    background: linear-gradient(90deg, rgba(255,193,7,0.95), rgba(255,183,0,0.95));
    color: #000;
}

.chatbot-messages li.bot {
    align-self: flex-start;
    background: rgba(255,255,255,0.04);
    color: var(--text-secondary);
}

.chatbot-form {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.chatbot-form input[type="text"] {
    flex: 1 1 auto;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    color: var(--text-primary);
}

.chatbot-form .btn {
    /* flex: 0 0 auto; */
    padding: 8px 12px;
}

.chatbot-actions {
    padding: 10px 12px 14px 12px;
    border-top: 1px dashed rgba(255,255,255,0.02);
    display: flex;
    gap: 8px;
    justify-content: center;
}

.whatsapp-btn {
    display: inline-block;
    padding: 8px 12px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.15);
}

@media (max-width: 480px) {
    .chatbot-panel { width: 92vw; height: 60vh; right: 12px; bottom: 80px; }
    .chatbot-toggle { width: 48px; height: 48px; font-size: 18px; }
}


/* ============================================
   Company DNA Section
   ============================================ */
.company-dna {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--dark-bg) 100%);
}

.dna-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Mission Block */
.mission-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
}

.mission-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gold-accent);
}

.mission-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.mission-mascot {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-placeholder {
    max-width: 300px;
    width: 100%;
}

.mascot-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 10px 30px rgba(255, 193, 7, 0.3));
}

/* Tech Stack Section */
.tech-stack-section {
    text-align: center;
}

.tech-stack-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--gold-accent);
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: var(--transition);
    cursor: pointer;
}

.tech-icon:hover {
    transform: translateY(-5px);
    border-color: var(--gold-accent);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.tech-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    margin-top: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-accent);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

@media (max-width: 768px) {
    /* set a smaller navbar height on tablet/mobile */
    :root {
        --navbar-height: 56px;
    }
    .mission-block {
        grid-template-columns: 1fr;
    }
    
    .tech-stack-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Product Overview Section
   ============================================ */
.product-overview {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--light-bg) 100%);
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-feature {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-feature:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
}

.feature-cartoon {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}

.feature-cartoon img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 10px 30px rgba(255, 193, 7, 0.3));
    transition: var(--transition);
}

.product-feature:hover .feature-cartoon img {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(255, 193, 7, 0.5));
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.product-feature h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold-accent);
    text-align: center;
}

.product-feature p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-weight: bold;
}

.product-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   Portfolio Showcase Section
   ============================================ */
.portfolio-showcase {
    padding: 6rem 0;
    background: var(--black-bg);
}

.portfolio-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.portfolio-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.portfolio-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid var(--gold-accent);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gold-accent);
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

.portfolio-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-stat {
    flex: 1;
    text-align: center;
}

.portfolio-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold-accent);
    display: block;
}

.portfolio-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.portfolio-link:hover {
    gap: 1rem;
    color: var(--gold-light);
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   Home About Section
   ============================================ */
.home-about {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--dark-bg) 100%);
}

.home-about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--gold-accent);
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.about-text-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: var(--transition);
}

.highlight-item:hover {
    border-color: var(--gold-accent);
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-cartoon {
    max-width: 100%;
    width: 100%;
}

.about-cartoon img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 10px 30px rgba(255, 193, 7, 0.3));
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-us {
    padding: 6rem 0;
    background: var(--black-bg);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
}

.why-item:hover .why-icon {
    transform: scale(1.2) rotate(5deg);
}

.why-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold-accent);
}

.why-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: white;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-item p {
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--light-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gold-accent);
    padding-left: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

/* ============================================
   Page Hero (for other pages)
   ============================================ */
.page-hero {
    padding: 8rem 0 4rem;
    padding-top: calc(8rem + 80px); /* Account for fixed navbar */
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 179, 0, 0.05) 100%);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gold-accent);
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio-section {
    padding: 4rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
    border-color: var(--gold-accent);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.portfolio-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.portfolio-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid var(--gold-accent);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gold-accent);
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

/* ============================================
   Services Detail Section
   ============================================ */
.services-detail {
    padding: 4rem 0;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-detail-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-accent);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
}

.service-detail-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold-accent);
}

.service-detail-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-card ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    position: relative;
}

.service-detail-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-weight: 700;
}

/* ============================================
   Legal Content Section
   ============================================ */
.legal-content {
    padding: 4rem 0;
}

.legal-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--gold-accent);
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--gold-accent);
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--gold-accent);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-role {
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-bio {
    color: var(--text-secondary);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.careers-content {
    margin-top: 3rem;
}

.careers-info {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
}

.careers-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.careers-text h3:first-child {
    margin-top: 0;
}

.careers-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.careers-text ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.careers-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .hamburger span {
        background: var(--gold-accent);
        width: 28px;
        height: 3px;
    }

    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        /* width: 100%;  actuall */
        width: 80%;
        height: calc(100vh - var(--navbar-height));
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
        
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 193, 7, 0.1);
        padding: 0.5rem 0;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    /* Disable hover on mobile - only click/tap */
    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        margin-left: 0;
        display: none;
        background: rgba(45, 45, 45, 0.5);
        border: 1px solid rgba(255, 193, 7, 0.2);
        border-radius: 12px;
        padding: 0.5rem 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
        margin-top: 0.75rem;
        padding: 0.75rem 0;
    }

    .dropdown-menu a {
        color: var(--text-secondary);
        padding: 0.75rem 1.5rem;
        padding-left: 2rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .dropdown-menu a:hover {
        color: var(--text-primary);
        background: rgba(255, 193, 7, 0.15);
        padding-left: 2.5rem;
    }

    .dropdown-menu a::before {
        display: none;
    }

    .dropdown-icon {
        font-size: 1.1rem;
    }

    /* Add arrow indicator for mobile dropdowns */
    .dropdown .nav-link::after {
        content: '▼' !important;
        position: absolute !important;
        right: 0 !important;
        bottom: auto !important;
        top: 22% !important;
        transform: translateY(-50%) !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        font-size: 0.7rem;
        transition: transform 0.3s ease;
        color: var(--gold-accent);
       
    }

    .dropdown.active .nav-link::after {
        transform: translateY(-50%) rotate(180deg) !important;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 1rem;
    }

    .product-showcase,
    .portfolio-highlights {
        grid-template-columns: 1fr;
    }
    
    .portfolio-stats {
        gap: 1rem;
    }

    .home-about-content {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        gap: 1rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .feature-cartoon {
        max-width: 150px;
    }
}

/* Compact header for mobile: reduce navbar height, hide logo text and adjust menu top */
@media (max-width: 768px) {
    /* Reduce navbar visual footprint */
    .navbar {
        padding: 0.25rem 0;
        border-bottom-width: 1px;
    }

    /* Slightly tighter nav container padding */
    .nav-container {
        padding: 0.4rem 1rem;
        align-items: center;
    }

    /* Make logo smaller and hide the text to save space */
    .logo svg {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        display: none;
    }

    /* Move mobile menu to match the smaller header height */
    .nav-menu {
        top: var(--navbar-height);
        height: calc(100vh - var(--navbar-height));
    }

    /* Keep hero content clear of the reduced fixed header */
    .hero {
        padding-top: calc(var(--navbar-height) + 10px);
        min-height: calc(100vh - var(--navbar-height));
    }

    /* Ensure hamburger aligns vertically with smaller header */
    .hamburger {
        margin-top: 0;
    }

    /* Ensure hamburger is always visible and on top on mobile devices
       (fixes case where it only appears after scrolling) */
    .hamburger {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        z-index: 11000 !important; /* above navbar overlays */
        position: relative !important;
    }
}

/* Helpful responsive helpers: ensure media scales correctly on small devices */
/* Put these outside of mobile-only media queries so they apply globally */
img,
picture,
video,
iframe,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Make sure hero doesn't force too-tall viewport on small screens */
.hero {
    min-height: calc(100vh - var(--navbar-height));
}

/* ==========================
   Contact Modal Styles
   ========================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: flex-start;
    justify-content: center;
    background: rgba(4, 6, 10, 0.6);
    backdrop-filter: blur(6px) saturate(120%);
    z-index: 13000; /* above everything else */
    padding: calc(var(--navbar-height) + 16px) 20px 40px;
    /* height: 50px; */
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
    animation: fadeInOverlay 0.18s ease-out both;
}

.modal-dialog {
    width: 100%;
    max-width: 680px;
    background: linear-gradient(180deg, rgba(18,18,20,0.75), rgba(24,24,26,0.85));
    border: 1px solid rgba(255,193,7,0.12);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 6px 18px rgba(255,193,7,0.04);
    padding: 1.25rem 1.5rem 1.5rem;
    color: var(--text-primary);
    transform-origin: top center;
    animation: slideDown 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal-header h2 {
    margin: 0 0 0.25rem 0;
    color: var(--gold-accent);
}
.modal-subtitle {
    margin: 0 0 1rem 0;
    color: var(--text-secondary);
}


.thank-you-message {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}


/* ================================
   Thank-you modal enhancements
   ================================ */
#thankYouModal {
    align-items: center;
    padding: 40px 20px;
}

#thankYouModal .modal-dialog {
    max-width: 780px;
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    transform-origin: center center;
    animation: popIn 420ms cubic-bezier(0.2,1,0.22,1);
}
#thankYouModal .modal-dialog.celebrate {
    box-shadow: 0 30px 80px rgba(212,175,55,0.12), 0 6px 28px rgba(212,175,55,0.08);
    transform-origin: center center;
}

@keyframes popIn {
    0% { transform: translateY(-8px) scale(.96); opacity: 0; }
    60% { transform: translateY(4px) scale(1.04); opacity: 1; }
    100% { transform: translateY(0) scale(1); }
}

.thank-you-graphic {
    width: 120px;
    height: 120px;
    margin: 0 auto 14px;
    position: relative;
}

.checkmark { width: 120px; height: 120px; display:block; margin:0 auto; }
.checkmark .checkmark-circle, .checkmark .checkmark-check {
    stroke: var(--gold-accent);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.checkmark .checkmark-circle {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    animation: drawCircle 700ms ease forwards;
}
.checkmark .checkmark-check {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 400ms ease 600ms forwards;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

.confetti { position:absolute; inset:0; pointer-events:none; overflow:visible; }
.confetti .c { position:absolute; width:10px; height:10px; border-radius:2px; opacity:0; transform:translateY(0); }
.confetti .c1 { left: 10%; top: 30%; background:#FFD700; animation: confettiBurst 900ms ease 50ms forwards; }
.confetti .c2 { left: 30%; top: 10%; background:#FFC107; animation: confettiBurst 900ms ease 120ms forwards; }
.confetti .c3 { left: 50%; top: 20%; background:#D4AF37; animation: confettiBurst 900ms ease 230ms forwards; }
.confetti .c4 { left: 70%; top: 25%; background:#FFB300; animation: confettiBurst 900ms ease 80ms forwards; }
.confetti .c5 { left: 85%; top: 35%; background:#FFD54F; animation: confettiBurst 900ms ease 160ms forwards; }
.confetti .c6 { left: 40%; top: 40%; background:#FFF176; animation: confettiBurst 900ms ease 200ms forwards; }

@keyframes confettiBurst {
    0% { opacity: 0; transform: translateY(0) rotate(0) scale(0.7); }
    30% { opacity: 1; transform: translateY(-60px) rotate(45deg) scale(1.05); }
    100% { opacity: 0; transform: translateY(70px) rotate(200deg) scale(0.9); }
}


.modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    background: transparent;
    color: var(--text-secondary);
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
}

.modal-body .contact-form .form-group input,
.modal-body .contact-form .form-group textarea {
    width: 100%;
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    justify-content: flex-end;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-24px) scale(0.99); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* make modal full-width on very small devices */
@media (max-width: 480px) {
    .modal-dialog { max-width: 100%; border-radius: 12px; padding: 1rem; }
    .modal-actions { flex-direction: column-reverse; gap: 0.5rem; }
}

@media (max-width: 480px) {
    .hero {
        min-height: 65vh;
        padding-top: calc(var(--navbar-height) + 20px); /* keep space for navbar */
    }

    /* Slightly larger tap targets on very small screens */
    .nav-link,
    .btn,
    .cta-button {
        padding-top: 0.9rem;
        padding-bottom: 0.9rem;
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Improve image cropping behavior for fixed-size wrappers */
.portfolio-image img,
.feature-cartoon img,
.mascot-placeholder img,
.team-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

/* Ensure videos used as backgrounds are not taller than viewport on small devices */
.hero-video {
    max-height: 100vh;
}

/* Reduce large animation translation distances on small screens to avoid temporary overflow */
@media (max-width: 480px) {
    .scroll-reveal-left { transform: translateX(-30px); }
    .scroll-reveal-right { transform: translateX(30px); }

    .build-animation[data-direction="left"] { transform: scale(0.5) rotate(5deg) translateX(-15px); }
    .build-animation[data-direction="right"] { transform: scale(0.5) rotate(-5deg) translateX(15px); }

    .flip-in-left { transform: perspective(800px) rotateY(-10deg) translateX(-20px); }

    .slide-in-left { transform: translateX(-40px) rotate(-3deg); }
    .slide-in-right { transform: translateX(40px) rotate(3deg); }

    .slide-up { transform: translateY(30px); }
    .fade-in-up { transform: translateY(40px); }

    /* reduce hero video indicators/paddings that may push layout */
    .video-slider-indicators { bottom: 18px; gap: 8px; }
    .video-indicator.active { width: 28px; }
}

/* Ensure no horizontal scroll remains as a last resort */
html { overflow-x: hidden; }


@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .detail-slider {
        padding: 1.5rem;
    }

    .slider-item {
        flex-direction: column;
        text-align: center;
    }

    .service-card,
    .portfolio-item,
    .service-detail-card {
        padding: 1.5rem;
    }

    .legal-section {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   Lazy Loading
   ============================================ */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

.logoanchar{
    text-decoration: none;
}


.Comapnyinfo{
    color: white;
    text-decoration: none;
}


.whatsapp-toggle {
    position: fixed;
    z-index: 10000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(180deg);
    color: #000;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;

    /* whatsapp width */
     position: fixed; /* anchor to viewport */
    left: 20px; 
    bottom: calc(20px + env(safe-area-inset-bottom, 0px)); /* respect notches / safe area */
    z-index: 10050; /* above navbar and other UI */
    font-family: inherit;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;

}

/* Products page styles */
.products-hero {
    margin-top: 50px;
    padding: 120px 0 60px;
    text-align: center;
}
.products-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}
.products-hero p { color: var(--text-secondary); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 24px;
    margin-top: 32px;
}

.product-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.06);
    padding: 22px;
    border-radius: 12px;
    box-shadow: var(--shadow-glass);
    display: flex;
    flex-direction: column;
}

.product-card h3 { margin-bottom: 8px; color: var(--gold-light); display:flex; align-items:center; gap:10px; }
.product-card p { margin-bottom: 12px; color: var(--text-secondary); }

.product-card .product-image { width: 100%; max-height: 180px; object-fit:cover; border-radius:8px; margin-bottom:12px; }

.coming-soon {
    margin-top: 12px;
    font-weight: 700;
    color: var(--gold-accent);
}

/* subtle entrance animation */
@keyframes floatUp {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.product-card { animation: floatUp 0.6s cubic-bezier(0.2,0.8,0.2,1) both; }

/* Add slight border glow on hover for accessibility */
.product-card:hover { box-shadow: 0 20px 45px rgba(0,0,0,0.65), 0 0 18px rgba(212,175,55,0.08); }

/* footer small product item */
.products-footer-item img { vertical-align: middle; margin-right: 8px; border-radius:6px; }
/* --- end added styles --- */




.brand-icon {
  width: 48px;
  height: 48px;
  background: #0F0F0F;           /* dark base */
  border: 2px solid #F2B705;     /* gold accent */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #FFFFFF;
}

.pulse-icon {
  box-shadow: 0 0 12px rgba(242, 183, 5, 0.4); /* gold glow */
}

input[type="number"]{
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;

}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button{
    -webkit-appearance: none;
}





.imgInput{
    display: flex;
    background-color: rgb(50, 46, 46);
    border-radius: 6px;
}

.formImg{
    width: 50px;
    height: 50px;

}
.upArrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;

    /* Premium dark glass background */
    background: linear-gradient(
        145deg,
        #1f1f1f,
        #0e0e0e
    );

    color: black;
    border: 1px solid rgba(255, 193, 7, 0.25);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.55),
        0 0 0 rgba(255, 193, 7, 0.4);

    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    backdrop-filter: blur(6px);

    opacity: 0;
    pointer-events: none;

    transform: translateY(10px) scale(0.95);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Visible state */
.upArrow.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Hover effect */
.upArrow:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.6),
        0 0 16px rgba(255, 193, 7, 0.65);
}

/* Click feedback */
.upArrow:active {
    transform: scale(0.95);
}

/* Soft pulse glow (optional but modern) */
.upArrow.show::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 193, 7, 0.25),
        transparent 70%
    );
    opacity: 0;
    animation: pulseGlow 2.5s infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0% { opacity: 0; transform: scale(0.9); }
    50% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.1); }
}


.upArrow.show{
    opacity: 1;
    pointer-events: auto;
}


@media(max-width:480px){
    .upArrow{
        width: 48px;
        height: 48px;
    }
}


.upArrowWidget {
    position: fixed;
    right: 10px;
    bottom: calc(100px + env(safe-area-inset-bottom, 0px));
    z-index: 10050;

    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
   

}
    

.upimg{
    width: 30px;
    height: 30px;
}







.top-bar {
  background-color: #111; /* Matching the dark header */
  color: #ffffff;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #333;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-infoBar{
    display: inline;
    /* cursor: pointer; */
    
}

.contact-infoBar a {
  margin-right: 20px;
  
 
}




/* Gold Accent for Icons */
.top-bar i, .social-links a {
  color: #d4a017; /* Matches your "Get Started" button */
  text-decoration: none;
  margin-left: 15px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #ffffff; /* Brightens on hover */
}


.social-links{
    display: inline-block;
    gap: 14px;
}

@media(max-width:480px){
    .contact-infoBar{
            display: none;
    }
    .social-links{
        display: inline;
        position: absolute;
        right: 40px;
    } 
    /* .symbol{
        width: 20px;
        height: 30px;
        margin-top: 30px;
    }
    */

    .arrow-line{
        width: 20%;
        height: 6px;
        display: none;
    }
}



@media(max-width:900px){
 .arrow-line{
        width: 20%;
        height: 6px;
        display: none;
    }

}


.header-logo{
    height: 70px;
     width: auto; 
     object-fit: contain;
     background: none;
     border-radius: 8px;
}


@media(max-width:480px){

.header-logo{
     height: 40px;

}
}


a{
    text-decoration: none;
}