/* ==========================================
   GOOGLE FONTS
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:#F7FBFF;
    color:#1B2430;
    overflow-x:hidden;

}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ==========================================
   COLORS
========================================== */

:root{

    --primary:#005DFF;
    --secondary:#00AEEF;
    --accent:#00D4FF;

    --dark:#071A33;
    --light:#F7FBFF;
    --white:#ffffff;

    --text:#1B2430;

    --shadow:0 15px 45px rgba(0,0,0,.08);

    --radius:20px;

}

/* ==========================================
   COMMON
========================================== */

section{

    padding:110px 8%;

}

h1,h2,h3{

    font-family:'Poppins',sans-serif;

}

h2{

    font-size:42px;
    margin-bottom:25px;
    text-align:center;

}

p{

    line-height:1.8;
    color:#555;

}

/* ==========================================
   BUTTON
========================================== */

.btn{

    display:inline-block;

    padding:15px 35px;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,93,255,.25);

}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(0,93,255,.35);

}

.btn-outline{

    background:transparent;

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/* ==========================================
   LOADER
========================================== */

#loader{

    position:fixed;

    width:100%;
    height:100vh;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader-circle{

    width:70px;
    height:70px;

    border-radius:50%;

    border:7px solid #ddd;

    border-top:7px solid var(--primary);

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

/* ==========================================
   HEADER
========================================== */

header{

    width:100%;

    position:fixed;

    top:0;
    left:0;

    z-index:999;

    transition:.4s;

}

.navbar{

    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 6%;

}

header.sticky{

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(15px);

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.logo img{

    width:170px;

}

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    color:#222;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-btn{

    margin-left:25px;

}

.menu-btn{

    display:none;

    font-size:28px;

    cursor:pointer;

}

/* ==========================================
   HERO
========================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

    position:relative;

    overflow:hidden;

    background:
    radial-gradient(circle at top right,#A6E8FF 0%,transparent 35%),
    radial-gradient(circle at bottom left,#C7F4FF 0%,transparent 30%),
    linear-gradient(#F7FBFF,#EAF8FF);

}

/* floating blur */

.hero::before{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    border-radius:50%;

    background:#8EDBFF;

    filter:blur(180px);

    top:-250px;

    right:-150px;

    opacity:.4;

}

.hero::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:#005DFF;

    filter:blur(170px);

    opacity:.12;

    left:-180px;

    bottom:-200px;

}

.hero-left{

    flex:1;

    z-index:2;

}

.tag{

    display:inline-block;

    padding:10px 20px;

    background:#E5F5FF;

    color:var(--primary);

    border-radius:50px;

    margin-bottom:25px;

    font-weight:600;

}

.hero h1{

    font-size:78px;

    line-height:1.05;

    color:var(--dark);

    margin-bottom:25px;

}

.hero p{

    font-size:18px;

    max-width:560px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:45px;

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:30px;

    font-size:15px;

    font-weight:600;

}

.hero-features i{

    color:var(--secondary);

    margin-right:8px;

}

.hero-right{

    flex:1;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-right img{

    max-width:520px;

    animation:floating 5s ease-in-out infinite;

    filter:drop-shadow(0 30px 40px rgba(0,0,0,.18));

}

/* water ring */

.hero-right::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    border:18px solid rgba(0,174,239,.12);

    animation:ripple 7s infinite;

}

.hero-right::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    border:12px solid rgba(0,93,255,.12);

}

/* ==========================================
   FLOATING ANIMATIONS
========================================== */

@keyframes floating{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-20px);

    }

    100%{

        transform:translateY(0px);

    }

}

@keyframes ripple{

    0%{

        transform:scale(.9);

        opacity:0;

    }

    50%{

        opacity:1;

    }

    100%{

        transform:scale(1.08);

        opacity:0;

    }

}

/* ==========================================
   GLASS CARD
========================================== */

.glass{

    background:rgba(255,255,255,.45);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.3);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

/* ==========================================
   SECTION TITLE
========================================== */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

}

/* ==========================================
   SIMPLE FADE-UP INITIAL STATE
========================================== */

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:1s;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}
/*=========================================
    ABOUT SECTION
=========================================*/

.about{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
    background:#ffffff;

}

.about-image{

    position:relative;
    display:flex;
    justify-content:center;

}

.about-image img{

    width:420px;
    animation:floating 6s ease-in-out infinite;
    filter:drop-shadow(0 35px 50px rgba(0,0,0,.15));

}

.about-image::before{

    content:"";
    position:absolute;
    width:430px;
    height:430px;
    border-radius:50%;
    background:linear-gradient(135deg,#00AEEF,#005DFF);
    opacity:.08;
    z-index:-1;

}

.about-content h2{

    text-align:left;
    color:var(--dark);

}

.about-content p{

    margin-bottom:40px;

}

/*=========================================
    STATS
=========================================*/

.stats{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}

.stats div{

    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.stats div:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,93,255,.12);

}

.stats h3{

    font-size:38px;
    color:var(--primary);
    margin-bottom:8px;

}

.stats span{

    color:#666;
    font-size:15px;

}

/*=========================================
    WHY CHOOSE US
=========================================*/

.why{

    background:linear-gradient(180deg,#F7FBFF,#EDF8FF);

}

.why h2{

    margin-bottom:70px;

}

.cards{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.card{

    background:#fff;
    border-radius:25px;
    padding:45px 35px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
    position:relative;
    overflow:hidden;

}

.card::before{

    content:"";
    position:absolute;
    width:140px;
    height:140px;
    background:#00D4FF;
    opacity:.08;
    border-radius:50%;
    right:-50px;
    top:-50px;

}

.card:hover{

    transform:translateY(-15px);
    box-shadow:0 25px 45px rgba(0,93,255,.15);

}

.card i{

    width:90px;
    height:90px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:34px;
    color:#fff;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    margin-bottom:25px;

}

.card h3{

    margin-bottom:15px;
    color:var(--dark);

}

.card p{

    font-size:15px;

}

/*=========================================
    MINERALS
=========================================*/

.minerals{

    background:linear-gradient(135deg,#005DFF,#00AEEF);
    color:#fff;
    text-align:center;
    position:relative;
    overflow:hidden;

}

.minerals::before{

    content:"";
    position:absolute;
    width:650px;
    height:650px;
    background:#fff;
    opacity:.05;
    border-radius:50%;
    left:-250px;
    top:-200px;

}

.minerals::after{

    content:"";
    position:absolute;
    width:550px;
    height:550px;
    background:#fff;
    opacity:.05;
    border-radius:50%;
    right:-180px;
    bottom:-200px;

}

.minerals h2{

    color:#fff;
    margin-bottom:70px;

}

.mineral-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
    position:relative;
    z-index:2;

}

.mineral{

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;
    width:210px;
    height:210px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:24px;
    font-weight:700;
    transition:.4s;

}

.mineral:hover{

    transform:translateY(-12px) scale(1.05);
    background:rgba(255,255,255,.22);

}

/*=========================================
    PRODUCTS
=========================================*/

.products{

    background:#ffffff;

}

.products h2{

    margin-bottom:70px;

}

.product-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;

}

.product-card{

    background:#fff;
    border-radius:25px;
    padding:40px;
    text-align:center;
    transition:.4s;
    overflow:hidden;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.product-card::before{

    content:"";
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:linear-gradient(135deg,#00D4FF,#005DFF);
    opacity:.08;
    top:-130px;
    right:-90px;

}

.product-card:hover{

    transform:translateY(-15px);
    box-shadow:0 30px 60px rgba(0,93,255,.15);

}

.product-card img{

    width:180px;
    margin:auto;
    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08) rotate(-2deg);

}

.product-card h3{

    margin-top:25px;
    color:var(--dark);
    font-size:26px;

}

.product-card p{

    margin-top:12px;
    margin-bottom:25px;
    font-size:15px;

}

.product-card .btn{

    margin-top:10px;

}

/*=========================================
    PRODUCT SHINE EFFECT
=========================================*/

.product-card::after{

    content:"";
    position:absolute;
    top:-120%;
    left:-60%;
    width:60%;
    height:250%;
    background:rgba(255,255,255,.35);
    transform:rotate(25deg);
    transition:.8s;

}

.product-card:hover::after{

    left:140%;

}
/*==================================================
    QUALITY SECTION
==================================================*/

.quality{

    background:linear-gradient(180deg,#eef8ff,#ffffff);
    text-align:center;

}

.quality h2{

    margin-bottom:70px;

}

.timeline{

    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
    position:relative;

}

.timeline div{

    background:#fff;
    padding:35px 20px;
    border-radius:20px;
    font-weight:600;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.35s;
    position:relative;

}

.timeline div:hover{

    transform:translateY(-10px);
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;

}

.timeline div:not(:last-child)::after{

    content:"➜";
    position:absolute;
    right:-22px;
    top:45%;
    font-size:22px;
    color:var(--primary);

}

/*==================================================
    DISTRIBUTOR SECTION
==================================================*/

.distributor{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    background:linear-gradient(135deg,#005DFF,#00AEEF);
    color:#fff;
    position:relative;
    overflow:hidden;

}

.distributor::before{

    content:"";
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    right:-250px;
    top:-250px;

}

.distributor::after{

    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    left:-150px;
    bottom:-180px;

}

.distributor .left{

    position:relative;
    z-index:2;

}

.distributor h2{

    text-align:left;
    color:#fff;
    margin-bottom:25px;
    font-size:48px;

}

.distributor p{

    color:#e8f7ff;
    margin-bottom:35px;

}

.distributor ul{

    margin-bottom:40px;

}

.distributor ul li{

    margin-bottom:18px;
    font-size:18px;
    font-weight:500;

}

.distributor .btn{

    background:#fff;
    color:var(--primary);

}

.distributor .btn:hover{

    background:#f5f5f5;

}

.distributor .right{

    display:flex;
    justify-content:center;
    position:relative;
    z-index:2;

}

.distributor .right img{

    width:430px;
    filter:drop-shadow(0 40px 45px rgba(0,0,0,.18));
    animation:floating 5s ease-in-out infinite;

}

/*==================================================
    CONTACT
==================================================*/

.contact{

    background:#fff;

}

.contact h2{

    margin-bottom:70px;

}

.contact-wrapper{

    display:grid;
    grid-template-columns:40% 60%;
    gap:60px;

}

.contact-info{

    background:linear-gradient(135deg,#005DFF,#00AEEF);
    color:#fff;
    padding:50px;
    border-radius:25px;

}

.contact-info h3{

    font-size:34px;
    margin-bottom:30px;

}

.contact-info p{

    color:#fff;
    margin-bottom:20px;

}

.contact form{

    display:grid;
    gap:20px;

}

.contact input,
.contact textarea{

    width:100%;
    padding:18px 22px;
    border:none;
    background:#f2f7fb;
    border-radius:15px;
    font-size:16px;
    outline:none;
    transition:.3s;

}

.contact textarea{

    height:180px;
    resize:none;

}

.contact input:focus,
.contact textarea:focus{

    box-shadow:0 0 0 3px rgba(0,174,239,.25);

}

.contact button{

    width:220px;
    cursor:pointer;
    border:none;

}

/*==================================================
    FOOTER
==================================================*/

footer{

    background:#071A33;
    color:#fff;
    text-align:center;
    padding:70px 8%;

}

.footer-logo img{

    width:170px;
    margin:auto;
    margin-bottom:30px;

}

footer p{

    color:#d4d4d4;
    margin-bottom:30px;

}

.social{

    display:flex;
    justify-content:center;
    gap:18px;

}

.social a{

    width:50px;
    height:50px;
    border-radius:50%;
    background:#10284b;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.35s;
    font-size:18px;

}

.social a:hover{

    background:var(--secondary);
    transform:translateY(-8px);

}

/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:1200px){

.hero{

    flex-direction:column;
    text-align:center;
    padding-top:150px;

}

.hero-left{

    order:2;

}

.hero-right{

    order:1;

}

.about{

    grid-template-columns:1fr;
    text-align:center;

}

.about-content h2{

    text-align:center;

}

.cards{

    grid-template-columns:repeat(2,1fr);

}

.product-grid{

    grid-template-columns:repeat(2,1fr);

}

.mineral-grid{

    grid-template-columns:repeat(2,1fr);

}

.timeline{

    grid-template-columns:repeat(3,1fr);

}

.distributor{

    grid-template-columns:1fr;
    text-align:center;

}

.distributor h2{

    text-align:center;

}

.contact-wrapper{

    grid-template-columns:1fr;

}

.stats{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.nav-links{

    display:none;

}

.nav-btn{

    display:none;

}

.menu-btn{

    display:block;

}

.hero h1{

    font-size:52px;

}

h2{

    font-size:34px;

}

.cards{

    grid-template-columns:1fr;

}

.product-grid{

    grid-template-columns:1fr;

}

.timeline{

    grid-template-columns:1fr;

}

.timeline div::after{

    display:none;

}

.mineral-grid{

    grid-template-columns:1fr;

}

.mineral{

    width:180px;
    height:180px;

}

.hero-buttons{

    flex-direction:column;

}

.hero-features{

    justify-content:center;

}

.contact button{

    width:100%;

}

}

@media(max-width:500px){

section{

    padding:80px 6%;

}

.hero h1{

    font-size:42px;

}

.hero-right img{

    width:280px;

}

.about-image img{

    width:280px;

}

.distributor .right img{

    width:280px;

}

.logo img{

    width:140px;

}

}
/* Mobile Menu */
.nav-links.show{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:90px;
    left:5%;
    right:5%;
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    gap:20px;
}

/* Active Nav */
.nav-links a.active{
    color:var(--primary);
    font-weight:700;
}

/* Bubble Animation */
.bubble{
    position:absolute;
    bottom:-50px;
    border-radius:50%;
    background:rgba(255,255,255,.35);
    animation:bubbles linear infinite;
}

@keyframes bubbles{

    from{
        transform:translateY(0) scale(.5);
        opacity:0;
    }

    30%{
        opacity:1;
    }

    to{
        transform:translateY(-120vh) scale(1.3);
        opacity:0;
    }

}

/* Cursor Ripple */
.click-ripple{

    position:absolute;
    width:20px;
    height:20px;
    border-radius:50%;
    background:rgba(0,174,239,.35);
    transform:translate(-50%,-50%);
    pointer-events:none;
    animation:rippleClick .8s linear;

}

@keyframes rippleClick{

    from{

        width:20px;
        height:20px;
        opacity:.8;

    }

    to{

        width:180px;
        height:180px;
        opacity:0;

    }

}

/* Reveal Animation */
.about,
.why,
.minerals,
.products,
.quality,
.distributor,
.contact,
.card,
.product-card,
.stats div{

    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;

}

.active{

    opacity:1;
    transform:translateY(0);

}