*{

margin:0;

padding:0;

box-sizing:border-box;

font-family:Poppins,sans-serif;

}

body{

background:#f7fbff;

}

.container{

width:1200px;

margin:auto;

}

/* NAVBAR */

header{

background:white;

position:sticky;

top:0;

z-index:999;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.nav{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 0;

}

.logo h1{

font-size:46px;

color:#0055cc;

}

.logo span{

font-size:22px;

}

.logo p{

color:#222;

font-size:15px;

}

nav ul{

display:flex;

gap:35px;

list-style:none;

}

nav a{

text-decoration:none;

color:#222;

font-weight:600;

}

nav a:hover{

color:#0077ff;

}

.whatsapp-btn{

background:#25D366;

padding:14px 28px;

border-radius:10px;

text-decoration:none;

color:white;

font-weight:600;

}

/* HERO */

.hero{

padding:80px 0;

background:

linear-gradient(to right,#eef8ff,#ffffff);

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

}

.hero-left h1{

font-size:72px;

font-weight:800;

color:#0045b5;

line-height:1.1;

}

.hero-left span{

display:block;

color:#0095ff;

}

.line{

width:140px;

height:4px;

background:#005eff;

margin:30px 0;

}

.hero-left p{

font-size:22px;

line-height:1.8;

color:#444;

margin-bottom:40px;

}

.order-btn{

background:#004cff;

padding:18px 40px;

border-radius:40px;

text-decoration:none;

color:white;

font-size:18px;

display:inline-block;

}

.order-btn:hover{

background:#0036b7;

}

.hero-right{

text-align:center;

}

.hero-right img{

width:400px;

animation:float 4s infinite ease-in-out;

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0px);

}

}/* ================= ABOUT ================= */

.about{

padding:90px 0;

background:white;

}

.about-grid{

display:grid;

grid-template-columns:45% 55%;

gap:60px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.about-content h2{

font-size:20px;

color:#0b74ff;

margin-bottom:10px;

}

.about-content h3{

font-size:36px;

margin-bottom:20px;

color:#003366;

}

.about-content p{

font-size:17px;

line-height:1.9;

margin-bottom:18px;

color:#555;

}

.contact-box{

margin-top:25px;

}

.contact-box div{

margin-bottom:18px;

font-size:17px;

}

.contact-box i{

color:#0077ff;

margin-right:12px;

font-size:20px;

}

/* ================= WHY ================= */

.why{

padding:90px 0;

background:#f5fbff;

text-align:center;

}

.why h2{

font-size:44px;

color:#0044cc;

margin-bottom:10px;

}

.subtitle{

margin-bottom:50px;

color:#666;

font-size:18px;

}

.feature-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.feature{

background:white;

padding:35px;

border-radius:20px;

transition:.4s;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.feature:hover{

transform:translateY(-10px);

}

.feature i{

font-size:55px;

color:#0077ff;

margin-bottom:20px;

}

.feature h3{

margin-bottom:12px;

color:#003366;

}

.feature p{

color:#666;

line-height:1.7;

}
/*================ PRODUCTS =================*/

.products{
    padding:100px 0;
    background:linear-gradient(#ffffff,#eef8ff);
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:#008cff;
    font-weight:600;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:48px;
    margin:10px 0;
    color:#003d99;
}

.section-heading p{
    color:#666;
    font-size:18px;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* Product Card */
.product-card{
    position:relative;
    overflow:hidden;
    padding:35px 25px;
    border-radius:25px;
    background:#fff;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    transition:.4s;
    text-align:center;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.product-card:hover{
    transform:translateY(-15px);
    box-shadow:0 25px 60px rgba(0,119,255,.20);
}

/* Water Circle */
.water-circle{
    position:absolute;
    width:220px;
    height:220px;
    background:#dff4ff;
    border-radius:50%;
    top:-60px;
    left:50%;
    transform:translateX(-50%);
    z-index:0;
}

/* Image Container */
.product-image{
    height:260px;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:2;
    margin-bottom:20px;
}

/* Bottle Image */
.product-image img{
    max-height:240px;
    max-width:170px;
    width:auto;
    object-fit:contain;
    animation:floatBottle 4s infinite;
    transition:.5s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

/* Title */
.product-card h3{
    margin:0;
    font-size:30px;
    color:#0044cc;
}

/* Description */
.product-card p{
    color:#666;
    line-height:1.7;
    margin:15px 0 25px;
    min-height:55px;
}

/* Button */
.product-card a{
    margin-top:auto;
    display:inline-block;
    padding:14px 32px;
    background:#0077ff;
    border-radius:30px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.product-card a:hover{
    background:#0055cc;
}

/* Badge */
.badge{
    position:absolute;
    top:20px;
    right:-35px;
    background:#ff9800;
    color:#fff;
    padding:8px 45px;
    transform:rotate(45deg);
    font-size:12px;
    font-weight:bold;
    z-index:5;
}

@keyframes floatBottle{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}

@media(max-width:992px){
    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .products-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:36px;
    }
}
.footer{

background:#003d99;

color:white;

padding:60px 0 25px;

}

.footer-content{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:40px;

margin-bottom:30px;

}

.footer h2{

font-size:36px;

margin-bottom:10px;

}

.footer a{

display:block;

color:white;

text-decoration:none;

margin:10px 0;

transition:.3s;

}

.footer a:hover{

color:#8fd3ff;

padding-left:6px;

}

.footer-contact p{

margin:12px 0;

}

.footer-contact i{

margin-right:10px;

color:#8fd3ff;

}

.footer hr{

border:1px solid rgba(255,255,255,.15);

margin:30px 0;

}

.copyright{

text-align:center;

font-size:15px;

line-height:1.8;

color:#d9ecff;

}

.copyright strong{

color:#ffffff;

}

@media(max-width:768px){

.footer-content{

grid-template-columns:1fr;

text-align:center;

}

}