*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{

    background:#FFFFFF;

    color:#333;

    line-height:1.6;

    overflow-x:hidden;

}
/* ===========================
   PREMIUM HEADER
=========================== */

.header{

    position: sticky;

    top: 0;

    z-index: 1000;

    background: #0C3960;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 12px 4%;

    box-shadow: 0 2px 15px rgba(0,0,0,.08);

}

.logo{
    display:flex;
    align-items:center;
}

.logo img{

    width: 300px;

    max-width: 100%;

    height: auto;

    display: block;

    transition: .3s ease;

}

.logo img:hover{

    transform: scale(1.03);

}

.navbar a.active::after{

    width:100%;

}

.navbar a{

    color:#FFFFFF;

    text-decoration:none;

    font-size:17px;

    font-weight:600;

    padding:8px 0;

    margin:0 18px;

    position:relative;

    transition:.3s;

}

.navbar a:hover{

    color:#C7A33B;

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#C7A33B;

    transition:.3s;

}



.navbar .active::after{

    width:100%;

}

.whatsapp-btn{

    background:#C7A33B;

    color:#0B3D6D;

    padding:12px 24px;

    border-radius:50px;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    transition:.3s;

    box-shadow:0 6px 15px rgba(199,163,59,.30);

}

.whatsapp-btn:hover{

    background:white;

    transform:translateY(-3px);

}


.btn{

    display:inline-block;

    background:#C7A33B;

    color:#0B3D6D;

    padding:15px 32px;

    border-radius:50px;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    border:none;

    cursor:pointer;

    transition:.3s;

}

.btn:hover{

    background:white;

}


.btn2{

    display:inline-block;

    border:2px solid #FFFFFF;

    color:#FFFFFF;

    padding:15px 32px;

    border-radius:50px;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.btn2:hover{

    background:white;

    color:#0B3D6D;

}

html{

    scroll-behavior:smooth;

    font-size:16px;

}

/* ==========================
   FOOTER
========================== */

.footer{
    background:#0C3960;
    color:white;
    padding:40px 6% 15px;
}


.footer-container{
    display:grid;
    grid-template-columns:1.6fr 1fr 1.3fr;
    gap:50px;
    align-items:start;
}
.footer-box:first-child{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    text-align:left;
}
.footer-box:first-child p{
    max-width:360px;
    line-height:1.7;
    margin-top:10px;
    margin-left:40px;
}
.footer-container{
    display:grid;
    grid-template-columns:1.5fr 1fr 1.4fr;
    gap:80px;
}

.footer-box img{
    width:300px;
    height:auto;
    margin-bottom:18px;
}

.footer-box h3{
    color:#C7A33B;
    margin-bottom:20px;
    font-size:28px;
    font-weight:700;
}

.footer-box p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:10px;
}

.footer-box a{

    display:inline-block;

    color:#DDD;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;

}

.footer-box a:hover{

    color:#C7A33B;

    transform:translateX(6px);

}

.copyright{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.2);
    text-align:center;
    color:#bbb;
}
/* ==========================
   FOOTER
========================== */





/* ==========================
   SMOOTH ANIMATIONS
========================== */

img{

    transition:.3s;

}

img:hover{

    transform:scale(1.02);

}

section{

    scroll-margin-top:90px;

}
/* ==========================
   PREMIUM CARD EFFECT
========================== */

.card,
.product-card,
.why-card,
.info-card{

    transition:.35s ease;

}

.card:hover,
.product-card:hover,
.why-card:hover,
.info-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}
/* ==========================
   PREMIUM SECTION HEADINGS
========================== */

h1{

    letter-spacing:-1px;

}

h2{

    letter-spacing:-0.5px;

}

h3{

    letter-spacing:-0.3px;

}
/* ==========================
   SECTION TAG
========================== */

.section-tag{

    display:inline-block;

    color:#C7A33B;

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:12px;

}
/* =====================================
   PRELOADER
===================================== */

#preloader{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:#FFFFFF;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    transition:opacity .6s ease, visibility .6s ease;

}

#preloader.hide{

    opacity:0;

    visibility:hidden;

}

.loader-content{

    text-align:center;

}

.loader-content img{

    width:180px;

    max-width:80%;

    animation:logoPulse 1.8s infinite ease-in-out;

}

.loader-content p{

    margin-top:20px;

    color:#0B3D6D;

    font-size:18px;

    font-weight:600;

    letter-spacing:1px;

}

@keyframes logoPulse{

    0%{

        transform:scale(1);

        opacity:.85;

    }

    50%{

        transform:scale(1.06);

        opacity:1;

    }

    100%{

        transform:scale(1);

        opacity:.85;

    }

}