


/*==================================================
01. GOOGLE FONTS
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');


/*==================================================
02. CSS VARIABLES
==================================================*/

:root{

    --primary:#0057FF;
    --primary-dark:#0046CF;

    --secondary:#FF7A00;
    --secondary-dark:#E96B00;

    --success:#16A34A;
    --danger:#DC2626;

    --dark:#0F172A;
    --dark-light:#334155;

    --text:#475569;

    --white:#FFFFFF;

    --body:#F8FAFC;

    --border:#E2E8F0;

    --shadow-sm:0 5px 15px rgba(0,0,0,.05);

    --shadow-md:0 15px 40px rgba(0,0,0,.08);

    --shadow-lg:0 25px 60px rgba(0,0,0,.12);

    --radius:12px;

    --radius-lg:20px;

    --transition:.35s ease;

}


/*==================================================
03. RESET
==================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--body);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

ul{

    list-style:none;

}

button{

    border:none;

    outline:none;

    cursor:pointer;

    font-family:inherit;

}

input,
textarea,
select{

    font-family:inherit;

    outline:none;

}


/*==================================================
04. TYPOGRAPHY
==================================================*/

h1,h2,h3,h4,h5,h6{

    color:var(--dark);

    font-weight:700;

    line-height:1.2;

}

h1{

    font-size:60px;

}

h2{

    font-size:46px;

}

h3{

    font-size:30px;

}

p{

    font-size:16px;

}


/*==================================================
05. CONTAINER
==================================================*/

.container{

    width:100%;

    max-width:1280px;

    margin:auto;

    padding:0 20px;

}


/*==================================================
06. COMMON SECTION
==================================================*/

section{

    padding:100px 0;

    position:relative;

}

.section-title{

    text-align:center;

    max-width:750px;

    margin:0 auto 70px;

}

.section-title span{

    color:var(--primary);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}

.section-title h2{

    margin:15px 0;

}

.section-title p{

    color:var(--text);

}


/*==================================================
07. BUTTONS
==================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);
   border-radius: 7px;
    color:#fff;
    padding: 10px;
   

}

/* .btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

    box-shadow:var(--shadow-md);

} */

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}


/*==================================================
08. FLEX UTILITIES
==================================================*/

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    justify-content:center;

    align-items:center;

}

.flex-between{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.flex-column{

    display:flex;

    flex-direction:column;

}


/*==================================================
09. SPACING UTILITIES
==================================================*/

.mt-20{margin-top:20px;}
.mt-40{margin-top:40px;}
.mt-60{margin-top:60px;}

.mb-20{margin-bottom:20px;}
.mb-40{margin-bottom:40px;}
.mb-60{margin-bottom:60px;}

.pt-60{padding-top:60px;}
.pb-60{padding-bottom:60px;}


/*==================================================
10. SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#EEF2F7;

}


/*==================================================
END OF FOUNDATION
==================================================*/


/*==================================================
11. HEADER
==================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

}


/*==================================================
12. TOP BAR
==================================================*/

.topbar{

    background:var(--primary);

    color:var(--white);

    height:42px;

    display:flex;

    align-items:center;

}

.topbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:100%;

}

.top-left,
.top-right{

    display:flex;

    align-items:center;

    gap:25px;

}

.top-left span,
.top-right span{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:14px;

    font-weight:500;

}

.topbar i{

    color:#FFD54A;

    font-size:14px;

}


/*==================================================
13. NAVBAR
==================================================*/

.navbar{

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(0,0,0,.05);

    transition:all .35s ease;

}

.navbar.sticky{

    background:#ffffff;

    box-shadow:var(--shadow-md);

}

.nav-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:82px;

}


/*==================================================
14. LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    height:58px;

    width:auto;

}


/*==================================================
15. NAVIGATION MENU
==================================================*/

.menu{

    display:flex;

    align-items:center;

    gap:40px;

}

.menu li{

    position:relative;

}

.menu li a{

    color:var(--dark);

    font-size:16px;

    font-weight:600;

    transition:var(--transition);

    position:relative;

}

.menu li a:hover{

    color:var(--primary);

}


/*==================================================
16. MENU HOVER EFFECT
==================================================*/

.menu li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:var(--transition);

}

.menu li a:hover::after,

.menu li a.active::after{

    width:100%;

}

.menu li a.active{

    color:var(--primary);

}


/*==================================================
17. MOBILE MENU BUTTON
==================================================*/

.menu-toggle{

    width:42px;

    height:42px;

    display:none;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    cursor:pointer;

}

.menu-toggle span{

    width:26px;

    height:3px;

    margin:3px 0;

    border-radius:10px;

    background:var(--dark);

    transition:var(--transition);

}


/*==================================================
18. HAMBURGER ANIMATION
==================================================*/

.menu-toggle.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}


/*==================================================
19. HEADER SPACER
==================================================*/

.header-space{

    height:100px;

}

/*==================================================
20. HERO SECTION
==================================================*/

.hero{

    position:relative;

    padding:90px 0;

    overflow:hidden;

    /* background:linear-gradient(135deg,#F8FBFF 0%,#EEF5FF 50%,#E8F2FF 100%); */
    background-image:url("../images/hero/hero-banner.webp");
background-size:cover;
background-position:center;
background-repeat:no-repeat;

}

/* Decorative Background */



/* .hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-250px;

    top:-250px;

    border-radius:50%;

    background:rgba(0,87,255,.05);

} */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(56,43,152,.82) 0%,
        rgba(56,43,152,.55) 38%,
        rgba(56,43,152,.18) 100%
    );

    z-index:1;

}

.hero::after{

    

    display:none;

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    left:-180px;

    bottom:-180px;

    border-radius:50%;

    background:rgba(255,122,0,.05);

}

/*==============================
Hero Container
==============================*/

.hero-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

    position:relative;

    z-index:10;

}

/*==============================
Left Side
==============================*/

.hero-left{

    flex:1;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:#ffffff;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    box-shadow:var(--shadow-sm);

    margin-bottom:30px;

}

.hero-badge i{

    color:var(--secondary);

}

/*==============================
Heading
==============================*/

.hero-left h1{

    font-size:64px;

    font-weight:800;

    line-height:1.15;

    color:var(--dark);

    margin-bottom:25px;

}

.hero-left h1 span{

    color:var(--primary);

}

.hero-left p{

    font-size:18px;

    color:var(--text);

    line-height:1.9;

    max-width:620px;

    margin-bottom:35px;

}

/*==============================
Hero Buttons
==============================*/

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:40px;

}


/*==============================
Features
==============================*/

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:10px;

    background:#ffffff;

    padding:14px 20px;

    border-radius:50px;

    box-shadow:var(--shadow-sm);

}

.feature-item i{

    color:var(--success);

}

.feature-item span{

    font-size:15px;

    font-weight:600;

}

/*==============================
Right Side
==============================*/

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

.hero-image-wrapper{

    position:relative;

    width:100%;

    max-width:800px;
    
   

}

.hero-image {
     
     border-radius: 10px 10px 10px 10px;
    
}

.hero-image-wrapper img{

    width:100%;

    height:auto;

    animation:floatImage 5s ease-in-out infinite;

}

/*==============================
Image Shadow
==============================*/

.hero-image-wrapper::after{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:-25px;

    width:70%;

    height:28px;

    background:rgba(0,0,0,.10);

    filter:blur(18px);

    border-radius:50%;

}

/*==================================================
21. HERO FLOATING CARDS
==================================================*/

.hero-card{

    position:absolute;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.4);

    border-radius:18px;

    padding:18px 22px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    display:flex;

    align-items:center;

    gap:15px;

    z-index:5;

    animation:floating 5s ease-in-out infinite;

}

.hero-card{
    position: absolute;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 16px;

    box-shadow:
        0 8px 30px rgba(0,0,0,.18);

    padding:18px 22px;

    transition:.35s ease;
}

.hero-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);

}

.hero-card i{

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.hero-card h4{

    font-size:18px;

    margin-bottom:4px;

    color:var(--dark);

}

.hero-card p{

    font-size:14px;

    color:var(--text);

    line-height:1.5;

}


/*==============================
CARD POSITIONS
==============================*/

.card-one{

    top:30px;

    left:-50px;

}

.card-two{

    right:-40px;

    top:180px;

    animation-delay:1s;

}

.card-three{

    bottom:40px;

    left:10px;

    animation-delay:2s;

}


/*==============================
WORLD MAP
==============================*/

.world-map{

    position:absolute;

    width:100%;

    max-width:650px;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    opacity:.08;

    z-index:0;

    pointer-events:none;

}


/*==============================
BACKGROUND SHAPES
==============================*/

.shape{

    position:absolute;

    border-radius:50%;

    z-index:1;

}

.shape-1{

    width:18px;

    height:18px;

    background:var(--secondary);

    top:15%;

    right:10%;

}

.shape-2{

    width:26px;

    height:26px;

    background:var(--primary);

    left:8%;

    bottom:18%;

}

.shape-3{

    width:14px;

    height:14px;

    background:#16A34A;

    top:50%;

    right:20%;

}


/*==============================
FLOAT ANIMATION
==============================*/

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
22. ABOUT SECTION
==================================================*/

.about{

    background:#ffffff;

}

.about-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:var(--shadow-lg);

}

.about-content{

    flex:1;

}

.about-subtitle{

    display:inline-block;

    color:var(--primary);

    font-size:15px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:18px;

}

.about-content h2{

    font-size:44px;

    margin-bottom:25px;

}

.about-content p{

    font-size:17px;

    line-height:1.9;

    margin-bottom:30px;

}

.about-features{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-bottom:35px;

}

.about-feature{

    width:48%;

    display:flex;

    align-items:center;

    gap:12px;

}

.about-feature i{

    color:var(--success);

    font-size:18px;

}

.about-feature span{

    font-weight:600;

}
/*==================================================
ABOUT FLOATING EXPERIENCE CARD
==================================================*/

.about-image{

    position:relative;

    flex:1;

}

.experience-card{

    position:absolute;

    right:-30px;

    bottom:40px;

    width:260px;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(15px);

    border-radius:20px;

    padding:22px;

    display:flex;

    align-items:center;

    gap:18px;

    border:1px solid rgba(255,255,255,.4);

    box-shadow:var(--shadow-lg);

    animation:floating 5s ease-in-out infinite;

}

.experience-icon{

    width:65px;

    height:65px;

    border-radius:50%;

    background:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#ffffff;

    font-size:28px;

}

.experience-content h3{

    font-size:32px;

    color:var(--dark);

    margin-bottom:6px;

}

.experience-content p{

    font-size:14px;

    color:var(--text);

    line-height:1.6;

    margin:0;

}
.card-1{

    right:-35px;

    top:40px;

}

.card-2{

    left:-35px;

    bottom:80px;

}

.card-3{

    right:20px;

    bottom:-25px;

}

/*==================================================
22. TRUSTED PARTNERS
==================================================*/

.partners{

    background:#ffffff;

    padding:70px 0;

    border-top:1px solid var(--border);

    border-bottom:1px solid var(--border);

}

.partners-title{

    text-align:center;

    margin-bottom:45px;

}

.partners-title h3{

    font-size:32px;

    color:var(--dark);

    margin-bottom:12px;

}

.partners-title p{

    max-width:650px;

    margin:auto;

    color:var(--text);

}

/*==============================
Partner Logo Wrapper
==============================*/

.partner-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:30px;

}

/*==============================
Partner Card
==============================*/

.partner-card{

    width:170px;

    height:90px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:16px;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.partner-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.partner-card img{

    max-width:120px;

    max-height:45px;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.75;

    transition:var(--transition);

}

.partner-card:hover img{

    filter:grayscale(0);

    opacity:1;

}

/*==============================
Optional Badge
==============================*/

.partner-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:#EFF6FF;

    color:var(--primary);

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.partner-badge i{

    color:var(--secondary);

}

/*==================================================
23. WHY CHOOSE US
==================================================*/

.why-choose{

    background:#F8FAFC;

}

.why-wrapper{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:30px;

}

/*==============================
WHY CARD
==============================*/

.why-card{

    flex:1 1 280px;

    max-width:290px;

    background:#ffffff;

    border-radius:20px;

    padding:35px 30px;

    text-align:center;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

    border:1px solid var(--border);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

/*==============================
ICON
==============================*/

.why-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,87,255,.08);

    color:var(--primary);

    font-size:34px;

    transition:var(--transition);

}

.why-card:hover .why-icon{

    background:var(--primary);

    color:#fff;

}

.why-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:var(--dark);

}

.why-card p{

    color:var(--text);

    font-size:15px;

    line-height:1.8;

}

/*==================================================
24. SERVICES
==================================================*/

.services{

    background:#ffffff;

}

.services-wrapper{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:30px;

}

/*==================================
SERVICE CARD
==================================*/

.service-card{

    flex:1 1 320px;

    max-width:380px;

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:20px;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

/*==================================
IMAGE
==================================*/

.service-image{

    width:100%;

    height:230px;

    overflow:hidden;

}

.service-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.service-card:hover .service-image img{

    transform:scale(1.08);

}

/*==================================
CONTENT
==================================*/

.service-content{

    padding:30px;

}

.service-content h3{

    font-size:24px;

    margin-bottom:15px;

}

.service-content p{

    margin-bottom:20px;

    color:var(--text);

    line-height:1.8;

}

/*==================================
BUTTON
==================================*/

.service-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:600;

}

.service-btn i{

    transition:.3s;

}

.service-btn:hover i{

    transform:translateX(6px);

}

/*==================================================
25. COUNTRIES WE SERVE
==================================================*/

.countries{

    background:#F8FAFC;

}

.countries-wrapper{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:30px;

}

/*==================================
COUNTRY CARD
==================================*/

.country-card{

    flex:1 1 240px;

    max-width:260px;

    background:#ffffff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.country-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.country-card img{

    width:90px;

    height:90px;

    object-fit:cover;

    border-radius:50%;

    margin:0 auto 25px;

    border:5px solid #F1F5F9;

}

.country-card h3{

    font-size:22px;

    margin-bottom:12px;

    color:var(--dark);

}

.country-card p{

    font-size:15px;

    color:var(--text);

    line-height:1.7;

}

/*==================================================
26. TESTIMONIALS
==================================================*/

.testimonials{

    background:#ffffff;

}

.testimonial-wrapper{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:30px;

}

.testimonial-card{

    flex:1 1 320px;

    max-width:380px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.testimonial-rating{

    color:#FFC107;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-text{

    color:var(--text);

    line-height:1.8;

    margin-bottom:30px;

    font-style:italic;

}

.testimonial-user{

    display:flex;

    align-items:center;

    gap:15px;

}

.testimonial-user img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.testimonial-user h4{

    font-size:18px;

    margin-bottom:5px;

    color:var(--dark);

}

.testimonial-user span{

    color:var(--text);

    font-size:14px;

}
/*==================================================
27. FAQ SECTION
==================================================*/

.faq{

    background:#F8FAFC;

}

.faq-wrapper{

    max-width:900px;

    margin:0 auto;

}

.faq-item{

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:16px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.faq-item:hover{

    box-shadow:var(--shadow-md);

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 28px;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    color:var(--dark);

}

.faq-question span{

    text-align:left;

    flex:1;

}

.faq-question i{

    color:var(--primary);

    transition:.35s;

    font-size:18px;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 28px 24px;

    color:var(--text);

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:220px;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}
/*==================================================
28. CALL TO ACTION
==================================================*/

.cta{

    padding:90px 0;

    background:linear-gradient(135deg,#0057FF,#0A74FF);

}

.cta-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:24px;

    padding:60px;

}

.cta-content{

    flex:1;

}

.cta-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    background:rgba(255,255,255,.15);

    color:#ffffff;

    border-radius:30px;

    margin-bottom:20px;

    font-size:14px;

    font-weight:600;

}

.cta-badge i{

    color:#FFD54A;

}

.cta-content h2{

    font-size:44px;

    color:#ffffff;

    margin-bottom:20px;

}

.cta-content p{

    color:rgba(255,255,255,.90);

    font-size:17px;

    line-height:1.9;

    max-width:650px;

}

.cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.cta .btn-primary{

    background:#ffffff;

    color:var(--primary);

}

.cta .btn-primary:hover{

    background:#F3F6FA;

}

.cta .btn-outline{

    border:2px solid #ffffff;

    color:#ffffff;

}

.cta .btn-outline:hover{

    background:#ffffff;

    color:var(--primary);

}

/*==================================================
29. FOOTER
==================================================*/

.footer{

    background:#0F172A;

    color:#CBD5E1;

    padding:80px 0 0;

}

.footer-wrapper{

    display:flex;

    flex-wrap:wrap;

    justify-content:space-between;

    gap:50px;

}

.footer-column{

    flex:1 1 240px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer-column h3{

    color:#ffffff;

    font-size:22px;

    margin-bottom:25px;

}

.footer-column p{

    line-height:1.9;

}

.footer-column ul{

    padding:0;

}

.footer-column ul li{

    margin-bottom:15px;

    display:flex;

    align-items:center;

    gap:10px;

}

.footer-column ul li a{

    color:#CBD5E1;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#ffffff;

    padding-left:6px;

}

.footer-column i{

    color:var(--secondary);

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--primary);

}

.footer-social a i{

    color:#ffffff;

}

.footer-bottom{

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px 0;

    text-align:center;

}

.footer-bottom p{

    color:#94A3B8;

    font-size:15px;

}

/*==================================
Sticky Header
==================================*/

.header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:9999;

    transition:.35s;

}

.header.sticky{

    background:#ffffff;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.menu a.active{

    color:var(--primary);

    font-weight:600;

}

.scroll-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

}

.scroll-top.show{

    opacity:1;

    visibility:visible;

}

.scroll-top:hover{

    transform:translateY(-5px);

}

.section-title,
.service-card,
.why-card,
.country-card,
.testimonial-card,
.faq-item,
.about-wrapper,
.cta-wrapper{

    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .7s ease,
        transform .7s ease;
    will-change: opacity, transform;

}

.reveal{

    opacity: 1;
    transform: translateY(0);

}


/* ===========================
   Active Navigation
=========================== */

.navbar ul li a.active{
    color:#2563eb;
    font-weight:700;
    position:relative;
}

.navbar ul li a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;

    width:100%;
    height:3px;

    background:#2563eb;
    border-radius:20px;
}