:root{

/* Primary */
--primary:#0B2F5B;

/* Dark Navy */
--secondary:#163E73;

/* Gold */
--gold:#C89A2B;

/* Light Gold */
--light-gold:#EFCF74;

/* White */
--white:#ffffff;

/* Background */
--bg:#F7F8FA;

/* Heading */
--heading:#1A1A1A;

/* Paragraph */
--text:#666666;

/* Border */
--border:#E5E5E5;

/* Shadow */
--shadow:0px 10px 35px rgba(0,0,0,.08);

}
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Poppins',sans-serif;

background:var(--bg);

color:var(--text);

overflow-x:hidden;

}

a{
text-decoration:none;
}

ul{
padding:0;
margin:0;
list-style:none;
}

img{
max-width:100%;
}

.container{

max-width:1320px;

}

.section-title{

font-size:42px;

font-weight:700;

color:var(--heading);

}

.section-subtitle{

color:var(--gold);

font-size:18px;

font-weight:600;

letter-spacing:2px;

text-transform:uppercase;

}

.btn-gold{

background:var(--gold);

color:#fff;

padding:14px 32px;

border-radius:50px;

font-weight:600;

transition:.4s;

}

.btn-gold:hover{

background:var(--primary);

color:#fff;

}

.btn-outline-gold{

border:2px solid var(--gold);

padding:14px 32px;

border-radius:50px;

font-weight:600;

color:var(--gold);

transition:.4s;

}

.btn-outline-gold:hover{

background:var(--gold);

color:#fff;

}
.topbar{

background:var(--primary);

padding:10px 0;

font-size:14px;

color:#fff;

}

.topbar a{

color:#fff;

margin-right:20px;

}

.topbar i{

color:var(--light-gold);

margin-right:8px;

}

.social-icons a{

width:35px;

height:35px;

display:inline-flex;

align-items:center;

justify-content:center;

background:rgba(255,255,255,.1);

border-radius:50%;

margin-left:8px;

transition:.4s;

}

.social-icons a:hover{

background:var(--gold);

}
.navbar{

background:#fff;

box-shadow:var(--shadow);

padding:15px 0;

}

.navbar-brand img{

height:70px;

}

.navbar-nav .nav-link{

font-size:16px;

font-weight:600;

color:var(--heading);

margin-left:20px;

transition:.3s;

}

.navbar-nav .nav-link:hover{

color:var(--gold);

}

.quote-btn{

background:var(--gold);

color:#fff;

padding:12px 28px;

border-radius:40px;

font-weight:600;

}

.quote-btn:hover{

background:var(--primary);

color:#fff;

}
.hero{

padding:100px 0;

background:linear-gradient(135deg,#ffffff,#eef5fb);

position:relative;

overflow:hidden;

}

.hero h1{

font-size:60px;

font-weight:800;

line-height:1.2;

color:var(--primary);

}

.hero h1 span{

color:var(--gold);

}

.hero p{

font-size:18px;

line-height:32px;

margin:30px 0;

}

.service-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:var(--shadow);

transition:.4s;

height:100%;

}

.service-card:hover{

transform:translateY(-8px);

}

.service-card i{

font-size:50px;

color:var(--gold);

margin-bottom:20px;

}

.service-card h4{

font-size:24px;

font-weight:700;

color:var(--primary);

}
.footer{

background:var(--primary);

padding:70px 0 20px;

color:#fff;

}

.footer h4{

color:var(--light-gold);

margin-bottom:20px;

}

.footer a{

color:#fff;

display:block;

margin-bottom:12px;

transition:.3s;

}

.footer a:hover{

color:var(--light-gold);

}

.copyright{

border-top:1px solid rgba(255,255,255,.2);

padding-top:20px;

margin-top:40px;

text-align:center;

}
/*=========================
Sticky Header
=========================*/

.sticky-top{

z-index:9999;

}

/* Logo */

.navbar-brand{

display:flex;

align-items:center;

}

.navbar-brand img{

height:75px;

transition:.4s;

}

/* Navigation */

.navbar{

background:#fff;

padding:12px 0;

transition:.4s;

}

.navbar-nav .nav-link{

padding:12px 18px;

font-size:16px;

font-weight:600;

position:relative;

}

.navbar-nav .nav-link.active{

color:var(--gold);

}

.navbar-nav .nav-link::after{

content:"";

position:absolute;

left:18px;

bottom:6px;

width:0;

height:2px;

background:var(--gold);

transition:.4s;

}

.navbar-nav .nav-link:hover::after{

width:60%;

}

.navbar-toggler{

border:none;

box-shadow:none !important;

}

/* Button */

.quote-btn{

display:inline-block;

padding:13px 30px;

background:linear-gradient(45deg,var(--gold),#e6ba52);

color:#fff;

font-weight:600;

border-radius:40px;

transition:.4s;

}

.quote-btn:hover{

background:var(--primary);

color:#fff;

transform:translateY(-2px);

}

/* Mobile */

@media(max-width:991px){

.topbar{

text-align:center;

}

.social-icons{

margin-top:10px;

}

.navbar-collapse{

margin-top:15px;

background:#fff;

padding:20px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.navbar-nav .nav-link{

padding:10px;

}

.quote-btn{

display:block;

text-align:center;

margin-top:15px;

}

}
/*=========================
Hero Section
==========================*/

.hero{

position:relative;

padding:90px 0;

overflow:hidden;

background:linear-gradient(135deg,#ffffff,#edf4fb);

}

.hero-subtitle{

display:inline-block;

background:#eef4ff;

padding:12px 22px;

border-radius:50px;

font-weight:600;

color:var(--primary);

margin-bottom:25px;

}

.hero-subtitle i{

color:var(--gold);

margin-right:8px;

}

.hero h1{

font-size:58px;

font-weight:800;

line-height:1.2;

color:var(--primary);

margin-bottom:25px;

}

.hero h1 span{

color:var(--gold);

}

.hero p{

font-size:17px;

line-height:32px;

margin-bottom:40px;

}

.hero-btn{

display:flex;

flex-wrap:wrap;

align-items:center;

}

.hero-image{

position:relative;

text-align:center;

}

.hero-image img{

width:100%;

max-width:620px;

animation:float 5s ease-in-out infinite;

}

.experience-box{

position:absolute;

bottom:40px;

left:0;

background:#fff;

padding:25px;

border-radius:15px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

border-left:5px solid var(--gold);

}

.experience-box h3{

font-size:26px;

margin:0;

color:var(--primary);

font-weight:700;

}

.experience-box span{

color:#666;

}

.hero-counter{

display:flex;

gap:45px;

margin-top:50px;

}

.hero-counter h2{

font-size:38px;

font-weight:700;

color:var(--gold);

margin-bottom:5px;

}

.hero-counter span{

font-size:15px;

color:#666;

}

.hero-shape-1{

position:absolute;

width:350px;

height:350px;

background:rgba(200,154,43,.08);

border-radius:50%;

top:-150px;

left:-150px;

}

.hero-shape-2{

position:absolute;

width:450px;

height:450px;

background:rgba(11,47,91,.05);

border-radius:50%;

right:-200px;

bottom:-200px;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

@media(max-width:991px){

.hero{

padding:70px 0;

}

.hero h1{

font-size:38px;

}

.hero-counter{

display:block;

}

.hero-counter div{

margin-bottom:25px;

}

.experience-box{

position:relative;

left:auto;

bottom:auto;

margin-top:20px;

}

}
/*====================================
About Section
====================================*/

.about-section{

padding:100px 0;

background:#fff;

}

.about-image{

position:relative;

}

.main-img{

width:100%;

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.experience-card{

position:absolute;

bottom:25px;

right:-20px;

background:var(--primary);

color:#fff;

padding:25px 30px;

border-radius:15px;

text-align:center;

box-shadow:0 20px 50px rgba(0,0,0,.15);

border-bottom:5px solid var(--gold);

}

.experience-card h2{

font-size:34px;

margin:0;

font-weight:700;

color:var(--light-gold);

}

.experience-card p{

margin:5px 0 0;

font-size:15px;

color:#fff;

}

.about-section p{

font-size:16px;

line-height:30px;

color:#666;

}

.about-feature{

background:#fff;

padding:16px 20px;

border-radius:10px;

box-shadow:0 8px 20px rgba(0,0,0,.06);

font-weight:600;

transition:.3s;

}

.about-feature:hover{

transform:translateY(-5px);

}

.about-feature i{

color:var(--gold);

margin-right:10px;

font-size:18px;

}

@media(max-width:991px){

.about-section{

padding:70px 0;

}

.experience-card{

position:relative;

right:0;

bottom:0;

margin-top:20px;

display:inline-block;

}

}

/*=============================
Products
=============================*/

.products-section{

padding:100px 0;

background:#f8fafc;

}

.product-text{

max-width:700px;

color:#666;

font-size:17px;

line-height:30px;

}

.product-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.product-card:hover{

transform:translateY(-10px);

}

.product-image{

overflow:hidden;

}

.product-image img{

width:100%;

height:270px;

object-fit:cover;

transition:.6s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-content{

padding:30px;

}

.product-content h4{

font-size:25px;

font-weight:700;

color:var(--primary);

margin-bottom:15px;

}

.product-content p{

font-size:15px;

line-height:28px;

color:#666;

margin-bottom:25px;

}

.product-btn{

display:inline-flex;

align-items:center;

gap:10px;

font-weight:600;

color:var(--gold);

transition:.3s;

}

.product-btn:hover{

color:var(--primary);

}

.product-btn i{

transition:.3s;

}

.product-btn:hover i{

transform:translateX(6px);

}
/*==========================
Why Choose
==========================*/

.why-choose{

padding:100px 0;

background:#fff;

}

.feature-box{

display:flex;

gap:18px;

background:#fff;

padding:22px;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.feature-box:hover{

transform:translateY(-8px);

}

.feature-icon{

width:70px;

height:70px;

background:linear-gradient(135deg,var(--gold),#e8c25b);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:28px;

flex-shrink:0;

}

.feature-box h5{

font-weight:700;

color:var(--primary);

margin-bottom:10px;

}

.feature-box p{

margin:0;

font-size:15px;

line-height:27px;

}

.why-image{

position:relative;

text-align:center;

}

.why-image img{

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.1);

}

.quality-card{

position:absolute;

right:-20px;

bottom:30px;

background:#fff;

padding:30px;

width:220px;

text-align:center;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.15);

border-top:5px solid var(--gold);

}

.quality-card i{

font-size:45px;

color:var(--gold);

margin-bottom:15px;

}

.quality-card h4{

font-size:42px;

font-weight:700;

color:var(--primary);

margin-bottom:5px;

}

.quality-card span{

font-size:15px;

color:#666;

}

@media(max-width:991px){

.why-choose{

padding:70px 0;

}

.quality-card{

position:relative;

right:0;

bottom:0;

margin:25px auto 0;

}

}
/*====================================
Export Process
====================================*/

.export-process{

padding:100px 0;

background:#f8fafc;

}

.process-text{

max-width:720px;

margin:auto;

font-size:17px;

color:#666;

line-height:30px;

}

.process-card{

position:relative;

background:#fff;

padding:35px 20px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

height:100%;

overflow:hidden;

}

.process-card:hover{

transform:translateY(-10px);

}

.process-number{

position:absolute;

top:15px;

right:15px;

font-size:50px;

font-weight:700;

color:#edf1f6;

}

.process-icon{

width:90px;

height:90px;

margin:auto;

background:linear-gradient(135deg,var(--gold),#e4bf54);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#fff;

margin-bottom:25px;

}

.process-card h5{

font-size:22px;

font-weight:700;

color:var(--primary);

margin-bottom:15px;

}

.process-card p{

font-size:15px;

line-height:28px;

margin:0;

}

.process-card:hover .process-icon{

transform:rotate(360deg);

transition:.8s;

}

@media(max-width:991px){

.export-process{

padding:70px 0;

}

.process-card{

margin-bottom:20px;

}

}

/*====================================
Global Presence
====================================*/

.global-presence{

padding:100px 0;

background:#fff;

}

.global-text{

max-width:760px;

margin:auto;

font-size:17px;

line-height:30px;

color:#666;

}

.world-map{

position:relative;

text-align:center;

}

.world-map img{

width:100%;

opacity:.9;

}

.pin{

position:absolute;

background:var(--gold);

color:#fff;

padding:8px 14px;

font-size:13px;

font-weight:600;

border-radius:30px;

box-shadow:0 10px 25px rgba(0,0,0,.15);

animation:pulse 2s infinite;

}

/* Pin Positions */

.usa{

top:25%;

left:12%;

}

.canada{

top:12%;

left:18%;

}

.uk{

top:20%;

left:43%;

}

.uae{

top:43%;

left:57%;

}

.saudi{

top:48%;

left:53%;

}

.australia{

bottom:12%;

right:13%;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

.country-card{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.country-card h4{

font-size:30px;

font-weight:700;

color:var(--primary);

margin-bottom:25px;

}

.country-card ul{

padding:0;

margin:0;

list-style:none;

}

.country-card li{

padding:15px 0;

border-bottom:1px solid #ececec;

font-weight:500;

color:#555;

}

.country-card li:last-child{

border:none;

}

.country-card i{

color:var(--gold);

margin-right:10px;

width:22px;

}

@media(max-width:991px){

.global-presence{

padding:70px 0;

}

.world-map{

margin-bottom:40px;

}

.pin{

font-size:11px;

padding:6px 10px;

}

}

/*====================================
Counter Section
====================================*/

.counter-section{

padding:100px 0;

background:linear-gradient(135deg,#0B2F5B,#163E73);

position:relative;

overflow:hidden;

}

.counter-section::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:rgba(255,255,255,.05);

border-radius:50%;

left:-200px;

top:-200px;

}

.counter-section::after{

content:"";

position:absolute;

width:400px;

height:400px;

background:rgba(200,154,43,.08);

border-radius:50%;

right:-150px;

bottom:-150px;

}

.counter-box{

position:relative;

z-index:2;

text-align:center;

padding:40px 25px;

border-radius:20px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(10px);

transition:.4s;

height:100%;

}

.counter-box:hover{

transform:translateY(-10px);

background:rgba(255,255,255,.12);

}

.counter-icon{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

background:var(--gold);

display:flex;

align-items:center;

justify-content:center;

font-size:38px;

color:#fff;

margin-bottom:25px;

}

.counter-box h2{

font-size:52px;

font-weight:700;

color:#fff;

margin-bottom:10px;

}

.counter-box p{

font-size:18px;

color:#fff;

margin:0;

}

@media(max-width:991px){

.counter-section{

padding:70px 0;

}

.counter-box{

margin-bottom:25px;

}

}

/*==================================
Contact CTA
==================================*/

.cta-section{

padding:90px 0;

background:linear-gradient(135deg,#0B2F5B,#163E73);

position:relative;

overflow:hidden;

}

.cta-section::before{

content:"";

position:absolute;

width:350px;

height:350px;

background:rgba(255,255,255,.05);

border-radius:50%;

left:-120px;

top:-120px;

}

.cta-section::after{

content:"";

position:absolute;

width:420px;

height:420px;

background:rgba(200,154,43,.10);

border-radius:50%;

right:-150px;

bottom:-150px;

}

.cta-section .container{

position:relative;

z-index:2;

}

.cta-subtitle{

display:inline-block;

padding:10px 22px;

background:rgba(255,255,255,.12);

border-radius:50px;

color:#EFCF74;

font-weight:600;

letter-spacing:1px;

margin-bottom:20px;

}

.cta-section h2{

font-size:48px;

font-weight:700;

color:#fff;

margin-bottom:20px;

}

.cta-section p{

font-size:17px;

line-height:30px;

color:#ddd;

max-width:720px;

}

.btn-cta{

display:inline-flex;

align-items:center;

gap:12px;

padding:18px 40px;

background:#C89A2B;

color:#fff;

font-size:18px;

font-weight:600;

border-radius:60px;

transition:.4s;

box-shadow:0 15px 40px rgba(0,0,0,.20);

}

.btn-cta:hover{

background:#fff;

color:#0B2F5B;

transform:translateY(-5px);

}

.btn-cta i{

font-size:18px;

}

@media(max-width:991px){

.cta-section{

padding:70px 0;

text-align:center;

}

.cta-section h2{

font-size:34px;

}

.btn-cta{

margin-top:30px;

}

}

/*===================================
Footer
===================================*/

.footer{

background:#071f3c;

padding:90px 0 0;

color:#d9d9d9;

}

.footer-logo{

height:70px;

}

.footer p{

line-height:30px;

margin-bottom:30px;

}

.footer h4{

color:#fff;

font-size:24px;

font-weight:700;

margin-bottom:30px;

position:relative;

padding-bottom:15px;

}

.footer h4::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:60px;

height:3px;

background:var(--gold);

}

.footer ul{

padding:0;

margin:0;

list-style:none;

}

.footer ul li{

margin-bottom:18px;

}

.footer ul li a{

color:#d8d8d8;

transition:.3s;

}

.footer ul li a:hover{

color:var(--gold);

padding-left:8px;

}

.contact-info li{

display:flex;

gap:15px;

align-items:flex-start;

}

.contact-info i{

width:40px;

height:40px;

background:rgba(255,255,255,.08);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:var(--gold);

flex-shrink:0;

}

.footer-social{

display:flex;

gap:12px;

}

.footer-social a{

width:45px;

height:45px;

background:rgba(255,255,255,.08);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

transition:.4s;

}

.footer-social a:hover{

background:var(--gold);

transform:translateY(-5px);

}

.footer-bottom{

margin-top:70px;

padding:25px 0;

border-top:1px solid rgba(255,255,255,.08);

font-size:15px;

}

.footer-bottom a{

color:var(--gold);

font-weight:600;

}

@media(max-width:991px){

.footer{

text-align:center;

}

.footer h4::after{

left:50%;

transform:translateX(-50%);

}

.contact-info li{

justify-content:center;

text-align:left;

}

.footer-social{

justify-content:center;

}

.footer-bottom{

text-align:center;

}

}

/*====================================
Back To Top
====================================*/

.back-to-top{

position:fixed;

right:25px;

bottom:100px;

width:55px;

height:55px;

background:var(--gold);

color:#fff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:22px;

box-shadow:0 10px 30px rgba(0,0,0,.2);

visibility:hidden;

opacity:0;

transition:.4s;

z-index:999;

}

.back-to-top.active{

visibility:visible;

opacity:1;

}

.back-to-top:hover{

background:var(--primary);

color:#fff;

transform:translateY(-5px);

}


/*====================================
WhatsApp
====================================*/

.whatsapp-btn{

position:fixed;

left:25px;

bottom:25px;

width:60px;

height:60px;

background:#25D366;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:30px;

box-shadow:0 12px 35px rgba(0,0,0,.25);

z-index:999;

animation:whatsapp 2s infinite;

}

.whatsapp-btn:hover{

color:#fff;

background:#1fb958;

}

@keyframes whatsapp{

0%{

transform:scale(1);

}

50%{

transform:scale(1.1);

}

100%{

transform:scale(1);

}

}


/*====================================
Sticky Navbar
====================================*/

.navbar-scrolled{

background:#fff !important;

padding:8px 0;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.hero-slide{

height:100vh;

background-size:cover;

background-position:center;

position:relative;

overflow:hidden;

display:flex;

align-items:center;

animation:zoom 10s linear infinite;

}

.overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(6,24,54,.60);

}

.hero-slide .container{

position:relative;

z-index:2;

}

.hero-slide h1{

font-size:70px;

font-weight:800;

color:#fff;

line-height:1.2;

margin:25px 0;

animation:fadeUp 1s;

}

.hero-slide h1 span{

color:#C89A2B;

}

.hero-slide p{

font-size:18px;

color:#fff;

line-height:32px;

margin-bottom:35px;

max-width:650px;

animation:fadeUp 1.3s;

}

.hero-subtitle{

display:inline-block;

padding:12px 24px;

background:rgba(255,255,255,.12);

color:#fff;

border-left:4px solid #C89A2B;

animation:fadeUp 1s;

}

.carousel-item.active .hero-slide{

animation:zoom 8s linear forwards;

}

@keyframes zoom{

0%{

transform:scale(1);

}

100%{

transform:scale(1.15);

}

}

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(60px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

.carousel-control-prev,

.carousel-control-next{

width:60px;

}

.carousel-control-prev-icon,

.carousel-control-next-icon{

background-color:#C89A2B;

padding:25px;

border-radius:50%;

}

.carousel-indicators [data-bs-target]{

width:12px;

height:12px;

border-radius:50%;

background:#fff;

}

.carousel-indicators .active{

background:#C89A2B;

}

@media(max-width:991px){

.hero-slide{

height:700px;

}

.hero-slide h1{

font-size:42px;

}

}