/* ./assets/css/styles.css */
@import url("home.css");
@import url("footer.css");
@import url("product-category.css");
@import url("navbar.css");
@import url("about.css");

:root{

    --primary:#051937;
    --secondary:#004d7a;
    --accent:#008793;
    --green:#00bf72;

    --white:#ffffff;

    --text:#eefefe;
    --text-light:#d9ffff;

    --glass:rgba(255,255,255,.08);
    --glass-border:rgba(255,255,255,.15);

    --radius:22px;

    --shadow:0 20px 40px rgba(0,0,0,.22);

    --container:1300px;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:linear-gradient(
135deg,
var(--primary),
var(--secondary),
var(--accent),
var(--green)
);

background-size:400% 400%;

animation:gradient 12s ease infinite;

color:white;

overflow-x:hidden;

}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
}

section{
    position:relative;
}

::selection{
    background:var(--green);
    color:#fff;
}



.container{
    width:min(var(--container), calc(100% - 40px));
    margin:0 auto;
}




@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}




@keyframes gradient{

0%{

background-position:0 50%;

}

50%{

background-position:100% 50%;

}

100%{

background-position:0 50%;

}

}

.background{

position:fixed;

inset:0;

overflow:hidden;

z-index:-2;

}

.background::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:rgba(255,255,255,.08);

border-radius:50%;

top:-150px;

left:-150px;

filter:blur(30px);

}

.background::after{

content:"";

position:absolute;

width:450px;

height:450px;

background:rgba(255,255,255,.05);

right:-120px;

bottom:-120px;

border-radius:50%;

filter:blur(25px);

}

header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:1000;

}


/* ===========================
   NAVBAR
=========================== */
/* 
.navbar{

    max-width:1300px;

    height:90px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 25px;

    transition:.35s ease;

}

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    transition:.35s ease;

}

header.scrolled{

    background:rgba(5,25,55,.75);

    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:0 15px 40px rgba(0,0,0,.18);

}



/* ===========================
   LOGO
=========================== */
/* .logo{

    display:flex;

    align-items:center;

}

.logo img{

    height:58px;

    width:auto;

    display:block;

}  */


/* ===========================
   nav-links
=========================== */

/* 
.nav-links{

    display:flex;

    gap:38px;

    list-style:none;

    align-items:center;

}

.nav-links a{

    color:white;

    text-decoration:none;

    font-size:15px;

    font-weight:500;

    position:relative;

    transition:.35s;

}

.nav-links a:hover{

    color:#d7ffff;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    border-radius:5px;

    background:#fff;

    transition:.35s;

}

.nav-links a:hover::after{

    width:100%;

} */


/* ===========================
   HERO
=========================== */

.hero{

    max-width:1300px;

    margin:auto;

    min-height:100vh;

    display:grid;

    grid-template-columns:58% 42%;

    align-items:center;

    gap:60px;

    padding:120px 25px 80px;

}



/* ===========================
   HERO-left
=========================== */


.hero-left{

    animation:fadeUp 1s ease;

}

.subtitle{

    display:inline-block;

    padding:10px 18px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

}

.hero-left h1{

    font-size:clamp(42px,5vw,68px);

    line-height:1.08;

    margin:28px 0;

    font-weight:700;

}

.hero-left p{

    font-size:clamp(16px,1.4vw,18px);

    line-height:1.9;

    color:#ecffff;

    max-width:650px;

}


.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}


/*====================================
            ABOUT SECTION
====================================*/

.about{
    padding:120px 0;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:25px;
    box-shadow:var(--shadow);
}

.about-content h2{
    font-size:clamp(34px,4vw,50px);
    line-height:1.2;
    margin:22px 0;
}

.about-content p{
    color:var(--text-light);
    line-height:1.9;
    margin-bottom:22px;
}

.about-features{
    margin:35px 0;
    display:flex;
    flex-direction:column;
    gap:22px;
}

.feature{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.feature .icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:#00ff95;
    flex-shrink:0;
}

.feature h4{
    margin-bottom:6px;
    font-size:20px;
}

.feature p{
    margin:0;
}


/*====================================
          WHY CHOOSE US
====================================*/

.why-us{
    padding:120px 0;
}

.section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.section-heading h2{
    font-size:clamp(34px,4vw,48px);
    margin:20px 0;
    line-height:1.2;
}

.section-heading p{
    color:var(--text-light);
    line-height:1.8;
}

.section-heading span{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    color:var(--green);

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:22px;

}
/* Grid */

/*.why-grid{*/
/*    display:grid;*/
/*    grid-template-columns:repeat(3, 1fr);*/
/*    gap:30px;*/
/*}*/


.why-grid{
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:30px !important;
    margin-top:60px;
}

.why-card{
    min-width:0;
}


/* Card */

.why-card{

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(18px);

    padding:35px 30px;

    border-radius:22px;

    transition:.35s ease;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.why-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.12);

}

.why-icon{

    width:70px;
    height:70px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

}

.why-card h3{

    font-size:22px;

    margin-bottom:15px;

}

.why-card p{

    color:var(--text-light);

    line-height:1.8;

}

/* Responsive */

@media(max-width:992px){

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .why-grid{

        grid-template-columns:1fr;

    }

}

















/* ===========================
  Buttons
=========================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    background:white;

    color:#008793;

    box-shadow:0 12px 30px rgba(0,0,0,.18);

}

.btn-primary:hover{

    transform:translateY(-4px) scale(1.02);

    box-shadow:0 18px 40px rgba(0,0,0,.28);

}

.btn-secondary{

    background:rgba(255,255,255,.08);

    color:white;

    border:1px solid rgba(255,255,255,.2);

    backdrop-filter:blur(15px);
    
    transition:.35s;

}

.btn-secondary:hover{

    background:white;

    color:#008793;
    
    transform:translateY(-4px);

}


/* ===========================
  Buttons
=========================== */



.hero-stats{

    display:flex;

    gap:50px;

    margin-top:55px;

}

.stat h3{

    font-size:40px;

    font-weight:700;

}

.stat span{

    color:#d9ffff;

    font-size:15px;

}


.stat{

    position:relative;

}

.stat:not(:last-child)::after{

    content:"";

    position:absolute;

    right:-25px;

    top:6px;

    width:1px;

    height:42px;

    background:rgba(255,255,255,.18);

}

/* ===========================
  hero-right
=========================== */


.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image{

    width:min(430px,100%);

    animation:float 5s ease-in-out infinite;

}

.hero-image img{

    width:100%;

    display:block;

}








/*====================================
PRODUCT HERO
====================================*/

.products-hero{

padding:170px 0 100px;

}

.products-hero-wrapper{

display:grid;

grid-template-columns:1.1fr .9fr;

align-items:center;

gap:70px;

}

.products-content h1{

font-size:clamp(44px,5vw,68px);

line-height:1.1;

margin:25px 0;

}

.products-content p{

font-size:18px;

line-height:1.9;

max-width:700px;

color:var(--text-light);

margin-bottom:40px;

}

.products-image{

display:flex;

justify-content:center;

}

.products-image img{

width:min(500px,100%);

animation:float 5s infinite ease-in-out;

}





/*====================================
PRODUCT CATEGORIES
====================================*/

.product-categories{
    padding:120px 0;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:60px;
}

.category-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:24px;
    padding:35px;
    backdrop-filter:blur(20px);
    transition:.35s;
    box-shadow:var(--shadow);
}

.category-card:hover{
    transform:translateY(-10px);
}

.category-card img{
    width:220px;
    margin:auto;
    margin-bottom:25px;
}

.category-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.category-card p{
    color:var(--text-light);
    line-height:1.8;
}

.chips{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:28px 0;
}

.chips span{
    padding:10px 18px;
    border-radius:30px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.12);
    font-size:14px;
}

.category-card a{
    display:inline-block;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    margin-top:10px;
}

.category-card a:hover{
    color:#00ff95;
}