/* =====================================================
   GLOBAL VARIABLES
===================================================== */

:root{

    --primary:#0B1F3A;
    --secondary:#102C57;
    --accent:#F59E0B;
    --accent-dark:#D97706;

    --white:#ffffff;
    --light:#F8FAFC;
    --gray:#94A3B8;
    --dark:#1E293B;

    --glass-bg:rgba(255,255,255,.08);
    --glass-border:rgba(255,255,255,.15);

    --shadow-sm:0 10px 30px rgba(0,0,0,.08);
    --shadow-md:0 15px 40px rgba(0,0,0,.12);
    --shadow-lg:0 20px 60px rgba(0,0,0,.18);

    --radius:18px;
    --radius-lg:25px;

    --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;
    line-height:1.7;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,h2,h3,h4,h5,h6{
    font-family:'Poppins',sans-serif;
    font-weight:700;
    color:var(--primary);
    margin-bottom:15px;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

img{
    max-width:100%;
    display:block;
}

section{
    position:relative;
}

.section-tag{
    display:inline-block;
    padding:10px 18px;
    background:rgba(245,158,11,.12);
    color:var(--accent);
    font-weight:600;
    border-radius:50px;
    font-size:.95rem;
}

.section-title{
    font-size:clamp(2rem,4vw,3rem);
    font-weight:800;
    margin-top:18px;
}

.section-description{
    color:#64748B;
    font-size:1.05rem;
    max-width:750px;
    margin:auto;
}

/* =====================================================
   CUSTOM BUTTONS
===================================================== */

.btn-warning{
    background:var(--accent);
    border:none;
    color:#fff;
    font-weight:600;
    transition:var(--transition);
}

.btn-warning:hover{
    background:var(--accent-dark);
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(245,158,11,.35);
}

.btn-outline-light:hover{
    transform:translateY(-3px);
}

/* =====================================================
   SCROLL PROGRESS BAR
===================================================== */

.scroll-progress{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:4px;
    z-index:99999;
    background:linear-gradient(
        90deg,
        var(--accent),
        #FFD166
    );
}

/* =====================================================
   GLASSMORPHISM UTILITIES
===================================================== */

.glass{
    background:var(--glass-bg);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
    border:1px solid var(--glass-border);
}

/* =====================================================
   NAVBAR
===================================================== */

.custom-navbar{
    padding:18px 0;
    transition:all .4s ease;
    z-index:9999;
}

.custom-navbar.scrolled{
    background:rgba(11,31,58,.95);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    padding:12px 0;
}

.navbar-brand{
    font-size:1.4rem;
    letter-spacing:.5px;
}

.nav-link{
    color:#fff !important;
    font-weight:500;
    margin:0 10px;
    position:relative;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:var(--accent);
    transition:var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.nav-link:hover{
    color:#fff !important;
}

.navbar-toggler{
    color:#fff;
}

/* =====================================================
   HERO SECTION
===================================================== */

.hero-section{

    min-height:100vh;
    display:flex;
    align-items:center;

    background:
    linear-gradient(
        135deg,
        rgba(11,31,58,.97),
        rgba(16,44,87,.92)
    ),
    url('../images/hero-bg.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;
    padding-top:120px;
    padding-bottom:100px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    padding:12px 20px;

    border-radius:50px;

    font-weight:600;

    color:#fff;
}

.hero-title{

    font-size:clamp(2.8rem,5vw,4.8rem);

    font-weight:800;

    line-height:1.15;

    color:#fff;

    margin-top:30px;
}

.hero-subtitle{

    font-size:1.35rem;

    margin-top:25px;

    color:#E2E8F0;
}

.hero-description{

    color:#CBD5E1;

    margin-top:20px;

    font-size:1.05rem;

    max-width:650px;
}

/* =====================================================
   TRUST BADGES
===================================================== */

.trust-badges{

    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.badge-item{

    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.12);

    color:#fff;

    font-size:.95rem;
}

.badge-item i{
    font-size:1rem;
}

/* =====================================================
   HERO IMAGE
===================================================== */

.hero-image-wrapper{
    position:relative;
}

.hero-image{

    border-radius:30px;

    box-shadow:0 25px 70px rgba(0,0,0,.35);

    animation:floatImage 6s ease-in-out infinite;
}

/* =====================================================
   FLOATING CARDS
===================================================== */

.floating-card{

    position:absolute;

    min-width:180px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    padding:18px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    color:#fff;

    animation:floatingCard 5s ease-in-out infinite;
}

.floating-card h4{
    color:#fff;
    margin-bottom:5px;
    font-weight:800;
}

.floating-card p{
    margin:0;
    color:#E2E8F0;
    font-size:.9rem;
}

/* Card Positions */

.card-1{
    top:-20px;
    left:-40px;
}

.card-2{
    top:20%;
    right:-50px;
    animation-delay:1s;
}

.card-3{
    bottom:18%;
    left:-50px;
    animation-delay:2s;
}

.card-4{
    bottom:-20px;
    right:-20px;
    animation-delay:3s;
}

/* =====================================================
   HERO SHAPES
===================================================== */

.hero-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:.25;
}
@media (max-width:768px){


    .hero-shape{
        display:none !important;
    }

}
.shape-1{
    width:350px;
    height:350px;
    background:var(--accent);
    top:-100px;
    left:-120px;
}

.shape-2{
    width:280px;
    height:280px;
    background:#3B82F6;
    right:-100px;
    top:15%;
}

.shape-3{
    width:220px;
    height:220px;
    background:#8B5CF6;
    bottom:-80px;
    left:40%;
}

/* =====================================================
   SCROLL INDICATOR
===================================================== */

.scroll-indicator{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:25px;
}

.scroll-indicator span{

    width:32px;
    height:55px;

    display:block;

    border:2px solid rgba(255,255,255,.6);

    border-radius:50px;

    position:relative;
}

.scroll-indicator span::before{

    content:"";

    width:6px;
    height:10px;

    background:#fff;

    border-radius:50px;

    position:absolute;

    top:8px;
    left:50%;

    transform:translateX(-50%);

    animation:scrollWheel 2s infinite;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }
}

@keyframes floatingCard{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }
}

@keyframes scrollWheel{

    0%{
        opacity:0;
        transform:translate(-50%,0);
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0;
        transform:translate(-50%,20px);
    }
}

/* =====================================================
   HERO RESPONSIVE
===================================================== */

@media(max-width:991px){

    .hero-section{
        text-align:center;
    }

    .trust-badges{
        justify-content:center;
    }

    .hero-image-wrapper{
        margin-top:60px;
    }

    .card-1{
        left:0;
    }

    .card-2{
        right:0;
    }

    .card-3{
        left:0;
    }

    .card-4{
        right:0;
    }
}

@media(max-width:768px){

    .hero-title{
        font-size:2.5rem;
    }

    .hero-subtitle{
        font-size:1.1rem;
    }

    .floating-card{
        display:none !important;
    }

    .floating-card h4{
        font-size:1rem;
    }

    .floating-card p{
        font-size:.75rem;
    }
}
@media (max-width:768px){

.hero-image-wrapper{
    padding:0 15px;
}

.hero-image{
    width:100%;
}

}
/* =====================================================
   STATISTICS SECTION
===================================================== */

.statistics-section{
    padding:100px 0;
    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );
}

.stats-card{

    position:relative;

    padding:40px 25px;

    border-radius:25px;

    text-align:center;

    background:rgba(255,255,255,.7);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.8);

    box-shadow:0 15px 40px rgba(15,23,42,.08);

    transition:all .4s ease;

    overflow:hidden;
}

.stats-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(245,158,11,.05),
        rgba(59,130,246,.04)
    );

    opacity:0;

    transition:.4s;
}

.stats-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(15,23,42,.15);
}

.stats-card:hover::before{
    opacity:1;
}

.stats-icon{

    width:75px;
    height:75px;

    margin:auto auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:1.6rem;
}

.stats-card h2{

    font-size:3rem;

    font-weight:800;

    color:var(--primary);

    margin-bottom:10px;
}

.stats-card p{

    margin:0;

    color:#64748B;

    font-weight:500;
}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section{
    padding:120px 0;
    background:#fff;
}

.about-image{

    position:relative;
}

.about-image img{

    border-radius:30px;

    box-shadow:0 30px 70px rgba(0,0,0,.15);

    transition:.4s ease;
}

.about-image:hover img{
    transform:translateY(-8px);
}

.about-image::after{

    content:"";

    position:absolute;

    width:140px;
    height:140px;

    background:var(--accent);

    border-radius:50%;

    top:-35px;
    right:-35px;

    opacity:.15;

    z-index:-1;
}

.feature-list{

    list-style:none;

    padding:0;

    margin:0;
}

.feature-list li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:16px;

    font-weight:500;

    color:#334155;
}

.feature-list li i{

    width:30px;
    height:30px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(245,158,11,.12);

    color:var(--accent);

    font-size:.8rem;
}

/* =====================================================
   WHY CHOOSE US SECTION
===================================================== */

.why-choose-section{

    padding:120px 0;

    position:relative;

    overflow:hidden;
}

.why-card{

    position:relative;

    background:#fff;

    border-radius:25px;

    padding:35px;

    overflow:hidden;

    transition:all .4s ease;

    box-shadow:0 15px 35px rgba(15,23,42,.06);

    border:1px solid rgba(226,232,240,.8);
}

.why-card::before{

    content:"";

    position:absolute;

    inset:0;

    padding:1px;

    border-radius:25px;

    background:linear-gradient(
        135deg,
        var(--accent),
        #FFD166,
        #3B82F6
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    opacity:0;

    transition:.4s;
}

.why-card:hover::before{
    opacity:1;
}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(15,23,42,.15);
}

.why-icon{

    width:80px;
    height:80px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:1.8rem;

    margin-bottom:25px;
}

.why-card h4{

    font-size:1.3rem;

    margin-bottom:15px;
}

.why-card p{

    color:#64748B;

    margin:0;
}

/* =====================================================
   RECRUITMENT PROCESS SECTION
===================================================== */

.process-section{

    padding:120px 0;

    background:#fff;

    overflow:hidden;
}

.timeline-wrapper{
    position:relative;
}

.timeline-line{

    position:absolute;

    top:85px;

    left:5%;

    width:90%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--accent),
        #FFD166,
        #3B82F6
    );

    border-radius:10px;

    z-index:0;
}

.process-card{

    position:relative;

    z-index:1;

    text-align:center;

    background:#fff;

    border-radius:25px;

    padding:30px 20px;

    transition:.4s;

    border:1px solid rgba(226,232,240,.8);

    box-shadow:0 15px 35px rgba(15,23,42,.06);

    height:100%;
}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(15,23,42,.12);
}

.step-number{

    width:55px;
    height:55px;

    margin:auto auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--accent);

    color:#fff;

    font-weight:700;
}

.process-icon{

    width:80px;
    height:80px;

    margin:auto auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:1.8rem;
}

.process-card h5{

    font-size:1.1rem;

    margin-bottom:12px;
}

.process-card p{

    font-size:.92rem;

    color:#64748B;

    margin:0;
}

/* =====================================================
   COUNTRIES SECTION
===================================================== */

.countries-section{

    padding:120px 0;
}

.country-card{

    background:#fff;

    text-align:center;

    padding:40px 25px;

    border-radius:25px;

    transition:.4s;

    border:1px solid rgba(226,232,240,.8);

    box-shadow:0 15px 35px rgba(15,23,42,.05);
}

.country-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(15,23,42,.12);
}

.country-card .flag{

    font-size:4rem;

    margin-bottom:15px;
}

.country-card h5{

    margin:0;

    font-size:1.1rem;
}

/* =====================================================
   INDUSTRIES SECTION
===================================================== */

.industries-section{

    padding:120px 0;

    background:#fff;
}

.industry-card{

    text-align:center;

    background:#fff;

    border-radius:25px;

    padding:40px 20px;

    border:1px solid rgba(226,232,240,.8);

    box-shadow:0 15px 35px rgba(15,23,42,.05);

    transition:.4s;

    height:100%;
}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(15,23,42,.12);
}

.industry-card i{

    width:85px;
    height:85px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 20px;

    border-radius:50%;

    font-size:2rem;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;
}

.industry-card h5{
    margin:0;
}

/* =====================================================
   SHARED HOVER EFFECT
===================================================== */

.country-card,
.industry-card,
.why-card,
.process-card,
.stats-card{

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

/* =====================================================
   RESPONSIVE TIMELINE
===================================================== */

@media(max-width:991px){

    .timeline-line{
        display:none;
    }

    .process-card{
        margin-bottom:20px;
    }
}

@media(max-width:768px){

    .statistics-section,
    .about-section,
    .why-choose-section,
    .process-section,
    .countries-section,
    .industries-section{
        padding:80px 0;
    }

    .stats-card h2{
        font-size:2.3rem;
    }

    .country-card .flag{
        font-size:3rem;
    }

    .why-card,
    .industry-card,
    .country-card{
        padding:30px 20px;
    }

    .process-icon{
        width:65px;
        height:65px;
        font-size:1.4rem;
    }
}
/* =====================================================
   CLIENTS / EMPLOYERS LOGO SECTION
===================================================== */

.clients-section{
    padding:120px 0;
    background:#f8fafc;
}

.logo-card{

    background:#fff;

    padding:30px;

    height:130px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    border:1px solid rgba(226,232,240,.8);

    box-shadow:0 15px 35px rgba(15,23,42,.05);

    transition:all .35s ease;
}

.logo-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(15,23,42,.12);
}

.logo-card img{

    max-height:60px;

    width:auto;

    filter:grayscale(100%);

    opacity:.7;

    transition:.35s ease;
}

.logo-card:hover img{

    filter:grayscale(0%);

    opacity:1;
}

/* =====================================================
   TESTIMONIAL SECTION
===================================================== */

.testimonial-section{

    padding:120px 0;

    background:#fff;

    overflow:hidden;
}

.testimonialSwiper{
    padding-bottom:60px;
}

.testimonial-card{

    position:relative;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.9);

    border-radius:30px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 20px 50px rgba(15,23,42,.08);

    transition:.35s ease;

    height:100%;
}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(15,23,42,.15);
}

.testimonial-avatar{

    width:90px;
    height:90px;

    object-fit:cover;

    border-radius:50%;

    margin:0 auto 20px;

    border:4px solid rgba(245,158,11,.25);
}

.testimonial-card h5{

    margin-bottom:6px;

    font-weight:700;
}

.designation{

    display:block;

    color:#64748B;

    margin-bottom:15px;

    font-size:.95rem;
}

.rating{

    color:#F59E0B;

    letter-spacing:3px;

    font-size:1.1rem;

    margin-bottom:18px;
}

.testimonial-card p{

    color:#475569;

    margin:0;

    line-height:1.8;
}

/* Swiper Navigation */

.swiper-button-next,
.swiper-button-prev{

    width:50px;
    height:50px;

    background:#fff;

    border-radius:50%;

    box-shadow:0 10px 25px rgba(15,23,42,.12);

    color:var(--primary);

    transition:.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{

    background:var(--accent);

    color:#fff;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:18px;
    font-weight:700;
}

/* Swiper Pagination */

.swiper-pagination-bullet{

    width:12px;
    height:12px;

    background:#CBD5E1;

    opacity:1;
}

.swiper-pagination-bullet-active{

    background:var(--accent);

    width:30px;

    border-radius:20px;
}

/* =====================================================
   CTA SECTION
===================================================== */

.cta-section{

    position:relative;

    padding:140px 0;

    background:
    url('../images/cta-bg.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;
}

.cta-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(11,31,58,.92),
        rgba(16,44,87,.85)
    );
}

.cta-section .container{
    position:relative;
    z-index:2;
}

.cta-badge{

    display:inline-block;

    padding:12px 20px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    color:#fff;

    font-weight:600;

    backdrop-filter:blur(10px);
}

.cta-title{

    font-size:clamp(2.4rem,5vw,4rem);

    color:#fff;

    font-weight:800;
}

.cta-subtitle{

    color:#E2E8F0;

    font-size:1.3rem;

    margin-top:15px;
}

.cta-description{

    color:#CBD5E1;

    max-width:700px;

    margin:20px auto 0;
}

.cta-section .btn{

    min-width:220px;

    font-weight:700;

    transition:.35s ease;
}

.cta-section .btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(245,158,11,.35);
}

/* Animated Background Elements */

.cta-section::before{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:rgba(245,158,11,.12);

    top:-100px;
    left:-100px;

    filter:blur(80px);
}

.cta-section::after{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(59,130,246,.12);

    bottom:-100px;
    right:-100px;

    filter:blur(80px);
}

/* =====================================================
   FOOTER
===================================================== */

.footer-section{

    background:var(--primary);

    color:#CBD5E1;

    padding-top:90px;

    padding-bottom:30px;
}

.footer-title{

    color:#fff;

    margin-bottom:25px;

    font-size:1.3rem;
}

.footer-section p{

    color:#CBD5E1;
}

.footer-links{

    list-style:none;

    padding:0;
    margin:0;
}

.footer-links li{

    margin-bottom:12px;
}

.footer-links a{

    color:#CBD5E1;

    transition:.3s ease;
}

.footer-links a:hover{

    color:var(--accent);

    padding-left:5px;
}

.footer-contact{

    list-style:none;

    padding:0;
    margin:0;
}

.footer-contact li{

    display:flex;

    gap:12px;

    margin-bottom:16px;

    color:#CBD5E1;
}

.footer-contact i{

    color:var(--accent);

    margin-top:4px;
}

/* Social Icons */

.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;
}

.footer-social a{

    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s ease;
}

.footer-social a:hover{

    background:var(--accent);

    transform:translateY(-5px);
}

/* Divider */

.footer-divider{

    margin:50px 0 25px;

    border-color:rgba(255,255,255,.12);
}

/* Bottom Footer */

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;
}

.footer-bottom p{

    color:#94A3B8;

    font-size:.95rem;
}

/* =====================================================
   GLASSMORPHISM HELPERS
===================================================== */

.glass-card{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.glass-dark{

    background:rgba(11,31,58,.65);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);
}

/* =====================================================
   UTILITIES
===================================================== */

.text-gradient{

    background:
    linear-gradient(
        90deg,
        var(--accent),
        #FFD166
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.shadow-soft{
    box-shadow:0 15px 40px rgba(15,23,42,.08);
}

.rounded-xl{
    border-radius:30px;
}

.bg-light-custom{
    background:#F8FAFC;
}

/* =====================================================
   CUSTOM SCROLLBAR
===================================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#F1F5F9;
}

::-webkit-scrollbar-thumb{

    background:var(--accent);

    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--accent-dark);
}

/* =====================================================
   EXTRA ANIMATIONS
===================================================== */

@keyframes floatY{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }
}

.float-animation{
    animation:floatY 4s ease-in-out infinite;
}

@keyframes pulseGlow{

    0%{
        box-shadow:0 0 0 0 rgba(245,158,11,.4);
    }

    70%{
        box-shadow:0 0 0 20px rgba(245,158,11,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(245,158,11,0);
    }
}

.pulse-glow{
    animation:pulseGlow 2s infinite;
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media(max-width:1199px){

    .cta-title{
        font-size:3rem;
    }
}

@media(max-width:991px){

    .clients-section,
    .testimonial-section,
    .cta-section{
        padding:90px 0;
    }

    .footer-bottom{
        text-align:center;
        justify-content:center;
    }

    .swiper-button-next,
    .swiper-button-prev{
        display:none;
    }
}

@media(max-width:768px){

    .clients-section,
    .testimonial-section,
    .cta-section,
    .footer-section{
        padding-top:80px;
    }

    .testimonial-card{
        padding:30px 20px;
    }

    .cta-title{
        font-size:2.3rem;
    }

    .cta-subtitle{
        font-size:1.05rem;
    }

    .footer-title{
        margin-bottom:15px;
    }

    .logo-card{
        height:110px;
        padding:20px;
    }

    .logo-card img{
        max-height:45px;
    }
}

@media(max-width:576px){

    .footer-social{
        justify-content:center;
    }

    .footer-contact li{
        font-size:.95rem;
    }

    .cta-section .btn{
        width:100%;
        max-width:280px;
    }

    .testimonial-avatar{
        width:75px;
        height:75px;
    }

    .rating{
        letter-spacing:2px;
    }
}

/* =====================================================
   END OF FILE
===================================================== */
/* =========================================
   ABOUT PAGE HERO
========================================= */

.about-page-banner{

    position:relative;

    padding:180px 0 120px;

    background:
    url('../images/about-banner.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.banner-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(11,31,58,.92),
        rgba(16,44,87,.88)
    );
}

.about-page-banner .container{
    position:relative;
    z-index:2;
}

.breadcrumb-item + .breadcrumb-item::before{
    color:#fff;
}
/* =========================================
   ABOUT PAGE EXTRA SECTIONS
========================================= */

.mission-card,
.vision-card{

    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
    border:1px solid rgba(226,232,240,.8);
    transition:.35s ease;
}

.mission-card:hover,
.vision-card:hover{
    transform:translateY(-8px);
}

.mission-icon,
.vision-icon{

    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;
    font-size:2rem;
    margin-bottom:20px;
}

.director-signature h5{
    color:var(--primary);
    font-weight:700;
}

.director-signature span{
    color:#64748B;
}


/* =========================================
   CERTIFICATES
========================================= */

.certificate-card{

    background:#fff;

    padding:20px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 15px 35px rgba(15,23,42,.06);

    transition:.35s ease;
}

.certificate-card:hover{

    transform:translateY(-8px);
}

.certificate-card img{

    width:100%;


    object-fit:cover;
}

/* =========================================
   MOBILE TIMELINE
========================================= */

@media(max-width:768px){

    .timeline-wrapper::before{
        left:45px;
    }

    .timeline-item{
        gap:20px;
    }

    .timeline-year{

        min-width:70px;
        height:70px;

        font-size:1rem;
    }
}
/* =========================================
   TESTIMONIALS
========================================= */

.testimonial-card{

    background:rgba(255,255,255,.75);
    backdrop-filter:blur(12px);

    padding:30px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

    height:100%;
}

.testimonial-user{

    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-user img{

    width:70px;
    height:70px;

    border-radius:50%;
    object-fit:cover;
}

.rating i{
    color:#f59e0b;
}

/* =========================================
   CTA SECTION
========================================= */

.cta-section{

    padding:120px 0;

    background:url('../images/cta-bg.jpg');
    background-size:cover;
    background-position:center;

    position:relative;
}

.cta-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        rgba(11,31,58,.92),
        rgba(16,44,87,.85)
    );
}

/* =========================================
   FOOTER
========================================= */

.footer-section{

    background:#081b33;

    color:#cbd5e1;

    padding:80px 0 30px;
}

.footer-title{

    color:#fff;

    margin-bottom:25px;

    font-weight:700;
}

.footer-links{

    list-style:none;
    padding:0;
}

.footer-links li{

    margin-bottom:12px;
}

.footer-links a{

    color:#cbd5e1;
    text-decoration:none;

    transition:.3s;
}

.footer-links a:hover{

    color:#f59e0b;
}

.footer-contact{

    list-style:none;
    padding:0;
}

.footer-contact li{

    margin-bottom:15px;

    display:flex;
    gap:12px;
}

.footer-contact i{

    color:#f59e0b;
    margin-top:4px;
}

.footer-social{

    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-social a{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{

    background:#f59e0b;
    transform:translateY(-4px);
}

.footer-divider{

    border-color:rgba(255,255,255,.1);

    margin:50px 0 25px;
}


/* =========================================
   SERVICES PAGE BANNER
========================================= */

.services-banner {

    position: relative;
    padding: 180px 0 120px;

    background:
        url('../images/services-banner.jpg');

    background-size: cover;
    background-position: center;
}

.services-banner .container {
    position: relative;
    z-index: 2;
}

/* =========================================
   SERVICE CARDS
========================================= */

.service-card {

    background: rgba(255,255,255,.75);
    backdrop-filter: blur(15px);

    padding: 35px 25px;

    border-radius: 24px;

    box-shadow: 0 15px 35px rgba(15,23,42,.08);

    transition: .35s ease;

    border: 1px solid rgba(255,255,255,.3);
}

.service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 50px rgba(15,23,42,.12);
}

.service-icon {

    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    margin-bottom: 20px;

    font-size: 2rem;

    color: #fff;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );
}

.service-card h4 {

    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {

    color: #64748B;
    margin-bottom: 0;
}

/* =========================================
   MINI STATS
========================================= */

.mini-stat {

    background: #fff;

    padding: 20px;

    border-radius: 18px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.mini-stat h3 {

    color: var(--accent);

    font-weight: 800;

    margin-bottom: 5px;
}
/* =========================================
   SERVICE FEATURE LIST
========================================= */

.service-feature-list{
    list-style:none;
    padding:0;
    margin:0;
}

.service-feature-list li{
    margin-bottom:15px;
    font-weight:500;
}

.service-feature-list i{
    color:var(--accent);
    margin-right:10px;
}

/* =========================================
   PROCESS SECTION
========================================= */

.process-card{

    background:#fff;

    padding:30px 20px;

    border-radius:24px;

    box-shadow:0 15px 35px rgba(15,23,42,.08);

    position:relative;

    transition:.35s ease;

    height:100%;
}

.process-card:hover{

    transform:translateY(-10px);
}

.process-number{

    position:absolute;

    top:15px;
    right:15px;

    font-size:14px;

    font-weight:700;

    color:rgba(15,23,42,.15);
}

.process-icon{

    width:80px;
    height:80px;

    margin:auto auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:#fff;

    font-size:28px;
}
/* =========================================
   WHY CHOOSE SERVICES
========================================= */

.why-service-card{

    background:#fff;
    padding:35px 30px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 15px 35px rgba(15,23,42,.08);

    transition:.35s ease;

    height:100%;
}

.why-service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(15,23,42,.12);
}

.why-icon{

    width:85px;
    height:85px;

    margin:0 auto 20px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:#fff;

    font-size:30px;
}

/* =========================================
   FAQ
========================================= */

.custom-accordion .accordion-item{

    border:none;

    margin-bottom:15px;

    border-radius:18px !important;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(15,23,42,.06);
}

.custom-accordion .accordion-button{

    padding:22px 25px;

    font-weight:600;

    background:#fff;
}

.custom-accordion .accordion-button:not(.collapsed){

    background:#f8fafc;

    color:var(--primary);

    box-shadow:none;
}

.custom-accordion .accordion-body{

    padding:20px 25px;

    color:#64748b;
}
/* =========================================
   SERVICES TESTIMONIALS
========================================= */

.servicesTestimonialSwiper{

    padding-bottom:60px;
}

/* =========================================
   INDUSTRY CARDS
========================================= */

.industry-card{

    background:#fff;

    padding:30px 15px;

    text-align:center;

    border-radius:22px;

    box-shadow:0 10px 30px rgba(15,23,42,.06);

    transition:.35s ease;

    height:100%;
}

.industry-card:hover{

    transform:translateY(-10px);
}

.industry-card i{

    font-size:38px;

    margin-bottom:15px;

    color:var(--accent);
}

.industry-card h6{

    margin-bottom:0;

    font-weight:600;
}

/* =========================================
   SERVICES CTA ENHANCEMENT
========================================= */

.cta-section .btn{

    min-width:220px;
}

@media(max-width:768px){

    .cta-section .btn{

        width:100%;

        margin-bottom:15px;
    }



}

/* =========================================
   VIDEO GALLERY
========================================= */

.video-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

    transition:.35s;
}

.video-card:hover{

    transform:translateY(-8px);
}

.video-content{

    padding:25px;
}

/* =========================================
   SUCCESS STORIES
========================================= */

.story-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(15,23,42,.08);

    transition:.35s;

    height:100%;
}

.story-card:hover{

    transform:translateY(-10px);
}

.story-image{

    width:100%;

    height:280px;

    object-fit:cover;
}

.story-content{

    padding:25px;
}

.country-badge{

    display:inline-block;

    padding:6px 14px;

    border-radius:30px;

    background:#FFF4D9;

    color:#B7791F;

    font-size:14px;

    font-weight:600;
}
/* ==========================================
   GALLERY FILTER
========================================== */

.filter-btn{

    border:none;

    background:#fff;

    padding:12px 28px;

    border-radius:50px;

    margin:8px;

    font-weight:600;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.35s;
}

.filter-btn:hover,
.filter-btn.active{

    background:var(--primary);

    color:#fff;
}

/* ==========================================
   GALLERY
========================================== */

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    margin-bottom:25px;
}

.gallery-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;
}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,20,60,.75);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;
}

.gallery-card:hover .gallery-overlay{

    opacity:1;
}

.gallery-card:hover img{

    transform:scale(1.08);
}

.gallery-category{

    color:#fff;

    font-weight:700;

    margin-bottom:20px;

    background:rgba(255,255,255,.15);

    padding:8px 18px;

    border-radius:40px;

    backdrop-filter:blur(10px);
}

.gallery-overlay a{

    width:60px;
    height:60px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

    font-size:22px;

    text-decoration:none;
}

/* ==========================================
   CLIENT LOGOS
========================================== */

.logo-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

    height:130px;
}

.logo-card:hover{

    transform:translateY(-8px);
}

.logo-card img{

    max-height:55px;

    opacity:.8;

    transition:.3s;
}

.logo-card:hover img{

    opacity:1;
}
html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

.container,
.container-fluid{
    overflow-x:clip;
}

