/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI,Arial,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fbff;
    color:#333;
    line-height:1.7;
    margin:0;
    padding:0;
    overflow-x:hidden;
}

/* =====================================================
   CONTAINER
===================================================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    
}

.wrap{
    width:min(1100px,92%);
    margin:auto;
    padding:40px 0;
    text-align:center;
}

/* =====================================================
   HEADER
===================================================== */

.header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);
    z-index:999;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:100px;
    height:55px;
}

.logo span{
    font-size:24px;
    font-weight:700;
    color:#0B5ED7;
}

nav ul{
    list-style:none;
    display:flex;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#0B5ED7;
}

/* =====================================================
   HERO
===================================================== */

.hero{

    height:100vh;

    background:

    linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.45)
    ),

    url("assets/images/hero.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    justify-content:center;

}

.hero-overlay{

    width:100%;

    text-align:center;

    color:white;

}

.hero h1{

    font-size:64px;

    margin-bottom:20px;

    font-weight:700;

}

.hero p{

    font-size:22px;

    max-width:700px;

    margin:auto;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

/* =====================================================
   BUTTONS
===================================================== */

.btn-primary{

    display:inline-block;

    background:#0B5ED7;

    color:white;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    background:#084298;

    transform:translateY(-4px);

}

.btn-secondary{

    display:inline-block;

    border:2px solid white;

    color:white;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

}

.btn-secondary:hover{

    background:white;

    color:#0B5ED7;

}

/* =====================================================
   SECTION TITLE
===================================================== */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    color:#0B5ED7;

}

.section-title p{

    color:#666;

    margin-top:10px;

}
/* ==========================================
   ABOUT SECTION
========================================== */

.about{
    padding:120px 0;
    background:#ffffff;
}

.about .container{
    display:flex;
    flex-direction:column;
    
}

.about-image{
    width:100%;
}

.about-image img{
    width:100%;
    max-width:350px;
    margin:auto;
    display:block;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.about-content{
    width:100%;
    text-align:center;
}

.about-text h2{
    font-size:42px;
    text-align:center;
    color:#0B5ED7;
    margin-top:25px;
    margin-bottom:25px;
}

.about-text p{
    font-size:17px;
    color:#666;
    margin-bottom:40px;
}

/* ==========================================
   STATS
========================================== */

.stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.stats div{
    flex:1;
    min-width:150px;
    background:#f5f9ff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
}

.stats div:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.stats h3{
    font-size:36px;
    color:#0B5ED7;
}

.stats p{
    color:#666;
    margin-top:10px;
}

/* ==========================================
   PRODUCTS
========================================== */

.products{
    padding:50px 0;
    background:#eef6ff;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.product-content{
    padding:25px;
}

.product-content h3{
    margin-bottom:15px;
    color:#0B5ED7;
}

.product-content p{
    color:#666;
    margin-bottom:20px;
}

.product-content a{
    display:inline-block;
    text-decoration:none;
    background:#0B5ED7;
    color:#fff;
    padding:12px 24px;
    border-radius:40px;
    transition:.3s;
}

.product-content a:hover{
    background:#084298;
}

/* ==========================================
   BRANDS
========================================== */

.brands{
    padding:40px 0;
    background:#eaf4ff;
}

.brand-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
}

.brand-item{
    background:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    font-size:22px;
    font-weight:600;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.brand-item:hover{
    background:#0B5ED7;
    color:#fff;
    transform:translateY(-6px);
}


.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:22px;
    margin-top:25px
}

.card{
    background:#fff;
    border-radius:16px;
    padding:25px; 
    box-shadow:0 10px 25px rgba(0,0,0,.08); 
    transition:.25s;
    text-align:center
} 

.card:hover{
    transform:translateY(-6px)
}

.highlight{
    background:#eaf4ff
}

.floating{
    position:fixed;
    right:18px;
    bottom:18px;
    background:#0d5ea6;
    color:#fff;
    padding:14px 18px;
    border-radius:30px; 
    text-decoration:none; 
    box-shadow:0 8px 20px rgba(0,0,0,.2)
}

.call{
    position:fixed;
    right:18px;
    bottom:18px;
    background:#084298;
    color:#fff;
    text-decoration:none;
    padding:15px 20px;
    border-radius:30px;
    box-shadow:0 8px 20px rgba(0,0,0,.25)
}

.call:hover{
    background:#428bca;
}



footer{
    background:#0d5ea6; 
    color:#fff;
    padding:40px 20px;
    margin:0;
    margin-top:40px;
}

.footer-content{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:50px;
    padding-bottom:25px;

}

.footer-contact{

    text-align:left;

}

.footer-about{

    text-align:right;

}

.footer-contact h3,
.footer-about h3{

    margin-bottom:15px;

}

.footer-contact p,
.footer-about p{

    margin:8px 0;

}

.copyright{

    text-align:center;
    border-top:1px solid rgba(255,255,255,.25);
    padding-top:20px;
    margin-top:20px;

}

.copyright-contact{

    text-align:center;
    border-top:1px solid rgba(255,255,255,.25);

}



/* ======================================
   MOBILE MENU
====================================== */

.menu-btn{
    display:none;
    font-size:32px;
    cursor:pointer;
    color:#0B5ED7;
    font-weight:bold;
}

/* Desktop */

#navbar{
    display:block;
}

/* Mobile */

@media(max-width:768px){

.header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:nowrap;

}

.hero{
    height:60vh;
    background-position:center;
}

.hero h1{font-size:30px}

.logo{

    display:flex;
    align-items:center;
    gap:10px;

}

.logo img{

    width:100px;
    height:55px;

}

.logo span{

    font-size:22px;

}

.menu-btn{

    display:block;
    font-size:30px;
    margin-left:15px;

}

#navbar{

    width:100%;
    display:none;
    margin-top:15px;

}

#navbar.active{

    display:block;

    animation:slideDown .4s ease;

}

#navbar ul{

    display:flex;
    flex-direction:column;
    list-style:none;
    gap:18px;
    text-align:center;

}

#navbar ul li{

    padding:8px 0;

}

#navbar ul li a{

    text-decoration:none;
    color:#333;
    font-weight:600;
    font-size:18px;

}

}

.whatsapp{
    position:fixed;
    right:20px;
    bottom:90px;
    width:55px;
    height:55px;
    
}

.whatsapp img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.whatsapp img:hover{
    transform:scale(1.1);
}

.contact-action{
   display:flex;
   gap:15px;
   margin-top:25px;;
    
}

.btn-call{

    display:inline-flex;

    background:#0B5ED7;

    color:white;

    padding:0px 20px;
    justify-content:center;

    border-radius:25px;
    font-size:14px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
    width:120px;
    height:48px;
    align-item:center;

}

.btn-call:hover{
    background:#084298;
}

.whatsapp-contact{
   display:flex;
   align-item:center;
   gap:15px;
   margin-top:20px;
    
}

.whatsapp-contact img{
    width:48px;
    height:48px;
    transition:.3s;
    display:block;
    object-fit:contain;
}

.whatsapp-contact img:hover{
    transform:scale(1.1);
}

.contact-page{

padding:140px 0 80px;

background:#f5f9ff;

}

.contact-page h1{

text-align:center;

font-size:46px;

color:#0B5ED7;

margin-bottom:15px;

}

.contact-subtitle{

text-align:center;

color:#666;

margin-bottom:60px;

}

.contact-box{

display:grid;

grid-template-columns:320px 1fr;

gap:40px;

background:white;

padding:40px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.owner{

text-align:center;

}

.owner img{

width:220px;

height:220px;

border-radius:50%;

object-fit:cover;



margin-bottom:20px;

}

.owner h2{

color:#0B5ED7;

}

.details{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.info{

background:#f8fbff;

padding:25px;

border-radius:15px;

}

.info h3{

color:#0B5ED7;

margin-bottom:10px;

}

@media(max-width:768px){

.contact-box{

grid-template-columns:1fr;

}

.details{

grid-template-columns:1fr;

}

.owner img{

width:180px;

height:180px;

}

}


