@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#f6f8fc;
    color:#0f172a;
    overflow-x:hidden;
}

nav{

    position:fixed;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    width:92%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 40px;

    background:rgba(255,255,255,0.18);
    box-shadow:
    0 8px 30px rgba(31,38,135,0.15);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.5);

    border-radius:25px;

    z-index:1000;

}

.logo-full{
    height:85px;
}

.nav-links{
    display:flex;
    gap:15px;
}

.nav-link{
    text-decoration:none;

    color:#334155;

    font-weight:600;

    padding:10px 18px;

    border-radius:30px;

    transition:0.3s;
}

.nav-link:hover{
    background:rgba(99,102,241,0.1);
    color:#6366f1;
}

.nav-link.active{
    color:#6366f1;
}


.hero{
    position:relative;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;
}

.hero-video{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:-2;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.55),
        rgba(255,255,255,0.25)
    );

    backdrop-filter:blur(4px);

    z-index:-1;
}

.hero-content{

    max-width:1200px;

    text-align:center;

    padding:80px;

    background:rgba(255,255,255,0.12);
    box-shadow:
0 20px 50px rgba(31,38,135,0.15);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,0.4);

    border-radius:40px;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.08);

}
.hero-content:hover{

    transform:
    translateY(-5px);

    transition:0.4s;

}

.hero-tag{
    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(99,102,241,0.08);

    color:#6366f1;

    font-weight:600;

    margin-bottom:25px;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:25px;

    background:
    linear-gradient(
        90deg,
        #4f46e5,
        #8b5cf6,
        #ec4899
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    filter:
drop-shadow(
0 0 20px rgba(99,102,241,0.25)
);
}

.hero p{
    font-size:22px;
    line-height:1.8;

    max-width:850px;
    margin:auto;

    color:#475569;
}



.buttons{
    margin-top:50px;

    display:flex;
    justify-content:center;
    gap:20px;

    flex-wrap:wrap;
}

.btn{
    text-decoration:none;

    padding:18px 35px;

    border-radius:50px;

    font-weight:700;

    transition:0.35s;
}

.primary-btn{
    background:
    linear-gradient(
        90deg,
        #4f46e5,
        #8b5cf6
    );

    color:white;

    box-shadow:
    0 15px 35px rgba(99,102,241,0.25);
}

.secondary-btn{
    background:white;

    color:#4f46e5;

    border:1px solid rgba(99,102,241,0.15);
}

.btn:hover{
    transform:
    translateY(-5px)
    scale(1.03);
}



.about-section,
.products-section,
.gallery-section,
.enquiry-section{
    padding:120px 80px;
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-header span{
    color:#6366f1;
    font-weight:700;
    letter-spacing:2px;
}

.section-header h2{
    font-size:50px;
    margin-top:15px;
    margin-bottom:20px;
}

.section-header p{
    max-width:800px;
    margin:auto;

    color:#64748b;

    line-height:1.8;
}



.about-grid,
.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.stats-row{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:60px;

}

.stat-box{

    background:rgba(255,255,255,0.6);

    backdrop-filter:blur(20px);

    border-radius:20px;

    padding:30px;

    text-align:center;

    box-shadow:0 10px 30px rgba(15,23,42,0.08);

}

.stat-box h3{

    font-size:36px;

    margin-bottom:10px;

    background:linear-gradient(
        90deg,
        #4f46e5,
        #8b5cf6,
        #ec4899
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

.stat-box p{

    color:#64748b;

    margin:0;

}

@media(max-width:768px){

    .stats-row{

        grid-template-columns:1fr 1fr;

    }

}

.glass-card,
.product-card{

    background:rgba(255,255,255,0.6);

    backdrop-filter:blur(20px);

    border-radius:25px;

    padding:40px;

    box-shadow:
    0 10px 30px rgba(15,23,42,0.08);

    opacity:0;

    transform:
    perspective(1000px)
    rotateX(25deg)
    rotateY(-10deg)
    translateY(60px);

    transition:opacity 0.8s ease, transform 0.8s ease;

}

.glass-card.show,
.product-card.show{

    opacity:1;

    transform:
    perspective(1000px)
    rotateX(0deg)
    rotateY(0deg)
    translateY(0);

}

.glass-card:hover,
.product-card:hover{
    transform:
    translateY(-12px)
    scale(1.02);
}

.glass-card h3,
.product-card h3{
    color:#4f46e5;
    margin-bottom:15px;
}

.glass-card p,
.product-card p{
    color:#64748b;
    line-height:1.8;
}



.gallery-container{
    display:flex;
    flex-direction:column;
    gap:50px;
}

.gallery-item{
    text-align:center;
    opacity:0;

    transform:
    scale(0.9)
    translateY(60px);

    transition:opacity 0.8s ease, transform 0.8s ease;

}
.gallery-item.show{

    opacity:1;

    transform:
    scale(1)
    translateY(0);

}
.gallery-item img{
    width:100%;
    height:650px;

    object-fit:cover;

    border-radius:25px;

    box-shadow:
    0 15px 40px rgba(15,23,42,0.1);

    transition:0.4s;
}

.gallery-item img:hover{
    transform:scale(1.02);
}

.gallery-item h3{
    margin-top:25px;

    color:#4f46e5;

    font-size:28px;
}
.fixed-gallery{

    display:flex;

    flex-direction:column;

    gap:40px;

    max-width:1200px;

    margin:auto;

}

.fixed-gallery img{

    width:100%;

    height:600px;

    object-fit:cover;

    border-radius:20px;

    transition:0.4s;

}

.fixed-gallery img:hover{

    transform:scale(1.02);

}
.gallery-category{

    font-size:42px;

    text-align:center;

    margin-top:100px;
    margin-bottom:40px;

    background:linear-gradient(
        90deg,
        #4f46e5,
        #8b5cf6,
        #ec4899
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}



.enquiry-section{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
}

.enquiry-left h2{
    font-size:55px;
    margin-bottom:25px;
}

.enquiry-left p{
    line-height:1.8;
    color:#64748b;
    margin-bottom:35px;
}

.enquiry-btn{
    display:inline-block;

    padding:18px 35px;

    text-decoration:none;

    border-radius:50px;

    color:white;

    background:
    linear-gradient(
        90deg,
        #4f46e5,
        #8b5cf6
    );
}

.enquiry-right{
    background:
    rgba(255,255,255,0.6);

    backdrop-filter:blur(20px);

    border-radius:25px;

    padding:40px;

    box-shadow:
    0 10px 30px rgba(15,23,42,0.08);
}

.info-box{
    margin-bottom:35px;
}

.info-box h3{
    color:#4f46e5;
    margin-bottom:10px;
}

.info-box p{
    color:#64748b;
}



.whatsapp{
    position:fixed;

    right:25px;
    bottom:25px;

    padding:15px 25px;

    border-radius:50px;

    text-decoration:none;

    background:#25D366;
    color:white;

    font-weight:700;

    z-index:999;
}


footer{
    background:white;

    padding:60px 30px 20px;

    text-align:center;
}

.footer-content img{
    height:70px;
    margin-bottom:20px;
}

.footer-content p{
    max-width:700px;
    margin:auto;

    color:#64748b;

    line-height:1.8;
}

.footer-bottom{
    margin-top:40px;

    border-top:1px solid #e2e8f0;

    padding-top:20px;

    color:#94a3b8;
}
.footer-social{

    display:flex;

    flex-direction:column;

    margin-top:25px;

}

.footer-social h3{

    margin-bottom:15px;

}

.footer-social a{

    color:#64748b;

    text-decoration:none;

    margin-bottom:10px;

    transition:0.3s;

}

.footer-social a:hover{

    color:#4f46e5;

}



.about-section.show,
.products-section.show,
.gallery-section.show,
.enquiry-section.show{

    opacity:1;
    transform:translateY(0);

}




@media(max-width:768px){

    nav{
        padding:15px 25px;
        flex-direction:column;
        gap:15px;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:18px;
    }

    .about-section,
    .products-section,
    .gallery-section,
    .enquiry-section{
        padding:90px 25px;
    }

    .about-grid,
    .product-grid{
        grid-template-columns:1fr;
    }

    .enquiry-section{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:300px;
    }

    .enquiry-left h2{
        font-size:38px;
    }

}


.orb{

    position:absolute;

    border-radius:50%;

    filter:blur(100px);

    z-index:-1;

    animation:float 8s ease-in-out infinite;

}

.orb1{

    width:350px;
    height:350px;

    background:#6366f1;

    top:15%;
    left:10%;

}

.orb2{

    width:300px;
    height:300px;

    background:#ec4899;

    bottom:10%;
    right:10%;

}

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-50px);
    }

}




.about-grid .glass-card:nth-child(1),
.product-grid .product-card:nth-child(1){
    transition-delay:0s;
}

.about-grid .glass-card:nth-child(2),
.product-grid .product-card:nth-child(2){
    transition-delay:0.15s;
}

.about-grid .glass-card:nth-child(3),
.product-grid .product-card:nth-child(3){
    transition-delay:0.3s;
}

.gallery-item:nth-child(1){ transition-delay:0s; }
.gallery-item:nth-child(2){ transition-delay:0.15s; }
.gallery-item:nth-child(3){ transition-delay:0.3s; }
.gallery-item:nth-child(4){ transition-delay:0.45s; }

.enquiry-section .info-box{
    opacity:0;
    transform:translateY(30px);
    transition:opacity 0.5s ease, transform 0.5s ease;
}

.enquiry-section.show .info-box:nth-child(1){ opacity:1; transform:translateY(0); transition-delay:0.1s; }
.enquiry-section.show .info-box:nth-child(2){ opacity:1; transform:translateY(0); transition-delay:0.25s; }
.enquiry-section.show .info-box:nth-child(3){ opacity:1; transform:translateY(0); transition-delay:0.4s; }
.contact-features{

    list-style:none;

    padding:0;

    margin-top:20px;

}

.contact-features li{

    margin-bottom:15px;

    color:#64748b;

    font-size:18px;

}
.contact-stats{

    display:flex;

    justify-content:space-between;

    margin-top:40px;

    padding-top:30px;

    border-top:1px solid rgba(15,23,42,0.08);

}

.contact-stats h4{

    font-size:32px;

    margin:0;

    background:linear-gradient(
        90deg,
        #4f46e5,
        #8b5cf6,
        #ec4899
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

.contact-stats span{

    color:#64748b;

}
.phone-number{

    margin-bottom:12px;

}
@media(max-width:768px){

    nav{

        display:flex;

        flex-direction:row;

        justify-content:space-between;

        align-items:center;

        padding:15px 20px;

    }

    .logo-full{

        height:45px;

        width:auto;

    }

    nav ul{

        display:flex;

        flex-wrap:wrap;

        justify-content:center;

        gap:15px;

    }

}
@media(max-width:768px){

    .hero h1{

        font-size:42px;

        line-height:1.1;

    }

    .hero p{

        font-size:16px;

        line-height:1.8;

    }

}
@media(max-width:768px){

    .hero-content{

        width:95%;

        padding:25px 15px;

    }

}
@media(max-width:768px){

    .logo-full{

        height:45px;

    }

}
/* HAMBURGER */

.hamburger{

    display:none;

    flex-direction:column;

    gap:5px;

    cursor:pointer;

}

.hamburger span{

    width:28px;

    height:3px;

    background:#4f46e5;

    border-radius:10px;

    box-shadow:
    0 0 10px rgba(79,70,229,0.3);

}
/* MOBILE */

@media(max-width:768px){

    .hamburger{

        display:flex;

    }

    .nav-links{

        position:absolute;

        top:100%;

        left:50%;

        transform:translateX(-50%);

        width:90%;

        display:none;

        flex-direction:column;

        align-items:center;

        gap:20px;

        padding:25px;

        background:
linear-gradient(
135deg,
rgba(255,255,255,0.95),
rgba(255,255,255,0.75)
);

backdrop-filter:blur(30px);

-webkit-backdrop-filter:blur(30px);

box-shadow:
0 20px 60px rgba(15,23,42,0.12);

border:
1px solid rgba(255,255,255,0.9);

        border-radius:25px;

        box-shadow:
        0 20px 60px rgba(15,23,42,0.15);

    }

    .nav-links.active{

        display:flex;
         animation:menuDrop 0.35s ease;

    }

    .nav-links a{

        padding:15px;

    }

}
@keyframes menuDrop{

    from{

        opacity:0;

        transform:
        translateX(-50%)
        translateY(-20px);

    }

    to{

        opacity:1;

        transform:
        translateX(-50%)
        translateY(0);

    }

}
.nav-links a{

    width:100%;

    text-align:center;

    padding:15px;

    border-radius:15px;

    transition:0.3s;

}

.nav-links a:hover{

    background:
    rgba(79,70,229,0.08);

}
.nav-links{

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.35),
        rgba(255,255,255,0.15)
    );

}
.nav-links a{

    color:#0f172a !important;

    font-size:18px;

    font-weight:600;

}