/*================================================

PRABANS EXIM

Premium Export Website

Developer : ChatGPT

================================================*/


/*========================

Google Font

=========================*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');


/*========================

Reset

=========================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

font-size:16px;

color:#5e6b7a;

background:#ffffff;

overflow-x:hidden;

line-height:1.7;

}


img{

max-width:100%;

display:block;

}


a{

text-decoration:none;

transition:.4s;

}


ul{

list-style:none;

}


.container{

width:100%;

max-width:1320px;

margin:auto;

padding:0 15px;

}



/*========================

Variables

=========================*/

:root{

--primary:#2B3D91;

--secondary:#2DA5F3;

--dark:#081420;

--white:#ffffff;

--light:#f6f9fc;

--border:#e9edf5;

--text:#667085;

--radius:10px;

--shadow:0 10px 35px rgba(0,0,0,.08);

}



/*========================

Heading

=========================*/

h1,h2,h3,h4,h5,h6{

font-family:'Manrope',sans-serif;

font-weight:700;

color:#081420;

line-height:1.2;

}

h1{

font-size:65px;

}

h2{

font-size:46px;

}

h3{

font-size:30px;

}

p{

margin-bottom:15px;

}



/*========================

Section

=========================*/

section{

padding:100px 0;

position:relative;

}



/*========================

Buttons

=========================*/

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

background:linear-gradient(135deg,#2B3D91,#2DA5F3);

color:#fff;

border-radius:50px;

font-weight:600;

box-shadow:0 10px 25px rgba(43,61,145,.25);

transition:.4s;

}

.btn:hover{

transform:translateY(-5px);

box-shadow:0 20px 40px rgba(43,61,145,.35);

}



/*========================

Section Title

=========================*/

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title span{

display:inline-block;

padding:8px 20px;

background:#edf5ff;

color:#2B3D91;

border-radius:50px;

font-size:14px;

font-weight:600;

margin-bottom:15px;

}

.section-title h2{

margin-bottom:20px;

}

.section-title p{

max-width:700px;

margin:auto;

}



/*========================

Scrollbar

=========================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:#2B3D91;

border-radius:50px;

}

::-webkit-scrollbar-track{

background:#edf2fa;

}

/*=========================================
TOP BAR
=========================================*/

.topbar{
    background: linear-gradient(90deg,#081420,#2B3D91);
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:25px;
}

.topbar a{
    color:#fff;
}

.topbar i{
    color:#2DA5F3;
    margin-right:8px;
}

.topbar a:hover{
    color:#2DA5F3;
}


/*=========================================
HEADER
=========================================*/

header{

    width:100%;

    position:sticky;

    top:0;

    left:0;

    z-index:999;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(15px);

    transition:.4s;

    box-shadow:0 8px 30px rgba(0,0,0,.05);

}

header.sticky{

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.10);

}


/*=========================================
NAVBAR
=========================================*/

.navbar{

    height:95px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    height:70px;

    transition:.4s;

}

.logo:hover img{

    transform:scale(1.05);

}


/*=========================================
MENU
=========================================*/

.menu{

    display:flex;

    align-items:center;

    gap:38px;

}

.menu li{

    position:relative;

}

.menu li a{

    color:#081420;

    font-size:16px;

    font-weight:600;

    padding:10px 0;

    display:block;

    position:relative;

}


/* Hover Line */

.menu li a::before{

    content:'';

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:3px;

    background:#2DA5F3;

    transition:.4s;

    border-radius:10px;

}

.menu li a:hover::before,

.menu li a.active::before{

    width:100%;

}

.menu li a:hover{

    color:#2B3D91;

}


/*=========================================
DROPDOWN
=========================================*/

.menu li ul{

    position:absolute;

    top:60px;

    left:0;

    min-width:220px;

    background:#fff;

    border-radius:12px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    padding:10px 0;

}

.menu li:hover ul{

    opacity:1;

    visibility:visible;

    top:52px;

}

.menu li ul li{

    width:100%;

}

.menu li ul li a{

    padding:12px 20px;

    color:#444;

}

.menu li ul li a:hover{

    background:#edf5ff;

    color:#2B3D91;

}


/*=========================================
NAV RIGHT
=========================================*/

.nav-right{

    display:flex;

    align-items:center;

    gap:15px;

}


/*=========================================
QUOTE BUTTON
=========================================*/

.quote-btn{

    padding:15px 32px;

    background:linear-gradient(135deg,#2B3D91,#2DA5F3);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(43,61,145,.25);

}

.quote-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 25px 50px rgba(43,61,145,.35);

}


/*=========================================
WHATSAPP
=========================================*/

.whatsapp{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    transition:.35s;

}

.whatsapp:hover{

    transform:translateY(-5px) rotate(10deg);

    box-shadow:0 20px 40px rgba(37,211,102,.30);

}


/*=========================================
MOBILE MENU BUTTON
=========================================*/

.mobile-toggle{

    display:none;

    font-size:28px;

    cursor:pointer;

    color:#081420;

}


/*=========================================
HEADER ANIMATION
=========================================*/

.menu li{

    overflow:hidden;

}

.menu li a{

    transition:.35s;

}

.menu li:hover{

    transform:translateY(-2px);

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.topbar{

display:none;

}

.mobile-toggle{

display:block;

}

.menu{

display:none;

}

.quote-btn{

display:none;

}

.navbar{

height:85px;

}

.logo img{

height:60px;

}

}

@media(max-width:576px){

.logo img{

height:52px;

}

}
/*==========================
FOOTER
===========================*/

.footer{

background:#081420;

color:#fff;

margin-top:100px;

padding:80px 0 0;

position:relative;

}

.footer::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#2DA5F3,#2B3D91);

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.3fr;

gap:50px;

}

.footer-logo{

width:230px;

margin-bottom:20px;

}

.footer p{

color:#b8c4d7;

line-height:28px;

margin-top:10px;

}

.footer h3{

font-size:22px;

margin-bottom:25px;

color:#fff;

position:relative;

}

.footer h3::after{

content:"";

position:absolute;

left:0;

bottom:-10px;

width:50px;

height:3px;

background:#2DA5F3;

}

.footer ul{

padding:0;

}

.footer ul li{

margin-bottom:14px;

}

.footer ul li a{

color:#b8c4d7;

transition:.35s;

}

.footer ul li a:hover{

color:#2DA5F3;

padding-left:8px;

}

.footer i{

color:#2DA5F3;

margin-right:10px;

}

.social{

display:flex;

gap:15px;

margin-top:25px;

}

.social a{

width:45px;

height:45px;

display:flex;

align-items:center;

justify-content:center;

background:rgba(255,255,255,.08);

border-radius:50%;

color:#fff;

transition:.4s;

}

.social a:hover{

background:#2DA5F3;

transform:translateY(-6px);

}

.copyright{

margin-top:60px;

padding:22px;

text-align:center;

background:#050d18;

color:#b8c4d7;

font-size:15px;

border-top:1px solid rgba(255,255,255,.08);

}

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

}

.footer{

text-align:center;

}

.footer h3::after{

left:50%;

transform:translateX(-50%);

}

.social{

justify-content:center;

}

}


/*==========================================
HERO SECTION
==========================================*/

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:url('../images/banner/hero-bg.jpg') center center/cover no-repeat;
    padding:120px 0;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,.90) 45%,
    rgba(255,255,255,.25) 100%);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:url('../images/banner/globe.png') right center no-repeat;
    background-size:40%;
    opacity:.08;
}

.hero-content{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-left{
    position:relative;
}

.hero-tag{
    display:inline-block;
    background:#eef6ff;
    color:#2B3D91;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    color:#081420;
    margin-bottom:25px;
    font-weight:800;
}

.hero h1 span{
    color:#2DA5F3;
}

.hero p{
    font-size:19px;
    color:#5f6d81;
    max-width:650px;
    line-height:34px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn-outline{
    padding:16px 35px;
    border-radius:50px;
    border:2px solid #2B3D91;
    color:#2B3D91;
    font-weight:600;
}

.btn-outline:hover{
    background:#2B3D91;
    color:#fff;
}

.hero-counter{
    display:none;
    gap:25px;
    margin-top:70px;
}

.counter-box{
    background:#fff;
    border-radius:18px;
    padding:28px;
    min-width:180px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.4s;
}

.counter-box:hover{
    transform:translateY(-8px);
}

.counter-box h2{
    color:#2B3D91;
    font-size:46px;
    margin-bottom:10px;
}

.counter-box p{
    margin:0;
    font-size:16px;
}


/*=========================
RIGHT SIDE
=========================*/

.hero-right{
    position:relative;
    height:700px;
}

.hero-right img{
    position:absolute;
    transition:.5s;
}

.globe{
    width:450px;
    right:70px;
    top:80px;
    animation:rotate 30s linear infinite;
}

.plane{
    width:170px;
    right:250px;
    top:0;
    animation:fly 6s ease-in-out infinite;
}

.fruit{
    width:180px;
    left:30px;
    top:130px;
    animation:float 4s ease infinite;
}

.vegetable{
    width:180px;
    right:10px;
    bottom:70px;
    animation:float 5s ease infinite;
}

.spice{
    width:160px;
    left:120px;
    bottom:40px;
    animation:float 6s ease infinite;
}

.butter{
    width:150px;
    right:160px;
    bottom:180px;
    animation:float 5s ease infinite;
}


/*=========================
ANIMATION
=========================*/

@keyframes float{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-20px);
}

}

@keyframes rotate{

from{
transform:rotate(0deg);
}

to{
transform:rotate(360deg);
}

}

@keyframes fly{

0%,100%{
transform:translateX(0);
}

50%{
transform:translateX(40px) translateY(-20px);
}

}


/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.hero{

padding:80px 0;

}

.hero-content{

grid-template-columns:1fr;

}

.hero-right{

height:450px;

margin-top:50px;

}

.hero h1{

font-size:48px;

}

.hero-counter{

flex-wrap:wrap;

}

.globe{

width:280px;

right:50%;

transform:translateX(50%);

}

.plane{

width:120px;

right:40%;

}

}

@media(max-width:768px){

.hero h1{

font-size:38px;

}

.hero-buttons{

flex-direction:column;

}

.counter-box{

width:100%;

}

.hero-right{

display:none;

}

}

/*================================

FEATURES

================================*/

.features{

padding:120px 0;

background:#f7fbff;

}

.feature-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:70px;

}

.feature-card{

background:#fff;

padding:40px;

border-radius:20px;

text-align:center;

transition:.4s;

box-shadow:0 20px 45px rgba(0,0,0,.06);

}

.feature-card img{

height:80px;

margin:auto;

margin-bottom:25px;

}

.feature-card h3{

margin-bottom:15px;

}

.feature-card:hover{

transform:translateY(-15px);

background:#2B3D91;

}

.feature-card:hover h3,

.feature-card:hover p{

color:#fff;

}

.feature-card:hover img{

transform:scale(1.1);

transition:.4s;

}

@media(max-width:991px){

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.feature-grid{

grid-template-columns:1fr;

}

}
/*==============================
ABOUT HOME
===============================*/

.about-home{

padding:120px 0;

background:#fff;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.about-image{

position:relative;

}

.ship{

width:100%;

border-radius:25px;

box-shadow:0 25px 60px rgba(0,0,0,.12);

transition:.5s;

}

.ship:hover{

transform:scale(1.03);

}

.experience{

position:absolute;

bottom:30px;

right:-20px;

background:#2B3D91;

padding:30px;

border-radius:20px;

color:#fff;

text-align:center;

box-shadow:0 20px 45px rgba(0,0,0,.20);

}

.experience h2{

font-size:48px;

color:#fff;

margin-bottom:10px;

}

.about-content span{

display:inline-block;

padding:8px 20px;

background:#eaf4ff;

color:#2B3D91;

border-radius:30px;

font-weight:600;

margin-bottom:20px;

}

.about-content h2{

font-size:48px;

margin-bottom:25px;

line-height:1.2;

}

.about-content p{

font-size:18px;

line-height:32px;

color:#667085;

margin-bottom:30px;

}

.about-list{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-bottom:35px;

}

.about-list div{

display:flex;

align-items:center;

gap:12px;

font-weight:600;

}

.about-list i{

color:#2DA5F3;

font-size:18px;

}

@media(max-width:991px){

.about-grid{

grid-template-columns:1fr;

}

.about-list{

grid-template-columns:1fr;

}

.experience{

right:20px;

}

}

/*=================================
PRODUCTS
=================================*/

.products-home{

padding:120px 0;

background:#f6f9fc;

}

.product-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:70px;

}

.product-card{

position:relative;

overflow:hidden;

border-radius:22px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

cursor:pointer;

}

.product-card img{

width:100%;

height:430px;

object-fit:cover;

transition:.6s;

display:block;

}

.product-overlay{

position:absolute;

left:0;

right:0;

bottom:0;

padding:35px;

background:linear-gradient(to top,
rgba(8,20,32,.95),
rgba(8,20,32,.15));

color:#fff;

transition:.5s;

}

.product-overlay h3{

color:#fff;

margin-bottom:10px;

font-size:28px;

}

.product-overlay p{

color:#ddd;

margin-bottom:22px;

}

.product-btn{

display:inline-block;

padding:12px 28px;

border-radius:40px;

background:#2DA5F3;

color:#fff;

font-weight:600;

transition:.35s;

}

.product-btn:hover{

background:#fff;

color:#2B3D91;

}

.product-card:hover img{

transform:scale(1.12);

}

.product-card:hover{

transform:translateY(-12px);

transition:.4s;

}

.product-card::after{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

border:3px solid transparent;

transition:.4s;

}

.product-card:hover::after{

border-color:#2DA5F3;

}

@media(max-width:991px){

.product-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.product-grid{

grid-template-columns:1fr;

}

.product-card img{

height:350px;

}

}

/*==============================
GLOBAL EXPORT
===============================*/

.global-export{

padding:-20px 0;

background:linear-gradient(135deg,#081420,#102b52);

overflow:hidden;

position:relative;

}

.global-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.global-left span{

display:inline-block;

padding:10px 20px;

background:rgba(255,255,255,.08);

border-radius:40px;

color:#2DA5F3;

margin-bottom:20px;

}

.global-left h2{

font-size:55px;

color:#fff;

margin-bottom:25px;

}

.global-left p{

color:#d7e3f1;

font-size:18px;

line-height:34px;

margin-bottom:40px;

}

.country-list{

display:flex;

gap:25px;

margin-bottom:45px;

}

.country{

background:rgba(255,255,255,.08);

backdrop-filter:blur(12px);

padding:30px;

border-radius:20px;

text-align:center;

min-width:150px;

transition:.4s;

}

.country:hover{

transform:translateY(-10px);

background:#2DA5F3;

}

.country h3{

font-size:42px;

color:#fff;

margin-bottom:10px;

}

.country p{

color:#fff;

margin:0;

}

.global-right{

position:relative;

height:650px;

}

.world-map{

width:100%;

opacity:.35;

}

.container-img{

position:absolute;

bottom:0;

left:50%;

transform:translateX(-50%);

width:500px;

animation:shipMove 8s ease-in-out infinite;

}

.pin{

position:absolute;

width:18px;

height:18px;

background:#2DA5F3;

border-radius:50%;

box-shadow:0 0 20px #2DA5F3;

animation:pulse 2s infinite;

}

.pin1{

top:22%;

left:25%;

}

.pin2{

top:35%;

left:48%;

}

.pin3{

top:48%;

left:70%;

}

.pin4{

top:62%;

left:40%;

}

.pin5{

top:18%;

left:78%;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.6);

}

100%{

transform:scale(1);

}

}

@keyframes shipMove{

0%{

transform:translateX(-50%) translateY(0);

}

50%{

transform:translateX(-45%) translateY(-15px);

}

100%{

transform:translateX(-50%) translateY(0);

}

}

@media(max-width:991px){

.global-grid{

grid-template-columns:1fr;

}

.country-list{

flex-wrap:wrap;

}

.global-right{

height:450px;

}

.container-img{

width:350px;

}

}



/*====================================================

EXPORT PROCESS

=====================================================*/

.export-process{

padding:120px 0;
background:#f7faff;
position:relative;
overflow:hidden;

}

.export-process::before{

content:'';
position:absolute;
width:600px;
height:600px;
background:rgba(43,61,145,.05);
border-radius:50%;
top:-250px;
left:-200px;

}

.timeline{

position:relative;
margin-top:70px;

}

.timeline-line{

position:absolute;
left:50%;
top:0;
width:6px;
height:100%;
transform:translateX(-50%);
background:linear-gradient(
180deg,
#2DA5F3,
#2B3D91
);

border-radius:20px;

}

.timeline-item{

display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:70px;
position:relative;

}

.timeline-item:nth-child(even){

flex-direction:row-reverse;

}

.timeline-icon{
    width:210px;
    height:210px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    z-index:5;
    transition:.4s;
    padding:18px;
}

.timeline-icon img{
    width:170px;
    height:170px;
    object-fit:contain;
    transition:.4s;
}

.timeline-item:hover .timeline-icon img{
    transform:scale(1.15);
}

.timeline-card{

width:43%;
background:rgba(255,255,255,.75);
backdrop-filter:blur(18px);
padding:40px;
border-radius:25px;
box-shadow:0 20px 60px rgba(0,0,0,.08);
transition:.4s;

}

.timeline-card:hover{

transform:translateY(-10px);

}
@media(max-width:600px){

.timeline-icon{
    width:85px;
    height:85px;
    padding:12px;
}

.timeline-icon img{
    width:55px;
    height:55px;
}

}
.timeline-card span{

display:inline-block;
background:#2DA5F3;
color:#fff;
padding:8px 18px;
border-radius:30px;
font-size:13px;
margin-bottom:18px;
font-weight:600;

}

.timeline-card h3{

font-size:28px;
margin-bottom:15px;
color:#081420;

}

.timeline-card p{

font-size:17px;
line-height:32px;
color:#666;

}

/*====================

Responsive

====================*/

@media(max-width:991px){

.timeline-line{

left:40px;

}

.timeline-item{

flex-direction:column !important;
align-items:flex-start;
padding-left:90px;

}

.timeline-card{

width:100%;
margin-top:25px;

}

.timeline-icon{

position:absolute;
left:0;

}

}

@media(max-width:600px){

.export-process{

padding:80px 0;

}

.timeline-card{

padding:25px;

}

.timeline-card h3{

font-size:22px;

}

.timeline-card p{

font-size:15px;
line-height:28px;

}

.timeline-icon{
    width:110px;
    height:110px;
    padding:10px;
}


.timeline-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
}

}


/*====================================
STATISTICS SECTION
====================================*/
.statistics-section{
   background-image:
         linear-gradient(rgba(8,20,32,.75), rgba(8,20,32,.75)),
        url("../images/banner/world-map-light.png");
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}
.statistics-section::before{
    opacity:.70;
}

.statistics-section .section-title h2{

    color:#fff;

}

.statistics-section .section-title p{

    color:#d8d8d8;

}

.stats-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:22px;

    padding:45px 25px;

    text-align:center;

    transition:.4s;

}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(45,165,243,.15);

}

.stat-number{

    font-size:55px;

    font-weight:800;

    color:#2DA5F3;

    margin-bottom:15px;

}

.stat-number::after{

    content:"+";

}

.stat-card h4{

    color:#fff;

    font-size:22px;

    font-weight:600;

}

@media(max-width:991px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.statistics-section{

padding:80px 0;

}

.stats-grid{

grid-template-columns:1fr;

}

.stat-number{

font-size:42px;

}

.stat-card{

padding:35px 20px;

}

}

/*======================================
CERTIFICATES
======================================*/

.certificates-section{

    padding:120px 0;

    background:#ffffff;

}

.certificate-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    margin-top:70px;

}

.certificate-card{
    background:#fff;
    border-radius:22px;
    padding:40px 25px;
    text-align:center;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.4s;
    border:1px solid #edf2f7;
}

.certificate-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(43,61,145,.18);

}

.certificate-card img{

    width:80px;

    height:80px;

    object-fit:contain;

    margin-bottom:25px;

}

.certificate-card h3{

    font-size:22px;

    color:#081420;

    margin-bottom:15px;

}

.certificate-card p{

    color:#666;

    font-size:15px;

    line-height:28px;

}

@media(max-width:991px){

.certificate-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.certificates-section{

padding:80px 0;

}

.certificate-grid{

grid-template-columns:1fr;

}

.certificate-card{

padding:35px 20px;

}

}
/*=========================================
INDUSTRIES
=========================================*/

.industries-section{

    padding:120px 0;

    background:#f7f9fc;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}
.industry-card{

    background:#fff;
    border-radius:24px;
    padding:35px 25px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    border:1px solid #edf2f7;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;
    overflow:hidden;

}

.industry-card::before{

    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#2B3D91,#2DA5F3);
    opacity:0;
    transition:.4s;
    z-index:0;

}

.industry-card:hover::before{

    opacity:.05;

}

.industry-card>*{

    position:relative;
    z-index:2;

}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(43,61,145,.18);

}

.industry-card:hover img{

    transform:scale(1.08);

    border-color:#2B3D91;

box-shadow:
    0 20px 40px rgba(43,61,145,.25);

}

.industry-card:hover img{

    transform:scale(1.08);

}

.industry-card h3{

    font-size:26px;
    font-weight:700;
    color:#081420;
    margin-top:10px;

}

@media(max-width:991px){

.industry-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.industry-card img{

    width:110px;
    height:110px;

}

.industry-card h3{

    font-size:22px;

}

}

@media(max-width:600px){

.industries-section{

padding:80px 0;

}

.industry-grid{

grid-template-columns:1fr;

}

.industry-card{

padding:30px 20px;

}

.industry-card img{

width:90px;

height:90px;

}

.industry-card h3{

font-size:20px;

}

}


/*====================================================

TESTIMONIALS SECTION

====================================================*/

.testimonials-section{
    padding:120px 0;
    background:#f7f9fc;
    position:relative;
    overflow:hidden;
}

.testimonials-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(43,61,145,.05);
    border-radius:50%;
    top:-180px;
    left:-180px;
}

.testimonials-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(45,165,243,.08);
    border-radius:50%;
    bottom:-150px;
    right:-120px;
}

.testimonial-slider{
    position:relative;
    margin-top:70px;
}

.testimonial-wrapper{
    position:relative;
}

.testimonial-card{

    display:none;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(20px);

    border:1px solid rgba(43,61,145,.08);

    border-radius:28px;

    padding:55px;

    box-shadow:0 25px 70px rgba(0,0,0,.08);

    transition:.5s;

    animation:fadeIn .5s ease;

}

.testimonial-card.active{

    display:block;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 35px 80px rgba(43,61,145,.15);

}

@keyframes fadeIn{

from{

opacity:0;
transform:translateY(25px);

}

to{

opacity:1;
transform:translateY(0);

}

}

.quote-icon{

width:75px;
height:75px;

background:linear-gradient(135deg,#2B3D91,#2DA5F3);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#fff;

margin-bottom:30px;

box-shadow:0 15px 35px rgba(43,61,145,.25);

}

.stars{

font-size:26px;

letter-spacing:4px;

color:#FFC107;

margin-bottom:25px;

}

.testimonial-text{

font-size:20px;

line-height:36px;

color:#555;

margin-bottom:40px;

font-style:italic;

}

.testimonial-user{

display:flex;

align-items:center;

gap:20px;

}

.testimonial-user img{

width:85px;

height:85px;

border-radius:50%;

object-fit:cover;

border:4px solid #2B3D91;

box-shadow:0 12px 30px rgba(43,61,145,.18);

}

.user-info h4{

font-size:24px;

color:#081420;

margin-bottom:8px;

}

.user-info span{

display:block;

font-size:15px;

font-weight:600;

color:#2B3D91;

margin-bottom:12px;

}

.country{

display:flex;

align-items:center;

gap:10px;

font-size:15px;

color:#666;

}

.country img{

width:28px;

height:20px;

border:none;

border-radius:4px;

object-fit:cover;

box-shadow:none;

}

/*========================

Navigation Buttons

========================*/

.testimonial-btn{

position:absolute;

top:50%;

transform:translateY(-50%);

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#fff;

color:#2B3D91;

font-size:20px;

cursor:pointer;

box-shadow:0 12px 30px rgba(0,0,0,.12);

transition:.35s;

z-index:5;

}

.testimonial-btn.prev{

left:-28px;

}

.testimonial-btn.next{

right:-28px;

}

.testimonial-btn:hover{

background:#2B3D91;

color:#fff;

transform:translateY(-50%) scale(1.08);

}

/*========================

Dots

========================*/

.testimonial-dots{

margin-top:40px;

display:flex;

justify-content:center;

gap:12px;

}

.testimonial-dots .dot{

width:12px;

height:12px;

border-radius:50%;

background:#c9d2e5;

cursor:pointer;

transition:.3s;

}

.testimonial-dots .dot.active{

width:38px;

border-radius:20px;

background:#2B3D91;

}

/*========================

Responsive

========================*/

@media(max-width:991px){

.testimonial-card{

padding:40px;

}

.testimonial-btn{

display:none;

}

.testimonial-text{

font-size:18px;

line-height:32px;

}

}

@media(max-width:768px){

.testimonials-section{

padding:80px 0;

}

.testimonial-card{

padding:30px 25px;

}

.quote-icon{

width:60px;

height:60px;

font-size:24px;

margin-bottom:20px;

}

.stars{

font-size:22px;

}

.testimonial-text{

font-size:16px;

line-height:30px;

margin-bottom:30px;

}

.testimonial-user{

flex-direction:column;

text-align:center;

}

.country{

justify-content:center;

}

.user-info h4{

font-size:20px;

}

.testimonial-user img{

width:75px;

height:75px;

}

}

/*====================================

CTA SECTION

====================================*/

.cta-section{

    padding:120px 0;

    background:#f8fbff;

}

.cta-box{

    background:linear-gradient(135deg,#2B3D91,#2DA5F3);

    border-radius:35px;

    padding:70px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    overflow:hidden;

    position:relative;

    box-shadow:0 35px 80px rgba(43,61,145,.25);

}

.cta-box::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-180px;

    right:-120px;

}

.cta-content{

    max-width:700px;

    position:relative;

    z-index:2;

}

.cta-content .section-tag{

    background:#fff;

    color:#2B3D91;

}

.cta-content h2{

    color:#fff;

    font-size:52px;

    line-height:65px;

    margin:25px 0;

    font-weight:800;

}

.cta-content p{

    color:rgba(255,255,255,.92);

    font-size:19px;

    line-height:34px;

}

.cta-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    position:relative;

    z-index:2;

}

.btn-primary{

    background:#fff;

    color:#2B3D91;

    padding:18px 38px;

    border-radius:60px;

    font-size:17px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.btn-outline{

    border:2px solid #fff;

    color:#fff;

    padding:18px 38px;

    border-radius:60px;

    text-decoration:none;

    font-size:17px;

    font-weight:700;

    transition:.35s;

}

.btn-outline:hover{

    background:#fff;

    color:#2B3D91;

}

@media(max-width:991px){

.cta-box{

flex-direction:column;

text-align:center;

padding:50px 35px;

}

.cta-content h2{

font-size:40px;

line-height:52px;

}

}

@media(max-width:600px){

.cta-section{

padding:80px 0;

}

.cta-box{

padding:40px 25px;

}

.cta-content h2{

font-size:30px;

line-height:42px;

}

.cta-content p{

font-size:16px;

line-height:28px;

}

.cta-buttons{

justify-content:center;

}

.btn-primary,
.btn-outline{

width:100%;

text-align:center;

}

}

/*======================================
BLOG SECTION
======================================*/

.blog-section{

    padding:120px 0;

    background:#f7f9fc;

}

.blog-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.blog-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid #edf2f7;

}

.blog-card:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 70px rgba(43,61,145,.15);

}

.blog-image{

    position:relative;

    overflow:hidden;

}

.blog-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.blog-card:hover img{

    transform:scale(1.08);

}

.blog-image span{

    position:absolute;

    top:18px;

    left:18px;

    background:#2B3D91;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.blog-content{

    padding:30px;

}

.blog-date{

    color:#2B3D91;

    font-weight:600;

    margin-bottom:15px;

}

.blog-content h3{

    font-size:26px;

    line-height:36px;

    color:#081420;

    margin-bottom:15px;

}

.blog-content p{

    color:#666;

    line-height:30px;

    margin-bottom:25px;

}

.blog-btn{

    color:#2B3D91;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.blog-btn:hover{

    color:#2DA5F3;

}

@media(max-width:991px){

.blog-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.blog-section{

padding:80px 0;

}

.blog-grid{

grid-template-columns:1fr;

}

.blog-content{

padding:25px;

}

.blog-content h3{

font-size:22px;

line-height:32px;

}

.blog-image img{

height:220px;

}

}

/*==================================

CONTACT SECTION

==================================*/

.contact-section{

padding:120px 0;

background:#f7f9fc;

}

.contact-wrapper{

display:grid;

grid-template-columns:420px 1fr;

gap:45px;

margin-top:70px;

}

.contact-info{

display:flex;

flex-direction:column;

gap:25px;

}

.contact-card{

background:#fff;

padding:28px;

border-radius:20px;

display:flex;

align-items:center;

gap:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

}

.contact-card:hover{

transform:translateY(-8px);

}

.contact-icon{

width:70px;

height:70px;

background:linear-gradient(135deg,#2B3D91,#2DA5F3);

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

color:#fff;

}

.contact-card h4{

font-size:22px;

margin-bottom:8px;

}

.contact-card p{

color:#666;

line-height:28px;

}

.contact-form-box{

background:#fff;

padding:45px;

border-radius:25px;

box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.form-row{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-bottom:20px;

}

.contact-form-box input,
.contact-form-box textarea{

width:100%;

padding:18px;

border:1px solid #dce4ef;

border-radius:15px;

font-size:16px;

outline:none;

transition:.3s;

font-family:inherit;

}

.contact-form-box input:focus,
.contact-form-box textarea:focus{

border-color:#2B3D91;

box-shadow:0 0 0 4px rgba(43,61,145,.08);

}

.contact-form-box textarea{

resize:none;

margin-bottom:25px;

}

.contact-form-box button{

background:linear-gradient(135deg,#2B3D91,#2DA5F3);

color:#fff;

padding:18px 40px;

border:none;

border-radius:50px;

font-size:17px;

font-weight:700;

cursor:pointer;

transition:.35s;

}

.contact-form-box button:hover{

transform:translateY(-4px);

box-shadow:0 18px 40px rgba(43,61,145,.20);

}

@media(max-width:991px){

.contact-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.contact-section{

padding:80px 0;

}

.form-row{

grid-template-columns:1fr;

}

.contact-form-box{

padding:30px;

}

}

/*==================================================
ABOUT PAGE
==================================================*/

#about-page{
    width:100%;
    overflow:hidden;
    background:#ffffff;
}

.about-section{
    position:relative;
    padding:100px 0;
}

@media (max-width:768px){

    .about-section{
        padding:70px 0;
    }

}

/*==================================================
ABOUT HERO
==================================================*/

.about-hero{

    position:relative;

    height:500px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:url("../images/about/about-banner.jpg") center center/cover no-repeat;

}

.about-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(120deg,
    rgba(8,20,32,.88),
    rgba(43,61,145,.72),
    rgba(45,165,243,.35));

}

.about-hero-content{

    position:relative;

    z-index:5;

    max-width:820px;

    color:#fff;

}

.hero-badge{

    display:inline-block;

    padding:12px 28px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(15px);

    margin-bottom:25px;

    font-size:14px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.about-hero h1{

    font-size:62px;

    font-weight:800;

    margin-bottom:20px;

    line-height:1.1;

}

.about-hero h1 span{

    color:#2DA5F3;

}

.about-hero p{

    max-width:700px;

    margin:auto;

    line-height:1.9;

    font-size:18px;

    opacity:.95;

}

.about-breadcrumb{

    display:inline-flex;

    align-items:center;

    gap:15px;

    margin-top:40px;

    padding:15px 30px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

}

.about-breadcrumb a{

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.about-breadcrumb a:hover{

    color:#2DA5F3;

}

.about-breadcrumb strong{

    color:#2DA5F3;

}

@media(max-width:768px){

.about-hero{

height:420px;

padding:20px;

}

.about-hero h1{

font-size:38px;

}

.about-hero p{

font-size:16px;

}

.about-breadcrumb{

padding:12px 20px;

font-size:14px;

}

}

/*==================================================
COMPANY INTRO
==================================================*/

.company-intro{

    padding:110px 0;

    background:#fff;

}

.intro-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.intro-image{

    position:relative;

}

.intro-image img{

    width:100%;

    border-radius:24px;

    display:block;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:.5s;

}

.intro-image:hover img{

    transform:scale(1.03);

}

.experience-box{

    position:absolute;

    bottom:30px;

    right:-20px;

    background:#2B3D91;

    color:#fff;

    padding:25px 35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.2);

}

.experience-box h2{

    font-size:40px;

    margin:0;

    color:#2DA5F3;

}

.experience-box span{

    font-size:15px;

}

.section-tag{

    display:inline-block;

    padding:10px 22px;

    background:#eaf5ff;

    color:#2B3D91;

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;

}

.intro-content h2{

    font-size:44px;

    line-height:1.3;

    margin-bottom:25px;

}

.intro-content h2 span{

    color:#2DA5F3;

}

.intro-content p{

    margin-bottom:20px;

    line-height:1.9;

    color:#666;

}

.intro-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin:35px 0;

}

.intro-item{

    background:#fff;

    border:1px solid #edf2f7;

    padding:18px;

    border-radius:15px;

    transition:.35s;

    font-weight:600;

}

.intro-item:hover{

    transform:translateY(-6px);

    border-color:#2DA5F3;

    box-shadow:0 15px 35px rgba(45,165,243,.15);

}

@media(max-width:991px){

.intro-grid{

grid-template-columns:1fr;

}

.experience-box{

right:20px;

}

}

@media(max-width:768px){

.company-intro{

padding:80px 0;

}

.intro-content h2{

font-size:32px;

}

.intro-features{

grid-template-columns:1fr;

}

.experience-box{

position:relative;

right:0;

bottom:0;

margin-top:20px;

display:inline-block;

}

}

/*==================================================
OUR STORY
==================================================*/

.our-story{

    padding:110px 0;

    background:#f8fbff;

}

.story-timeline{

    position:relative;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.story-timeline::before{

    content:"";

    position:absolute;

    top:35px;

    left:0;

    width:100%;

    height:3px;

    background:#d9e8f8;

    z-index:0;

}

.story-card{

    position:relative;

    background:#fff;

    padding:35px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.4s;

    z-index:2;

}

.story-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(45,165,243,.18);

}

.story-year{

    width:70px;

    height:70px;

    background:#2B3D91;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    font-weight:700;

    font-size:18px;

    border:5px solid #fff;

    box-shadow:0 0 0 5px #2DA5F3;

}

.story-card h3{

    margin-bottom:15px;

    font-size:22px;

    color:#081420;

}

.story-card p{

    color:#666;

    line-height:1.8;

}

.section-title.center{

    text-align:center;

    max-width:750px;

    margin:auto;

}

.section-title.center span{

    display:inline-block;

    color:#2DA5F3;

    font-weight:700;

    margin-bottom:15px;

    letter-spacing:1px;

}

.section-title.center h2{

    font-size:42px;

    margin-bottom:20px;

    color:#081420;

}

.section-title.center p{

    color:#666;

    line-height:1.9;

}

@media(max-width:991px){

.story-timeline{

grid-template-columns:repeat(2,1fr);

}

.story-timeline::before{

display:none;

}

}

@media(max-width:768px){

.story-timeline{

grid-template-columns:1fr;

}

.section-title.center h2{

font-size:32px;

}

.our-story{

padding:80px 0;

}

}

/*==================================================
MISSION & VISION
==================================================*/

.mission-vision{

    padding:110px 0;

    background:#ffffff;

}

.mission-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-top:70px;

}

.mission-card{

    position:relative;

    background:#fff;

    border-radius:25px;

    padding:45px;

    border:1px solid #edf2f7;

    transition:.4s;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.06);

}

.mission-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#2B3D91,#2DA5F3);

}

.mission-card:hover{

    transform:translateY(-10px);

    border-color:#2DA5F3;

    box-shadow:0 25px 60px rgba(45,165,243,.18);

}

.mission-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:linear-gradient(135deg,#2B3D91,#2DA5F3);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:25px;

}

.mission-card h3{

    font-size:30px;

    margin-bottom:20px;

    color:#081420;

}

.mission-card p{

    color:#666;

    line-height:1.9;

    margin-bottom:25px;

}

.mission-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.mission-card ul li{

    padding:12px 0;

    color:#333;

    border-bottom:1px solid #edf2f7;

    position:relative;

    padding-left:28px;

}

.mission-card ul li:last-child{

    border:none;

}

.mission-card ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#2DA5F3;

    font-weight:bold;

}

@media(max-width:991px){

.mission-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.mission-vision{

padding:80px 0;

}

.mission-card{

padding:30px;

}

.mission-card h3{

font-size:24px;

}

}

/*==================================================
CORE VALUES
==================================================*/

.core-values{

    padding:110px 0;

    background:#f8fbff;

}

.values-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.value-card{

    background:#ffffff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    border:1px solid #edf2f7;

    transition:.4s;

    position:relative;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.value-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#2B3D91,#2DA5F3);

    transition:.5s;

}

.value-card:hover::before{

    left:0;

}

.value-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(45,165,243,.18);

    border-color:#2DA5F3;

}

.value-icon{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#2B3D91,#2DA5F3);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    transition:.4s;

}

.value-card:hover .value-icon{

    transform:rotateY(180deg);

}

.value-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#081420;

}

.value-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:991px){

.values-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.core-values{

padding:80px 0;

}

.values-grid{

grid-template-columns:1fr;

}

.value-card{

padding:35px 25px;

}

}

/*==================================================
WHY CHOOSE
==================================================*/

.why-choose{

    padding:110px 0;

    background:#ffffff;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.why-image{

    position:relative;

}

.why-image img{

    width:100%;

    display:block;

    border-radius:25px;

    box-shadow:0 20px 60px rgba(0,0,0,.10);

    transition:.4s;

}

.why-image:hover img{

    transform:scale(1.03);

}

.floating-box{

    position:absolute;

    bottom:30px;

    left:-20px;

    background:linear-gradient(135deg,#2B3D91,#2DA5F3);

    color:#fff;

    padding:25px 35px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.20);

}

.floating-box h3{

    margin:0;

    font-size:38px;

    color:#fff;

}

.floating-box span{

    font-size:15px;

}

.why-content h2{

    font-size:42px;

    margin:20px 0;

    line-height:1.3;

}

.why-content h2 span{

    color:#2DA5F3;

}

.why-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.choose-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.choose-item{

    display:flex;

    gap:18px;

    padding:22px;

    background:#fff;

    border-radius:18px;

    border:1px solid #edf2f7;

    transition:.35s;

}

.choose-item:hover{

    transform:translateY(-8px);

    border-color:#2DA5F3;

    box-shadow:0 20px 40px rgba(45,165,243,.15);

}

.choose-item i{

    width:55px;

    height:55px;

    background:linear-gradient(135deg,#2B3D91,#2DA5F3);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

}

.choose-item h4{

    margin-bottom:8px;

    color:#081420;

}

.choose-item p{

    margin:0;

    font-size:14px;

    line-height:1.6;

}

@media(max-width:991px){

.why-grid{

grid-template-columns:1fr;

}

.choose-list{

grid-template-columns:1fr;

}

.floating-box{

left:20px;

}

}

@media(max-width:768px){

.why-choose{

padding:80px 0;

}

.why-content h2{

font-size:32px;

}

.floating-box{

position:relative;

left:0;

bottom:0;

margin-top:20px;

display:inline-block;

}

}

/*==================================================
OUR STRENGTHS
==================================================*/

.our-strengths{

    padding:110px 0;

    background:#f8fbff;

}

.strength-grid{

    display:grid;

    grid-template-columns:40% 60%;

    gap:60px;

    align-items:center;

}

.strength-content h2{

    font-size:44px;

    margin:20px 0;

    line-height:1.3;

}

.strength-content h2 span{

    color:#2DA5F3;

}

.strength-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.strength-cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.strength-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    border:1px solid #edf2f7;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.strength-card:hover{

    transform:translateY(-10px);

    border-color:#2DA5F3;

    box-shadow:0 20px 45px rgba(45,165,243,.18);

}

.strength-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:linear-gradient(135deg,#2B3D91,#2DA5F3);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:25px;

}

.strength-card h3{

    margin-bottom:15px;

    color:#081420;

    font-size:22px;

}

.strength-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:991px){

.strength-grid{

grid-template-columns:1fr;

}

.strength-cards{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.our-strengths{

padding:80px 0;

}

.strength-content h2{

font-size:32px;

}

.strength-cards{

grid-template-columns:1fr;

}

.strength-card{

padding:30px;

}

}

/*==================================================
EXPORT PROCESS
==================================================*/

.export-process{

    padding:110px 0;

    background:#ffffff;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.process-card{

    position:relative;

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.process-card:hover{

    transform:translateY(-10px);

    border-color:#2DA5F3;

    box-shadow:0 20px 45px rgba(45,165,243,.18);

}

.process-number{

    position:absolute;

    top:20px;

    right:20px;

    font-size:42px;

    font-weight:800;

    color:rgba(43,61,145,.08);

    line-height:1;

}

.process-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:20px;

    background:linear-gradient(135deg,#2B3D91,#2DA5F3);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    transition:.35s;

}

.process-card:hover .process-icon{

    transform:rotateY(180deg);

}

.process-card h3{

    font-size:22px;

    margin-bottom:15px;

    color:#081420;

}

.process-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:991px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.export-process{

padding:80px 0;

}

.process-grid{

grid-template-columns:1fr;

}

.process-card{

padding:35px 25px;

}

}
/*==================================================
INDUSTRIES
==================================================*/

.industries{

    padding:110px 0;

    background:#f8fbff;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:70px;

}

.industry-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    cursor:pointer;

    height:320px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.industry-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.industry-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(8,20,32,.92),
    rgba(43,61,145,.55),
    transparent);

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    align-items:center;

    text-align:center;

    padding:30px;

    color:#fff;

}

.industry-overlay i{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#2DA5F3;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:18px;

    font-size:24px;

    transition:.35s;

}

.industry-overlay h3{

    font-size:22px;

    margin:0;

}

.industry-card:hover img{

    transform:scale(1.12);

}

.industry-card:hover .industry-overlay i{

    transform:rotate(360deg);

}

@media(max-width:991px){

.industry-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.industries{

padding:80px 0;

}

.industry-grid{

grid-template-columns:1fr;

}

.industry-card{

height:280px;

}

}
/*==================================================
STATISTICS COUNTER
==================================================*/

.stats-section{

    padding:110px 0;

    background:linear-gradient(rgba(8,20,32,.92),rgba(8,20,32,.92)),
    url("../images/about/world-map.png") center/cover no-repeat;

}

.stats-section .section-title span,
.stats-section .section-title h2,
.stats-section .section-title p{

    color:#fff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.stat-card{

    text-align:center;

    padding:40px 25px;

    border-radius:22px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.12);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.12);

    border-color:#2DA5F3;

}

.stat-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#2B3D91,#2DA5F3);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:30px;

}

.stat-card h3{

    font-size:48px;

    color:#2DA5F3;

    margin-bottom:10px;

    font-weight:800;

}

.stat-card p{

    color:#ffffff;

    font-size:17px;

    margin:0;

}

@media(max-width:991px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.stats-section{

padding:80px 0;

}

.stats-grid{

grid-template-columns:1fr;

}

.stat-card h3{

font-size:40px;

}

}


/*==================================================
GLOBAL PRESENCE
==================================================*/

.global-presence{

    padding:110px 0;

    background:#ffffff;

}

.global-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.global-content h2{

    font-size:44px;

    margin:20px 0;

    line-height:1.3;

}

.global-content h2 span{

    color:#2DA5F3;

}

.global-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.global-list{

    display:grid;

    gap:18px;

}

.global-item{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 22px;

    border-radius:15px;

    background:#f8fbff;

    transition:.35s;

}

.global-item:hover{

    transform:translateX(8px);

    background:#2B3D91;

    color:#fff;

}

.global-item i{

    color:#2DA5F3;

    font-size:22px;

}

.global-item:hover i{

    color:#fff;

}

.global-image{

    position:relative;

}

.global-image img{

    width:100%;

    display:block;

    animation:floatMap 6s ease-in-out infinite;

}

.country-tag{

    position:absolute;

    background:#2B3D91;

    color:#fff;

    padding:10px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

    animation:pulseTag 2s infinite;

}

.tag1{top:20%;left:63%;}
.tag2{top:35%;left:58%;}
.tag3{top:47%;left:66%;}
.tag4{top:58%;left:61%;}
.tag5{top:24%;left:35%;}

@keyframes floatMap{

    0%{transform:translateY(0);}

    50%{transform:translateY(-10px);}

    100%{transform:translateY(0);}

}

@keyframes pulseTag{

    0%{transform:scale(1);}

    50%{transform:scale(1.08);}

    100%{transform:scale(1);}

}

@media(max-width:991px){

.global-grid{

grid-template-columns:1fr;

}

.global-image{

margin-top:40px;

}

}

@media(max-width:768px){

.global-presence{

padding:80px 0;

}

.global-content h2{

font-size:32px;

}

.country-tag{

font-size:11px;

padding:8px 12px;

}

}

/*==================================================
ABOUT CTA
==================================================*/

.about-cta{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:url("../images/about/cta-bg.jpg") center center/cover no-repeat;

}

.about-cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(8,20,32,.92),
        rgba(43,61,145,.88),
        rgba(45,165,243,.65)
    );

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#fff;

}

.cta-tag{

    display:inline-block;

    padding:12px 28px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.20);

    backdrop-filter:blur(15px);

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:25px;

}

.cta-content h2{

    font-size:52px;

    line-height:1.2;

    margin-bottom:25px;

    color:#fff;

}

.cta-content p{

    max-width:720px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.theme-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 34px;

    border-radius:50px;

    background:#2DA5F3;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.theme-btn:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(45,165,243,.35);

}

.theme-btn-outline{

    background:transparent;

    border:2px solid rgba(255,255,255,.35);

}

.theme-btn-outline:hover{

    background:#fff;

    color:#2B3D91;

}

@media(max-width:768px){

.about-cta{

padding:80px 0;

}

.cta-content h2{

font-size:34px;

}

.cta-content p{

font-size:16px;

}

.cta-buttons{

flex-direction:column;

align-items:center;

}

.theme-btn{

width:260px;

justify-content:center;

}

}


/*==================================================
SERVICES PAGE
==================================================*/

#services-page{

    width:100%;

    overflow:hidden;

    background:#fff;

}

.services-section{

    position:relative;

    padding:110px 0;

}

@media(max-width:768px){

.services-section{

padding:80px 0;

}

}

/*==================================================
SERVICES HERO
==================================================*/

.services-hero{

    position:relative;

    height:650px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    text-align:center;

    background:url("../images/services/services-banner.png") center center/cover no-repeat;

}

.services-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(8,20,32,.92),
        rgba(43,61,145,.78),
        rgba(45,165,243,.45)
    );

}

.services-hero-content{

    position:relative;

    z-index:5;

    max-width:900px;

    color:#fff;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 28px;

    border-radius:40px;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(16px);

    margin-bottom:25px;

    font-size:15px;

}

.hero-badge i{

    color:#2DA5F3;

}

.services-hero h1{

    font-size:68px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:25px;

}

.services-hero h1 span{

    color:#2DA5F3;

}

.services-hero p{

    max-width:760px;

    margin:auto;

    font-size:19px;

    line-height:1.9;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.hero-breadcrumb{

    display:inline-flex;

    align-items:center;

    gap:15px;

    margin-top:45px;

    padding:15px 30px;

    border-radius:50px;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(16px);

}

.hero-breadcrumb a{

    color:#fff;

    text-decoration:none;

}

.hero-breadcrumb strong{

    color:#2DA5F3;

}

.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

}

.scroll-down span{

    width:30px;

    height:50px;

    border:2px solid #fff;

    border-radius:30px;

    display:block;

    position:relative;

}

.scroll-down span::before{

    content:"";

    width:6px;

    height:12px;

    background:#fff;

    border-radius:20px;

    position:absolute;

    top:8px;

    left:50%;

    transform:translateX(-50%);

    animation:scrollMove 2s infinite;

}

@keyframes scrollMove{

0%{

opacity:0;

transform:translate(-50%,0);

}

50%{

opacity:1;

}

100%{

opacity:0;

transform:translate(-50%,18px);

}

}

@media(max-width:991px){

.services-hero{

height:560px;

}

.services-hero h1{

font-size:52px;

}

}

@media(max-width:768px){

.services-hero{

height:500px;

padding:30px;

}

.services-hero h1{

font-size:38px;

}

.services-hero p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.hero-breadcrumb{

font-size:14px;

padding:12px 22px;

}

}

/*==================================================
SERVICES GRID
==================================================*/

.service-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.service-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    transition:.4s;

    border:1px solid #edf2f7;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#2DA5F3;

    box-shadow:0 25px 50px rgba(45,165,243,.18);

}

.service-image{

    overflow:hidden;

    height:250px;

}

.service-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.service-card:hover .service-image img{

    transform:scale(1.1);

}

.service-content{

    padding:30px;

}

.service-content h3{

    font-size:24px;

    color:#081420;

    margin-bottom:15px;

}

.service-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.service-content a{

    color:#2B3D91;

    font-weight:700;

    text-decoration:none;

}

.service-content a:hover{

    color:#2DA5F3;

}

@media(max-width:1200px){

.service-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.service-grid{

grid-template-columns:1fr;

}

.service-image{

height:220px;

}

}

/*==================================================
WHY SERVICES
==================================================*/

.why-services{

    padding:110px 0;

    background:#f8fbff;

}

.why-services-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.why-services-image{

    position:relative;

}

.why-services-image img{

    width:100%;

    border-radius:25px;

    display:block;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

    transition:.4s;

}

.why-services-image:hover img{

    transform:scale(1.03);

}

.experience-badge{

    position:absolute;

    bottom:30px;

    left:-20px;

    background:linear-gradient(135deg,#2B3D91,#2DA5F3);

    color:#fff;

    padding:25px 35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.18);

}

.experience-badge h2{

    margin:0;

    font-size:42px;

}

.experience-badge span{

    font-size:15px;

}

.why-services-content h2{

    font-size:44px;

    margin:20px 0;

    line-height:1.3;

}

.why-services-content h2 span{

    color:#2DA5F3;

}

.why-services-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.service-feature-list{

    display:grid;

    gap:18px;

}

.service-feature{

    display:flex;

    gap:18px;

    padding:20px;

    border-radius:18px;

    background:#fff;

    border:1px solid #edf2f7;

    transition:.35s;

}

.service-feature:hover{

    transform:translateX(10px);

    border-color:#2DA5F3;

    box-shadow:0 15px 35px rgba(45,165,243,.15);

}

.service-feature i{

    width:55px;

    height:55px;

    background:linear-gradient(135deg,#2B3D91,#2DA5F3);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

}

.service-feature h4{

    margin-bottom:8px;

    color:#081420;

}

.service-feature p{

    margin:0;

    font-size:14px;

    line-height:1.7;

}

@media(max-width:991px){

.why-services-grid{

grid-template-columns:1fr;

}

.experience-badge{

left:20px;

}

}

@media(max-width:768px){

.why-services{

padding:80px 0;

}

.why-services-content h2{

font-size:32px;

}

.experience-badge{

position:relative;

left:0;

bottom:0;

margin-top:20px;

display:inline-block;

}

}

/*==================================================
EXPORT PROCESS TIMELINE
==================================================*/

.export-process-section{

    padding:110px 0;

    background:#ffffff;

}

.process-wrapper{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.process-box{

    position:relative;

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-radius:22px;

    border:1px solid #edf2f7;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.35s;

    overflow:hidden;

}

.process-box::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#2B3D91,#2DA5F3);

}

.process-box:hover{

    transform:translateY(-10px);

    border-color:#2DA5F3;

    box-shadow:0 25px 50px rgba(45,165,243,.18);

}

.process-box span{

    position:absolute;

    top:20px;

    right:25px;

    font-size:42px;

    font-weight:800;

    color:rgba(43,61,145,.08);

}

.process-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#2B3D91,#2DA5F3);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

    transition:.35s;

}

.process-box:hover .process-icon{

    transform:rotateY(180deg);

}

.process-box h3{

    font-size:24px;

    margin-bottom:15px;

    color:#081420;

}

.process-box p{

    color:#666;

    line-height:1.8;

}

@media(max-width:991px){

.process-wrapper{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.export-process-section{

padding:80px 0;

}

.process-wrapper{

grid-template-columns:1fr;

}

.process-box{

padding:35px 25px;

}

}
/*==========================================
FAQ
==========================================*/

.faq-section{

    padding:100px 0;

    background:#f8fbff;

}

.faq-container{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    background:#fff;

    border-radius:16px;

    margin-bottom:20px;

    overflow:hidden;

    border:1px solid #e8eef5;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.faq-question{

    width:100%;

    border:none;

    background:#fff;

    padding:25px 30px;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:20px;

    font-weight:600;

    color:#081420;

}

.faq-question i{

    color:#2DA5F3;

    transition:.3s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 30px 25px;

    margin:0;

    color:#666;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:300px;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}

@media(max-width:768px){

.faq-question{

font-size:17px;

padding:20px;

}

.faq-answer p{

padding:0 20px 20px;

}

}

/*==================================================
SERVICES CTA
==================================================*/

.services-cta{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:url("../images/services/services-banner.png") center center/cover no-repeat;

}

.services-cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(8,20,32,.92),
        rgba(43,61,145,.88),
        rgba(45,165,243,.60)
    );

}

.services-cta-content{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:auto;

    text-align:center;

    color:#fff;

}

.cta-badge{

    display:inline-block;

    padding:12px 28px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(14px);

    margin-bottom:25px;

    font-size:14px;

    letter-spacing:1px;

    font-weight:600;

}

.services-cta-content h2{

    font-size:54px;

    margin-bottom:25px;

    line-height:1.2;

    color:#fff;

}

.services-cta-content p{

    max-width:720px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

    margin-bottom:45px;

    color:rgba(255,255,255,.92);

}

.cta-btn-group{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-btn-group .theme-btn{

    min-width:220px;

}

@media(max-width:768px){

.services-cta{

padding:80px 0;

}

.services-cta-content h2{

font-size:34px;

}

.services-cta-content p{

font-size:16px;

}

.cta-btn-group{

flex-direction:column;

align-items:center;

}

}
/*==================================================
CONTACT INFO
==================================================*/

.contact-info-section{

    padding:110px 0;

    background:#ffffff;

}

.contact-info-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.contact-info-card{

    background:#fff;

    padding:40px 30px;

    border-radius:22px;

    text-align:center;

    border:1px solid #edf2f7;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.contact-info-card:hover{

    transform:translateY(-10px);

    border-color:#2DA5F3;

    box-shadow:0 25px 50px rgba(45,165,243,.18);

}

.contact-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#2B3D91,#2DA5F3);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    transition:.4s;

}

.contact-info-card:hover .contact-icon{

    transform:rotateY(180deg);

}

.contact-info-card h3{

    margin-bottom:15px;

    font-size:24px;

    color:#081420;

}

.contact-info-card p{

    color:#666;

    line-height:1.8;

    min-height:60px;

}

.contact-info-card a{

    display:inline-block;

    margin-top:15px;

    color:#2B3D91;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.contact-info-card a:hover{

    color:#2DA5F3;

}

@media(max-width:991px){

.contact-info-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contact-info-section{

padding:80px 0;

}

.contact-info-grid{

grid-template-columns:1fr;

}

}
/*==================================================
CONTACT MAP
==================================================*/

.contact-map{

    padding:110px 0;

    background:#f8fbff;

}

.map-wrapper{

    margin-top:60px;

    overflow:hidden;

    border-radius:25px;

    border:1px solid #edf2f7;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.map-wrapper iframe{

    width:100%;

    height:520px;

    border:none;

    display:block;

}

@media(max-width:768px){

.contact-map{

padding:80px 0;

}

.map-wrapper iframe{

height:380px;

}

}
/*==================================================
CONTACT FORM
==================================================*/

.contact-form-section{

    padding:110px 0;

    background:#ffffff;

}

.contact-form-wrapper{

    max-width:950px;

    margin:70px auto 0;

    background:#fff;

    padding:50px;

    border-radius:25px;

    border:1px solid #edf2f7;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.form-group{

    margin-bottom:25px;

}

.form-group label{

    display:block;

    margin-bottom:10px;

    color:#081420;

    font-weight:600;

}

.form-group input,
.form-group textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #dfe7ef;

    border-radius:14px;

    font-size:15px;

    transition:.35s;

    outline:none;

    font-family:inherit;

}

.form-group input:focus,
.form-group textarea:focus{

    border-color:#2DA5F3;

    box-shadow:0 0 0 4px rgba(45,165,243,.12);

}

.contact-form textarea{

    resize:vertical;

}

.contact-form .theme-btn{

    min-width:220px;

}

@media(max-width:768px){

.contact-form-section{

padding:80px 0;

}

.contact-form-wrapper{

padding:30px 20px;

}

.form-grid{

grid-template-columns:1fr;

}

.contact-form .theme-btn{

width:100%;

}

}