/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{

    background:linear-gradient(
        180deg,
        #111827 0%,
        #1f2937 50%,
        #374151 100%
    );

}
section{
    background:transparent;
}
/* Header */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
}

/* Navbar */
.navbar{
    width:100%;
    height:85px;
    background: #ffff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;
       
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    box-shadow:0 8px 25px rgba(0,0,0,.08);
}


/* Logo */
.logo img{
    width:130px;
}

/* Navigation Links */
.nav-links{
   display:flex;
    list-style:none;
    gap:40px;
}


.nav-links a{
    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:500;
    transition:.3s;
    position:relative;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:#0BA360;
    transition:.3s;
    border-radius:10px;
}

.nav-links a:hover{
    color:#0BA360;
}

.nav-links a:hover::after{
    width:100%;
}

/* Button */
.btn{
    text-decoration:none;
    color:#fff;
    background:#0BA360;
    padding:12px 28px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#08874f;
}

/* Mobile Menu Icon */
.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
}

.desktop-btn{
    display:flex;
}

.mobile-whatsapp{
    display:none;
}
/* Responsive */
@media (max-width: 900px){

    .menu-btn{
        display:block;
        font-size:28px;
        cursor:pointer;
        z-index:1001;
    }

   .whatsapp-btn{
    position:absolute;
    bottom:40px;
    left:40px;
    right:40px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    padding:14px;
    border-radius:50px;
}

.btn:hover{
    background:#1ebe5d;
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(37,211,102,.3);
}

.btn i{
    font-size:20px;
}
.nav-links{
    position:fixed;
    top:0;
    right:-260px;

    width:260px;
    max-width:80vw;

    height:100vh;

    background:#fff;

    display:flex;
    flex-direction:column;

    padding:90px 25px 30px;

    gap:25px;

    transition:.4s ease;

    z-index:1001;

    box-shadow:-10px 0 25px rgba(0,0,0,.15);
}
 .nav-links.active{
        right:0;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{
        display:block;
        width:100%;
        font-size:18px;
    }
    }
@media (max-width:480px){

    .nav-links{

        width:220px;
        max-width:75vw;

        right:-220px;

        padding:85px 20px 25px;

        gap:20px;
    }

    .nav-links a{
        font-size:16px;
    }

    .mobile-whatsapp a{
        padding:12px;
        font-size:15px;
    }

}


.desktop-btn{
    display:none;
}

.mobile-whatsapp{
    display:block;
    margin-top:auto;
    width:100%;
}

.mobile-whatsapp a{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    padding:15px;
    background:#25D366;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}
/* ===========================
   CUSTOM SCROLLBAR
=========================== */

/* Width */
::-webkit-scrollbar{
    width:14px;
}

/* Track */
::-webkit-scrollbar-track{
    background:#f4f7f9;
    border-radius:20px;
}

/* Thumb */
::-webkit-scrollbar-thumb{
    background:linear-gradient(
        180deg,
        #00B4FF 0%,
        #00D084 100%
    );
    border-radius:20px;
    border:3px solid #f4f7f9;
    box-shadow:0 0 15px rgba(0,208,132,.4);
    transition:.3s;
}

/* Hover */
::-webkit-scrollbar-thumb:hover{
    box-shadow:0 0 20px rgba(0,180,255,.6);
    transform:scale(1.05);
}
/* Overlay */
.overlay{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:999;
}

.overlay.active{
    opacity:1;
    visibility:visible;
}

/* ===========================
   HERO SECTION
=========================== */

.hero{

    min-height:100vh;

    display:flex;
    align-items:center;

    padding:120px 8% 80px;
}

.hero-content{

    width:100%;
    max-width:1300px;

    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.35);

    border-radius:35px;

    padding:70px;

    box-shadow:0 30px 80px rgba(0,0,0,.18);

    overflow:hidden;
}


/* LEFT */

.hero-text{

    animation:slideLeft 1.2s ease forwards;
}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:50px;

    background:#e8fff5;

    color:#00A86B;

    font-weight:600;

    margin-bottom:25px;
}

.hero-tag i{

    color:#00D084;
}

.hero-text h1{

    font-size:60px;

    color:#1e293b;

    line-height:1.2;

    margin-bottom:25px;
}

.hero-text h1 span{

    color:#00D084;
}

.hero-text p{

    color:#64748b;

    font-size:18px;

    line-height:1.8;

    max-width:550px;

    margin-bottom:40px;
}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.primary-btn{

    padding:16px 35px;

    background:linear-gradient(135deg,#00B4FF,#00D084);

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(0,180,255,.35);
}

.secondary-btn{

    padding:16px 35px;

    border:2px solid #00B4FF;

    color:#00B4FF;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;
}

.secondary-btn:hover{

    background:#00B4FF;

    color:#fff;
}

.secondary-btn:hover{

    background:#fff;

    color:#111827;
}

/* RIGHT */

.hero-image{

    animation:slideRight 1.2s ease forwards;

    display:flex;

    justify-content:center;
}

.hero-image img{

    width:100%;

    border-radius: 10px;

    box-shadow: 0 0 20px #000;

    max-width:560px;

    filter:drop-shadow(0 20px 35px rgba(0,0,0,.2));

    animation:float 5s ease-in-out infinite;
}

/* ===========================
ANIMATIONS
=========================== */

@keyframes slideLeft{

from{

opacity:0;

transform:translateX(-120px);
}

to{

opacity:1;

transform:translateX(0);
}

}

@keyframes slideRight{

from{

opacity:0;

transform:translateX(120px);
}

to{

opacity:1;

transform:translateX(0);
}

}

@keyframes float{

0%,100%{

transform:translateY(0);
}

50%{

transform:translateY(-18px);
}

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:950px){

.hero{

padding:140px 30px 70px;
}

.hero-content{

    grid-template-columns:1fr;

    text-align:center;

    gap:40px;

    padding:35px 25px;

    border-radius:25px;
}

.hero-text p{

margin:auto auto 35px;
}

.hero-buttons{

justify-content:center;
}

.hero-text h1{

font-size:42px;
}

.hero-image img{

max-width:420px;
}

}

/*====================================================

ABOUT HERO

====================================================*/

.about-hero{

    position:relative;

    height:100vh;

    overflow:hidden;

    display:flex;

    align-items:center;

}

.about-bg{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.about-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        90deg,

        rgba(5,10,18,.92) 0%,

        rgba(5,10,18,.78) 40%,

        rgba(5,10,18,.20) 75%,

        rgba(5,10,18,0) 100%

    );

    z-index:1;

}

.about-container{

    position:relative;

    z-index:2;

    width:90%;

    max-width:1300px;

    margin:auto;

}

.about-text{

    max-width:600px;

}

.section-tag{

    display:flex;

    align-items:center;

    gap:15px;

    color:#00D084;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:30px;

}

.section-tag::after{

    content:"";

    width:100px;

    height:2px;

    background:#00D084;

}

.about-text h1{

    font-size:clamp(3rem,5vw,5rem);

    line-height:1.1;

    color:#fff;

    margin-bottom:30px;

    font-weight:800;

}

.about-text h1 span{

    color:#00D084;

}

.about-text p{

    color:#d5d8dc;

    font-size:20px;

    line-height:1.9;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-green{

    padding:18px 35px;

    border-radius:50px;

    background:#00D084;

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.btn-green:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 35px rgba(0,208,132,.35);

}

.btn-outline{

    padding:18px 35px;

    border:2px solid rgba(255,255,255,.35);

    border-radius:50px;

    color:white;

    text-decoration:none;

    transition:.35s;

}

.btn-outline:hover{

    background:white;

    color:#111827;

}

/*===========================

RESPONSIVE

===========================*/

@media(max-width:900px){

.about-hero{

height:90vh;

}

.about-text{

text-align:center;

margin:auto;

}

.section-tag{

justify-content:center;

}

.section-tag::after{

display:none;

}

.hero-buttons{

justify-content:center;

}

.about-text p{

font-size:17px;

}

}

/*==========================
PRODUCT SECTION
==========================*/

.products{

    padding:120px 8%;

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    color:#00D084;

    font-weight:600;

    letter-spacing:3px;

}

.section-heading h2{

    color: #ffff;

    font-size:55px;

    margin:20px 0;

}

.section-heading p{

    color:#f1f5f9;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

/*==========================
FEATURED BOX
==========================*/

.featured-product{

    max-width:1500px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    background: linear-gradient(

        270deg,

        rgba(11, 33, 68, 0.92) 0%,

        rgba(5,10,18,.78) 40%,

        rgba(5,10,18,.20) 75%,

        rgba(5,10,18,0) 100%

    );
    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.2);

    border-radius:35px;

    padding:50px;

    margin-bottom:70px;

}

/*==========================
COLLAGE
==========================*/

.product-collage{

    display:grid;

    grid-template-columns:2fr 1fr;

    grid-template-rows:1fr 1fr;

    gap:15px;

    height:450px;

}

.collage-large{

    grid-row:1/3;

}

.collage-large img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:25px;

    transition:.4s;

}

.collage-small img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:20px;

    transition:.4s;

}

.product-collage img:hover{

    transform:scale(1.04);

}

/*==========================
CONTENT
==========================*/

.product-tag{

    display:inline-block;

    background:#00D084;

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    margin-bottom:20px;

}

.featured-content h3{

    color:#fff;

    font-size:42px;

    margin-bottom:25px;

}

.featured-content p{

    color:#f1f5f9;

    line-height:1.9;

    margin-bottom:30px;

}

.featured-content ul{

    list-style:none;

    margin-bottom:35px;

}

.featured-content li{

    color:#fff;

    margin-bottom:15px;

    font-size:17px;

}

.product-btn{

    display:inline-block;

    padding:16px 35px;

    border-radius:50px;

    background:linear-gradient(135deg,#00B4FF,#00D084);

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.product-btn:hover{

    transform:translateY(-5px);

}

/*==========================
PRODUCT CARDS
==========================*/

.product-grid{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.product-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-card img{

    width:100%;

    height:250px;

    object-fit:cover;

}

.product-card h3{

    padding:25px 25px 10px;

    color:#1e293b;

}

.product-card p{

    padding:0 25px 30px;

    color:#64748b;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:950px){

.featured-product{

grid-template-columns:1fr;

padding:30px;

}

.product-collage{

height:350px;

}

.product-grid{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:38px;

}

.featured-content{

text-align:center;

}

}

@media(max-width:600px){

.product-collage{

grid-template-columns:1fr;

grid-template-rows:220px 150px 150px;

height:auto;

}

.collage-large{

grid-row:auto;

}

}

/* ===========================
CONTACT SECTION
=========================== */

.contact{
    padding:100px 8%;
}

.contact-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:25px;

    padding:60px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

    transition:.4s;
}

.contact-container:hover{
    transform:translateY(-6px);
}

/* LEFT SIDE */

.contact-info h2{
    font-size:42px;
    color:#fff;
    margin-bottom:20px;
}

.contact-info p{
    color:#f1f5f9;
    line-height:1.8;
    margin-bottom:35px;
}

.info-box{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
    color:#fff;
}

.info-box i{
    width:55px;
    height:55px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:linear-gradient(135deg,#00B4FF,#00D084);

    font-size:20px;
}

/* ===========================
FORM
=========================== */

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.input-box{
    position:relative;
}

/* Inputs */

.input-box input,
.input-box select{

    width:100%;
    height:60px;

    padding:0 20px;

    background:rgba(255,255,255,.12);

    color:#fff;

    border:2px solid transparent;

    border-radius:12px;

    outline:none;

    font-size:16px;

    transition:.3s;
}

/* Dropdown */

.input-box select{
    appearance:none;
    -webkit-appearance:none;
    cursor:pointer;
}

/* Focus */

.input-box input:focus,
.input-box select:focus{
    border-color:#00D084;
}

/* Floating Labels */

.input-box label{

    position:absolute;

    left:18px;
    top:18px;

    color:#000;

    pointer-events:none;

    transition:.3s;

    background:transparent;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label,
.input-box select:focus ~ label,
.input-box select:valid ~ label{

    top:-11px;

    left:15px;

    background:#0f172a;

    padding:0 8px;

    font-size:13px;

    color:#00D084;
}

/* Placeholder */

.input-box input::placeholder{
    color:transparent;
}

/* ===========================
BUTTON
=========================== */

.contact-form button{

    margin-top:10px;

    border:none;

    cursor:pointer;

    height:60px;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

    color:#fff;

    background:linear-gradient(135deg,#00B4FF,#00D084);

    transition:.35s ease;
}

.contact-form button i{
    margin-right:10px;
}

.contact-form button:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(0,180,255,.35);
}

/* ===========================
RESPONSIVE
=========================== */

@media (max-width:900px){

.contact{

padding:70px 25px;

}

.contact-container{

grid-template-columns:1fr;

padding:35px;

gap:40px;

}

.contact-info{

text-align:center;

}

.contact-info h2{

font-size:34px;

}

.info-box{

justify-content:center;

}

}
   /*FOOTER
=========================== */

.footer{
    background:#0f172a;
    color:#fff;
    padding:40px 8% 20px;
    margin-top:80px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1.5fr 1fr;
    gap:40px;
    align-items:flex-start;
}

/* Headings */

.footer-box h3{
    font-size:22px;
    color:#00D084;
    margin-bottom:18px;
    font-weight:600;
}

/* Paragraphs */

.footer-box p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:12px;
    font-size:15px;
}

/* Contact Icons */

.footer-box p i{
    color:#00B4FF;
    width:22px;
    margin-right:10px;
}

/* Social Media */

.social-icons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:15px;
}

.social-icons a{
    width:45px;
    height:45px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#1e293b;
    color:#fff;

    border-radius:50%;
    text-decoration:none;

    transition:.3s ease;
}

.social-icons a:hover{
    background:linear-gradient(135deg,#00B4FF,#00D084);
    transform:translateY(-4px);
}

/* Copyright */

.footer-bottom{
    margin-top:35px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;
    color:#94a3b8;
    font-size:14px;
}

/* ===========================
   Responsive
=========================== */

@media (max-width:900px){

    .footer{
        padding:35px 30px 20px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:30px;
        text-align:center;
    }

    .footer-box p i{
        margin-right:8px;
    }

    .social-icons{
        justify-content:center;
    }

}
