:root {
    --primary: #00d2ff;
    --secondary: #3a7bd5;
    --dark: #02050a;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* =========================
   GLOBAL
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
    scroll-behavior:smooth;
}

html,
body{
    overflow-x:hidden;
    background:var(--dark);
    color:#fff;
}

img,
video{
    max-width:100%;
    display:block;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:5;
}

.text-gradient{
    background:linear-gradient(45deg,var(--primary),var(--secondary));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-title{
    text-align:center;
    font-size:clamp(2rem,5vw,3rem);
    margin-bottom:50px;
    line-height:1.2;
}

/* =========================
   NAVBAR
========================= */
.navbar{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    padding:18px 0;
    transition:0.4s;
}

.navbar.sticky{
    background:rgba(2,5,10,0.92);
    backdrop-filter:blur(15px);
    border-bottom:1px solid var(--glass-border);
    padding:12px 0;
}

.nav-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.logo{
    font-size:clamp(1.4rem,3vw,1.9rem);
    font-weight:900;
    text-decoration:none;
    color:#fff;
    white-space:nowrap;
}

.logo span{
    color:var(--primary);
}

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    transition:0.4s ease;
}

.nav-links a{
    text-decoration:none;
    color:#ddd;
    font-weight:500;
    transition:0.3s;
    font-size:0.95rem;
}

.nav-links a:hover{
    color:var(--primary);
}

.btn-nav{
    background:linear-gradient(45deg,var(--primary),var(--secondary));
    padding:10px 20px;
    border-radius:50px;
    color:#fff !important;
}

/* Hamburger */
.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    z-index:1200;
}

.hamburger span{
    width:26px;
    height:3px;
    background:#fff;
    margin:4px 0;
    border-radius:10px;
    transition:0.3s;
}


/* =========================
   HERO
========================= */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
    padding:140px 0 80px;
    text-align:left;
}

.hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(2,5,10,0.92),
        rgba(2,5,10,0.55),
        rgba(2,5,10,0.85)
    );
    z-index:2;
}

.hero-content{
    position:relative;
    z-index:5;
    width:100%;
    max-width:700px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
}

.hero-content h1{
    font-size:clamp(2.7rem,7vw,5.5rem);
    line-height:1.1;
    margin-bottom:20px;
    font-weight:900;
}

.hero-content p{
    color:#ddd;
    font-size:clamp(1rem,2vw,1.15rem);
    line-height:1.8;
    margin-bottom:35px;
    max-width:600px;
}

.hero-btns{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

/* Buttons */
.btn{
    padding:14px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
    gap:10px;
    flex-wrap:wrap;
}

.btn-primary{
    background:linear-gradient(45deg,var(--primary),var(--secondary));
    color:#fff;
}

.btn-glass{
    border:1px solid rgba(255,255,255,0.3);
    color:#fff;
    margin-left:12px;
    backdrop-filter:blur(10px);
}

/* =========================
   ACHIEVEMENTS
========================= */
.grid-4{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    padding:90px 0;
}

.stat-card{
    background:var(--glass);
    padding:35px 25px;
    border-radius:24px;
    text-align:center;
    border:1px solid var(--glass-border);
    backdrop-filter:blur(10px);
    transition:0.3s;
}

.stat-card:hover{
    transform:translateY(-5px);
}

.stat-card i{
    font-size:2.4rem;
    color:var(--primary);
    margin-bottom:15px;
}

.stat-card h3{
    font-size:2rem;
    margin-bottom:8px;
}

/* =========================
   GALLERY
========================= */


.slider-container{
    width:100%;
    max-width:1200px;
    margin:40px auto 80px;
    overflow:hidden;
    border-radius:24px;
    padding:0;
}

.slider{
    display:flex;
    gap:20px;
    width:100%;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding:10px 5px;
    scrollbar-width:none;
}

.slider::-webkit-scrollbar{
    display:none;
}

.slide{
    flex:0 0 calc(33.333% - 14px);
    scroll-snap-align:center;
    border-radius:20px;
    overflow:hidden;
    background:#111;
    position:relative;
}

.slide img{
    width:100%;
    height:320px;
    object-fit:fill;
    border-radius:20px;
    display:block;
}

/* Tablet */
@media (max-width:992px){
    .slide{
        flex:0 0 calc(50% - 10px);
    }

    .slide img{
        height:280px;
    }
}

/* Mobile */
@media (max-width:768px){

    .slider-container{
        margin:20px auto 60px;
    }

    .slider{
        gap:15px;
        padding:0;
    }

    .slide{
        flex:0 0 85%;
    }

    .slide img{
        height:240px;
    }
}

/* Small Mobile */
@media (max-width:480px){

    .slide{
        flex:0 0 92%;
    }

    .slide img{
        height:220px;
    }
}

/* =========================
   LEAD SECTION
========================= */
.lead-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
}

.form-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0.35;
    z-index:1;
}

.form-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom,var(--dark),transparent,var(--dark));
    z-index:2;
}

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    position:relative;
    z-index:5;
}

.form-glass-card{
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(20px);
    border:1px solid var(--glass-border);
    padding:40px;
    border-radius:28px;
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.input-group{
    position:relative;
    margin-bottom:20px;
}

.input-group i{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:var(--primary);
}

.input-group input,
.input-group select,
.input-group textarea{
    width:100%;
    padding:15px 15px 15px 45px;
    background:rgba(0,0,0,0.35);
    border:1px solid var(--glass-border);
    border-radius:14px;
    color:#fff;
    outline:none;
    font-size:1rem;
}

.input-group textarea{
    min-height:120px;
    resize:none;
}

.btn-submit{
    width:100%;
    padding:17px;
    border:none;
    border-radius:14px;
    font-weight:700;
    cursor:pointer;
    color:#fff;
    background:linear-gradient(45deg,var(--primary),var(--secondary));
    transition:0.3s;
}

.btn-submit:hover{
    transform:translateY(-2px);
}
/* =========================
   ABOUT / CONTACT
========================= */

.hero-small{
    position: relative;
    min-height: 50vh;

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

    text-align: center;
}

.hero-small .container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-small-content{
    width: 100%;
    margin: 0 auto;
}
/* ADD THIS */
.contact-section{
    padding:120px 0 100px;
}

/* ADD THIS */
.contact-info{
    padding-top:40px;
}

/* OPTIONAL BETTER SPACING */
.contact-text{
    margin-top:15px;
    margin-bottom:30px;
    line-height:1.7;
}

/* OPTIONAL */
.section-heading{
    margin-bottom:10px;
}

.about-content{
    padding:80px 0;
}

.glass-card{
    background:var(--glass);
    padding:30px;
    border-radius:24px;
    border:1px solid var(--glass-border);
    margin-bottom:20px;
    backdrop-filter:blur(10px);
}

.glass-card h3{
    color:var(--primary);
    margin-bottom:15px;
}

.glass-card ul{
    list-style:none;
}

.glass-card li{
    margin-bottom:12px;
    color:#ccc;
}

.glass-card li i{
    color:var(--primary);
    margin-right:10px;
}

.map-container{
    margin:30px 0;
    padding:10px;
    background:var(--glass);
    border:1px solid var(--glass-border);
    border-radius:24px;
    overflow:hidden;
}

.map-container iframe{
    width:100%;
    height:350px;
    border:none;
    border-radius:20px;
}

.contact-details .item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:18px;
    line-height:1.7;
}

.contact-details i{
    color:var(--primary);
    margin-top:4px;
}


/* WHATSAPP */
.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* =========================
   TABLET
========================= */
@media (max-width:992px){

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

    .hero{
        text-align:center;
    }

    .hero-content{
        margin:auto;
    }

    .slide{
        min-width:calc(50% - 10px);
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width:768px){

    .navbar{
        padding:15px 0;
    }

    .hamburger{
        display:flex;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:80%;
        max-width:320px;
        height:100vh;
        background:rgba(2,5,10,0.98);
        backdrop-filter:blur(15px);
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:28px;
        transition:0.4s;
        border-left:1px solid var(--glass-border);
    }

    .nav-links.active{
        right:0;
    }

    .hero{
        padding-top:120px;
        min-height:95vh;
    }

    .hero-content h1{
        font-size:2.5rem;
    }

    .hero-content p{
        font-size:0.98rem;
    }

    .btn{
        width:100%;
        margin-bottom:15px;
    }

    .btn-glass{
        margin-left:0;
    }

    .form-glass-card{
        padding:25px;
    }

    .slide{
        min-width:100%;
    }

    .slide img{
        height:250px;
    }

    .grid-4{
        padding:70px 0;
    }

    .stat-card{
        padding:28px 20px;
    }

    .hero-small{
        height:35vh;
        padding-top:80px;
    }

    .map-container iframe{
        height:250px;
    }
}

/* =========================
   EXTRA SMALL DEVICES
========================= */
@media (max-width:480px){

    .container{
        padding:0 15px;
    }

    .hero-content h1{
        font-size:2rem;
    }

    .section-title{
        margin-bottom:35px;
    }

    .form-glass-card{
        padding:20px;
        border-radius:20px;
    }

    .input-group input,
    .input-group select,
    .input-group textarea{
        padding:14px 14px 14px 42px;
        font-size:0.95rem;
    }

    .whatsapp-btn{
        width:52px;
        height:52px;
        font-size:24px;
        right:15px;
        bottom:15px;
    }
}


/* =========================
   MOBILE
========================= */
@media (max-width:768px){

    .hero{
        min-height:100vh;
        padding:120px 0 70px;
        text-align:center;
    }

    .hero-content{
        align-items:center;
        margin:auto;
    }

    .hero-content h1{
        font-size:2.5rem;
    }

    .hero-content p{
        font-size:1rem;
        max-width:100%;
    }

    .hero-btns{
        width:100%;
        flex-direction:column;
        align-items:center;
    }

    .btn{
        width:100%;
        max-width:320px;
    }

    .btn-glass{
        margin-left:0;
    }
}

/* EXTRA SMALL */
@media (max-width:480px){

    .hero-content h1{
        font-size:2rem;
        line-height:1.2;
    }

    .hero-content p{
        font-size:0.95rem;
        line-height:1.7;
    }
}