:root {
    --primary: #0A1128;
    /* Deep Navy */
    --primary-light: #1A2754;
    --primary-dark: #050814;
    --secondary: #EA580C;
    /* Signal Orange */
    --accent: #EA580C;
    --accent-light: #FFF7ED;
    --bg-offwhite: #FFFFFF;
    --light: #F3F4F6;
    --dark: #0A1128;
    --gray: #6B7280;
    --light-gray: #E5E7EB;
    --success: #10B981;
    --success-bg: #D1FAE5;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #0A1128;

    --gradient-vibrant: linear-gradient(135deg, #0A1128 0%, #1A2754 100%);
    --gradient-orange: linear-gradient(135deg, #EA580C 0%, var(--secondary) 100%);

    --font-heading: 'EB Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    --border-radius: 4px;
    --box-shadow: 4px 4px 0 #0A1128;
    --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    height: 100%;
    background: #f8fafc;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark);
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.main-content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.35rem);
    font-weight: 700;
    line-height: 1.3;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
}

h6 {
    font-size: 0.9rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(10, 25, 47, 0.2);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: #E65A28;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF !important;
    box-shadow: 0 2px 15px rgba(15, 23, 42, 0.08);
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: #FFFFFF !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.12);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.logo-text h1 span {
    color: var(--secondary);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: -4px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link,
.nav-home {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-home:hover {
    color: var(--primary);
}

.nav-link.active,
.nav-home.active {
    color: var(--primary);
    position: relative;
}

.nav-link.active::after,
.nav-home.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.nav-cta {
    background: var(--secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    background: #E65A28;
    color: white;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo i {
    color: var(--primary);
    font-size: 1.5rem;
}

.mobile-logo h3 {
    font-size: 1.2rem;
    margin: 0;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray);
    cursor: pointer;
}

.mobile-nav {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    color: var(--dark);
    font-weight: 500;
    text-align: left;
}

.mobile-nav a:hover {
    background: var(--light-gray);
    color: var(--primary);
}

.mobile-nav a.active {
    background: var(--light);
    color: var(--primary);
}

.mobile-cta {
    background: var(--secondary);
    color: white;
    padding: 15px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
}

.hero-main-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInLeft 1s ease 0.4s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    animation: fadeInLeft 1s ease 0.6s both;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.8s both;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: var(--secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    color: white;
    font-weight: 600;
}

.feature-item small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 1s both;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.2s both;
    align-items: center;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.trust-badge i {
    color: var(--secondary);
    flex-shrink: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Sections Common Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.2);
}

.section-subtitle {
    display: block;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.section-title {
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-desc {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 30px auto 0;
}

/* About Section */
.about-section {
    background: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    padding: 80px 0 !important;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.about-text h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

.about-text>p {
    color: var(--dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
    padding-right: 20px;
}

/* Mission & Vision Cards */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 35px 0;
}

.mission-card,
.vision-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-gray);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.mission-card i,
.vision-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-card h4,
.vision-card h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.mission-card p,
.vision-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.values {
    margin-top: 45px;
}

.values h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: left;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.value-item {
    background: white;
    padding: 30px 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    text-align: center;
    height: 100%;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.value-item i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.value-item h5 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.value-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* About Image */
.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 8px solid white;
    height: fit-content;
    margin-top: 20px;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--secondary);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    z-index: 2;
}

.experience-badge span {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.experience-badge p {
    font-size: 0.8rem;
    margin: 5px 0 0;
    opacity: 0.9;
    font-weight: 500;
    padding: 0 10px;
}

/* Animation for Experience Badge */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    }
}

/* Services Section */
.services-preview {
    background: linear-gradient(rgba(248, 249, 250, 0.95), rgba(248, 249, 250, 0.95)), url('https://images.unsplash.com/photo-1551836026-d5c2c5af78e4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: left;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 25px 0;
    color: white;
    font-size: 1.8rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--secondary);
    transform: rotateY(180deg);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.3;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-features {
    text-align: left;
    margin-bottom: 25px;
    width: 100%;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--success);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    margin-top: auto;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.service-link:hover {
    color: var(--secondary);
    gap: 12px;
}

.service-link:hover::after {
    width: 100%;
}

/* --- USER-REQUESTED MINIMALIST COUNTRY SLIDER --- */
.countries-slider-section {
    padding: 100px 0 !important;
    background: #ffffff !important;
    position: relative;
}

.countries-slider-section .section-title {
    color: #0c2472 !important;
    /* Brand Blue */
    font-weight: 800;
}

.countries-slider-section .section-desc {
    color: #666 !important;
}

.modern-swiper-container {
    margin-top: 50px;
    position: relative;
    padding: 20px 0 60px;
}

.country-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Soft shadow from pic */
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.country-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.card-top-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-flag-centered {
    width: 70px;
    height: auto;
    margin: 20px auto 10px;
    display: block;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.country-card-modern h3 {
    color: #0c2472;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 15px 0 10px;
}

.country-card-modern p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 25px 30px;
    margin: 0;
}

/* Swiper Navigation Fixes for the white theme */
.countries-slider-section .swiper-button-next,
.countries-slider-section .swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    background: #0c2472 !important;
    color: white !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(12, 36, 114, 0.3) !important;
}

.countries-slider-section .swiper-button-next:after,
.countries-slider-section .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: 900 !important;
}

.countries-slider-section .swiper-pagination-bullet-active {
    background: #FF6B35 !important;
    width: 25px !important;
    border-radius: 10px !important;
}

.view-all-modern {
    margin-top: 40px;
    text-align: center;
}

.view-all-modern .btn-primary {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #0c2472;
    border: none;
    box-shadow: 0 10px 20px rgba(12, 36, 114, 0.2);
    transition: all 0.3s ease;
}

.view-all-modern .btn-primary:hover {
    background: #FF6B35;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.card-main h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.card-main p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.5;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mini-stats {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
}

.mini-stats strong {
    color: var(--accent);
    font-size: 1.1rem;
    display: block;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.card-link:hover {
    gap: 15px;
    color: var(--accent);
}

/* Gallery Controls */
.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.gallery-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.gallery-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.gallery-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 20%;
    background: var(--primary);
    transition: width 0.3s ease;
}

.country-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.country-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s ease;
}

.country-card:hover .country-image {
    transform: scale(1.15);
}

.country-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.2), rgba(10, 25, 47, 0.6));
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.country-card:hover .country-image-overlay {
    opacity: 0.2;
}

.country-flag-floating {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 3px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 5;
    transform: rotate(-5deg);
    transition: all 0.5s ease;
}

.country-card:hover .country-flag-floating {
    transform: rotate(0deg) scale(1.1);
}

.country-badge-floating {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.country-content {
    padding: 35px 30px;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.country-content h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.country-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.country-card:hover h3::after {
    width: 60px;
}

.country-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 4.8rem;
}

.country-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.stat-box {
    flex: 1;
    padding: 15px;
    background: #f0f4ff;
    border-radius: 16px;
    text-align: center;
    transition: background 0.3s ease;
}

.country-card:hover .stat-box {
    background: #eef2ff;
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-top: 4px;
}

.country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    padding: 6px 14px;
    background: rgba(10, 36, 114, 0.04);
    color: var(--primary);
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(10, 36, 114, 0.05);
}

.country-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    margin-top: auto;
    box-shadow: 0 10px 20px rgba(10, 25, 47, 0.2);
}

.country-btn-modern:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

/* swiper styles removed */

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--light);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--gray);
    border: 1px solid var(--light-gray);
}

.country-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.country-btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(10, 36, 114, 0.15);
}

.view-all-countries {
    text-align: center;
    margin-top: 40px;
}

/* Process Section */
#process {
    background:
        linear-gradient(rgba(10, 36, 114, 0.92), rgba(10, 36, 114, 0.94)),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    padding: 80px 0 !important;
    color: white;
}

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

#process .section-title,
#process .section-desc,
#process h3,
#process h4,
#process p,
#process .step-content h4,
#process .step-content p {
    color: white !important;
}

#process .section-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

/* Compact Process Steps for this section */
#process .process-steps {
    max-width: 800px;
    margin: 0 auto;
}

#process .process-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
}

#process .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 55px;
    bottom: -35px;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

#process .step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
    position: relative;
    z-index: 2;
    margin-top: 3px;
    transition: var(--transition);
}

#process .process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.35);
}

#process .step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

#process .process-step:hover .step-content {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

#process .step-content h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

#process .step-content p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section .container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    align-items: flex-start;
    text-align: left;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(10, 25, 47, 0.2);
}

.contact-card-content {
    gap: 8px;
    color: var(--primary);
    font-weight: 900;
    font-size: 0.9rem;
}

.contact-card-content h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.contact-card-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.phone-numbers,
.email-addresses {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.phone-item,
.email-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-item i,
.email-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 18px;
    flex-shrink: 0;
}

.phone-label,
.email-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.phone-item a,
.email-item a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.phone-item a:hover,
.email-item a:hover {
    color: var(--primary);
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
}

.contact-card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.contact-card-link:hover {
    color: var(--secondary);
    gap: 12px;
}

.contact-card-link:hover::after {
    width: 100%;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--primary);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 36, 114, 0.1);
}

.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: var(--gray);
}

.file-upload label {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.upload-area {
    border: 2px dashed var(--light-gray);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background: var(--light);
}

.upload-area:hover {
    border-color: var(--primary);
    background: white;
}

.upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-area i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.upload-area p {
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.upload-area span {
    font-size: 0.85rem;
    color: var(--gray);
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--light);
    border-radius: 6px;
    font-size: 0.9rem;
}

.file-item i {
    color: var(--primary);
}

.checkbox-group {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 3px;
    margin: 0;
    width: 16px;
    height: 16px;
}

.checkbox-group label {
    font-weight: normal;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 0;
    display: block;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.submit-btn {
    flex: 1;
    position: relative;
    padding: 12px;
    font-size: 0.9rem;
}

.loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* FAQ Section */
.contact-faq {
    margin-top: 80px;
    width: 100%;
}

.contact-faq h3 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    background: var(--light);
}

.faq-question:hover {
    color: var(--primary);
    background: rgba(10, 36, 114, 0.05);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 1000px;
    opacity: 1;
}

.faq-answer p {
    margin-bottom: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.faq-answer ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.faq-answer li {
    list-style: disc;
    margin-bottom: 8px;
    color: var(--gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    color: white;
    padding: 80px 0 40px;
    position: relative;
    background: linear-gradient(rgba(3, 17, 105, 0.95), rgba(3, 17, 105, 0.9)), url('https://images.unsplash.com/photo-1511895426328-dc8714191300?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    margin-top: auto !important;
    margin-bottom: 0 !important;
    flex-shrink: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-logo .logo-with-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-with-icon i {
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.footer-logo .logo-with-icon h2 {
    font-size: 1.5rem;
    color: white;
    margin: 0;
}

.footer-logo .logo-with-icon h2 span {
    color: var(--secondary);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

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

.footer-links h3,
.footer-services h3,
.footer-contact h3,
.footer-newsletter h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    text-align: left;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links a,
.footer-services a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    transition: var(--transition);
    justify-content: flex-start;
}

.footer-links a:hover,
.footer-services a:hover {
    color: white;
    gap: 15px;
    transform: translateX(5px);
}

.footer-links a i,
.footer-services a i {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    align-items: center;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border: none;
    border-radius: var(--border-radius);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--secondary);
    flex-shrink: 0;
}

.newsletter-form button:hover {
    background: #E65A28;
    transform: translateY(-2px);
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-badge i {
    font-size: 2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.app-badge h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

.app-badge p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--secondary);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.compliance {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Floating Buttons */
.whatsapp-float,
.whatsapp-float-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    left: auto !important;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover,
.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: var(--transition);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero .container,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-badge {
        align-self: center;
    }

    .hero-features {
        align-items: center;
    }

    .feature-item {
        justify-content: center;
        text-align: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .services-grid,
    .values-grid,
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-logo .logo-with-icon {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links h3,
    .footer-services h3,
    .footer-newsletter h3 {
        text-align: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-newsletter h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a,
    .footer-services a {
        justify-content: center;
    }

    .countries-slider {
        padding: 0 20px;
    }

    .service-card {
        text-align: center;
        align-items: center;
    }

    .service-icon {
        margin: 0 auto 30px;
    }

    .service-features {
        align-items: center;
    }

    .service-features li {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-image img {
        height: 400px;
    }

    .about-text>p {
        padding-right: 0;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-card-content {
        text-align: center;
    }

    .phone-item,
    .email-item {
        justify-content: center;
    }

    #process {
        background-attachment: scroll !important;
        padding: 60px 0 !important;
    }

    #process .process-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    #process .process-step:not(:last-child)::after {
        left: 50%;
        top: 50px;
        bottom: -25px;
        transform: translateX(-50%);
        height: 25px;
        width: 2px;
    }

    #process .step-number {
        margin: 0 auto;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    #process .step-content {
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 20px;
    }

    .stat-box h3 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .footer-links a:hover,
    .footer-services a:hover {
        transform: translateX(0);
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .about-text>p {
        font-size: 1rem;
    }

    .mission-card,
    .vision-card {
        padding: 25px 20px;
    }

    .value-item {
        padding: 25px 20px;
    }

    .about-image img {
        height: 300px;
    }

    .experience-badge {
        width: 80px;
        height: 80px;
        top: 15px;
        right: 15px;
    }

    .experience-badge span {
        font-size: 1.6rem;
    }

    .upload-area {
        padding: 20px 15px;
    }

    .upload-area i {
        font-size: 1.8rem;
    }
}

/* PREMIUM THEME REDESIGN - HIGH LEVEL ESTHETICS */
.hero-gradient {
    background: linear-gradient(135deg, rgba(15, 10, 28, 0.90) 0%, rgba(26, 12, 45, 0.88) 50%, rgba(15, 10, 28, 0.92) 100%),
        url('images/global_map_bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    overflow: hidden;
    padding-top: 160px !important;
    padding-bottom: 140px !important;
}

/* Subtle grid overlay */
.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.8;
    pointer-events: none;
}

.hero-gradient .hero-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: left !important;
    gap: 45px !important;
    width: 100% !important;
    max-width: 1380px !important;
    margin: 0 auto !important;
}

.hero-gradient .hero-content {
    flex: 1 1 48% !important;
    max-width: 640px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.hero-gradient .hero-title {
    text-align: left !important;
}

.hero-gradient .hero-subtitle {
    text-align: left !important;
}

.hero-gradient .hero-features-pill {
    justify-content: flex-start !important;
}

.hero-gradient .hero-btns {
    justify-content: flex-start !important;
}

.hero-gradient .hero-graphic {
    flex: 1 1 52% !important;
    max-width: 660px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 !important;
}

@media (max-width: 991px) {
    .hero-gradient .hero-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 40px !important;
    }

    .hero-gradient .hero-content {
        align-items: center !important;
        text-align: center !important;
        max-width: 100% !important;
    }

    .hero-gradient .hero-title,
    .hero-gradient .hero-subtitle {
        text-align: center !important;
    }

    .hero-gradient .hero-features-pill,
    .hero-gradient .hero-btns {
        justify-content: center !important;
    }
}


.floating-img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
    position: relative;
    animation: imgFloat 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes imgFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #FFFFFF !important;
    margin-bottom: 25px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-pill i {
    color: #FFB703 !important;
    font-size: 0.95rem;
}

.hero-features-pill {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(248, 112, 52, 0.3);
}

.feature-pill i {
    color: var(--secondary);
    font-size: 0.95rem;
}

.btn-gradient {
    background: var(--gradient-orange);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(248, 112, 52, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: all 0.6s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(248, 112, 52, 0.4);
    color: white;
}

.btn-gradient:hover::after {
    left: 100%;
}

.btn-transparent {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-transparent:hover {
    background: white;
    color: var(--primary-dark);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.floating-stats-wrapper {
    position: relative;
    max-width: 1100px;
    margin: -50px auto 50px auto;
    z-index: 10;
    padding: 0 20px;
    animation: statFloat 6s ease-in-out infinite;
}

@keyframes statFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-stats {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    padding: 35px 45px;
    box-shadow: 0 25px 50px rgba(7, 36, 168, 0.08);
}

.stat-item {
    text-align: center;
    position: relative;
    flex: 1;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 5px 0;
}

.stat-item h3.gradient-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Clean Look */
.service-icon-gradient {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: var(--gradient-vibrant);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin: 0;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(248, 112, 52, 0.2);
}

.service-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.service-card-clean {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-card-clean h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 700;
}

.service-card-clean:hover {
    transform: translateY(-5px);
    background: white;
    border-color: rgba(248, 112, 52, 0.25);
    box-shadow: 0 15px 35px rgba(7, 36, 168, 0.08);
}

/* Solid White Navbar for Standard Color Consistency Across All Pages */
.navbar {
    background: #FFFFFF !important;
    backdrop-filter: none !important;
    border-bottom: 1px solid #E2E8F0 !important;
    box-shadow: 0 2px 15px rgba(15, 23, 42, 0.08) !important;
}

.nav-cta {
    background: var(--gradient-orange) !important;
    box-shadow: 0 8px 20px rgba(248, 112, 52, 0.2) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(248, 112, 52, 0.3) !important;
}

/* Responsiveness for Hero */
@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center !important;
    }

    .hero-features-pill {
        justify-content: center;
    }

    .hero-graphic {
        margin-top: 30px;
        width: 100%;
        max-width: 450px;
    }

    .floating-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}

/* Calculator, Pricing & Story Cards Styling Enhancements */
.calc-tab:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06) !important;
}

@media (max-width: 768px) {
    .calc-result-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .calc-result-box div {
        text-align: center;
    }
}

/* Floating Badges Animation */
@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* PRODUCTION-GRADE 5-IMAGE HERO SLIDER FRAME */
.hero-loop-frame {
    position: relative;
    width: 100%;
    max-width: 660px;
    height: 440px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.7), 0 0 50px rgba(248, 112, 52, 0.4);
    border: 2px solid rgba(245, 158, 11, 0.55);
    background: #0F172A;
}

.hero-loop-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-loop-img-1 {
    animation-name: cssLoopFade8_1;
}

.hero-loop-img-2 {
    animation-name: cssLoopFade8_2;
}

.hero-loop-img-3 {
    animation-name: cssLoopFade8_3;
}

.hero-loop-img-4 {
    animation-name: cssLoopFade8_4;
}

.hero-loop-img-5 {
    animation-name: cssLoopFade8_5;
}

.hero-loop-img-6 {
    animation-name: cssLoopFade8_6;
}

.hero-loop-img-7 {
    animation-name: cssLoopFade8_7;
}

.hero-loop-img-8 {
    animation-name: cssLoopFade8_8;
}

@keyframes cssLoopFade8_1 {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    10% {
        opacity: 1;
        transform: scale(1.04);
    }

    12.5% {
        opacity: 0;
        transform: scale(1.08);
    }

    97.5% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cssLoopFade8_2 {

    0%,
    10% {
        opacity: 0;
        transform: scale(0.95);
    }

    12.5% {
        opacity: 1;
        transform: scale(1);
    }

    22.5% {
        opacity: 1;
        transform: scale(1.04);
    }

    25% {
        opacity: 0;
        transform: scale(1.08);
    }

    100% {
        opacity: 0;
    }
}

@keyframes cssLoopFade8_3 {

    0%,
    22.5% {
        opacity: 0;
        transform: scale(0.95);
    }

    25% {
        opacity: 1;
        transform: scale(1);
    }

    35% {
        opacity: 1;
        transform: scale(1.04);
    }

    37.5% {
        opacity: 0;
        transform: scale(1.08);
    }

    100% {
        opacity: 0;
    }
}

@keyframes cssLoopFade8_4 {

    0%,
    37.5% {
        opacity: 0;
        transform: scale(0.95);
    }

    40% {
        opacity: 1;
        transform: scale(1);
    }

    47.5% {
        opacity: 1;
        transform: scale(1.04);
    }

    50% {
        opacity: 0;
        transform: scale(1.08);
    }

    100% {
        opacity: 0;
    }
}

@keyframes cssLoopFade8_5 {

    0%,
    50% {
        opacity: 0;
        transform: scale(0.95);
    }

    52.5% {
        opacity: 1;
        transform: scale(1);
    }

    60% {
        opacity: 1;
        transform: scale(1.04);
    }

    62.5% {
        opacity: 0;
        transform: scale(1.08);
    }

    100% {
        opacity: 0;
    }
}

@keyframes cssLoopFade8_6 {

    0%,
    62.5% {
        opacity: 0;
        transform: scale(0.95);
    }

    65% {
        opacity: 1;
        transform: scale(1);
    }

    72.5% {
        opacity: 1;
        transform: scale(1.04);
    }

    75% {
        opacity: 0;
        transform: scale(1.08);
    }

    100% {
        opacity: 0;
    }
}

@keyframes cssLoopFade8_7 {

    0%,
    75% {
        opacity: 0;
        transform: scale(0.95);
    }

    77.5% {
        opacity: 1;
        transform: scale(1);
    }

    85% {
        opacity: 1;
        transform: scale(1.04);
    }

    87.5% {
        opacity: 0;
        transform: scale(1.08);
    }

    100% {
        opacity: 0;
    }
}

@keyframes cssLoopFade8_8 {

    0%,
    87.5% {
        opacity: 0;
        transform: scale(0.95);
    }

    90% {
        opacity: 1;
        transform: scale(1);
    }

    97.5% {
        opacity: 1;
        transform: scale(1.04);
    }

    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

/* COMPREHENSIVE MOBILE FRAME & RESPONSIVE PERFECTION */
@media (max-width: 768px) {
    .navbar {
        padding: 8px 16px !important;
    }

    .navbar .logo img {
        height: 52px !important;
    }

    .mobile-menu-btn {
        display: block !important;
        font-size: 1.4rem !important;
        color: var(--primary) !important;
        padding: 8px;
    }

    .nav-links {
        display: none !important;
    }

    .mobile-menu {
        overflow-y: auto;
        width: 85vw;
        max-width: 320px;
    }

    .hero,
    .calc-hero,
    .services-hero-pro,
    .about-hero-pro,
    .process-hero-pro {
        padding: 100px 16px 45px !important;
    }

    .page-wrapper {
        padding: 0 12px !important;
        margin: 24px auto 40px !important;
    }

    .form-card {
        padding: 22px 18px !important;
        border-radius: 16px !important;
    }

    .form-body {
        padding: 18px 12px !important;
    }

    .fg-2,
    .fg-3 {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .stats-inner {
        gap: 16px !important;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 16px 8px;
    }

    .stat-chip {
        flex-shrink: 0;
    }

    .submit-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
    }

    .country-card-pro,
    .service-card-pro,
    .proc-card {
        padding: 22px 18px !important;
    }

    .touch-section {
        padding: 24px 16px !important;
        margin: 24px 12px 50px !important;
    }

    .touch-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .flag-strip {
        gap: 6px !important;
    }

    .flag-chip {
        font-size: 0.76rem !important;
        padding: 5px 10px !important;
    }

    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.4rem !important;
    }
}

/* ═══ UNIFIED SUBPAGE HERO HEADER SYSTEM ═══ */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 60%, #0F1F8A 100%);
    padding: 140px 0 70px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(248, 112, 52, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FF9F1C;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.page-hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* ══════════════════════════════════════════════════════════════
   AIITE ACADEMY STYLE PRODUCTION ELEMENTS (WhatsApp, Topbar, Cards)
   ══════════════════════════════════════════════════════════════ */

/* Floating WhatsApp Pulse Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Production Top Header Bar */
.top-header-bar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.top-header-bar a:hover {
    color: #FF9F1C;
}

/* Unified Hero Page Title Font Size & Font Weight */
.hero-title, 
.page-hero-title, 
.country-hero-pro h1 {
    font-size: clamp(2.0rem, 5vw, 3.0rem) !important;
    font-weight: 600 !important;
}

/* Custom Score Preview Animation */
@keyframes scorePulse {
    0% { transform: scale(0.95); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}

.score-pulse {
    animation: scorePulse 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
/* --- PREMIUM UI/UX OVERHAUL (CSS ONLY) --- */

/* 1. Global typography and smooth scrolling */
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; letter-spacing: -0.01em; }

/* 2. Form Inputs (Glassmorphism & Focus Effects) */
input, textarea {
    background-color: #F8FAFC !important;
    border: 2px solid #E2E8F0 !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
}
select {
    background-color: #F8FAFC !important;
    border: 2px solid #E2E8F0 !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    transition: all 0.3s ease !important;
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    box-sizing: border-box !important;
    min-height: 44px !important;
    height: auto !important;
}
input:focus, select:focus, textarea:focus {
    background-color: #FFFFFF !important;
    border-color: #F87034 !important;
    box-shadow: 0 0 0 4px rgba(248, 112, 52, 0.15) !important;
    outline: none !important;
}

/* 3. Buttons (Micro-animations) */
.btn-gradient, .primary-btn, button[type="submit"] {
    background: linear-gradient(135deg, #F87034 0%, #D9561B 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(248, 112, 52, 0.3) !important;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease !important;
}
.btn-gradient:hover, .primary-btn:hover, button[type="submit"]:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(248, 112, 52, 0.4) !important;
}

/* 4. Cards & Containers (Hover Lifts) */
.service-card, .process-card, .showcase-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
    border-radius: 16px !important;
}
.service-card:hover, .process-card:hover, .showcase-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

/* 5. Navbar (Glassmorphism) */
.navbar {
    background: rgba(255, 255, 255, 0.85) !important;
    .flag-chip {
        font-size: 0.76rem !important;
        padding: 5px 10px !important;
    }

    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.4rem !important;
    }
}

/* ═══ UNIFIED SUBPAGE HERO HEADER SYSTEM ═══ */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 60%, #0F1F8A 100%);
    padding: 140px 0 70px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(248, 112, 52, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FF9F1C;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.page-hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* ══════════════════════════════════════════════════════════════
   AIITE ACADEMY STYLE PRODUCTION ELEMENTS (WhatsApp, Topbar, Cards)
   ══════════════════════════════════════════════════════════════ */

/* Floating WhatsApp Pulse Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Animated Pulse Dots for Map Background */
.map-dots-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10;
    pointer-events: none;
}
.pulse-dot {
    position: absolute;
    width: 12px; height: 12px;
    background-color: #F87034;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px #F87034;
}
.pulse-dot::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    background-color: #F87034;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: radarPulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes radarPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}
/* Approximate coordinates for background-size: cover */
.pulse-dot.canada { top: 35%; left: 22%; animation-delay: 0s; }
.pulse-dot.europe { top: 38%; left: 48%; animation-delay: 0.5s; }
.pulse-dot.india { top: 52%; left: 68%; animation-delay: 1s; }
.pulse-dot.australia { top: 70%; left: 82%; animation-delay: 1.5s; }

.hero-gradient .hero-container { z-index: 20; position: relative; }

/* Exact Logo Overlay */
.overlay-logo {
    position: absolute;
    top: 8%;
    right: 6%;
    width: 16%;
    height: auto;
    z-index: 5;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
    pointer-events: none;
    opacity: 0.85; /* Blend slightly with the wall */
    transform: perspective(600px) rotateY(-5deg); /* Slight angle to match wall depth */
}

/* Phase 3 UI Upgrades */
.premium-glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.premium-glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 75px rgba(15, 23, 42, 0.15);
    border-color: rgba(248, 112, 52, 0.4);
}
.premium-glass-card:hover .fas, .premium-glass-card:hover .fa-solid {
    text-shadow: 0 0 15px rgba(248, 112, 52, 0.4);
}

.showcase-card-inner {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    border: 2px solid #E2E8F0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
}
.showcase-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
    border-color: #F87034;
}
.showcase-card-inner:hover .fa-arrow-right {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Phase 5 Final Upgrades */
.faq-item {
    transition: all 0.3s ease;
    border-radius: 12px;
}
.faq-item:hover {
    background: rgba(248, 250, 252, 0.8);
    transform: translateX(6px);
}
.contact-section input:focus, .contact-section select:focus, .contact-section textarea:focus {
    border-color: #F87034 !important;
    box-shadow: 0 0 0 4px rgba(248, 112, 52, 0.15) !important;
    background: white !important;
}
.footer {
    border-top: 2px solid rgba(248, 112, 52, 0.4) !important;
    box-shadow: 0 -10px 40px rgba(248, 112, 52, 0.1) !important;
}
.footer-links a, .footer-services a {
    transition: all 0.3s ease !important;
    display: inline-block;
}
.footer-links a:hover, .footer-services a:hover {
    color: #F87034 !important;
    transform: translateX(6px);
}
.social-links a {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.social-links a:hover {
    background: #F87034 !important;
    color: white !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(248, 112, 52, 0.4);
}

/* Final Polish: Sticky Navbar */
.navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    backdrop-filter: blur(20px) !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

/* About Us Float & Timeline */
@keyframes floatY {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.floating-element {
    animation: floatY 4s ease-in-out infinite;
}

.vertical-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}
.vertical-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: rgba(7, 36, 168, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 4px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background: inherit;
    width: 50%;
    box-sizing: border-box;
}
.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: white;
    border: 4px solid #F87034;
    top: 32px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(248, 112, 52, 0.2);
}
.timeline-item.right .timeline-dot {
    left: -10px;
}
.pulse-dot-active {
    background: #F87034;
    box-shadow: 0 0 0 0 rgba(248, 112, 52, 0.7);
    animation: pulseOrange 2s infinite;
}

.timeline-content {
    padding: 24px 30px;
}
.timeline-year {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1B4FBB;
    display: block;
    margin-bottom: 8px;
}
.timeline-content h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
}
.timeline-content p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .vertical-timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item.right { left: 0; }
    .timeline-item.left .timeline-dot, .timeline-item.right .timeline-dot {
        left: 21px;
    }
}

/* Floating CTA & Modal */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(248, 112, 52, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatY 4s ease-in-out infinite;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-glass {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay.active .modal-glass {
    transform: translateY(0) scale(1);
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F1F5F9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover {
    background: #E2E8F0;
    color: #0F172A;
}
.modal-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1.5px solid #E2E8F0;
    background: #F8FAFC;
    color: #0F172A;
    font-size: 0.95rem;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.modal-input:focus {
    border-color: #F87034;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(248, 112, 52, 0.1);
}

/* Animated Success Marquee */
.premium-marquee-section {
    background: #0F172A;
    color: white;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid rgba(248, 112, 52, 0.4);
}
.marquee-container {
    width: 100%;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
}
.marquee-item {
    padding: 0 40px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-track:hover {
    animation-play-state: paused;
}

/* Global Reach Hover Glow */
.hover-glow {
    transition: all 0.4s ease;
}
.hover-glow:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(248, 112, 52, 0.15);
    border-color: rgba(248, 112, 52, 0.3) !important;
}

/* =========================================================================
   COUNTRY PAGES PRO STYLES 
   ========================================================================= */

.country-hero-pro {
    background: #0a1628;
    color: #fdfcf8;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.country-hero-pro::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(201, 162, 39, 0.15), transparent 50%);
    pointer-events: none;
}

.country-hero-pro .container {
    position: relative;
    z-index: 2;
}

.country-hero-pro .container > a {
    display: inline-block;
    color: #c9a227;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    transition: color 0.2s ease;
}

.country-hero-pro .container > a:hover {
    color: #fff;
}

.country-hero-title-flex {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.country-hero-title-flex img {
    height: 60px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    object-fit: cover;
}

.country-hero-title-flex h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.country-hero-pro > .container > p {
    font-size: 18px;
    color: #94a3b8;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.country-hero-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.fact-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.fact-box h4 {
    color: #c9a227;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.fact-box p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.program-card-pro {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.program-card-pro > div:nth-of-type(1) {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, #0a1628, #1e3a8a);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.program-card-pro > div:nth-of-type(2) {
    flex-grow: 1;
}

.program-card-pro h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0a1628;
    margin: 0 0 12px 0;
}

.program-card-pro > div:nth-of-type(2) > p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.program-card-pro > div:nth-of-type(2) > div {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.program-card-pro > div:nth-of-type(2) > div > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.program-card-pro > div:nth-of-type(2) > div > div > span:first-child {
    color: #475569;
}

.program-card-pro > div:nth-of-type(2) > div > div > span:last-child {
    font-weight: 700;
    color: #0a1628;
}

.program-card-pro .btn-gradient {
    display: block;
    text-align: center;
    padding: 14px;
    width: 100%;
    color: #fff !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    box-sizing: border-box;
}

.assessment-box {
    background: linear-gradient(135deg, #0a1628, #1e3a8a);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.assessment-box h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 16px 0;
}

.assessment-box p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.assessment-box > div {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media(max-width: 768px) {
    .country-hero-pro { padding: 100px 0 40px; }
    .country-hero-title-flex { flex-direction: column; align-items: flex-start; gap: 16px; }
    .country-hero-title-flex h1 { font-size: 36px; }
    .assessment-box { padding: 40px 20px; }
    .assessment-box h3 { font-size: 24px; }
}


/* Fix country pages background inheritance */
.country-hero-pro + section {
    background: #f8fafc;
}

/* Country Pages CSS Added */
.country-hero-title-flex { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.country-hero-title-flex img { width: 80px; height: auto; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); border: 1px solid var(--light-gray); }
.country-hero-title-flex h1 { margin: 0; font-size: 2.5rem; color: white; }
.country-hero-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; margin-top: 40px; }
.fact-box { background: white; padding: 25px 20px; border-radius: 12px; border: 1px solid var(--light-gray); box-shadow: 0 4px 15px rgba(0,0,0,0.03); text-align: center; }
.fact-box h4 { font-size: 0.85rem; color: var(--gray); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.fact-box p { font-size: 1.15rem; font-weight: 800; color: var(--primary); margin: 0; }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 30px; }
.program-card-pro { background: white; border-radius: 16px; border: 1px solid var(--light-gray); padding: 35px 30px; display: flex; flex-direction: column; gap: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: var(--transition); height: 100%; justify-content: space-between; }
.program-card-pro:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); border-color: var(--primary-light); }
.program-card-pro > div:first-child { display: inline-flex; background: rgba(10, 17, 40, 0.05); color: var(--primary); font-weight: 700; font-size: 0.75rem; padding: 6px 14px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1.5px; border: 1px solid rgba(10, 17, 40, 0.1); align-self: flex-start; }
.program-card-pro h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 12px; }
.program-card-pro p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; margin-bottom: 0; }
.program-card-pro > div:nth-child(2) > div { margin-top: 25px; display: flex; flex-direction: column; gap: 12px; background: var(--light); padding: 15px; border-radius: 8px; }
.program-card-pro > div:nth-child(2) > div > div { display: flex; flex-direction: column; }
.program-card-pro > div:nth-child(2) > div > div span:first-child { font-size: 0.8rem; color: var(--gray); margin-bottom: 2px; }
.program-card-pro > div:nth-child(2) > div > div span:first-child i { color: var(--secondary); margin-right: 6px; }
.program-card-pro > div:nth-child(2) > div > div span:last-child { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.btn-gradient { display: inline-flex; align-items: center; justify-content: center; background: var(--gradient-orange); color: white !important; padding: 14px 28px; border-radius: 12px; font-weight: 800; text-align: center; text-decoration: none; transition: var(--transition); border: none; cursor: pointer; font-size: 1rem; width: 100%; box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3); }
.btn-gradient:hover { box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4); transform: translateY(-2px); }

.country-card-footer .btn { white-space: nowrap !important; }


/* === UI/UX Standardization === */
.btn-primary {
    padding: 12px 24px;
    border-radius: 8px;
    background: #c9a227;
    color: #0a1628;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: #FF9F1C;
    transform: translateY(-2px);
}
.btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    background: transparent;
    color: #0a1628;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a1628;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: #0a1628;
    color: #fff;
    transform: translateY(-2px);
}
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

/* Global card hover micro-animations */
.premium-glass-card, .showcase-card-inner, .cnt-card {
    transition: all 0.3s ease !important;
}
.premium-glass-card:hover, .showcase-card-inner:hover, .cnt-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}
