/* ==========================================================================
   CSS Variables & Design Tokens
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #0056D2;
    /* Deep Professional Blue */
    --primary-light: #4A90E2;
    --primary-dark: #003B95;
    --secondary: #00A0DC;
    /* Cyan Blue Accent */
    --accent: #FFB300;
    /* Warm Accent for contrast */

    /* Neutrals & Backgrounds */
    --bg-main: #FFFFFF;
    --bg-light: #F4F8FB;
    --bg-dark: #0B192C;
    --text-main: #1D2A3B;
    --text-muted: #5A6A85;
    --text-white: #FFFFFF;

    /* Borders & Shadows */
    --border-color: #E2E8F0;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 86, 210, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);

    /* Typography & Spacing */
    --font-main: 'Poppins', sans-serif;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.section-padding {
    padding: 75px 0;
    scroll-margin-top: 80px;
}

/* Spacing Utilities */
.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.text-white {
    color: var(--text-white);
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

span {
    color: var(--primary);
}

.bg-dark span {
    color: var(--primary-light);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 86, 210, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 86, 210, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

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

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

.w-100 {
    width: 100%;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background-color: rgba(0, 86, 210, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.badge-light {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 20px;
}

.section-title span {
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: rgba(0, 160, 220, 0.2);
    bottom: 5px;
    left: 0;
    border-radius: 4px;
    z-index: -1;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-main);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 5px solid var(--bg-light);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    z-index: 1000;
    transition: var(--transition-fast);
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 12px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-name {
    line-height: 1;
    font-size: 1.4rem;
}

.logo-sub {
    font-size: 0.63rem;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 0.5px;
    margin-top: 4px;
    text-transform: uppercase;
    display: block;
}

@media (max-width: 480px) {
    .logo-sub {
        font-size: 0.6rem;
        letter-spacing: 0.8px;
    }
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--primary);
    bottom: -6px;
    left: 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-link i {
    margin-right: 8px;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Mobile Menu & Hamburger */
/* Blink Animation for Special Nav Links */
@keyframes textBlinkSpecial {
    0% {
        color: var(--text-main);
        text-shadow: none;
        transform: scale(1);
    }

    50% {
        color: var(--primary);
        text-shadow: 0 0 8px rgba(0, 86, 210, 0.4);
        transform: scale(1.05);
    }

    100% {
        color: var(--secondary);
        text-shadow: 0 0 12px rgba(212, 160, 23, 0.6);
        transform: scale(1);
    }
}

.nav-link.blink-text,
.mobile-link.blink-text {
    animation: textBlinkSpecial 2s infinite ease-in-out;
    font-weight: 800;
}

.nav-link.blink-text:hover,
.mobile-link.blink-text:hover {
    animation-play-state: paused;
    color: var(--secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    /* Offset for navbar */
    right: 5%;
    width: 250px;
    height: auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition-fast);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-link i {
    width: 20px;
    color: var(--primary);
    font-size: 1.1rem;
    text-align: center;
}

.mobile-link:hover {
    background: rgba(0, 86, 210, 0.05);
    color: var(--primary);
    padding-left: 25px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 150px 0 100px;
    background: var(--bg-light);
    overflow: hidden;
    width: 100%;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s ease-in-out infinite alternate;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, var(--primary-light), transparent);
    top: -150px;
    left: -150px;
    opacity: 0.3;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, var(--secondary), transparent);
    bottom: -100px;
    right: 5%;
    opacity: 0.3;
    animation-delay: -5s;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.2;
    animation: pFloat 20s linear infinite;
}

@keyframes pFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }

    100% {
        transform: translateY(30px) translateX(30px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--text-main);
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

.hero-text .sub-heading {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    opacity: 0.8;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 32px;
}

.visual-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.visual-card .card-header i {
    color: var(--primary);
    background: rgba(0, 86, 210, 0.1);
    padding: 10px;
    border-radius: 10px;
}

/* ==========================================================================
   Hero Orb Visual System
   ========================================================================== */
.hero-orb-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 550px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-orb {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 86, 210, 0.2), inset 0 0 30px rgba(255, 255, 255, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
    background: var(--bg-dark);
    animation: orbBreath 8s ease-in-out infinite alternate;
}

@keyframes orbBreath {
    0% {
        transform: scale(1);
        box-shadow: 0 0 50px rgba(0, 86, 210, 0.2);
    }

    100% {
        transform: scale(1.02);
        box-shadow: 0 0 80px rgba(0, 86, 210, 0.4);
    }
}

.orb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: var(--transition-slow);
}

.orb-shine {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 6;
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-orb-wrapper:hover .orb-shine {
    opacity: 1;
}

/* Orbiting Rings */
.orb-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(0, 86, 210, 0.3);
}

.ring-1 {
    width: 480px;
    height: 480px;
    animation: rotateRing 20s linear infinite;
}

.ring-2 {
    width: 530px;
    height: 530px;
    border-style: dotted;
    animation: rotateRing 30s linear infinite reverse;
}

.ring-3 {
    width: 580px;
    height: 580px;
    border-color: rgba(0, 160, 220, 0.2);
    animation: rotateRing 40s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
        border-color: var(--primary-light);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
        opacity: 0.3;
    }
}

/* Orbiting Country Badges System */
.orbit-badges-container {
    position: absolute;
    width: 480px;
    height: 480px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.orbit-badge {
    position: absolute;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    /* More opaque for clarity */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: var(--shadow-md);
    cursor: default;
    pointer-events: auto;
    width: max-content;
    top: 50%;
    left: 50%;
    /* Fix for blurriness during transform */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.orbit-badge img {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Position and Animation for 5 Badges */
/* We position them relative to the center, and rotate the container, 
   while counter-rotating the badges to keep them upright */

.orbit-badges-container {
    animation: rotateOrbit 40s linear infinite;
}

@keyframes rotateOrbit {
    from {
        transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }

    to {
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}

.orbit-badge {
    animation: counterRotate 40s linear infinite;
}

@keyframes counterRotate {
    from {
        transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }

    to {
        transform: translate3d(-50%, -50%, 0) rotate(-360deg);
    }
}

/* Individual Starting Positions on the 480px circle (Radius = 240px) */
/* Degrees: 90, 30, 330, 270, 210, 150 */
.b-ireland {
    margin-top: 240px;
    margin-left: 0px;
}

.b-finland {
    margin-top: 120px;
    margin-left: 208px;
}

.b-luxembourg {
    margin-top: -120px;
    margin-left: 208px;
}

.b-latvia {
    margin-top: -240px;
    margin-left: 0px;
}

.b-greece {
    margin-top: -120px;
    margin-left: -208px;
}

.b-germany {
    margin-top: 120px;
    margin-left: -208px;
}

@media (max-width: 992px) {
    .main-orb {
        width: 340px;
        height: 340px;
    }

    .ring-1 {
        width: 380px;
        height: 380px;
    }

    .ring-2 {
        width: 420px;
        height: 420px;
    }

    .ring-3 {
        width: 460px;
        height: 460px;
    }

    .orbit-badges-container {
        width: 380px;
        height: 380px;
    }

    .b-ireland {
        margin-top: 190px;
        margin-left: 0px;
    }

    .b-finland {
        margin-top: 95px;
        margin-left: 165px;
    }

    .b-luxembourg {
        margin-top: -95px;
        margin-left: 165px;
    }

    .b-latvia {
        margin-top: -190px;
        margin-left: 0px;
    }

    .b-greece {
        margin-top: -95px;
        margin-left: -165px;
    }

    .b-germany {
        margin-top: 95px;
        margin-left: -165px;
    }
}

@media (max-width: 768px) {
    .hero-orb-wrapper {
        height: 400px;
    }

    .main-orb {
        width: 250px;
        height: 250px;
        flex-shrink: 0;
    }

    .ring-1 {
        width: 280px;
        height: 280px;
    }

    .ring-2 {
        width: 320px;
        height: 320px;
    }

    .ring-3 {
        width: 360px;
        height: 360px;
    }

    .orbit-badges-container {
        width: 280px;
        height: 280px;
    }

    .b-ireland {
        margin-top: 140px;
        margin-left: 0px;
    }

    .b-finland {
        margin-top: 70px;
        margin-left: 121px;
    }

    .b-luxembourg {
        margin-top: -70px;
        margin-left: 121px;
    }

    .b-latvia {
        margin-top: -140px;
        margin-left: 0px;
    }

    .b-greece {
        margin-top: -70px;
        margin-left: -121px;
    }

    .b-germany {
        margin-top: 70px;
        margin-left: -121px;
    }

    .orbit-badge span {
        display: none;
    }

    /* Hide text on mobile for cleaner look */
    .orbit-badge {
        padding: 8px;
    }
}

/* Removed Hero Bottom Bar Styles */


/* ==========================================================================
   Marquee Bar
   ========================================================================== */
.marquee-bar {
    background: var(--primary);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scrollMarquee 30s linear infinite;
    gap: 40px;
}

.marquee-item {
    color: white;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.marquee-item i {
    font-size: 0.9rem;
    color: var(--secondary);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   About Experience Section (New Design)
   ========================================================================== */
.about-experience {
    background: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.about-experience::before {
    content: 'EST. 2018';
    position: absolute;
    top: 10%;
    right: -2%;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(0, 86, 210, 0.03);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

.experience-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.experience-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.main-portrait {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 40px 40px 0 40px;
    overflow: hidden;
    box-shadow: 30px 30px 0 var(--primary-light);
}

.main-portrait img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.experience-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary);
    padding: 30px;
    color: white;
    border-radius: 0 40px 0 0;
    z-index: 10;
}

.experience-label .ex-num {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    color: #ffffff;
}

.experience-label .ex-txt {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    color: #ffffff;
}

.floating-stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    z-index: 20;
}

.card-top {
    top: 10%;
    right: -20px;
}

.card-bottom {
    bottom: 20%;
    left: -40px;
}

@media (max-width: 768px) {
    .floating-stat-card {
        position: relative;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 10px auto;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .card-top,
    .card-bottom {
        transform: none !important;
    }
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.stat-info h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.stat-info p {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0;
}

.section-tagline {
    display: block;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.pillar-stack {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pillar-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.pillar-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    transition: var(--transition-fast);
}



.pillar-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.about-action {
    margin-top: 50px;
}

@media (max-width: 992px) {
    .experience-layout {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .main-portrait {
        margin: 0 auto;
    }

    .card-top,
    .card-bottom {
        right: 0;
        left: unset;
    }

    .main-portrait {
        box-shadow: 15px 15px 0 var(--primary-light);
        max-width: 90%;
    }
}

/* ==========================================================================
   Home Services (4-Card Summary Grid)
   ========================================================================== */
.home-services {
    background: #f8f9fa;
}

.services-grid-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-summary-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(59, 59, 255), rgb(10, 177, 255));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.service-summary-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-summary-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: #b7d8ff;
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.card-icon.secondary {
    background: #fffde7;
    color: var(--secondary);
}

.card-icon.tertiary {
    background: #f3e5f5;
    color: #8e44ad;
}

.card-icon.accent {
    background: #e8f5e9;
    color: #16a085;
}

.service-summary-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-summary-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
    transition: color 0.4s ease;
}

.service-summary-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 25px;
    transition: color 0.4s ease;
}

.service-summary-card:hover h3,
.service-summary-card:hover p {
    color: white;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    transition: all 0.4s ease;
}

.service-summary-card:hover .learn-more {
    color: white;
    gap: 15px;
}

/* ==========================================================================
   Services Section (Premium Showcase - Alternating)
   ========================================================================== */
.services-showcase {
    background: #ffffff;
    overflow: hidden;
}

.showcase-items {
    display: flex;
    flex-direction: column;
    gap: 150px;
    margin-top: 80px;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 80px;
}

.showcase-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Visual Side */
.showcase-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.showcase-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
}

.glow-icon {
    position: absolute;
    z-index: 2;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 86, 210, 0.2);
    animation: floatingIcon 4s infinite ease-in-out;
}

.glow-icon.secondary {
    color: var(--secondary);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.glow-icon.tertiary {
    color: #8e44ad;
    box-shadow: 0 20px 50px rgba(142, 68, 173, 0.2);
}

.glow-icon.accent {
    color: #16a085;
    box-shadow: 0 20px 50px rgba(22, 160, 133, 0.2);
}

@keyframes floatingIcon {

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

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

.abstract-card {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.abstract-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 86, 210, 0.05) 0%, transparent 70%);
}

/* Content Side */
.showcase-content {
    flex: 1;
}

.step-label {
    display: inline-block;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.showcase-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.showcase-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 12px;
}

.feature-list li i {
    color: var(--primary);
    font-size: 1rem;
}

/* ==========================================================================
   Services Page: The Experience Layout (Beyond Borders Sync)
   ========================================================================== */
/* ==========================================================================
   Secondary Pages Header
   ========================================================================== */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/hero-orb.png');
    background-size: cover;
    background-position: center;
    padding: 130px 0 100px;
    position: relative;
    z-index: 1;
}

.page-hero {
    background: var(--primary-dark);
    padding: 200px 0 100px;
}

.display-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 8vw, 2.5rem);
    margin-bottom: 20px;
}

.display-title span {
    color: var(--primary-light);
}

.service-experience-section {
    position: relative;
    overflow: hidden;
}

.service-experience-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

.service-experience-section:nth-child(even) .service-experience-layout {
    grid-template-columns: 1fr 1.2fr;
}

/* Visual Stack for Services */
.service-visual-stack {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: var(--shadow-xl);
    filter: brightness(0.9);
    transition: transform 0.6s ease;
}

@media (max-width: 768px) {
    .service-main-img {
        height: 250px;
        border-radius: 20px;
    }
}

.service-experience-section:hover .service-main-img {
    transform: scale(1.02);
}

.service-overlay-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 35px;
    box-shadow: 0 30px 60px rgba(0, 86, 210, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-experience-section:nth-child(even) .service-overlay-badge {
    right: auto;
    left: -30px;
}

.badge-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.badge-label {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Stack for Services */
.service-experience-content .pillar-number {
    font-size: 3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: rgba(0, 86, 210, 0.05);
    line-height: 1;
    margin-bottom: -10px;
}

.service-experience-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 6vw, 2.8rem);
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.service-experience-content .section-tagline {
    display: block;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Mobile Adjustments for Service Experience */
@media (max-width: 992px) {

    .service-experience-layout,
    .service-experience-section:nth-child(even) .service-experience-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-overlay-badge {
        bottom: 20px;
        right: 20px !important;
        left: auto !important;
        width: 110px;
        height: 110px;
        border-radius: 25px;
        padding: 10px;
    }

    .badge-icon {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .badge-label {
        font-size: 0.75rem;
        font-weight: 700;
    }

    .service-experience-content h2 {
        font-size: 2.4rem;
    }
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .services-grid-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .showcase-item,
    .showcase-item:nth-child(even) {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .showcase-items {
        gap: 100px;
    }

    .feature-list li {
        justify-content: flex-start;
    }

    .showcase-content h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .services-grid-summary {
        grid-template-columns: 1fr;
    }

    .display-title {
        font-size: 3rem;
    }

    .service-details {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Premium Bento Box Industries Section
   ========================================================================== */
.bento-industries {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 86, 210, 0.25);
    z-index: 2;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 100%);
    transition: background 0.5s ease;
}

.bento-card:hover::before {
    background: linear-gradient(to top, rgba(0, 86, 210, 0.95) 0%, rgba(0, 86, 210, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}

.bento-overlay {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
    transform: translateY(15px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: white;
}

.bento-card:hover .bento-overlay {
    transform: translateY(0);
}

.bento-overlay i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 12px;
    display: block;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s;
}

.bento-card:hover .bento-overlay i {
    transform: scale(1.15) translateY(-5px);
    color: white;
}

.bento-overlay h3 {
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Bento CTA Block */
.bento-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    box-shadow: 0 15px 30px rgba(0, 86, 210, 0.15);
}

.bento-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.bento-cta {
    grid-column: span 2;
}

.bento-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 90%;
}

.btn-white {
    background: white;
    color: var(--primary-dark);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Bento Grid Spans */
.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 992px) {
    .bento-industries {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-wide,
    .bento-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .bento-industries {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .bento-wide,
    .bento-large,
    .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ==========================================================================
   Premium European Destinations Section
   ========================================================================== */
.countries {
    position: relative;
    overflow: hidden;
}

.map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 500" opacity="0.1"><circle cx="200" cy="150" r="5" fill="white" /><circle cx="400" cy="200" r="5" fill="white" /><circle cx="600" cy="100" r="5" fill="white" /><circle cx="800" cy="300" r="5" fill="white" /><circle cx="500" cy="400" r="5" fill="white" /><path d="M200 150 Q300 175 400 200 T600 100 T800 300" stroke="white" stroke-width="1" fill="none" stroke-dasharray="5,5"/></svg>') center/cover;
    z-index: 0;
    pointer-events: none;
}

.countries .container {
    position: relative;
    z-index: 1;
}

.country-pills-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: nowrap;
}

.country-pill {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 20px 8px 8px;
    flex: 1;
    white-space: nowrap;
    max-width: 240px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: default;
}

.country-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 86, 210, 0.2);
}

.pill-flag {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.country-pill:hover .pill-flag {
    transform: scale(1.1) rotate(5deg);
    border-color: white;
}

.pill-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pill-info {
    text-align: left;
}

.pill-info h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 2px 0;
    font-family: 'Poppins', sans-serif;
}

.pill-info span {
    color: var(--primary-light);
    font-size: 0.70rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    display: block;
    transition: color 0.3s;
    text-overflow: ellipsis;
    overflow: hidden;
}

.country-pill:hover span {
    color: white;
}

@media (max-width: 992px) {
    .country-pills-container {
        flex-wrap: wrap;
    }

    .country-pill {
        max-width: 100%;
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .country-pill {
        flex: 1 1 100%;
    }
}

/* ==========================================================================
   Symmetrical Premium Pillars Section (Why Choose Us)
   ========================================================================== */
.benefits-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.benefit-pillar {
    flex: 1;
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.benefit-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.benefit-pillar:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 86, 210, 0.1);
}

.benefit-pillar:hover::before {
    opacity: 1;
}

.b-icon-large {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-pillar:hover .b-icon-large {
    transform: scale(1.2) translateY(-10px);
    color: var(--secondary);
}

.benefit-pillar h4 {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-pillar p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Watermark Numbering inside the pillar */
.benefit-watermark {
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 86, 210, 0.03);
    z-index: -1;
    font-family: 'Playfair Display', serif;
    transition: color 0.5s ease, transform 0.5s ease;
}

.benefit-pillar:hover .benefit-watermark {
    color: rgba(0, 86, 210, 0.08);
    transform: scale(1.1) rotate(-5deg);
}

@media (max-width: 992px) {
    .benefits-container {
        flex-direction: column;
        gap: 40px;
    }
}


/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.info-items {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(0, 86, 210, 0.1);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 4px;
}

.info-item p {
    color: var(--text-muted);
}

.map-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: var(--shadow-sm);
}

/* Form Styles */
.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-control {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-main);
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    background: white;
    transition: var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 86, 210, 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #06101D;
    color: var(--text-muted);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    margin-bottom: 24px;
}

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

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

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

.footer-links h3,
.footer-newsletter h3 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.2rem;
}

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

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-newsletter p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    border-radius: 50px 0 0 50px;
    border: none;
    padding-left: 20px;
}

.newsletter-form button {
    border-radius: 0 50px 50px 0;
    border: none;
    background: var(--primary);
    color: white;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--primary-light);
}

.footer-bottom {
    background: #030A14;
    padding: 20px 0;
}

/* ==========================================================================
   WhatsApp Float
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.social-share-float {
    position: fixed;
    top: 50%;
    left: 25px;
    width: 55px;
    height: 55px;
    background: #000000;
    color: white !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(-50%);
}

.social-share-float.active {
    background: #252525;
}

.social-share-float.active .share-icon-wrapper {
    transform: rotate(135deg);
}

.share-icon-wrapper,
.social-share-float i,
.social-share-float span {
    color: white !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.social-share-float.active .social-popup {
    pointer-events: auto;
}

.social-popup a {
    position: absolute;
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translate(0, 0) rotate(-135deg) scale(0);
}

/* Fan out positions (Compact Upper-Right Arc) */
.social-share-float.active .s-fb {
    opacity: 1;
    transform: translate(0px, -90px) rotate(0deg) scale(1);
    background: #1877F2;
    color: white;
}

.social-share-float.active .s-ig {
    opacity: 1;
    transform: translate(65px, -65px) rotate(0deg) scale(1);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-share-float.active .s-tr {
    opacity: 1;
    transform: translate(90px, 0px) rotate(0deg) scale(1);
    background: #000000;
    color: white;
}

.social-share-float.active .s-fb:hover {
    transform: translate(0px, -90px) scale(1.1);
}

.social-share-float.active .s-ig:hover {
    transform: translate(65px, -65px) scale(1.1);
}

.social-share-float.active .s-tr:hover {
    transform: translate(90px, 0px) scale(1.1);
}

/* ==========================================================================
   Premium Parallax Industries Details (industries.html)
   ========================================================================== */
/* ==========================================================================
   Luxury Industries Grid (industries.html)
   ========================================================================== */
.industries-details-container {
    padding: 80px 0;
    background: var(--bg-light);
}

.luxury-industries-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.luxury-industry-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 250px;
}

.luxury-industry-card:nth-child(even) {
    flex-direction: row-reverse;
}

.luxury-industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 86, 210, 0.12);
}

.luxury-card-image {
    width: 35%;
    position: relative;
    overflow: hidden;
}

.luxury-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.luxury-industry-card:hover .luxury-card-image img {
    transform: scale(1.05);
}

.luxury-card-body {
    width: 65%;
    padding: 35px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.luxury-card-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--bg-dark);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.luxury-card-body h2 i {
    color: var(--primary);
    background: rgba(0, 86, 210, 0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.luxury-industry-card:hover h2 i {
    background: var(--primary);
    color: white;
    transform: rotate(10deg);
}

.luxury-roles {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.luxury-roles li {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.luxury-roles li i {
    color: var(--primary-light);
    font-size: 0.8rem;
}

.btn-luxury {
    margin-top: 10px;
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-main);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    align-self: flex-start;
}

.luxury-industry-card:hover .btn-luxury {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

@media (max-width: 992px) {

    .luxury-industry-card,
    .luxury-industry-card:nth-child(even) {
        flex-direction: column;
    }

    .luxury-card-image {
        width: 100%;
        min-height: 250px;
    }

    .luxury-card-body {
        width: 100%;
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .luxury-roles {
        grid-template-columns: 1fr;
    }

    .luxury-card-image {
        min-height: 180px;
    }

    .luxury-card-body {
        padding: 30px;
    }
}

/* Video Trigger and Modal Styles */
.video-trigger-container {
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.luxury-industry-card:hover .video-overlay {
    opacity: 1;
}

.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 86, 210, 0.4);
}

.luxury-industry-card:hover .play-btn-circle {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-btn-circle:hover {
    background: #0044a8;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Modal */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 14, 50, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-container {
    width: 90%;
    max-width: 900px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal-overlay.active .video-modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--secondary);
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: black;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-container.portrait {
    max-width: 320px; /* Even more compact */
    max-height: 85vh; /* Safe vertical limit */
}

.video-wrapper.portrait {
    aspect-ratio: 9 / 16;
}

.video-wrapper.portrait video {
    object-fit: contain; /* Ensure nothing is cut off */
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .video-modal-container {
        width: 95%;
    }
    
    .video-modal-container.portrait {
        max-width: 280px; /* Reduced for smaller mobile screens */
    }
    
    .modal-close {
        top: -40px;
        right: 10px;
        font-size: 2rem;
    }

    /* Force visibility on mobile */
    .video-overlay {
        opacity: 1;
    }

    .play-btn-circle {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* ==========================================================================
   Reveal Animations
   ========================================================================== */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-fade-up.active {
    opacity: 1;
}

.reveal-fade-in {
    opacity: 0;
    transition: 1s ease;
}

.reveal-fade-in.active {
    opacity: 1;
}

.reveal-fade-left {
    opacity: 0;
    transform: translateX(50px);
    transition: 0.8s ease-out;
}

.reveal-fade-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-fade-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: 0.8s ease-out;
}

.reveal-fade-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.8);
    transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* ==========================================================================
   European Certified Excellence Section (Compact)
   ========================================================================== */
.certified-excellence-compact {
    padding: 40px 0;
}

.cert-card {
    background: #000e32;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 86, 210, 0.08);
    /* Soft primary shadow */
    border: 1px solid rgba(0, 86, 210, 0.1);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cert-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.cert-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.cert-title span {
    color: rgb(0, 93, 199);
}

.cert-desc {
    color: rgb(182, 182, 182);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 800px;
}

.cert-brands {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: rgba(0, 86, 210, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 86, 210, 0.1);
    display: inline-flex;
}

.cert-label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-right: 10px;
}

.cert-brand {
    font-weight: 700;
    color: rgb(213, 213, 213);
    font-size: 0.9rem;
}

.cert-divider {
    color: rgba(255, 255, 255, 0.775);
}

.cert-badge-wrapper {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.clean-iso-badge {
    width: 110px;
    height: 110px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 20px rgba(212, 160, 23, 0.15);
    border: 2px dashed var(--secondary);
    color: var(--text-main);
}

.clean-iso-badge .badge-icon {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.clean-iso-badge .badge-text {
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
    color: var(--primary);
}

@media (max-width: 992px) {
    .cert-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .cert-badge-wrapper {
        order: -1;
        margin-bottom: 5px;
    }

    .cert-brands {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .certified-excellence-compact {
        padding: 30px 0;
    }

    .cert-title {
        font-size: 1.5rem;
    }

    .cert-desc {
        font-size: 0.85rem;
    }

    .cert-brands {
        flex-direction: column;
        border-radius: 15px;
        padding: 15px;
        gap: 8px;
        width: 100%;
        background: transparent;
        border: none;
    }

    .cert-label {
        margin-bottom: 5px;
        margin-right: 0;
    }

    .cert-divider {
        display: none;
    }

    .clean-iso-badge {
        width: 100px;
        height: 100px;
    }
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: 2;
        margin-top: 40px;
    }

    .about-text {
        order: 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    section,
    header,
    footer {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions .btn-primary-outline {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section-padding {
        padding: 70px 0;
    }

    .hero {
        padding: 140px 0 70px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-bottom-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-brand .logo {
        justify-content: center;
    }

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

    .footer-links {
        display: none;
    }

    /* Smaller, corner-positioned floating icons for mobile */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 15px;
        font-size: 1.6rem;
    }

    .social-share-float {
        width: 48px;
        height: 48px;
        bottom: 20px;
        left: 15px;
        top: auto;
        transform: none;
        font-size: 1.3rem;
    }

    .social-share-float.active {
        background: var(--primary);
    }

    .social-share-float.active .share-icon-wrapper {
        transform: rotate(135deg);
    }

    /* Compact Mobile fan-out Arc */
    .social-share-float.active .s-fb {
        transform: translate(0px, -70px) scale(1);
    }

    .social-share-float.active .s-ig {
        transform: translate(50px, -50px) scale(1);
    }

    .social-share-float.active .s-tr {
        transform: translate(70px, 0px) scale(1);
    }

    .social-share-float.active .s-fb:hover {
        transform: translate(0px, -70px) scale(1.1);
    }

    .social-share-float.active .s-ig:hover {
        transform: translate(50px, -50px) scale(1.1);
    }

    .social-share-float.active .s-tr:hover {
        transform: translate(70px, 0px) scale(1.1);
    }
}

/* ==========================================================================
   Specialized Industries Cinematic Layout
   ========================================================================== */
.industry-stripe {
    position: relative;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stripe-overlay-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.industry-stripe .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
}

.industry-stripe:nth-child(even) .container {
    justify-content: flex-end;
}

.glass-panel {
    background: rgba(20, 20, 25, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 50px;
    border-radius: 30px;
    max-width: 650px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    color: white;
    transition: transform 0.5s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 86, 210, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 86, 210, 0.2);
}

.glass-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-header i {
    font-size: 3rem;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 86, 210, 0.3);
}

.glass-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    letter-spacing: 1px;
}

.stripe-roles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
    margin-bottom: 40px;
}

.stripe-roles-grid span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.stripe-roles-grid span::before {
    content: '\f058';
    /* fa-circle-check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-light);
    font-size: 1.2rem;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.btn-glass:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 86, 210, 0.4);
}

@media (max-width: 992px) {
    .industry-stripe {
        padding: 80px 0;
        min-height: auto;
        background-attachment: scroll;
    }

    .glass-panel {
        padding: 30px;
        border-radius: 20px;
    }

    .glass-header h2 {
        font-size: 1.8rem;
    }

    .glass-header i {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .stripe-roles-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Legal Pages --- */
.legal-page-body {
    background-color: #f8f9fa;
}

.legal-header {
    padding: 180px 0 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #001f4d 100%);
    color: white;
    text-align: center;
    position: relative;
}

.legal-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 10vw, 3.5rem);
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.legal-content-container {
    max-width: 900px;
    margin: -60px auto 80px auto;
    background: white;
    padding: 60px 80px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.legal-content-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--bg-dark);
    margin: 40px 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 86, 210, 0.1);
}

.legal-content-container h2:first-child {
    margin-top: 0;
}

.legal-content-container h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 30px 0 15px 0;
}

.legal-content-container p,
.legal-content-container ul {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content-container ul {
    padding-left: 20px;
}

.legal-content-container li {
    margin-bottom: 10px;
}

.footer-legal-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .legal-header {
        padding: 150px 0 80px 0;
    }

    .legal-header h1 {
        font-size: 2.5rem;
    }

    .legal-content-container {
        padding: 40px 30px;
        margin-top: -30px;
    }
}

/* --- FAQ Section --- */
.faq-section {
    background-color: var(--bg-white);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 86, 210, 0.08);
    border-color: rgba(0, 86, 210, 0.1);
}

.faq-toggle {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--bg-dark);
    padding-right: 20px;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 86, 210, 0.05);
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
    background: var(--primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.answer-content {
    padding: 0 30px 25px 30px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: -5px;
}

@media (max-width: 768px) {
    .faq-toggle {
        padding: 20px;
    }

    .faq-question {
        font-size: 1.05rem;
    }

    .answer-content {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }
}

/* --- Hero Mobile Alignment & Scaling Fixes --- */
@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 60px;
        text-align: center;
    }

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

    .hero-text h1 {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        /* Prevent button cutoff */
    }

    .hero-orb-wrapper {
        max-width: 340px;
        height: 340px;
        margin-top: 20px;
    }

    .main-orb {
        width: 220px;
        height: 220px;
        flex-shrink: 0;
    }

    .ring-1 {
        width: 280px;
        height: 280px;
    }

    .ring-2 {
        width: 320px;
        height: 320px;
    }

    .ring-3 {
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 15px 40px;
    }

    .hero-text h1 {
        font-size: 2.15rem;
        /* Adjusted for exactly 4 lines on 360px+ */
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }


}

/* --- About Us Mobile Fixes --- */
@media (max-width: 992px) {
    .experience-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-experience::before {
        display: none;
        /* Hide huge background watermark on mobile */
    }

    .experience-visual {
        display: none;
        /* Hide images on mobile per user request */
    }

    .experience-text {
        order: 1;
    }

    .experience-visual {
        order: 2;
    }

    .main-portrait {
        box-shadow: 15px 15px 0 var(--primary-light);
        /* Reduced shadow to prevent overflow */
        max-width: 100%;
        /* Changed from 350px to fit all screens */
        margin: 0 auto;
    }

    .pillar-item {
        text-align: left;
        max-width: 280px;
        /* Force it to fit in 300px viewport */
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .experience-label {
        padding: 20px;
    }

    .experience-label .ex-num {
        font-size: 2rem;
    }

    .main-portrait {
        box-shadow: 10px 10px 0 var(--primary-light);
    }

    .pillar-item {
        gap: 15px;
    }

    .section-title {
        word-break: break-word;
        line-height: 1.2;
        font-size: 1.8rem;
        /* Slightly smaller for 300px screens */
    }

    .experience-text {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* ==========================================================================
   Founder Story Section
   ========================================================================== */
.founder-story {
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
    overflow: hidden;
}

.founder-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

/* --- Image Side --- */
.founder-image-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.founder-img-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--primary-light), 0 20px 60px rgba(0, 86, 210, 0.15);
}

.founder-img-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.6s ease;
}

.founder-img-frame:hover img {
    transform: scale(1.04);
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0, 86, 210, 0.4);
    letter-spacing: 0.5px;
}

.founder-badge i {
    color: var(--accent);
}

.founder-stat-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 30px rgba(0, 86, 210, 0.08);
    border: 1px solid rgba(0, 86, 210, 0.08);
}

.founder-stat {
    text-align: center;
    flex: 1;
}

.fstat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.fstat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Content Side --- */
.founder-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.founder-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary-dark);
    background: white;
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 20px rgba(0, 86, 210, 0.07);
    line-height: 1.8;
    position: relative;
}

.founder-quote .fa-quote-left {
    color: var(--primary-light);
    font-size: 0.85rem;
    margin-right: 6px;
    vertical-align: super;
}

.founder-quote .fa-quote-right {
    color: var(--primary-light);
    font-size: 0.85rem;
    margin-left: 6px;
    vertical-align: sub;
}

.founder-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin: 0;
}

.founder-text strong {
    color: var(--text-main);
    font-weight: 700;
}

.founder-values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.founder-value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid rgba(0, 86, 210, 0.12);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 2px 10px rgba(0, 86, 210, 0.06);
    transition: all 0.3s ease;
}

.founder-value-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

.founder-value-item:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 86, 210, 0.2);
}

.founder-value-item:hover i {
    color: var(--accent);
}



.founder-text {
    font-size: 16px;
    text-align: justify;
    color: #444;
    max-width: 800px;
}

/* Name highlight */
.highlight-name {
    font-weight: 700;
    color: #000;
}

/* Role styling */
.highlight-role {
    font-weight: 600;
    color: #0056D2;
}

/* Important text */
.highlight-text {
    color: #0056D2;
    font-weight: 500;
}

/* Number highlight */
.highlight-number {
    font-size: 18px;
    font-weight: 700;
    color: #0056D2;
}

/* Optional hover glow effect */
.highlight-text:hover,
.highlight-number:hover {
    text-shadow: 0 0 8px rgba(255, 102, 0, 0.6);
    transition: 0.3s;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .founder-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-img-frame img {
        height: 360px;
        object-position: top;
    }
}

@media (max-width: 576px) {
    .founder-img-frame img {
        height: 280px;
        object-position: top;
    }

    .founder-stat-row {
        gap: 8px;
        padding: 16px;
    }

    .fstat-num {
        font-size: 1.3rem;
    }

    .founder-values {
        gap: 8px;
    }

    .founder-value-item {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
}

/* ==========================================================================
   Anniversary Celebration Badge
   ========================================================================== */
.anniversary-badge {
    position: fixed;
    top: 90px;
    right: 30px;
    width: 140px;
    /* Adjusted for better visibility */
    z-index: 1001;

    cursor: pointer;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
    animation:
        anniversaryPop 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both,
        anniversaryFloat 4s ease-in-out infinite alternate 1.2s;
}

.anniversary-badge:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 15px 35px rgba(255, 215, 0, 0.4));
}

.anniversary-badge img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes anniversaryPop {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }

    70% {
        transform: scale(1.1) rotate(5deg);
    }

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

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

    100% {
        transform: translateY(-15px);
    }
}

/* Responsive adjustments for badge */
@media (max-width: 768px) {
    .anniversary-badge {
        top: 80px;
        right: 20px;
        width: 100px;
    }
}

@media (max-width: 480px) {
    .anniversary-badge {
        width: 80px;
        top: auto;
        bottom: 100px;
        right: 15px;
    }
}

/* --- Celebration Effects (Burst & Twinkle) --- */
.anniversary-badge .anniversary-effect {
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

/* Ribbons/Confetti Shapes */
.anniversary-effect.effect-1,
.anniversary-effect.effect-3,
.anniversary-effect.effect-5 {
    width: 6px;
    height: 15px;
    border-radius: 2px;
}

/* Star/Sparkle Shapes */
.anniversary-effect.effect-2,
.anniversary-effect.effect-4,
.anniversary-effect.effect-6 {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.anniversary-effect.effect-1 {
    background: #ff4d4d;
    animation: burst1 2s ease-out infinite;
}

.anniversary-effect.effect-2 {
    background: #ffd700;
    animation: burst2 2s ease-out infinite, twinkle 2s ease-in-out infinite alternate;
}

.anniversary-effect.effect-3 {
    background: #4da6ff;
    animation: burst3 2s ease-out infinite;
}

.anniversary-effect.effect-4 {
    background: #ffcc00;
    animation: burst4 2s ease-out infinite, twinkle 1.5s ease-in-out infinite alternate;
}

.anniversary-effect.effect-5 {
    background: #ff4dff;
    animation: burst5 2s ease-out infinite;
}

.anniversary-effect.effect-6 {
    background: #00ffcc;
    animation: burst6 2s ease-out infinite, twinkle 2.5s ease-in-out infinite alternate;
}

@keyframes burst1 {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    10%,
    40% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
        transform: translate(-100px, -80px) scale(1) rotate(45deg);
    }
}

@keyframes burst2 {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    10%,
    40% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
        transform: translate(100px, -60px) scale(1) rotate(-30deg);
    }
}

@keyframes burst3 {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    10%,
    40% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
        transform: translate(-60px, 100px) scale(1) rotate(90deg);
    }
}

@keyframes burst4 {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    10%,
    40% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
        transform: translate(60px, 80px) scale(1) rotate(15deg);
    }
}

@keyframes burst5 {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    10%,
    40% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
        transform: translate(-120px, 20px) scale(1) rotate(-60deg);
    }
}

@keyframes burst6 {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    10%,
    40% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
        transform: translate(120px, 40px) scale(1) rotate(120deg);
    }
}


@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(0.6) translate(var(--twinkle-x, 0), var(--twinkle-y, 0));
    }

    100% {
        opacity: 1;
        transform: scale(1) translate(var(--twinkle-x, 0), var(--twinkle-y, 0));
    }
}

/* Ensure the twinkle stays at the final burst position */
.effect-2 {
    --twinkle-x: 100px;
    --twinkle-y: -60px;
}

.effect-4 {
    --twinkle-x: 60px;
    --twinkle-y: 80px;
}

.effect-6 {
    --twinkle-x: 120px;
    --twinkle-y: 40px;
}