/* ===========================
   GLOBAL RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{

--primary:#0066ff;
--secondary:#00c8ff;
--dark:#050816;
--card:#101827;
--light:#ffffff;
--text:#d1d5db;
--glass:rgba(255,255,255,.08);

}

body{

font-family:'Poppins',sans-serif;
background:var(--dark);
color:white;
overflow-x:hidden;

}

section{

padding:90px 8%;

}

img{

width:100%;
display:block;

}

a{

text-decoration:none;
color:white;

}

ul{

list-style:none;

}


/* ===========================
NAVBAR
=========================== */

header{

position:fixed;
width:100%;
top:0;
left:0;
z-index:1000;
transition:.4s;

}

header.scrolled{
    background:rgba(5,8,22,.95);
    box-shadow:0 10px 30px rgba(0,0,0,.4);
}

nav{

display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:rgba(0,0,0,.4);
backdrop-filter:blur(12px);

}

.logo{

display:flex;
align-items:center;
gap:12px;


}

.logo img{

width:85px;

}

.logo h2{

font-family:Anton;
letter-spacing:2px;
color:#ffffff;
margin:0;

}


/* Logo Glow */
.logo:hover img{
    transform:scale(1.08);
    filter:
        drop-shadow(0 0 8px rgba(255,120,0,.7))
        drop-shadow(0 0 18px rgba(255,120,0,.5))
        drop-shadow(0 0 30px rgba(255,120,0,.35));
}

nav ul{

display:flex;
gap:35px;

}

nav ul li a{
color:#ffffff;
text-decoration:none;
font-size:15px;
transition:.3s;

}

nav ul li a:hover{

color:var(--secondary);

}

.quote-btn{

padding:12px 28px;
border-radius:50px;
background:linear-gradient(45deg,var(--primary),var(--secondary));
font-weight:600;

}

.quote-btn:hover{

transform:translateY(-3px);

}


/* ===========================
HERO
=========================== */

.hero{

height:100vh;
position:relative;
display:flex;
justify-content:center;
align-items:center;
overflow:hidden;

}

.hero video{

position:absolute;
width:100%;
height:100%;
object-fit:cover;

}

.overlay{

position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.55);

}

.hero-content{

position:relative;
z-index:2;
text-align:center;
max-width:900px;

}

.hero-content h1{

font-family:Anton;
font-size:78px;
line-height:1.1;
letter-spacing:3px;
margin-bottom:25px;

}

.hero-content p{

font-size:20px;
color:var(--text);
line-height:1.8;
margin-bottom:40px;

}

.buttons{

display:flex;
justify-content:center;
gap:20px;

}

.primary{

background:linear-gradient(45deg,#0066ff,#00d4ff);
padding:15px 40px;
border-radius:50px;
font-weight:600;

}

.secondary{

border:2px solid white;
padding:15px 40px;
border-radius:50px;

}

.primary:hover,
.secondary:hover{

transform:translateY(-5px);

}

/* ===========================
STATS
=========================== */

.stats{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
background:#081223;

}

.stats div{

background:var(--glass);
padding:40px;
border-radius:20px;
text-align:center;
backdrop-filter:blur(10px);

}

.stats h1{

font-size:65px;
color:#00d4ff;

}

.stats p{

margin-top:10px;
color:#bbb;

}

/* ===========================
SECTION TITLES
=========================== */

.title,
.section-title{

text-align:center;
margin-bottom:60px;

}

.title h2,
.section-title h2{

font-size:45px;
font-family:Anton;
letter-spacing:2px;

}

.title p,
.section-title p{

margin-top:15px;
color:#bdbdbd;
max-width:700px;
margin-inline:auto;

}

/* ===========================
SOLUTIONS
=========================== */

.solution-grid{

 display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

.card{

background:var(--card);
border-radius:20px;
overflow:hidden;
transition:.4s;
border:1px solid rgba(255,255,255,.08);

}

.card img{

height:220px;
object-fit:cover;

}

.card h3{

padding:20px;
font-size:24px;

}

.card p{

padding:0 20px 30px;
color:#bdbdbd;
line-height:1.8;

}

.card:hover{

transform:translateY(-12px);
box-shadow:0 15px 35px rgba(0,153,255,.3);

}

/* ===========================
VIDEO SLIDER
=========================== */

.video-slider{

background:#09111f;

}

.slider{

display:flex;
gap:30px;
overflow-x:auto;
scroll-snap-type:x mandatory;

}

.slider::-webkit-scrollbar{

display:none;

}

.slide{

min-width:420px;
scroll-snap-align:center;
}

.slide iframe{
    width:100%;
    height:220px;
    border:none;
    border-radius:18px;
}

.slide video{

width:100%;
border-radius:20px;

}
/* ===========================
PRODUCTS
=========================== */

/* ===========================
   Featured Products Grid
=========================== */
.product{
    backdrop-filter: blur(20px);
    background: rgba(20,29,45,.85);
    box-shadow:
        inset 0 1px rgba(255,255,255,.08),
        0 20px 60px rgba(0,0,0,.35);
}
.product-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(280px,320px));
    justify-content:center;
    gap:40px;
    margin-top:120px;
}


/* ===========================
   Product Card
=========================== */

.product{
    position: relative;
    background: #141d2d;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    overflow: visible;
    min-height: 470px;

    display: flex;
    flex-direction: column;
}


/* Soft glow behind product */

.product::before{
    content:"";

    position:absolute;

    width:220px;
    height:220px;
    top:-95px;
    left:50%;
    transform:translateX(-50%);
    background:radial-gradient(
        rgba(0,140,255,.35),
        transparent 70%
    );
    filter:blur(35px);
    z-index:0;
}
.product::after{
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(
        to bottom,
        rgba(7,11,24,0),
        rgba(20,29,45,.55),
        #141d2d
    );

    filter: blur(20px);
    z-index: 1;
    pointer-events: none;
}

/* ===========================
   Product Image
=========================== */

.product img{
    max-height:260px;
    width:auto;
    max-width:90%;
    position:absolute;
    top:-105px;
    left:50%;
    transform:translateX(-50%);
    width:90%;
    max-height:220px;
    object-fit:contain;
    z-index:2;
    transition:.45s;
}


/* ===========================
   Content
=========================== */

.product-content{
    display:flex;
    flex-direction:column;
    flex:1;
    min-height: 90px;
    padding:140px 25px 25px;
    text-align:center;
}

/* ===========================
   Heading
=========================== */

.product h3{
    min-height: 90px;
    margin-bottom:15px;
    font-size:28px;
    font-weight:700;
    color:#fff;
}


/* ===========================
   Description
=========================== */

.product p{

    color:#bdbdbd;

    line-height:1.6;
    font-size:17px;
    min-height:80px;
    margin-bottom:20px;
}


/* ===========================
   Button
=========================== */

.product-btn {
    margin-top:auto;      /* pushes button to bottom */
    display:block;
    text-align:center;
    padding: 14px 32px;
    border-radius: 40px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.product-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,102,255,.35);
}

/* ===========================
   Hover Effects
=========================== */

.product:hover{

    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,102,255,.35);
}

.product:hover img{

    transform:translateX(-50%) scale(1.8);
    filter:drop-shadow(0 20px 30px rgba(0,140,255,.45));
}

.product button:hover{
    transform:scale(1.05);
}

/* ===========================
   Responsive
=========================== */

@media(max-width:768px){

    .product-grid{
        grid-template-columns:1fr;
        gap:90px;
    }

    .product{
        max-width:350px;
        margin:auto;
    }

}
/* ===========================
GALLERY
=========================== */

.gallery{
    background:#08101f;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery-grid img{
    height:260px;
    object-fit:cover;
    border-radius:18px;
    cursor:pointer;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ===========================
ABOUT
=========================== */

.about{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:60px;
    align-items:center;
    background:#050816;
}

.about-image{
    flex: 1 3;
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-image video{
    width:100%;
    max-width:none;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.about-content h2{
    font-size:46px;
    margin-bottom:25px;
    font-family:Anton;
    letter-spacing:2px;
}

.about-content p{
    color:#c8c8c8;
    line-height:2;
    margin-bottom:35px;
}

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.features div{
    background:var(--glass);
    padding:18px;
    border-radius:12px;
}

/* ===========================
CLIENTS
=========================== */

.clients{
    padding:80px 0;
    background:#081321;
    overflow:hidden;
}

.clients h2{
    text-align:center;
    color:#fff;
    font-size:38px;
    margin-bottom:40px;
}

.logo-marquee{
    overflow:hidden;
    width:100%;
}

.logo-grid{

    display:grid;
    grid-auto-flow:column;
    grid-template-rows:repeat(2,140px);
    grid-auto-columns:190px;
    gap:25px;
    width:max-content;
    animation:marquee 35s linear infinite;
}

.logo-grid img{

    width:110px;
    height:150px;
    object-fit:contain;
    background:none;
    padding:12px;
    border-radius:12px;
    transition:.3s;
}


.logo-grid:hover img{
    transform:scale(1.1);
    transform:translateX(-50%) scale(1.08);
    filter:drop-shadow(0 10px 20px rgba(0,140,255,.45));
}

@keyframes marquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}
/* ===========================
TESTIMONIALS
=========================== */
.stars{
    color:#FFD700;
    font-size:24px;
    letter-spacing:4px;
    margin-bottom:12px;
    text-align:center;
    text-shadow:0 0 8px rgba(255,215,0,0.5);
}
.testimonials{
    background:#050b18;
    text-align:center;
}

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:50px;
}

.testimonial{
    background:var(--glass);
    border-radius:20px;
    padding:35px;
}

.testimonial p{
    line-height:1.8;
    color:#ccc;
    margin-bottom:25px;
}

.testimonial h4{
    color:#00d9ff;
}

/* ===========================
CONTACT
=========================== */

.contact{
    background:#081120;
}

.contact h2{
    text-align:center;
    font-family:Anton;
    font-size:46px;
}

.contact p{
    text-align:center;
    color:#bbb;
    margin-bottom:50px;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

form input,
form select,
form textarea{
    background:#111827;
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    padding:18px;
    border-radius:12px;
    font-size:15px;
}

form button{
    padding:18px;
    border:none;
    border-radius:50px;
    background:linear-gradient(45deg,var(--primary),var(--secondary));
    color:#fff;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

.contact-info{
    background:var(--glass);
    padding:40px;
    border-radius:20px;
}

.contact-info h3{
    margin-bottom:25px;
}

.contact-info p{
    text-align:left;
    margin:18px 0;
}

.map iframe{
    width:100%;
    height:300px;
    border:none;
    border-radius:20px;
    margin-top:25px;
}

/* ===========================
CTA
=========================== */

.cta{
    background:linear-gradient(90deg,#0066ff,#00d9ff);
    text-align:center;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    margin-bottom:35px;
}

.cta a{
    background:white;
    color:#0066ff;
    padding:16px 35px;
    border-radius:50px;
    font-weight:700;
}

/* ===========================
FOOTER
=========================== */

footer{
    background:#03050c;
    padding:70px 8% 30px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    justify-content:space-between;
    align-items:start;
    gap:80px;
    max-width:1200px;
    margin:0 auto;
}

.footer-container h2,
.footer-container h3{
    margin-bottom:20px;
}

.footer-container p{
    color:#aaa;
    line-height:1.8;
}

.footer-container a{
    display:block;
    margin:10px 0;
    color:#bbb;
}

footer hr{
    margin:50px 0 25px;
    border-color:#222;
}

.copyright{
    text-align:center;
    color:#777;
}

/* ===========================
FLOATING BUTTONS
=========================== */

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 90px;
    z-index: 999;
}

.whatsapp img {
    width: 60px;
    height: 60px;
    transition: 0.3s;
}

.whatsapp img:hover {
    transform: scale(1.1);
}


/* ===========================
RESPONSIVE
=========================== */

@media(max-width:992px){

.hero-content h1{
font-size:54px;
}

.about{
grid-template-columns:1fr;
}

.contact-container{
grid-template-columns:1fr;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

nav{
flex-direction:column;
gap:20px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
}

.hero-content h1{
font-size:42px;
}

.buttons{
flex-direction:column;
align-items:center;
}

.stats{
grid-template-columns:1fr;
}

.features{
grid-template-columns:1fr;
}

.slide{
min-width:100%;
}

}

@media(max-width:480px){

section{
padding:70px 20px;
}

.hero-content h1{
font-size:34px;
}

.title h2,
.section-title h2,
.contact h2,
.about-content h2{
font-size:32px;
}

.quote-btn{
display:none;
}

}
#lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.9);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

#lightbox.active{
display:flex;
}

#lightbox img{
max-width:90%;
max-height:90%;
border-radius:15px;
}
