@import url("base.css");
@import url("layout.css");
@import url("components.css");
@import url("pages.css");
@import url("animations.css");
@import url("responsive.css");


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

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    backdrop-filter:blur(10px);

    background:rgba(255,255,255,.95);

    box-shadow:0 5px 20px rgba(0,0,0,.05);

    z-index:999;

}

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

.navbar{

display:flex;

justify-content:space-between;

align-items:center;

height:100px;

}

.logo{

display:flex;

align-items:center;

height:90px;

}

.logo img{

height:130px;

margin-top:8px;

}

.nav-menu{

    display:flex;

    gap:40px;

    list-style:none;

}

.nav-menu a{

    text-decoration:none;

    color:#0B2D5C;

    font-weight:600;

    transition:.3s;

}

.nav-menu a{

position:relative;

transition:.3s;

}

.nav-menu a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#D4AF37;

transition:.35s;

}

.nav-menu a:hover::after{

width:100%;

}

.nav-menu a:hover{

color:#D4AF37;

}

.nav-menu a:hover{

    color:#D4AF37;

}

.nav-menu a.active{

color:#0B2D5C;

position:relative;

}

.nav-menu a.active::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:100%;

height:2px;

background:#D4AF37;

}

.nav-right{

    display:flex;

    align-items:center;

    gap:25px;

}

.language{

    font-size:14px;

    color:#777;

}

.quote-btn{

    background:#0B2D5C;

    color:#fff;

    padding:14px 30px;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

}

.quote-btn:hover{

    background:#D4AF37;

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.15);

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

.hero{

    padding:170px 0 120px;

    background:#F7F9FC;

}

.hero-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

}

.hero-left h1{

    font-family:'Poppins',sans-serif;

    font-size:72px;

    font-weight:800;

}

.hero-tag{

    color:#D4AF37;

    letter-spacing:2px;

    font-weight:600;

    font-size:15px;

}

.hero-left h1{

    margin-top:20px;

    font-size:72px;

    line-height:1.1;

    color:#0B2D5C;

    font-weight:800;

}

.hero-left p{

    margin-top:30px;

    font-size:20px;

    color:#666;

    line-height:1.8;

    max-width:700px;

}

.hero-image img{

width:480px;

transition:.4s;

}

.hero-image img:hover{

transform:scale(1.03);

}

.hero-button{

    margin-top:45px;

    display:flex;

    gap:20px;

}

.btn-primary{

    background:#0B2D5C;

    color:white;

    text-decoration:none;

    padding:18px 36px;

    border-radius:50px;

    box-shadow:0 12px 25px rgba(11,45,92,.15);

}

.btn-outline{

    border:2px solid #0B2D5C;

    color:#0B2D5C;

    text-decoration:none;

    padding:18px 36px;

    border-radius:50px;

}

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-right img{

    width:430px;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}

.hero-image img{

animation:float 5s ease-in-out infinite;

}
/*==========================
STATISTICS
==========================*/

.stats{

    padding:80px 0;

    background:white;

}

.stats-grid{

    display:grid;

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

    gap:30px;

}

.stat-card{

    background:#F7F9FC;

    padding:45px;

    border-radius:20px;

    text-align:center;

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.stat-card h2{

    font-size:48px;

    color:#0B2D5C;

    margin-bottom:10px;

}

.stat-card p{

    color:#666;

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

.about{

    padding:120px 0;

    background:#F7F9FC;

}

.about-wrapper{

    display:flex;

    align-items:center;

    gap:80px;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.about-content{

    flex:1;

}

.about-content span{

    color:#D4AF37;

    font-weight:600;

    letter-spacing:2px;

}

.about-content h2{

    margin:20px 0;

    font-size:52px;

    color:#0B2D5C;

    line-height:1.2;

    font-weight:800;

}

.about-content p{

    margin-bottom:25px;

    color:#666;

    line-height:1.9;

    font-size:18px;

}
/*==========================
FEATURED PRODUCTS
==========================*/

.products{

padding:120px 0;

background:white;

}

.section-title{

text-align:center;

max-width:800px;

margin:auto;

margin-bottom:70px;

}

.section-title span{

color:#D4AF37;

font-weight:600;

letter-spacing:2px;

}

.section-title h2{

font-size:52px;

margin:20px 0;

color:#0B2D5C;

font-weight:800;

}

.section-title p{

color:#666;

line-height:1.8;

}

.product-grid{

display:grid;

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

gap:30px;

}

.product-card{

background:white;

padding:25px;

border-radius:20px;

box-shadow:0 12px 35px rgba(0,0,0,.06);

transition:.35s;

display:flex;

flex-direction:column;

justify-content:space-between;

min-height:520px;

}

.product-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,.08);


}

.product-card img{

width:180px;

height:180px;

object-fit:contain;

margin-bottom:25px;

transition:transform .35s ease;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-card h3{

color:#0B2D5C;

margin-bottom:15px;

font-size:24px;

transition:color .3s;

}

.product-card:hover h3{

color:#D4AF37;

}

.product-card p{

color:#666;

line-height:1.8;

margin-bottom:25px;

}

.product-card a{

text-decoration:none;

color:#0B2D5C;

font-weight:600;

transition:colour .3s;

}

.product-card:hover a{

color:#D4AF37;

}

/*==========================
WHY SECTION
==========================*/

.why{

padding:120px 0;

background:#ffffff;

}

.why-grid{

display:grid;

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

gap:30px;

margin-top:70px;

}

.why-card{

padding:50px 35px;

min-height:320px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

background:#F7F9FC;

border-radius:20px;

text-align:center;

transition:.35s ease;

}

.why-card:hover{

transform:translateY(-12px);

transform:scale(1.15);

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.why-icon{

font-size:50px;

margin-bottom:25px;

transition:.35s;

transform:scale(1.15);

}

.why-card h3{

font-size:26px;

color:#0B2D5C;

margin-bottom:15px;

}

.why-card p{

line-height:1.8;

color:#666;

}

.clients{

padding:120px 0;

background:#F7F9FC;

}

.clients-grid{

display:grid;

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

gap:30px;

margin-top:60px;

}

.client-box{

background:#ffffff;

padding:45px;

border-radius:20px;

text-align:center;

font-size:30px;

font-weight:600;

color:#0B2D5C;

transition:.35s ease;

cursor:pointer;

}

.client-box span{

    font-size:40px;

}

.client-box:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(0,0,0,.08);

}

/*==========================
CTA
==========================*/

.cta{

padding:140px 0;

background:#0B2D5C;

text-align:center;

}

.cta h2{

font-size:52px;

color:white;

margin-bottom:25px;

}

.cta p{

max-width:800px;

margin:auto;

font-size:20px;

line-height:1.8;

color:rgba(255,255,255,.8);

margin-bottom:50px;

}

.cta .btn-primary{

background:#D4AF37;

color:#0B2D5C;

font-weight:700;

padding:18px 40px;

box-shadow:0 10px 20px rgba(11,45,92,.15);

}

.cta .btn-primary:hover{

transform:translateY(-4px);

box-shadow:0 15px 30px rgba(212,175,55,.35);

background:white;

}


.btn-secondary:hover{

background:white;

color:#0B2D5C;

}

/*==========================
CONTACT & MAP
==========================*/

.contact-map{

padding:120px 0;

background:#F7F9FC;

}

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

margin-top:70px;

align-items:center;

}

.contact-info{

display:flex;

flex-direction:column;

gap:30px;

}

.contact-item{

display:flex;

gap:20px;

padding:25px;

background:white;

border-radius:20px;

transition:.35s;

box-shadow:0 8px 25px rgba(0,0,0,.04);

}

.contact-item:hover{

transform:translateY(-5px);

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

background:#D4AF37;

transform:rotate(10deg) scale(1.1);

}

.contact-icon{

width:60px;

height:60px;

background:#D4AF37;

transform:rotate(10deg) scale(1.1);

color:white;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

font-size:26px;

flex-shrink:0;

transition:.35s;

}

.contact-item h3{

font-size:22px;

color:#0B2D5C;

margin-bottom:10px;

}

.contact-item p{

color:#666;

line-height:1.8;

}

.contact-card{

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.map-container{

border-radius:25px;

overflow:hidden;

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

height:500px;

}

.map-container iframe{

width:100%;

height:100%;

border:0;

}

.map iframe{

border-radius:20px;

overflow:hidden;

}

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-col img{

margin:auto;

display:block;

margin-bottom:20px;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.social{

justify-content:center;

}

}
  

.contact-grid{

grid-template-columns:1fr;

}

.map-container{

height:400px;

}


/*==========================
FOOTER
==========================*/

.footer{

background:#081F45;

padding:100px 0 50px;

color:white;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:50px;

margin-bottom:50px;

}

.footer-col img{

height:90px;

margin-bottom:20px;

}

.footer-col p{

color:#d6d6d6;

line-height:1.9;

font-size:15px;

margin-bottom:12px;

}

.footer-col h3{

margin-bottom:25px;

font-size:22px;

color:white;

}

.footer-col ul{

list-style:none;

padding:0;

}

.footer-col ul li{

margin-bottom:15px;

color:#d6d6d6;

transition:.3s;

cursor:pointer;

}

.footer-col ul li:hover{

transform:translateX(8px);    

color:#D4AF37;

padding-left:8px;

}

.footer-col a{

text-decoration:none;

color:#d6d6d6;

transition:.3s;

}

.footer-col a:hover{

color:#D4AF37;

}

.footer hr{

border:none;

height:1px;

background:rgba(255,255,255,.1);

margin:30px 0;

}

.footer-bottom{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:20px;

}

.footer-bottom p{

color:#cfcfcf;

font-size:14px;

}

.social{

display:flex;

gap:20px;

}

.social a{

text-decoration:none;

color:white;

transition:.3s;

font-size:15px;

}

.social a:hover{

color:#D4AF37;

}

@media (max-width:1024px){

.product-grid{

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

}

}

@media (max-width:768px){

.product-grid{

grid-template-columns:1fr;

}

}

html{

scroll-behavior:smooth;

}

body{

overflow-x:hidden;

}

/*=========================
SCROLLBAR
=========================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#F5F5F5;

}

::-webkit-scrollbar-thumb{

background:#0B2D5C;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#D4AF37;

}

.btn-primary,
.btn-secondary,
.quote-btn{

transition:.35s;

}

.btn-primary:hover,
.quote-btn:hover{

transform:translateY(-4px);

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

}

.btn-secondary:hover{

transform:translateY(-4px);

}

.product-card,
.why-card,
.industry-card,
.stat-card,
.contact-card{

transition:.35s;

}

.product-card:hover,
.why-card:hover,
.industry-card:hover,
.stat-card:hover,
.contact-card:hover{

transform:translateY(-12px);

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.product-card img{

transition:.35s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-card:hover h3{

color:#D4AF37;

}

.product-card:hover a{

color:#D4AF37;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.hero,
.stats,
.about,
.products,
.why,
.clients,
.cta,
.contact{

animation:fadeUp .8s ease;

}

.whatsapp{

position:fixed;

right:30px;

bottom:30px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:32px;

text-decoration:none;

color:white;

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

z-index:999;

transition:.35s;

}

.whatsapp:hover{

transform:scale(1.1);

}

#topBtn{

position:fixed;

right:30px;

bottom:110px;

width:55px;

height:55px;

border:none;

background:#0B2D5C;

color:white;

border-radius:50%;

cursor:pointer;

font-size:22px;

transition:.35s;

z-index:999;

}

#topBtn:hover{

background:#D4AF37;

}

#loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:white;

display:flex;

justify-content:center;

align-items:center;

z-index:9999;

}

.spinner{

width:70px;

height:70px;

border:6px solid #eee;

border-top:6px solid #0B2D5C;

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/*==========================
ACTIVE MENU
==========================*/

.nav-menu a.active{

color:#D4AF37;

position:relative;

}

.nav-menu a.active::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:100%;

height:2px;

background:#D4AF37;

}

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

.product-hero{

padding:160px 0 100px;

background:#F7F9FC;

text-align:center;

}

.product-hero h1{

font-size:64px;

color:#0B2D5C;

font-weight:800;

margin-bottom:25px;

}

.product-hero p{

max-width:850px;

margin:auto;

font-size:20px;

line-height:1.8;

color:#666;

}

.product-hero .btn-primary{

margin-top:40px;

display:inline-block;

}

/*==========================
SEARCH
==========================*/

.search-box{

max-width:700px;

margin:auto;

}

.search-box input{

width:100%;

max-width:700px;

padding:18px 28px;

border-radius:50px;

border:1px solid #ddd;

font-size:16px;

}

.search-box input:focus{

border-color:#D4AF37;

box-shadow:0 0 0 4px rgba(212,175,55,.15);

outline:none;

}

/*==========================
FILTER
==========================*/

.filter-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

margin-top:40px;

}

.filter-btn{

padding:15px 32px;

background:#F7F9FC;

border:none;

border-radius:50px;

font-size:15px;

font-weight:600;

cursor:pointer;

transition:.35s;

}

.filter-btn:hover{

background:#0B2D5C;

color:white;

transform:translateY(-3px);

}

/*==========================
ACTIVE FILTER
==========================*/

.filter-btn.active{

background:#0B2D5C;

color:white;

}

/*==========================
INDUSTRY TAG
==========================*/

.industry-tags{

display:flex;

justify-content:center;

gap:8px;

flex-wrap:wrap;

margin-bottom:20px;

}

.industry-tags span{

background:#F2F4F8;

padding:8px 14px;

border-radius:30px;

font-size:13px;

color:#0B2D5C;

font-weight:600;

}

/*==========================
NO PRODUCT
==========================*/

.no-product{

grid-column:1/-1;

text-align:center;

padding:80px;

background:#F7F9FC;

border-radius:20px;

}

.product-card{

background:white;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.05);

transition:.35s;

}

.product-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.product-image{

height:260px;

display:flex;

align-items:center;

justify-content:center;

background:#F7F9FC;

}

.product-image img{

width:160px;

height:160px;

object-fit:contain;

transition:.35s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-content{

padding:30px;

}

.product-meta{

margin:20px 0;

font-size:14px;

color:#777;

}

.product-industry{

background:#F7F9FC;

padding:12px;

border-radius:12px;

margin-bottom:20px;

font-size:14px;

}

/*==========================
PRODUCT BUTTON
==========================*/

.product-card .btn-primary{

display:flex;

justify-content:center;

align-items:center;

width:100%;

padding:14px 20px;

margin-top:20px;

background:#0B2D5C;

color:#fff;

border-radius:50px;

text-decoration:none;

font-size:15px;

font-weight:600;

transition:.3s;

}

.product-card .btn-primary:hover{

background:#D4AF37;

color:#0B2D5C;

transform:translateY(-3px);

}

/*==========================
PRODUCT CTA
==========================*/

.product-cta{

background:#0B2D5C;

padding:100px 20px;

text-align:center;

margin-top:100px;

}

.product-cta .container{

max-width:800px;

margin:auto;

}

.cta-tag{

display:inline-block;

color:#D4AF37;

font-size:14px;

font-weight:600;

letter-spacing:3px;

margin-bottom:20px;

}

.product-cta h2{

font-size:60px;

font-weight:800;

color:#fff;

line-height:1.2;

margin-bottom:25px;

}

.product-cta p{

font-size:20px;

color:rgba(255,255,255,.85);

line-height:1.8;

max-width:700px;

margin:0 auto 40px;

}

.cta-btn{

display:inline-block;

padding:18px 42px;

background:#D4AF37;

color:#0B2D5C;

font-weight:700;

border-radius:50px;

text-decoration:none;

transition:.35s;

}

.cta-btn:hover{

background:#fff;

transform:translateY(-5px);

}

/*==================================
RESPONSIVE TABLET & MOBILE
==================================*/

@media (max-width:768px){

.container{

width:92%;

}

.navbar{

flex-direction:column;

height:auto;

padding:15px 0;

}

.logo img{

height:80px;

margin-top:0;

}

.nav-menu{

flex-wrap:wrap;

justify-content:center;

gap:18px;

margin-top:15px;

}

.nav-right{

margin-top:15px;

flex-direction:column;

gap:10px;

}

.hero{

padding:130px 0 80px;

}

.hero-wrapper{

flex-direction:column;

text-align:center;

gap:50px;

}

.hero-left h1{

font-size:42px;

line-height:1.2;

}

.hero-left p{

font-size:17px;

}

.hero-button{

justify-content:center;

flex-wrap:wrap;

}

.hero-right img{

width:90%;

max-width:350px;

}

}