/*==================================================
  24 THE COMPLETE SOLUTION
  Premium Corporate Website
==================================================*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/*==================================
ROOT VARIABLES
==================================*/

:root{

    --primary:#0A3D91;
    --secondary:#E63946;
    --accent:#00C2A8;

    --dark:#0F172A;
    --dark2:#1E293B;

    --white:#ffffff;
    --light:#F8FAFC;

    --gray:#64748B;
    --border:#E2E8F0;

    --gradient:linear-gradient(135deg,#0A3D91 0%,#1D4ED8 100%);
    --gradient2:linear-gradient(135deg,#E63946 0%,#ff6b6b 100%);

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

    --radius:18px;

    --transition:.35s ease;

}

/*==================================
RESET
==================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;
    margin:0;
    padding:0;

}

section{

    padding:100px 0;

}

.container{

    max-width:1320px;

}

/*==================================
TYPOGRAPHY
==================================*/

h1,h2,h3,h4,h5{

    font-family:'Poppins',sans-serif;
    font-weight:700;
    line-height:1.2;

}

.section-subtitle{

    display:inline-block;
    color:var(--secondary);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:12px;

}

.section-title{

    font-size:46px;

    margin-bottom:20px;

}

.section-description{

    max-width:720px;

    margin:auto;

    color:var(--gray);

    line-height:1.8;

}

/*==================================
BUTTONS
==================================*/

.btn{

    border-radius:50px;

    padding:15px 38px;

    font-weight:600;

    transition:.4s;

}

.btn-primary{

    background:var(--gradient);

    border:none;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(10,61,145,.35);

}

.btn-outline-light{

    border:2px solid #fff;

    color:#fff;

}

.btn-outline-light:hover{

    background:#fff;

    color:var(--primary);

}

/*==================================
PRELOADER
==================================*/

#preloader{

    position:fixed;

    width:100%;

    height:100%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

.loader{

    width:70px;

    height:70px;

    border-radius:50%;

    border:6px solid #ddd;

    border-top:6px solid var(--primary);

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

/*==================================
TOP BAR
==================================*/

.top-bar{

    background:var(--primary);

    color:#fff;

    font-size:14px;

    padding:10px 0;

}

.top-contact{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.top-contact span{

    display:flex;

    align-items:center;

    gap:8px;

}

.top-social a{

    width:36px;

    height:36px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:#fff;

    margin-left:8px;

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

}

.top-social a:hover{

    background:#fff;

    color:var(--primary);

}

/*==================================
NAVBAR
==================================*/

.navbar{

    padding:18px 0;

    background:#fff;

    position:sticky;

    top:0;

    z-index:999;

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

}

.navbar-brand img{

    height:70px;

}

.nav-link{

    font-weight:600;

    margin-left:25px;

    color:var(--dark);

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:3px;

    background:var(--secondary);

    transition:.35s;

}

.nav-link:hover::after,
.nav-link.active::after{

    width:100%;

}

.nav-link:hover{

    color:var(--primary);

}

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

.hero-section{

    position:relative;

    overflow:hidden;

    background:url("../images/hero-bg.jpg") center center/cover no-repeat;

    color:#fff;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        120deg,
        rgba(10,61,145,.92),
        rgba(15,23,42,.82)
    );

}

.hero-section .container{

    position:relative;

    z-index:2;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

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

    backdrop-filter:blur(14px);

    padding:12px 22px;

    border-radius:40px;

    margin-bottom:30px;

    font-weight:600;

}

.hero-title{

    font-size:68px;

    line-height:1.1;

    margin-bottom:30px;

}

.hero-title span{

    color:#FFD54F;

}

.hero-description{

    font-size:19px;

    line-height:1.9;

    margin-bottom:40px;

    max-width:700px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

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

.hero-card{

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    border-radius:25px;

    padding:40px;

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

    transition:.4s;

}

.hero-card:hover{

    transform:translateY(-10px);

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

}

.hero-card h3{

    color:#fff;

    margin-bottom:30px;

    font-size:30px;

}

.hero-feature{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:28px;

}

.hero-feature:last-child{

    margin-bottom:0;

}

.hero-feature i{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    font-size:24px;

    flex-shrink:0;

}

.hero-feature h6{

    color:#fff;

    margin-bottom:6px;

    font-size:18px;

}

.hero-feature p{

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

    line-height:1.7;

    margin:0;

}

/*==================================================
  HERO FLOATING STATS
==================================================*/

.hero-stats{

    position:absolute;

    bottom:-70px;

    left:0;

    width:100%;

    z-index:10;

}

.stat-box{

    background:#fff;

    border-radius:20px;

    padding:30px 15px;

    text-align:center;

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

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

}

.stat-box h2{

    color:var(--primary);

    font-size:42px;

    font-weight:800;

    margin-bottom:10px;

}

.stat-box p{

    margin:0;

    color:var(--gray);

    font-weight:600;

}

/*==================================================
  SCROLL INDICATOR
==================================================*/

.scroll-down{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:20px;

    z-index:10;

}

.scroll-down a{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    font-size:24px;

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

    animation:bounce 2s infinite;

}

.scroll-down a:hover{

    background:var(--primary);

    color:#fff;

}

@keyframes bounce{

    0%{
        transform:translateY(0);
    }

    25%{
        transform:translateY(-10px);
    }

    50%{
        transform:translateY(0);
    }

    75%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0);
    }

}

/*==================================================
  HERO BACKGROUND SHAPES
==================================================*/

.hero-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

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

    border-radius:50%;

    top:-180px;

    right:-180px;

}

.hero-section::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

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

    border-radius:50%;

    bottom:-150px;

    left:-150px;

}

/*==================================================
  HERO BUTTON EFFECTS
==================================================*/

.hero-buttons .btn{

    min-width:190px;

}

.hero-buttons .btn-primary{

    background:#fff;

    color:var(--primary);

    border:none;

}

.hero-buttons .btn-primary:hover{

    background:var(--secondary);

    color:#fff;

}

.hero-buttons .btn-outline-light{

    border:2px solid rgba(255,255,255,.8);

}

.hero-buttons .btn-outline-light:hover{

    background:#fff;

    color:var(--primary);

}

/*==================================================
  HERO RESPONSIVE
==================================================*/

@media (max-width:991px){

.hero-title{

    font-size:48px;

}

.hero-description{

    font-size:17px;

}

.hero-card{

    margin-top:60px;

}

.hero-stats{

    position:relative;

    bottom:auto;

    margin-top:60px;

}

.scroll-down{

    display:none;

}

}

@media (max-width:768px){

.hero-title{

    font-size:38px;

}

.hero-buttons{

    flex-direction:column;

}

.hero-buttons .btn{

    width:100%;

}

.hero-badge{

    font-size:14px;

}

.hero-card{

    padding:30px;

}

.stat-box{

    margin-bottom:20px;

}

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

#about-preview{

    padding:140px 0 100px;

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

#about-preview::before{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    background:rgba(10,61,145,.04);

    border-radius:50%;

    top:-180px;

    left:-180px;

}

#about-preview::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(230,57,70,.04);

    border-radius:50%;

    right:-120px;

    bottom:-120px;

}

#about-preview .container{

    position:relative;

    z-index:2;

}

/*==================================
ABOUT IMAGE
==================================*/

#about-preview img{

    width:100%;

    border-radius:25px;

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

    transition:.45s;

}

#about-preview img:hover{

    transform:scale(1.03);

}

/*==================================
ABOUT CONTENT
==================================*/

#about-preview .section-title{

    font-size:44px;

    margin-bottom:25px;

}

#about-preview p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:30px;

    font-size:17px;

}

/*==================================
ABOUT LIST
==================================*/

.about-list{

    margin:30px 0;

}

.about-list li{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    font-size:17px;

    font-weight:500;

    color:var(--dark);

}

.about-list li i{

    width:38px;

    height:38px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--gradient);

    color:#fff;

    font-size:16px;

    flex-shrink:0;

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

}

.about-list li:hover{

    transform:translateX(6px);

    transition:.3s;

}

/*==================================
ABOUT BUTTON
==================================*/

#about-preview .btn{

    margin-top:10px;

}

/*==================================
ABOUT EXPERIENCE CARD
(Optional)
==================================*/

.about-experience{

    position:absolute;

    bottom:35px;

    left:-30px;

    background:#fff;

    border-radius:20px;

    padding:20px 25px;

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

}

.about-experience h2{

    color:var(--primary);

    font-size:40px;

    margin-bottom:5px;

}

.about-experience p{

    margin:0;

    color:var(--gray);

    font-weight:600;

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px){

#about-preview{

    padding:100px 0;

}

#about-preview img{

    margin-bottom:45px;

}

#about-preview .section-title{

    font-size:36px;

}

.about-experience{

    position:relative;

    left:0;

    bottom:0;

    margin-top:30px;

}

}

@media(max-width:768px){

#about-preview .section-title{

    font-size:30px;

}

#about-preview p{

    font-size:16px;

}

.about-list li{

    font-size:16px;

}

.about-list li i{

    width:34px;

    height:34px;

    font-size:14px;

}

}/*==================================================
  SERVICES SECTION
==================================================*/

.services-section{

    position:relative;

    padding:120px 0;

    background:#f8fafc;

    overflow:hidden;

}

.services-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(10,61,145,.04);

    top:-220px;

    right:-220px;

}

.services-section::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(230,57,70,.04);

    bottom:-150px;

    left:-150px;

}

.services-section .container{

    position:relative;

    z-index:2;

}

/*==================================
SECTION TITLE
==================================*/

.services-section .section-title{

    font-size:46px;

    margin-bottom:18px;

}

.services-section .section-description{

    max-width:760px;

    color:var(--gray);

    line-height:1.9;

}

/*==================================
SERVICE CARD
==================================*/

.service-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    padding:40px 35px;

    height:100%;

    overflow:hidden;

    transition:.4s ease;

    border:1px solid rgba(0,0,0,.05);

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

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:var(--gradient);

}

.service-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(10,61,145,.03);

    right:-90px;

    bottom:-90px;

    transition:.4s;

}

/*==================================
SERVICE ICON
==================================*/

.service-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--gradient);

    color:#fff;

    font-size:34px;

    margin-bottom:28px;

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

    transition:.35s;

}

/*==================================
SERVICE TITLE
==================================*/

.service-card h4{

    font-size:24px;

    margin-bottom:18px;

    color:var(--dark);

}

/*==================================
SERVICE DESCRIPTION
==================================*/

.service-card p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:28px;

    font-size:16px;

}

/*==================================
SERVICE LINK
==================================*/

.service-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:700;

    transition:.35s;

}

.service-card a i{

    transition:.35s;

}

/*==================================
SERVICE GRID SPACING
==================================*/

.services-section .row{

    row-gap:30px;

}

/*==================================
SERVICE BADGE (OPTIONAL)
==================================*/

.service-badge{

    position:absolute;

    top:25px;

    right:25px;

    background:rgba(10,61,145,.08);

    color:var(--primary);

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

}

/*==================================
VIEW ALL BUTTON
==================================*/

.services-section .btn-primary{

    padding:16px 42px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

}/*==================================================
  SERVICE CARD HOVER EFFECTS
==================================================*/

.service-card:hover{

    transform:translateY(-15px);

    box-shadow:0 30px 70px rgba(0,0,0,.12);

    border-color:rgba(10,61,145,.12);

}

.service-card:hover::after{

    transform:scale(1.4);

    background:rgba(10,61,145,.06);

}

.service-card:hover .service-icon{

    transform:rotate(-8deg) scale(1.08);

    background:var(--gradient2);

}

.service-card:hover h4{

    color:var(--primary);

}

.service-card:hover a{

    color:var(--secondary);

}

.service-card:hover a i{

    transform:translateX(8px);

}

/*==================================
SERVICE ICON ANIMATION
==================================*/

.service-icon{

    position:relative;

    overflow:hidden;

}

.service-icon::before{

    content:"";

    position:absolute;

    top:-100%;

    left:-100%;

    width:220%;

    height:220%;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.45),
        rgba(255,255,255,0)
    );

    transform:rotate(25deg);

    transition:.7s;

}

.service-card:hover .service-icon::before{

    top:100%;

    left:100%;

}

/*==================================
LEARN MORE LINK
==================================*/

.service-card a{

    position:relative;

}

.service-card a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.35s;

}

.service-card:hover a::after{

    width:100%;

}

/*==================================
SERVICE CARD ENTRY ANIMATION
==================================*/

.service-card{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================
SERVICE BUTTON
==================================*/

.services-section .btn-primary{

    min-width:220px;

    transition:.35s;

}

.services-section .btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(10,61,145,.30);

}

/*==================================
SERVICE CARD BORDER GLOW
==================================*/

.service-card:hover{

    background:#fff;

    box-shadow:
    0 20px 60px rgba(10,61,145,.12),
    0 0 0 1px rgba(10,61,145,.06);

}

/*==================================
SERVICE ICON SHADOW
==================================*/

.service-card:hover .service-icon{

    box-shadow:

    0 20px 45px rgba(10,61,145,.30);

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:1200px){

.service-card{

    padding:35px 30px;

}

}

@media(max-width:991px){

.services-section{

    padding:90px 0;

}

.services-section .section-title{

    font-size:38px;

}

.service-card{

    padding:35px;

}

}

@media(max-width:768px){

.services-section{

    padding:70px 0;

}

.services-section .section-title{

    font-size:30px;

}

.services-section .section-description{

    font-size:16px;

}

.service-card{

    padding:30px 25px;

}

.service-icon{

    width:70px;

    height:70px;

    font-size:30px;

}

.service-card h4{

    font-size:22px;

}

.service-card p{

    font-size:15px;

}

.services-section .btn-primary{

    width:100%;

}

}

@media(max-width:576px){

.service-card{

    text-align:center;

}

.service-icon{

    margin:0 auto 25px;

}

.service-card a{

    justify-content:center;

}

}/*==================================================
  WHY CHOOSE US SECTION
==================================================*/

.why-us{

    position:relative;
    background:#ffffff;
    padding:120px 0;
    overflow:hidden;

}

.why-us::before{

    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(10,61,145,.04);
    top:-220px;
    left:-220px;

}

.why-us::after{

    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(230,57,70,.04);
    right:-150px;
    bottom:-150px;

}

.why-us .container{

    position:relative;
    z-index:2;

}

/*==================================
SECTION HEADING
==================================*/

.why-us .section-title{

    font-size:46px;
    margin-bottom:18px;

}

.why-us .section-description{

    max-width:760px;
    margin:auto;
    color:var(--gray);
    line-height:1.8;

}

/*==================================
FEATURE CARD
==================================*/

.feature-box{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    transition:.4s;

    border:1px solid rgba(0,0,0,.05);

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

    overflow:hidden;

}

.feature-box::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;

    height:5px;

    background:var(--gradient);

}

.feature-box::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(10,61,145,.04);

    right:-90px;

    bottom:-90px;

    transition:.4s;

}

/*==================================
FEATURE ICON
==================================*/

.feature-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    color:#fff;

    background:var(--gradient);

    box-shadow:0 18px 35px rgba(10,61,145,.25);

    transition:.35s;

}

/*==================================
FEATURE TITLE
==================================*/

.feature-box h5{

    font-size:24px;

    margin-bottom:15px;

    color:var(--dark);

}

/*==================================
FEATURE DESCRIPTION
==================================*/

.feature-box p{

    color:var(--gray);

    line-height:1.8;

    margin:0;

    font-size:16px;

}

/*==================================
HOVER EFFECTS
==================================*/

.feature-box:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.feature-box:hover::after{

    transform:scale(1.4);

}

.feature-box:hover .feature-icon{

    background:var(--gradient2);

    transform:rotate(-10deg) scale(1.08);

}

.feature-box:hover h5{

    color:var(--primary);

}

/*==================================
ICON SHINE
==================================*/

.feature-icon{

    position:relative;

    overflow:hidden;

}

.feature-icon::before{

    content:"";

    position:absolute;

    width:220%;

    height:220%;

    top:-100%;

    left:-100%;

    background:linear-gradient(
    135deg,
    rgba(255,255,255,.45),
    rgba(255,255,255,0)
    );

    transform:rotate(25deg);

    transition:.8s;

}

.feature-box:hover .feature-icon::before{

    top:100%;

    left:100%;

}

/*==================================
ENTRY ANIMATION
==================================*/

.feature-box{

    animation:fadeFeature .8s ease both;

}

@keyframes fadeFeature{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px){

.why-us{

    padding:90px 0;

}

.why-us .section-title{

    font-size:38px;

}

.feature-box{

    padding:35px 25px;

}

}

@media(max-width:768px){

.why-us{

    padding:70px 0;

}

.why-us .section-title{

    font-size:30px;

}

.feature-icon{

    width:72px;

    height:72px;

    font-size:28px;

}

.feature-box h5{

    font-size:21px;

}

.feature-box p{

    font-size:15px;

}

}/*==================================================
  COUNTER SECTION
==================================================*/

.counter-section{

    position:relative;

    padding:90px 0;

    background:linear-gradient(
        135deg,
        #0A3D91 0%,
        #1E40AF 100%
    );

    overflow:hidden;

}

.counter-section::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    border-radius:50%;

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

    top:-260px;

    left:-220px;

}

.counter-section::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

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

    right:-180px;

    bottom:-180px;

}

.counter-section .container{

    position:relative;

    z-index:2;

}

/*==================================
COUNTER BOX
==================================*/

.counter-box{

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

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:22px;

    padding:40px 20px;

    transition:.35s;

    height:100%;

}

.counter-box:hover{

    transform:translateY(-10px);

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

    box-shadow:0 25px 55px rgba(0,0,0,.20);

}

/*==================================
COUNTER NUMBER
==================================*/

.counter-box h2{

    display:inline-block;

    font-size:58px;

    font-weight:800;

    color:#ffffff;

    margin:0;

    line-height:1;

}

.counter-box span{

    font-size:42px;

    color:#FFD54F;

    font-weight:700;

    margin-left:4px;

}

.counter-box p{

    margin-top:18px;

    margin-bottom:0;

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

    font-size:17px;

    font-weight:600;

    letter-spacing:.3px;

}

/*==================================
ICON (OPTIONAL)
==================================*/

.counter-icon{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

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

    color:#fff;

    font-size:30px;

}

/*==================================
ANIMATION
==================================*/

.counter-box{

    animation:counterFade .8s ease both;

}

@keyframes counterFade{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px){

.counter-section{

    padding:70px 0;

}

.counter-box{

    margin-bottom:25px;

}

.counter-box h2{

    font-size:48px;

}

.counter-box span{

    font-size:34px;

}

}

@media(max-width:768px){

.counter-section{

    padding:60px 0;

}

.counter-box{

    padding:30px 15px;

}

.counter-box h2{

    font-size:40px;

}

.counter-box span{

    font-size:28px;

}

.counter-box p{

    font-size:15px;

}

}/*==================================================
  COUNTRIES WE SERVE
==================================================*/

.countries{

    position:relative;

    padding:120px 0;

    background:#f8fafc;

    overflow:hidden;

}

.countries::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(10,61,145,.04);

    top:-180px;

    right:-180px;

}

.countries::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(230,57,70,.04);

    left:-140px;

    bottom:-140px;

}

.countries .container{

    position:relative;

    z-index:2;

}

/*==================================
COUNTRY CARD
==================================*/

.country-card{

    background:#ffffff;

    border-radius:24px;

    padding:45px 25px;

    text-align:center;

    height:100%;

    transition:.4s ease;

    border:1px solid rgba(0,0,0,.05);

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

    position:relative;

    overflow:hidden;

}

.country-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:var(--gradient);

}

.country-card::after{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    border-radius:50%;

    background:rgba(10,61,145,.03);

    right:-90px;

    bottom:-90px;

    transition:.35s;

}

/*==================================
FLAG
==================================*/

.country-flag{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--gradient);

    color:#fff;

    font-size:42px;

    box-shadow:0 18px 35px rgba(10,61,145,.25);

    transition:.35s;

}

/*==================================
TITLE
==================================*/

.country-card h4{

    font-size:24px;

    margin-bottom:12px;

    color:var(--dark);

}

/*==================================
DESCRIPTION
==================================*/

.country-card p{

    margin:0;

    color:var(--gray);

    font-size:16px;

    line-height:1.7;

}

/*==================================
HOVER EFFECTS
==================================*/

.country-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.country-card:hover::after{

    transform:scale(1.5);

}

.country-card:hover .country-flag{

    background:var(--gradient2);

    transform:scale(1.08) rotate(-8deg);

}

.country-card:hover h4{

    color:var(--primary);

}

/*==================================
FLAG SHINE
==================================*/

.country-flag{

    position:relative;

    overflow:hidden;

}

.country-flag::before{

    content:"";

    position:absolute;

    width:220%;

    height:220%;

    top:-100%;

    left:-100%;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.45),
        rgba(255,255,255,0)
    );

    transform:rotate(25deg);

    transition:.8s;

}

.country-card:hover .country-flag::before{

    top:100%;

    left:100%;

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px){

.countries{

    padding:90px 0;

}

.country-card{

    margin-bottom:25px;

}

}

@media(max-width:768px){

.countries{

    padding:70px 0;

}

.country-flag{

    width:75px;

    height:75px;

    font-size:34px;

}

.country-card h4{

    font-size:20px;

}

.country-card p{

    font-size:15px;

}

}/*==================================================
  CALL TO ACTION (CTA)
==================================================*/

.cta-section{

    position:relative;

    padding:100px 0;

    background:linear-gradient(
        135deg,
        #0A3D91 0%,
        #1D4ED8 100%
    );

    overflow:hidden;

}

/* Decorative Shapes */

.cta-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

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

    top:-250px;

    left:-180px;

}

.cta-section::after{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    border-radius:50%;

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

    bottom:-180px;

    right:-180px;

}

.cta-section .container{

    position:relative;

    z-index:2;

}

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

.cta-section h2{

    color:#ffffff;

    font-size:48px;

    font-weight:700;

    margin-bottom:25px;

    line-height:1.2;

}

.cta-section p{

    max-width:760px;

    margin:0 auto 40px;

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

    font-size:18px;

    line-height:1.9;

}

/*==================================
BUTTONS
==================================*/

.cta-section .btn{

    min-width:220px;

    padding:16px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.cta-section .btn-light{

    background:#ffffff;

    color:var(--primary);

    border:none;

}

.cta-section .btn-light:hover{

    background:var(--secondary);

    color:#ffffff;

    transform:translateY(-5px);

}

.cta-section .btn-outline-light{

    border:2px solid rgba(255,255,255,.85);

    color:#ffffff;

}

.cta-section .btn-outline-light:hover{

    background:#ffffff;

    color:var(--primary);

    transform:translateY(-5px);

}

/*==================================
GLASS PANEL
==================================*/

.cta-section .row{

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

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:30px;

    padding:60px 40px;

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

}

/*==================================
BUTTON SPACING
==================================*/

.cta-section .btn+.btn{

    margin-left:18px;

}

/*==================================
HOVER EFFECT
==================================*/

.cta-section .row:hover{

    transform:translateY(-6px);

    transition:.35s;

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px){

.cta-section{

    padding:80px 0;

}

.cta-section h2{

    font-size:38px;

}

.cta-section p{

    font-size:17px;

}

}

@media(max-width:768px){

.cta-section{

    padding:60px 0;

}

.cta-section .row{

    padding:40px 25px;

}

.cta-section h2{

    font-size:30px;

}

.cta-section p{

    font-size:16px;

}

.cta-section .btn{

    width:100%;

    margin:10px 0;

}

.cta-section .btn+.btn{

    margin-left:0;

}

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

.footer{
    position: relative;
    background: #0F172A;
    color: rgba(255,255,255,.80);
    padding: 90px 0 0;
    overflow: hidden;
}

.footer::before{
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
}

.footer::after{
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,.02);
}

.footer .container{
    position: relative;
    z-index: 2;
}

/*==================================
LOGO
==================================*/

.footer-logo{
    max-height: 70px;
}

.footer-text{
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    font-size: 15px;
}

/*==================================
HEADINGS
==================================*/

.footer h5{
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
}

.footer h5::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 45px;
    height: 3px;
    background: var(--secondary);
    border-radius: 10px;
}

/*==================================
LINKS
==================================*/

.footer-links li{
    margin-bottom: 14px;
}

.footer-links li a{
    color: rgba(255,255,255,.75);
    transition: .3s;
}

.footer-links li a:hover{
    color: #ffffff;
    padding-left: 8px;
}

.footer-links li{
    color: rgba(255,255,255,.75);
}

/*==================================
CONTACT
==================================*/

.footer-contact li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.80);
}

.footer-contact i{
    color: var(--secondary);
    font-size: 18px;
    margin-top: 3px;
    min-width: 20px;
}

/*==================================
SOCIAL
==================================*/

.footer-social{
    display: flex;
    gap: 12px;
}

.footer-social a{
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #ffffff;
    transition: .35s;
}

.footer-social a:hover{
    background: var(--secondary);
    transform: translateY(-5px);
}

/*==================================
DIVIDER
==================================*/

.footer hr{
    margin: 60px 0 30px;
    border-color: rgba(255,255,255,.08);
}

/*==================================
COPYRIGHT
==================================*/

.copyright,
.developer{
    color: rgba(255,255,255,.60);
    font-size: 15px;
    margin-bottom: 25px;
}

.developer{
    text-align: right;
}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px){

.footer{
    padding-top: 70px;
}

.footer .col-lg-2,
.footer .col-lg-3,
.footer .col-lg-4{
    margin-bottom: 35px;
}

.developer{
    text-align: left;
}

}

@media(max-width:768px){

.footer{
    padding-top: 60px;
}

.footer h5{
    font-size: 20px;
}

.footer-logo{
    max-height: 60px;
}

.footer-social{
    flex-wrap: wrap;
}

.footer-contact li{
    font-size: 15px;
}

.copyright,
.developer{
    text-align: center;
}

}/*==================================================
  BACK TO TOP BUTTON
==================================================*/

#backToTop{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--gradient);

    color:#fff;

    font-size:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

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

    opacity:0;

    visibility:hidden;

    transform:translateY(30px);

    transition:.35s;

    z-index:999;

}

#backToTop.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

#backToTop:hover{

    transform:translateY(-6px);

    background:var(--gradient2);

}

/*==================================
SELECTION
==================================*/

::selection{

    background:var(--primary);

    color:#fff;

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f5f9;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#072f6b;

}

/*==================================
UTILITY CLASSES
==================================*/

.shadow-custom{

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

}

.rounded-custom{

    border-radius:25px;

}

.bg-gradient{

    background:var(--gradient);

}

.bg-light-custom{

    background:#f8fafc;

}

.text-primary-custom{

    color:var(--primary);

}

.text-secondary-custom{

    color:var(--secondary);

}

/*==================================
IMAGE EFFECTS
==================================*/

.img-hover{

    transition:.4s;

}

.img-hover:hover{

    transform:scale(1.05);

}

/*==================================
SMOOTH FADE
==================================*/

.fade-in{

    animation:fadeIn .8s ease;

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

/*==================================
FLOAT ANIMATION
==================================*/

.float{

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

}

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================
SECTION SPACING
==================================*/

section{

    scroll-margin-top:100px;

}

/*==================================
FOCUS STATES
==================================*/

input:focus,
textarea:focus,
select:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 .2rem rgba(10,61,145,.15);

}

/*==================================
RESPONSIVE FIXES
==================================*/

@media(max-width:991px){

.navbar-brand img{

    height:60px;

}

.section-title{

    font-size:36px;

}

section{

    padding:80px 0;

}

}

@media(max-width:768px){

.section-title{

    font-size:30px;

}

.section-description{

    font-size:16px;

}

.hero-title{

    font-size:36px;

}

.hero-description{

    font-size:16px;

}

.top-contact{

    justify-content:center;

    gap:10px;

}

.top-social{

    margin-top:10px;

    text-align:center;

}

#backToTop{

    right:20px;

    bottom:20px;

    width:50px;

    height:50px;

}

}

@media(max-width:576px){

.container{

    padding-left:18px;

    padding-right:18px;

}

.btn{

    width:100%;

}

.hero-buttons{

    gap:15px;

}

}

/*==================================================
  END OF STYLE.CSS
==================================================*/
/* ==========================
   Floating WhatsApp Button
========================== */

.whatsapp-float{
    position: fixed !important;
    bottom: 30px;
    right: 30px;

    width: 70px;
    height: 70px;

    background: #25D366;

    border-radius: 50%;

    display: flex !important;
    align-items: center;
    justify-content: center;

    color: #ffffff !important;

    font-size: 40px !important;

    text-decoration: none;

    box-shadow: 0 10px 30px rgba(37,211,102,.45);

    z-index: 99999;

    transition: .3s ease;
}

.whatsapp-float:hover{
    transform: scale(1.12);
    color: #ffffff;
    background: #1EBE5D;
}

.whatsapp-float i{
    font-size: 40px !important;
    line-height: 1;
}
