@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #0F0F0F;
    --card-bg: #151515;
    --card-bg-hover: #1E1E1E;
    --border-color: #262626;
    --text-primary: #FFFFFF;
    --text-secondary: #8E8E8E;
    --accent-color: #FFFFFF;
    --accent-glow: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Global Reset & Page Wrapper */
body.elementor-template-canvas {
    background-color: var(--bg-color) !important;
    color: var(--text-primary) !important;
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}



/* Custom Selection */
::selection {
    background-color: #FFFFFF;
    color: #0F0F0F;
}

/* -----------------------------------------
   HEADER & FOOTER (Programmatic Elementor Sections)
   ----------------------------------------- */
.xlazaar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.xlazaar-header.scrolled {
    background: rgba(15, 15, 15, 0.95);
    padding: 10px 0;
}

.xlazaar-header-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 15px 20px !important;
    width: 100% !important;
    box-sizing: border-box;
}

.xlazaar-nav-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.xlazaar-nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 0;
    text-decoration: none;
}

.xlazaar-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

.xlazaar-nav-menu a:hover {
    color: var(--text-primary);
}

.xlazaar-nav-menu a:hover::after {
    width: 100%;
}

.xlazaar-btn-primary {
    background-color: var(--text-primary) !important;
    color: var(--bg-color) !important;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0px !important;
    padding: 12px 28px !important;
    transition: var(--transition-smooth) !important;
    border: 1px solid var(--text-primary) !important;
    text-decoration: none;
    display: inline-block;
}

.xlazaar-btn-primary:hover {
    background-color: transparent !important;
    color: var(--text-primary) !important;
    box-shadow: 0 0 15px var(--accent-glow);
}

.xlazaar-btn-secondary {
    background-color: transparent !important;
    color: var(--text-primary) !important;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0px !important;
    padding: 12px 28px !important;
    transition: var(--transition-smooth) !important;
    border: 1px solid var(--border-color) !important;
    text-decoration: none;
    display: inline-block;
}

.xlazaar-btn-secondary:hover {
    border-color: var(--text-primary) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* -----------------------------------------
   HERO SECTION
   ----------------------------------------- */
.xlazaar-hero-sec {
    position: relative !important;
    min-height: 100vh !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding-top: 100px;
    box-sizing: border-box;
}

.xlazaar-hero-sec .elementor-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.xlazaar-hero-carousel {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
}

.xlazaar-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.08);
}

.xlazaar-hero-slide.active {
    opacity: 0.45;
    animation: heroZoom 10s linear infinite forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1.02);
    }
}

.xlazaar-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(15, 15, 15, 0.95) 90%),
                linear-gradient(to bottom, transparent 60%, rgba(15, 15, 15, 1) 100%);
    z-index: 1;
}

/* Typography styles inside hero */
.xlazaar-hero-heading h1 {
    font-size: 72px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
    color: #FFFFFF !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.xlazaar-hero-text p {
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: var(--text-secondary) !important;
    max-width: 650px !important;
    margin: 0 auto !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* -----------------------------------------
   INFINITE CATEGORY MARQUEE
   ----------------------------------------- */
.xlazaar-marquee-sec {
    background-color: #0A0A0A;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 25px 0 !important;
    overflow: hidden;
}

.xlazaar-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.xlazaar-marquee-track {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    animation: marqueeMove 30s linear infinite;
    gap: 30px;
    padding-right: 30px;
}

.xlazaar-marquee-item {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 32px;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-transform: uppercase;
    opacity: 0.8;
    flex-shrink: 0;
    white-space: nowrap;
}

.xlazaar-marquee-dot {
    font-size: 32px;
    color: #444;
    flex-shrink: 0;
    white-space: nowrap;
}

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

/* -----------------------------------------
   FEATURED CATEGORIES (Hover Zoom Cards)
   ----------------------------------------- */
.xlazaar-categories-sec .elementor-column {
    padding: 10px;
}

.xlazaar-cat-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-sizing: border-box;
}

.xlazaar-cat-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
    z-index: 1;
}

.xlazaar-cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.4) 50%, transparent 100%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.xlazaar-cat-content {
    position: relative;
    z-index: 3;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.xlazaar-cat-card:hover {
    border-color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.xlazaar-cat-card:hover .xlazaar-cat-img-bg {
    transform: scale(1.08);
}

.xlazaar-cat-card:hover .xlazaar-cat-overlay {
    background: linear-gradient(to top, rgba(15, 15, 15, 0.98) 0%, rgba(15, 15, 15, 0.6) 50%, rgba(15, 15, 15, 0.2) 100%);
}

.xlazaar-cat-card:hover .xlazaar-cat-content {
    transform: translateY(0);
}

.xlazaar-cat-content h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.xlazaar-cat-content span {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
    margin-bottom: 5px;
}

.xlazaar-cat-card:hover .xlazaar-cat-content span {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* -----------------------------------------
   WHY BRANDS CHOOSE US
   ----------------------------------------- */
.xlazaar-why-sec .elementor-widget-icon-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition-smooth);
}

.xlazaar-why-sec .elementor-widget-icon-box:hover {
    background: var(--card-bg-hover);
    border-color: var(--text-primary);
    transform: translateY(-5px);
}

.xlazaar-why-sec .elementor-icon-box-icon i {
    color: var(--text-primary) !important;
    font-size: 32px !important;
}

.xlazaar-why-sec .elementor-icon-box-title {
    font-family: var(--font-heading) !important;
    text-transform: uppercase;
    font-size: 20px !important;
    margin: 15px 0 10px 0 !important;
}

/* -----------------------------------------
   MANUFACTURING PROCESS (Timeline)
   ----------------------------------------- */
.xlazaar-timeline-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px 0;
}

.xlazaar-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #222;
    transform: translateX(-50%);
    z-index: 1;
}

.xlazaar-timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #444, #FFF);
    z-index: 2;
    transition: height 0.1s ease-out;
}

.xlazaar-timeline-step {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    width: 100%;
    z-index: 3;
}

.xlazaar-timeline-dot {
    position: absolute;
    left: 50%;
    top: 15px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #222;
    border: 2px solid var(--bg-color);
    transform: translateX(-50%);
    transition: var(--transition-smooth);
    z-index: 4;
}

.xlazaar-timeline-step.active .xlazaar-timeline-dot {
    background-color: #FFF;
    box-shadow: 0 0 10px #FFF;
    transform: translateX(-50%) scale(1.3);
}

.xlazaar-timeline-content {
    width: 44%;
    padding: 20px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    opacity: 0.3;
    transform: translateY(20px);
}

.xlazaar-timeline-step:nth-child(even) .xlazaar-timeline-content {
    margin-left: auto;
}

.xlazaar-timeline-step:nth-child(odd) .xlazaar-timeline-content {
    margin-right: auto;
    text-align: right;
}

.xlazaar-timeline-step.active .xlazaar-timeline-content {
    opacity: 1;
    transform: translateY(0);
    border-color: #888;
}

.xlazaar-timeline-content h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 0;
}

@media (max-width: 767px) {
    .xlazaar-timeline-line {
        left: 20px;
    }
    .xlazaar-timeline-dot {
        left: 20px;
    }
    .xlazaar-timeline-content {
        width: 85%;
        margin-left: auto !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    .xlazaar-timeline-step.active .xlazaar-timeline-dot {
        transform: translateX(-50%) scale(1.3);
    }
}

/* -----------------------------------------
   CAPABILITIES GRID
   ----------------------------------------- */
.xlazaar-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.xlazaar-capability-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 25px;
    text-align: center;
    transition: var(--transition-smooth);
}

.xlazaar-capability-card:hover {
    border-color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
}

.xlazaar-capability-card h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

/* -----------------------------------------
   SIGNATURE WORK (Masonry Gallery)
   ----------------------------------------- */
.xlazaar-gallery-sec .gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.xlazaar-gallery-sec .gallery-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.xlazaar-gallery-sec img {
    filter: grayscale(20%);
    transition: var(--transition-smooth);
}

.xlazaar-gallery-sec .gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

/* -----------------------------------------
   FACTORY & PRODUCTION (Horizontal Slider)
   ----------------------------------------- */
.xlazaar-factory-sec .swiper-container {
    padding-bottom: 50px;
}

.xlazaar-factory-sec .swiper-slide {
    overflow: hidden;
}

.xlazaar-factory-sec .swiper-slide img {
    transition: var(--transition-smooth);
}

.xlazaar-factory-sec .swiper-slide:hover img {
    transform: scale(1.06);
}

/* -----------------------------------------
   TESTIMONIALS SLIDER
   ----------------------------------------- */
.xlazaar-testimonial-carousel {
    max-width: 700px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.xlazaar-testimonial-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.xlazaar-testimonial-track br,
.xlazaar-testimonial-track p:empty {
    display: none !important;
}

.xlazaar-testimonial-slide {
    min-width: 100% !important;
    width: 100% !important;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    flex-shrink: 0;
}

.xlazaar-testimonial-content {
    font-size: 20px;
    font-style: italic;
    color: #E2E2E2;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
}

.xlazaar-testimonial-content::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 80px;
    position: absolute;
    left: -20px;
    top: -40px;
    color: rgba(255, 255, 255, 0.05);
}

.xlazaar-testimonial-author {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    margin-top: 0;
}

.xlazaar-testimonial-meta {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.xlazaar-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.xlazaar-testimonial-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #222;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.xlazaar-testimonial-dot.active {
    background-color: #FFF;
    transform: scale(1.3);
}

/* -----------------------------------------
   GLOBAL REACH SECTION (SVG Map Routes)
   ----------------------------------------- */
.xlazaar-map-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
}

.xlazaar-map-svg {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    z-index: 1;
}

.route-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 8 4;
    animation: dashRoute 30s linear infinite;
}

.pulse-dot {
    fill: #FFF;
    animation: mapPulse 2s infinite;
}

.origin-dot {
    fill: #FFF;
    stroke: #FFF;
    stroke-width: 3;
    animation: originPulse 1.5s infinite;
}

@keyframes dashRoute {
    to {
        stroke-dashoffset: -1000;
    }
}

@keyframes mapPulse {
    0% {
        r: 3px;
        opacity: 0.5;
    }
    50% {
        r: 6px;
        opacity: 1;
    }
    100% {
        r: 3px;
        opacity: 0.5;
    }
}

@keyframes originPulse {
    0% {
        r: 4px;
        stroke-width: 1;
        stroke-opacity: 1;
    }
    100% {
        r: 12px;
        stroke-width: 4;
        stroke-opacity: 0;
    }
}

/* -----------------------------------------
   FAQ/ACCORDION STYLING
   ----------------------------------------- */
.xlazaar-faq-sec .elementor-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.xlazaar-faq-sec .elementor-accordion-item {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--border-color) !important;
    margin-bottom: 0 !important;
}

.xlazaar-faq-sec .elementor-accordion-title {
    font-family: var(--font-heading) !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    padding: 24px 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.xlazaar-faq-sec .elementor-accordion-content {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: var(--text-secondary) !important;
    padding: 0 0 24px 0 !important;
}

.xlazaar-faq-sec .elementor-accordion-icon {
    order: 2;
    color: var(--text-primary) !important;
}

.xlazaar-faq-sec .elementor-active .elementor-accordion-icon {
    transform: rotate(45deg);
}

/* -----------------------------------------
   FINAL CTA SECTION (Video Background)
   ----------------------------------------- */
.xlazaar-cta-sec {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(15,15,15,0.7), rgba(15,15,15,0.95));
}

/* -----------------------------------------
   GENERIC UTILITIES
   ----------------------------------------- */
.section-padding {
    padding: 100px 0 !important;
}

.text-center {
    text-align: center;
}
