/* Premium Design Tokens & System */
:root {
    --bg-color: hsl(240, 10%, 4%);
    --bg-secondary: hsl(240, 10%, 8%);
    --text-color: hsl(0, 0%, 96%);
    --text-muted: hsl(240, 5%, 65%);
    --accent-color: hsl(271, 91%, 65%);
    /* Neon Purple */
    --accent-glow: hsla(271, 91%, 65%, 0.35);
    --secondary-accent: hsl(180, 100%, 50%);
    /* Electric Cyan */
    --secondary-glow: hsla(180, 100%, 50%, 0.3);
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(8, 8, 10, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgb(150, 150, 150)
}

::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

p {
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-color) 30%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loader Styles */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.loader-container.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    width: 300px;
}

.loader-logo {
    font-size: 2.2rem;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, var(--accent-color), var(--secondary-accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

.loader-bar-bg {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    box-shadow: 0 0 10px var(--accent-glow);
    transition: width 0.1s ease-out;
}

.loader-text {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Navigation Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo:hover {
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.25rem 0;
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    background: hsl(271, 91%, 70%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-secondary {
    background: var(--secondary-accent);
    color: #000;
    box-shadow: 0 4px 15px var(--secondary-glow);
}

.btn-secondary:hover {
    background: hsl(180, 100%, 65%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--secondary-glow);
}

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

.btn-outline:hover {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.02);
}

/* Scroll Cue */
.scroll-cue {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
    transition: opacity 0.5s;
}

.scroll-cue.hidden {
    opacity: 0;
}

.scroll-cue span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

/* Hero Scroll Section containing Canvas */
.hero-scroll-section {
    position: relative;
    height: 500vh;
    /* Extends vertical space for scroll mapping */
    background-color: var(--bg-color);
}

.canvas-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Text Overlays in Scroll section — cinematic lower-third style */
/* .trigger-text {
    position: fixed;
    bottom: 20vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    width: 90%;
    max-width: 900px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    will-change: transform, opacity;
    padding-left: 1.25rem;
    border-left: 3px solid var(--accent-color);
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.7));
} */
 
/* ===========================
   Premium Glass Text Card
=========================== */

.trigger-text {
    position: fixed;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: min(90%, 850px);
    padding: 35px 45px;

    text-align: center;

    opacity: 0;
    z-index: 20;
    pointer-events: none;
    will-change: transform, opacity;

    /* Glass Effect */
    /* background: rgba(15, 23, 42, 0.45); */
    /* backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); */

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.08);
}

/* Active text block gets pointer-events if it contains links */
.trigger-text.active {
    pointer-events: auto;
}

.trigger-text .label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* .trigger-text h1,
.trigger-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: none;
    color: #fff;
    background: none;
    -webkit-text-fill-color: unset;
    margin-bottom: 0.6rem;
} */
 .trigger-text h1,
.trigger-text h2{
    margin:0;

    color:#ffffff;

    font-size: clamp(1.4rem, 3vw, 2.2rem);

    font-weight:700;

    line-height:1.15;

    letter-spacing:-1px;

    text-shadow:0 4px 20px rgba(0,0,0,.45);
}

/* .trigger-text p {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin: 0;
} */

.trigger-text p{
    margin-top:20px;

    color:rgba(255,255,255,.88);

    font-size:1.1rem;

    line-height:1.8;

    max-width:650px;

    margin-inline:auto;
}


/* Generic Content Sections */
.content-section {
    position: relative;
    z-index: 3;
    padding: 8rem 2rem;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.secondary-bg {
    background-color: var(--bg-secondary);
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 5rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-transform: uppercase;
}

.card p {
    font-size: 0.95rem;
}

/* Showcase Box */
.showcase-box {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
    overflow: hidden;
}

.showcase-content {
    flex: 1;
}

.showcase-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.showcase-content p {
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
}

.showcase-visual {
    flex: 1;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 16/9;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-visual:hover .showcase-img {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    padding: 10rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, var(--bg-color) 70%);
}

.cta-container h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer p {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text-color);
}

/* Animations Keyframes */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .trigger-text h1 {
        font-size: 2rem;
    }

    .trigger-text h2 {
        font-size: 1.5rem;
    }

    .showcase-box {
        flex-direction: column;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .trigger-text h1 {
        font-size: 1.5rem;
    }

    .trigger-text h2 {
        font-size: 1rem;
    }

    .trigger-text p {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-container h2 {
        font-size: 2.5rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}




/* new */
body{
    background:#0f172a;
    font-family:Arial,Helvetica,sans-serif;
}

.industries-section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#38bdf8;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
}

.section-title h2{
    color:#fff;
    margin-top:15px;
    font-size:42px;
}

.swiper{
    width:100%;
    padding-top:40px;
    padding-bottom:70px;
}

.swiper-slide{

    width:380px;
    height:500px;

    border-radius:20px;

    overflow:hidden;

    position:relative;

    background:#222;

    box-shadow:0 20px 50px rgba(0,0,0,.4);

}

.swiper-slide img{

    width:100%;
    height:100%;
    object-fit:cover;

}

.overlay{

    position:absolute;

    bottom:0;

    left:0;

    right:0;

    padding:30px;

    background:linear-gradient(to top,
    rgba(0,0,0,.85),
    transparent);

    color:white;

}

.overlay h3{

    font-size:28px;

    margin-bottom:10px;

}

.overlay p{

    color:#ddd;

    line-height:1.6;

}

.swiper-slide-active{

    box-shadow:
    0 30px 80px rgba(0,0,0,.6);

}

.swiper-pagination-bullet{

    background:white;

}

.swiper-pagination-bullet-active{

    background:#38bdf8;

}