
*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#FAF8F5;
color:#2d2d2d;
}
html{

scroll-behavior:smooth;

}
section{

scroll-margin-top:100px;

}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/*================ HEADER ================*/

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;

background:rgba(250,248,245,.85);

backdrop-filter:blur(12px);

border-bottom:1px solid #e7e2db;

}

.navbar{

display:flex;
justify-content:space-between;
align-items:center;

height:60px;

}
/*================ MOBILE MENU =================*/

.menu-toggle{

display:none;
width:45px;
height:45px;

cursor:pointer;

flex-direction:column;
justify-content:center;
gap:6px;

z-index:1001;

}

.menu-toggle span{

width:28px;
height:3px;

background:#0B4F6C;

border-radius:10px;

transition:.35s;

}

@media(max-width:900px){

.quote-btn{
display:none;
}

.menu-toggle{
display:flex;
}

nav{

position:fixed;

top:80px;
left:-100%;

width:100%;

height:calc(100vh - 80px);

background:#fff;

transition:.4s;

padding:40px;

overflow:auto;

display:block;

}

nav.active{

left:0;

}

nav ul{

display:flex;
flex-direction:column;
gap:30px;

}

nav ul li{

border-bottom:1px solid #eee;

padding-bottom:15px;

}

}
.logo{

font-size:28px;
font-weight:800;
letter-spacing:1px;
color:#0B4F6C;

}

.logo span{

color:#2DA8D8;

}

nav ul{

display:flex;
gap:40px;
list-style:none;

}

nav a{

text-decoration:none;
color:#333;
font-weight:500;
transition:.3s;

}

nav a:hover{

color:#2DA8D8;

}


/*================ HERO ================*/

.hero{

min-height:100vh;

display:flex;

align-items:center;

padding-top:90px;

}

.hero-content{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.small-title{

color:#2DA8D8;

font-weight:600;

letter-spacing:2px;

margin-bottom:15px;

text-transform:uppercase;

font-size:14px;

}

.hero h1{

font-size:62px;

line-height:1.1;

margin-bottom:25px;

font-weight:800;

color:#0B4F6C;

}

.hero p{

font-size:18px;

line-height:32px;

color:#666;

margin-bottom:40px;

}

.hero-btns{

display:flex;

gap:20px;

}

.btn1{

padding:16px 34px;

background:#0B4F6C;

color:#fff;

text-decoration:none;

border-radius:50px;

font-weight:600;

transition:.3s;

}

.btn1:hover{

background:#2DA8D8;

}

.btn2{

padding:16px 34px;

border:2px solid #0B4F6C;

text-decoration:none;

border-radius:50px;

font-weight:600;

color:#0B4F6C;

transition:.3s;

}

.btn2:hover{

background:#0B4F6C;

color:white;

}

/*================ HERO IMAGE =================*/

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    
}

.hero-image img{
    width:100%;
    max-width:560px;
    border-radius:10px;
    box-shadow:0 30px 70px rgba(0,0,0,.12);
    filter: brightness(70%) contrast(105%);
}

/* Floating Card */

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:18px;

    padding:18px 22px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    animation:float 4s ease-in-out infinite;

}

.card1{

    left:-30px;
    top:40px;

}

.card2{

    right:-25px;
    bottom:60px;

    animation-delay:2s;

}

.floating-card h4{

    font-size:16px;
    color:#0B4F6C;
    margin-bottom:5px;

}

.floating-card p{

    font-size:13px;
    color:#777;
    margin:0;
    line-height:20px;

}

.exp-box{

    position:absolute;

    bottom:-30px;
    left:50%;
    transform:translateX(-50%);

    background:#0B4F6C;
    color:#fff;

    padding:18px 35px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.exp-box h2{

    font-size:34px;

}

.exp-box span{

    font-size:14px;

    opacity:.9;

}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0px);
}

}

/*================ TRUSTED =================*/

/*================ TRUSTED BUYERS =================*/

.trusted{

    padding:100px 0;
    background:#f4f2ee;
    overflow:hidden;

}

.trusted-title{

    text-align:center;
    font-size:15px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#888;
    margin-bottom:50px;

}

.logo-slider{

    overflow:hidden;
    position:relative;
    width:100%;

}

.logo-track{

    display:flex;
    width:max-content;
    animation:scrollLogo 30s linear infinite;

}

.logo-slider:hover .logo-track{

    animation-play-state:paused;

}

.brand-item{

    min-width:180px;

    height:80px;

    margin:0 15px;

    background:#fff;

    border:1px solid #ECE8E2;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:700;

    color:#666;

    transition:.35s;

}

.brand-item:hover{

    color:#2DA8D8;

    transform:translateY(-6px);

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

@keyframes scrollLogo{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

@media(max-width:768px){

.brand-item{

    min-width:140px;
    height:65px;
    font-size:18px;

}

.logo-track{

    animation-duration:20s;

}

}
.brand-row{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:30px;

}

.brand-item{

font-size:28px;

font-weight:700;

color:#b4b4b4;

transition:.35s;

cursor:pointer;

}

.brand-item:hover{

color:#2DA8D8;
transform:scale(1.08);

}

@media (max-width:768px){

.hero-content{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
}

.hero-image{
    order:2;
}

.hero-image img{
    width:100%;
    max-width:100%;
}

/* Hide Floating Cards on Mobile */

.card1,
.card2,
.exp-box{
    display:none;
}

.hero-btns{
    justify-content:center;
    flex-wrap:wrap;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
    line-height:28px;
}

}

@media(max-width:900px){

.hero-content{
grid-template-columns:1fr;
text-align:center;
}

.hero-btns{
justify-content:center;
}

.hero h1{
font-size:42px;
}

}
/*================ PRODUCTS =================*/

.products{
    padding:120px 0;
    background:#ffffff;
}

.section-head{
    text-align:center;
    margin-bottom:70px;
}

.section-head span{
    color:#2DA8D8;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.section-head h2{
    font-size:48px;
    color:#0B4F6C;
    margin-top:15px;
    margin-bottom:20px;
}

.section-head p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:30px;
}

.product-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.product-card{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    cursor:pointer;

    min-height:420px;

}

.product-card img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:.7s;

}

.product-card:hover img{

    transform:scale(1.1);

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,rgba(0,0,0,.75),rgba(0,0,0,.05));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

}

.overlay h3{

    color:#fff;

    font-size:30px;

    margin-bottom:12px;

}

.overlay p{

    color:#ddd;

    line-height:28px;

}

.arrow{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#2DA8D8;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:22px;

    margin-top:25px;

    transition:.4s;

}

.product-card:hover .arrow{

    transform:translateX(12px) rotate(-45deg);

}

.big{

    grid-row:span 2;

}

@media(max-width:991px){

.product-grid{

grid-template-columns:1fr;

}

.big{

grid-row:auto;

}

}
/*================ ABOUT =================*/

.about{
    padding:120px 0;
    background:#F7F4EF;
}

.about-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:30px;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.experience-card{
    position:absolute;
    right:-20px;
    bottom:40px;
    background:#fff;
    padding:25px 30px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.experience-card h2{
    font-size:42px;
    color:#0B4F6C;
    margin-bottom:5px;
}

.experience-card p{
    color:#777;
}

.about-sub{
    color:#2DA8D8;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.about-title{
    font-size:48px;
    color:#0B4F6C;
    margin:18px 0 25px;
    line-height:1.2;
}

.about-text{
    color:#666;
    line-height:30px;
    margin-bottom:35px;
}

.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature{
    background:#fff;
    padding:22px;
    border-radius:18px;
    transition:.35s;
    border:1px solid #ECE8E2;
}

.feature:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.feature h4{
    color:#0B4F6C;
    margin-bottom:8px;
}

.feature p{
    color:#777;
    font-size:14px;
    line-height:24px;
}

.stats{
    display:flex;
    gap:50px;
    margin-top:45px;
}

.stat h2{
    font-size:40px;
    color:#0B4F6C;
}

.stat span{
    color:#777;
}

@media(max-width:991px){

.about-wrap{
    grid-template-columns:1fr;
}

.feature-list{
    grid-template-columns:1fr;
}

.stats{
    flex-wrap:wrap;
    gap:25px;
}

.experience-card{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:20px;
}

.about-title{
    font-size:38px;
}

}
/*================ WHY CHOOSE US =================*/

.why{
    padding:120px 0;
    background:#fff;
}

.why-head{
    text-align:center;
    max-width:750px;
    margin:0 auto 70px;
}

.why-head span{
    color:#2DA8D8;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.why-head h2{
    font-size:48px;
    color:#0B4F6C;
    margin:15px 0;
}

.why-head p{
    color:#666;
    line-height:30px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#FAF8F5;
    border:1px solid #ECE8E2;
    border-radius:25px;
    padding:40px 30px;
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.icon-box{
    width:70px;
    height:70px;
    background:#0B4F6C;
    color:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.why-card h3{
    color:#0B4F6C;
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#666;
    line-height:28px;
}

/*================ PROCESS =================*/

.process{
    margin-top:110px;
}

.process-title{
    text-align:center;
    font-size:42px;
    color:#0B4F6C;
    margin-bottom:70px;
}

.process-line{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.step{
    flex:1;
    min-width:220px;
    text-align:center;
    position:relative;
}

.step::after{
    content:"";
    position:absolute;
    top:38px;
    right:-12%;
    width:24%;
    height:2px;
    background:#BFE3F5;
}

.step:last-child::after{
    display:none;
}

.step-number{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#2DA8D8;
    color:#fff;
    font-size:28px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.step h4{
    margin:25px 0 10px;
    color:#0B4F6C;
    font-size:22px;
}

.step p{
    color:#666;
    line-height:28px;
}

@media(max-width:991px){

.why-grid{
    grid-template-columns:1fr;
}

.process-line{
    flex-direction:column;
}

.step::after{
    display:none;
}

.why-head h2,
.process-title{
    font-size:36px;
}

}
/*================ CTA =================*/

.cta{

padding:140px 0;

background:linear-gradient(rgba(30,58,52,.82),rgba(30,58,52,.82)),
url("images/banner.jpg") center/cover;

text-align:center;

}

.cta h2{

font-size:56px;

color:#fff;

margin-bottom:20px;

}

.cta p{

max-width:750px;

margin:auto;

color:#ddd;

line-height:32px;

font-size:18px;

margin-bottom:45px;

}

.cta-btn{

display:inline-block;

padding:18px 42px;

background:#2DA8D8;

color:#fff;

text-decoration:none;

border-radius:60px;

font-weight:600;

transition:.35s;

}

.cta-btn:hover{

background:#fff;

color:#0B4F6C;

}

/*================ CONTACT =================*/

.contact{

background:#FAF8F5;

padding:120px 0;

}

.contact-box{

display:grid;

grid-template-columns:420px 1fr;

gap:60px;

}

.contact-info{

background:#0B4F6C;

padding:50px;

border-radius:30px;

color:#fff;

}

.contact-info h2{

font-size:38px;

margin-bottom:20px;

}

.contact-info p{

color:#d8d8d8;

line-height:30px;

margin-bottom:35px;

}

.info{

margin-bottom:25px;

}

.info h4{

margin-bottom:6px;

color:#2DA8D8;

}

.contact-form{

background:#fff;

padding:50px;

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contact-form input,
.contact-form textarea{

width:100%;

padding:18px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:12px;

font-family:Poppins;

font-size:15px;

outline:none;

transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

border-color:#2DA8D8;

}

.contact-form textarea{

height:180px;

resize:none;

}

.contact-form button{

background:#0B4F6C;

color:#fff;

padding:18px 40px;

border:none;

border-radius:50px;

cursor:pointer;

font-size:16px;

transition:.3s;

}

.contact-form button:hover{

background:#2DA8D8;

}

/*================ FOOTER =================*/

footer{

background:#072B3D;

padding:70px 0 30px;

color:#ddd;

}

.footer-top{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:40px;

margin-bottom:50px;

}

.footer-top h3{

color:#fff;

margin-bottom:18px;

}

.footer-top ul{

list-style:none;

}

.footer-top li{

margin-bottom:12px;

}

.footer-top a{

text-decoration:none;

color:#cfcfcf;

transition:.3s;

}

.footer-top a:hover{

color:#2DA8D8;

}

.copyright{

border-top:1px solid rgba(255,255,255,.08);

padding-top:25px;

text-align:center;

color:#999;

}

@media(max-width:991px){

.contact-box,
.footer-top{

grid-template-columns:1fr;

}

.cta h2{

font-size:38px;

}

}
.menu-toggle.open span:nth-child(1){

transform:rotate(45deg) translate(6px,6px);

}

.menu-toggle.open span:nth-child(2){

opacity:0;

}

.menu-toggle.open span:nth-child(3){

transform:rotate(-45deg) translate(7px,-7px);

}
nav a.active{

color:#2DA8D8;

font-weight:700;

}
.header-btn{
    display:flex;
    align-items:center;
    gap:12px;
}

.phone-btn,
.whatsapp-btn{

    width:40px;
    height:40px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    text-decoration:none;

    color:#fff;

    font-size:15px;

    transition:.35s;

}

.phone-btn{

    background:#0B4F6C;

}

.phone-btn:hover{

    background:#2DA8D8;
    transform:translateY(-3px);

}

.whatsapp-btn{

    background:#25D366;

}

.whatsapp-btn:hover{

    background:#1EBE5D;
    transform:translateY(-3px);

}

@media(max-width:900px){

.header-btn{
display:none;
}

}
.see-all{
    width:100%;
    text-align:center;
    margin-top:20px;
}

.see-btn{

    background:#0B4F6C;
    color:#fff;

    border:none;

    padding:16px 40px;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.see-btn i{

    margin-left:8px;

}

.see-btn:hover{

    background:#2DA8D8;

    transform:translateY(-4px);

}
.modal{

display:none;

position:fixed;

left:0;
top:0;

width:100%;
height:100%;

background:rgba(0,0,0,.7);

z-index:9999;

overflow:auto;

padding:60px 20px;

}

.modal-content{

background:#fff;

max-width:1100px;

margin:auto;

padding:40px;

border-radius:20px;

position:relative;

animation:popup .35s;

}

@keyframes popup{

from{

opacity:0;
transform:translateY(-40px);

}

to{

opacity:1;
transform:translateY(0);

}

}

.close-modal{

position:absolute;

right:25px;
top:15px;

font-size:34px;

cursor:pointer;

}

.modal-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

margin-top:35px;

}

.modal-card{

border:1px solid #eee;

border-radius:15px;

overflow:hidden;

transition:.45s;

}

.modal-card:hover{

transform:translateY(-6px);

box-shadow:0 15px 30px rgba(0,0,0,.1);

}

.modal-card img{

width:100%;

height:180px;

object-fit:cover;

}

.modal-card h4{

padding:18px;

text-align:center;

color:#0B4F6C;

}


