/*==============================
GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F5F0E6;
    color:#1F2937;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*==============================
CONTAINER
==============================*/

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/*==============================
HEADER
==============================*/

.header{

    position:sticky;
    top:0;
    left:0;
    width:100%;

    background:#EFE7D7;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    z-index:1000;

}

/*==============================
NAVBAR
==============================*/

.navbar{

    height:82px;

    display:flex;
    align-items:center;
    justify-content:space-between;

}

/*==============================
LOGO
==============================*/

.logo{

    display:flex;
    align-items:center;
    gap:12px;

}

.logo img{

    width:58px;
    height:58px;
    object-fit:cover;
    border-radius:50%;
    border:2px solid #1E3A8A;

}

.logo-text h2{

    color:#1E3A8A;
    font-size:26px;
    font-weight:700;
    line-height:1;

}

.logo-text span{

    color:#777;
    font-size:13px;

}

/*==============================
NAV LINKS
==============================*/

.nav-menu ul{

    display:flex;
    align-items:center;
    gap:35px;

}

.nav-menu a{

    position:relative;

    color:#1F2937;

    font-size:16px;
    font-weight:500;

    transition:.35s;

}

.nav-menu a:hover{

    color:#1E3A8A;

}

.nav-menu a.active{

    color:#1E3A8A;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:3px;

    background:#1E3A8A;

    transition:.35s;

}

.nav-menu a:hover::after,
.nav-menu a.active::after{

    width:100%;

}

/*==============================
HAMBURGER
==============================*/

.hamburger{

    display:none;

    flex-direction:column;

    gap:6px;

    cursor:pointer;

}

.hamburger span{

    width:28px;
    height:3px;

    background:#1E3A8A;

    border-radius:50px;

    transition:.4s;

}

/*==============================
MOBILE
==============================*/

@media(max-width:768px){

.logo-text span{

    display:none;

}

.logo-text h2{

    font-size:22px;

}

.hamburger{

    display:flex;

}

.nav-menu{

    position:absolute;

    top:82px;
    left:-100%;

    width:100%;

    background:#FFFFFF;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.nav-menu.active{

    left:0;

}

.nav-menu ul{

    flex-direction:column;

    gap:0;

    padding:20px 0;

}

.nav-menu li{

    width:100%;

}

.nav-menu a{

    display:block;

    width:100%;

    padding:18px 30px;

}

.nav-menu a::after{

    display:none;

}

}

/*=====================================
            HERO SECTION
======================================*/

.hero{
    padding:90px 0;
    background:#F5F0E6;
}

.hero-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

/* LEFT */

.hero-content{
    flex:1;
}

.hero-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:#E5EAF8;

    color:#1E3A8A;

    font-weight:600;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:60px;

    color:#1E3A8A;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:700;

}

.hero-content p{

    font-size:18px;

    color:#555;

    line-height:1.8;

    margin-bottom:40px;

    max-width:550px;

}

.hero-btn{

    display:inline-block;

    padding:18px 42px;

    background:#1E3A8A;

    color:#fff;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.hero-btn:hover{

    background:#163172;

    transform:translateY(-4px);

}

/* RIGHT */

.hero-image{

    flex:1;

}

.hero-image img{

    width:100%;

    border-radius:30px;

    display:block;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

/*=====================================
            MOBILE
======================================*/

@media(max-width:768px){

.hero{

    padding:0;

}

.hero-container{

    display:block;

}

/* Image First */

.hero-image{

    width:100%;

}

.hero-image img{

    width:100%;

    height:320px;

    object-fit:cover;

    border-radius:20px;

    box-shadow:none;

}

/* Text */

.hero-content{

    text-align:center;

    padding:40px 25px 60px;

}

.hero-tag{

    margin-bottom:20px;

}

.hero-content h1{

    font-size:40px;

    margin-bottom:20px;

}

.hero-content p{

    font-size:16px;

    max-width:100%;

    margin-bottom:35px;

}

.hero-btn{

    display:inline-block;

    padding:16px 35px;

    font-size:17px;

}

}

/*=========================================
            PRODUCTS SECTION
=========================================*/

.products{

    padding:100px 0;

    background:#F5F0E6;

    overflow:hidden;

}

/* Heading */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:48px;

    color:#1E3A8A;

    margin-bottom:15px;

    font-weight:700;

}

.section-title p{

    font-size:18px;

    color:#666;

}

/*==============================
MARQUEE
==============================*/

.marquee{

    width:100%;

    overflow:hidden;

    margin-bottom:35px;

}

.marquee-content{

    display:flex;

    width:max-content;

    gap:30px;

    animation:scroll 28s linear infinite;

}

.second-row .marquee-content{

    animation-duration:34s;

}

/*==============================
PRODUCT CARD
==============================*/

.product-card{
    width:220px;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    padding:0 0 25px;
    text-align:center;
    flex-shrink:0;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.product-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
    margin:0;
}

.product-card h3{
    margin-top:20px;
    padding:0 15px;
    font-size:20px;
    color:#1E3A8A;
    font-weight:600;
}

/*==============================
ANIMATION
==============================*/

@keyframes scroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/*=========================================
            MOBILE
=========================================*/

@media(max-width:768px){

.products{

    padding:70px 0;

}

.section-title{

    margin-bottom:40px;

}

.section-title h2{

    font-size:34px;

}

.section-title p{

    font-size:16px;

    padding:0 20px;

}

.marquee{

    margin-bottom:25px;

}

.marquee-content{

    gap:18px;

    animation-duration:22s;

}

.second-row .marquee-content{

    animation-duration:26s;

}

.product-card{

    width:170px;
    padding:0 0 20px;
    border-radius:18px;

}

.product-card img{

    width:100%;
    height:140px;
    object-fit:cover;
    display:block;
    margin:0;

}

.product-card h3{

    font-size:16px;

}

}

/*=========================================
            BRANDS SECTION
=========================================*/

.brands{

    padding:100px 0;

    background:#ffffff;

    overflow:hidden;

}

/* Slider */

.brand-slider{

    width:100%;

    overflow:hidden;

}

.brand-track{

    display:flex;

    gap:30px;

    width:max-content;

    animation:scroll 24s linear infinite;

}

/* Card */

.brand-card{

    width:220px;

    background:#fff;

    border-radius:20px;

    padding:30px 20px;

    text-align:center;

    flex-shrink:0;

    border:1px solid #ECECEC;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

}

.brand-card:hover{

    transform:translateY(-8px);

    border-color:#1E3A8A;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.brand-card img{

    width:120px;

    height:70px;

    object-fit:contain;

    margin:auto;

    margin-bottom:18px;

}

.brand-card h3{

    font-size:20px;

    color:#1E3A8A;

    font-weight:600;

}

/* Mobile */

@media(max-width:768px){

.brands{

    padding:70px 0;

}

.brand-track{

    gap:18px;

    animation-duration:20s;

}

.brand-card{

    width:170px;

    padding:22px 15px;

}

.brand-card img{

    width:90px;

    height:55px;

}

.brand-card h3{

    font-size:16px;

}

}

/*=========================================
            WHY US
=========================================*/

.why-us{

    padding:100px 0;

    background:#F5F0E6;

}

.why-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

/* Image */

.why-image{

    flex:1;

}

.why-image img{

    width:100%;

    border-radius:25px;

    display:block;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

/* Content */

.why-content{

    flex:1;

}

.why-tag{

    display:inline-block;

    background:#E7ECFF;

    color:#1E3A8A;

    padding:10px 20px;

    border-radius:40px;

    margin-bottom:20px;

    font-weight:600;

}

.why-content h2{

    font-size:46px;

    color:#1E3A8A;

    line-height:1.2;

    margin-bottom:25px;

}

.why-content h2 span{

    color:#2563EB;

}

.why-content p{

    font-size:18px;

    color:#555;

    line-height:1.8;

    margin-bottom:35px;

}

.why-points{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.point{

    background:#fff;

    padding:18px 20px;

    border-radius:15px;

    color:#1E3A8A;

    font-weight:600;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

/*==============================
Mobile
==============================*/

@media(max-width:768px){

.why-us{

    padding:70px 0;

}

.why-container{

    flex-direction:column;

}

.why-image img{

    border-radius:20px;

}

.why-content{

    text-align:center;

}

.why-content h2{

    font-size:34px;

}

.why-content p{

    font-size:16px;

}

.why-points{

    grid-template-columns:1fr;

}

}

/*=========================================
            CONTACT SECTION
=========================================*/

.contact{

    padding:100px 0;

    background:#ffffff;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.contact-card{

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:22px;

    padding:40px 35px;

    text-align:center;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.contact-card:hover{

    transform:translateY(-8px);

    border-color:#1E3A8A;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.contact-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#E7ECFF;

    display:flex;

    align-items:center;

    justify-content:center;

}

.contact-icon i{

    font-size:36px;

    color:#1E3A8A;

}

.contact-card h3{

    font-size:26px;

    color:#1E3A8A;

    margin-bottom:18px;

    font-weight:600;

}

.contact-card p{

    font-size:17px;

    color:#666;

    line-height:1.8;

}

/*==============================
        MOBILE
==============================*/

@media(max-width:768px){

.contact{

    padding:70px 0;

}

.contact-grid{

    grid-template-columns:1fr;

    gap:22px;

    margin-top:40px;

}

.contact-card{

    padding:35px 25px;

}

.contact-icon{

    width:70px;

    height:70px;

    margin-bottom:20px;

}

.contact-icon i{

    font-size:30px;

}

.contact-card h3{

    font-size:22px;

}

.contact-card p{

    font-size:16px;

}

}

/*=========================================
                FOOTER
=========================================*/

.footer{

    background:#1E3A8A;

    padding:25px 0;

    text-align:center;

}

.footer p{

    color:rgba(255,255,255,.9);

    font-size:15px;

    font-weight:400;

    letter-spacing:.3px;

}

/*==============================
        MOBILE
==============================*/

@media(max-width:768px){

.footer{

    padding:20px 15px;

}

.footer p{

    font-size:14px;

    line-height:1.6;

}

}

/*==============================
HAMBURGER ANIMATION
==============================*/

.hamburger.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}

/*=========================================
        FLOATING BUTTONS
=========================================*/

.floating-buttons{

    position: fixed;

    right: 25px;
    left: auto;

    bottom: 25px;

    display: flex;

    flex-direction: column;

    gap: 15px;

    z-index: 9999;

}

.float-btn{

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:28px;
    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.35s;

}

.float-btn:hover{

    transform:translateY(-5px) scale(1.08);

}

.call-btn{

    background:#1E3A8A;

}

.whatsapp-btn{

    background:#25D366;

}

/*==============================
        MOBILE
==============================*/

@media(max-width:768px){

.floating-buttons{

    right:15px;
    left:auto;

    bottom:15px;

    gap:12px;

}

.float-btn{

    width:55px;
    height:55px;

    font-size:24px;

}

}