/* =========================================
   ICALO INSTITUTE - PREMIUM INTERNATIONAL REDESIGN
   ========================================= */

:root {
    --color-primary: #0A2540;
    --color-primary-light: #143A5C;
    --color-accent: #C5A059;
    --color-accent-hover: #B08D4B;
    --color-accent-light: rgba(197, 160, 89, 0.1);
    --color-white: #FFFFFF;
    --color-off-white: #F8F9FA;
    --color-text-dark: #1A202C;
    --color-text-muted: #64748B;
    --color-border: #E2E8F0;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Base & Utilities */
* { box-sizing: border-box; }
html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}
body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background: var(--color-white);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}
.content-white {
    color: white;
}
.text-black {
    color:#081828;
}
/* Popup open hone par background scroll lock karega */
body.icalo-popup-open {
    overflow: hidden !important;
    padding-right: 0 !important; /* Bootstrap scrollbar compensation ko override karta hai */
}

img { max-width: 100%; height: auto; display: block; }
.section-padding { padding: 5rem 0; }
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}
.text-accent { color: var(--color-accent) !important; }
.bg-accent-light { background-color: var(--color-accent-light); }
.ls-2 { letter-spacing: 2px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* Scroll Progress */
#scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px;
    background: var(--color-accent); z-index: 9999; width: 0%; transition: width 0.1s linear;
}
.bg-primary {
    --bs-bg-opacity: 1;
    background: var(--color-primary), var(--bs-bg-opacity) !important;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--color-primary), var(--bs-bg-opacity)) !important;
}
/* Navbar */
.navbar { 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(12px); 
    transition: all 0.3s ease; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
    padding: 1rem 0; 
}
.navbar.scrolled { 
    box-shadow: var(--shadow-md); 
    padding: 0.75rem 0; 
}
.navbar-logo { border-radius: 8px; }
.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}
.brand-sub {
    font-size: 0.6rem;
    color: var(--color-text-muted);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.nav-link { 
    color: var(--color-text-dark) !important; 
    font-weight: 500; 
    font-size: 0.95rem; 
    margin: 0 0.5rem; 
    transition: color 0.3s; 
    position: relative; 
}
.nav-link:hover, .nav-link.active { color: var(--color-primary) !important; }
.nav-link::after { 
    content:''; position:absolute; bottom:0; left:0; width:0; height:2px; 
    background:var(--color-accent); transition:0.3s; 
}
.nav-link:hover::after { width:100%; }

/* Buttons */
.btn-premium {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.btn-premium:hover {
    background: var(--color-primary-light);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-accent {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-accent:hover {
    background: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(197, 160, 89, 0.4);
}
.btn-outline-premium {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-premium:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--color-white);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Mobile background image */
@media (max-width: 767.98px) {
    .hero-section {
        background-image: url('../Banner/mobilebanner.png') !important;
        background-position: center 30% !important;
    }
}


.hero-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.85) 50%, rgba(10, 37, 64, 0.6) 100%);
}
.hero-badge {
    display: inline-block;
    background: rgba(197, 160, 89, 0.15);
    color: var(--color-accent);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.trust-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-accent);
}

/* Trust Bar */
.trust-bar-section {
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    padding-bottom: 2rem;
}
.stats-bar {
    background: var(--color-primary);
    box-shadow: var(--shadow-xl);
}
.stat-item { text-align: center; }
.stat-num { font-size: 2rem; font-family: var(--font-heading); }
.stat-label { font-size: 0.8rem; letter-spacing: 1px; }

/* Image Composition & Floating Badges */
.image-composition { position: relative; }

/* keep all slides same height/crop for consistent look */
#whyIcaloSlider .carousel-item img {
    width: 100%;
    height: 450px;      /* adjust as per your design */
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 2;
}
.floating-badge-2 {
    position: absolute;
    top: 20px;
    left: -20px;
    z-index: 2;
}

/* Feature Items */
.feature-item {
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}
.feature-item:hover {
    background: var(--color-off-white);
}

/* Affiliation Cards */
.affiliation-card {
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}
.affiliation-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* Program Cards */
.program-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}
.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.program-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.program-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.program-card:hover .program-img-wrap img { transform: scale(1.05); }
.program-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--color-accent); color: var(--color-white);
    padding: 0.35rem 1rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    z-index: 2;
}

/* Skill Items */
.skill-item {
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}
.skill-item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* Journey Visual */
.journey-visual { position: relative; }
.journey-steps { pointer-events: none; }
.journey-step-card { pointer-events: auto; max-width: 260px; }
@media (max-width: 991.98px) {
    .journey-steps {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .journey-step-card {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }
}
.step-num { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; }

/* Countdown */
.countdown-card { backdrop-filter: blur(10px); }
.countdown-item { min-width: 80px; }
.countdown-value { font-size: 2rem; font-family: var(--font-heading); }

/* Responsive fix */
@media (max-width: 575.98px) {
    #countdown {
        gap: 0.5rem !important;
        flex-wrap: nowrap;
    }
    .countdown-item {
        min-width: 60px;
        padding: 0.5rem !important;
    }
    .countdown-value {
        font-size: 1.25rem;
    }
    .countdown-label {
        font-size: 0.65rem;
    }
    .countdown-separator {
        font-size: 1.25rem;
    }
    .countdown-card {
        padding: 1.5rem !important; /* p-5 too large on mobile */
    }
}

@media (max-width: 400px) {
    .countdown-item {
        min-width: 50px;
        padding: 0.4rem !important;
    }
    .countdown-value {
        font-size: 1rem;
    }
    .countdown-label {
        font-size: 0.55rem;
    }
}
/* Legacy Stats */
.legacy-num { font-size: 2.5rem; font-family: var(--font-heading); }
.legacy-label { font-size: 0.9rem; font-weight: 500; }

/* Faculty Cards */
.faculty-card { transition: all 0.3s ease; }
.faculty-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.faculty-img-wrap { width: 140px; height: 140px; border: 4px solid var(--color-off-white); box-shadow: var(--shadow-md); }
.faculty-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.faculty-badge { font-size: 0.75rem; font-weight: 600; white-space: nowrap; }

/* Gallery Items */
.gallery-item { height: 250px; cursor: pointer; }
.gallery-item img { transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.9) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Qualification Chips */
.qualification-chip {
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    cursor: default;
}
.qualification-chip:hover {
    border-color: var(--color-accent);
    color: var(--color-accent) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Cert Features */
.cert-feature { transition: all 0.3s ease; }
.cert-feature:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: var(--color-accent) !important;
    transform: translateY(-3px);
}

.certification {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(20, 58, 92, 0.9) 100%);
}
/* Location Tags */
.location-tag {
    background: var(--color-off-white);
    color: var(--color-primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}
.location-tag:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Testimonial Cards */
.testi-card { transition: all 0.3s ease; }
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg) !important; }
.play-icon { transition: all 0.3s ease; cursor: pointer; }
.testi-video-wrap:hover .play-icon {
    background: var(--color-accent) !important;
    color: var(--color-white) !important;
    transform: scale(1.1);
}
@media (max-width: 991.98px) {
    .testi-video-wrap { height: 300px !important; }
}

@media (max-width: 575.98px) {
    .testi-video-wrap { height: 300px !important; }
}
/* Accordion */
.accordion-button {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-primary);
    padding: 1.25rem;
}
.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--color-primary);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: rgba(0,0,0,0.1); }
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230A2540'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Footer */
footer.bg-dark { background: #081828 !important; }
.footer-logo { border-radius: 8px; }
.social-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}
.footer-form-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-form-card .form-control,
.footer-form-card .form-select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-white);
    border-radius: var(--radius-md);
}
.footer-form-card .form-control::placeholder,
.footer-form-card .form-select option { color: rgba(255,255,255,0.5); }
.footer-form-card .form-control:focus,
.footer-form-card .form-select:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

/* Floating Elements */
.whatsapp-float {
    position: fixed; bottom: 20px; right: 20px;
    width: 60px; height: 60px; z-index: 1000;
    background: #25D366;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.enquire-float {
    position: fixed; left: 20px; bottom: 20px; z-index: 999;
    display: inline-flex; align-items: center;
    padding: 14px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}
.enquire-float:hover {
    background: var(--color-primary-light);
    transform: translateY(-3px);
}

/* =========================================
   SCOPED POPUP STYLES (No Global Conflicts)
   ========================================= */
.icalo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.85);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
}

.icalo-popup-overlay.icalo-popup-visible {
    opacity: 1;
    visibility: visible;
}

.icalo-popup-container {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.icalo-popup-overlay.icalo-popup-visible .icalo-popup-container {
    transform: translateY(0) scale(1);
}

.icalo-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-primary);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
}

.icalo-popup-close:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: rotate(90deg);
}

.icalo-popup-content {
    display: flex;
    height: 100%;
    overflow: hidden;
}

.icalo-popup-image {
    width: 45%;
    position: relative;
    background: var(--color-primary);
}

.icalo-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icalo-popup-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.95) 0%, transparent 100%);
}

.icalo-popup-form-wrapper {
    width: 55%;
    padding: 2.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.icalo-popup-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.icalo-form-group {
    position: relative;
}

.icalo-form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    background: var(--color-off-white);
}

.icalo-form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.1);
}

.icalo-form-control.is-invalid {
    border-color: #dc3545;
}

.icalo-invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.icalo-form-control.is-invalid ~ .icalo-invalid-feedback {
    display: block;
}

.icalo-btn-submit {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 0.85rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.icalo-btn-submit:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.icalo-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.icalo-alert-danger {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Mobile Popup Adjustments */
@media (max-width: 768px) {
    .icalo-popup-content {
        flex-direction: column;
    }
    
    .icalo-popup-image {
        width: 100%;
        height: 160px;
        flex-shrink: 0;
    }
    
    .icalo-popup-form-wrapper {
        width: 100%;
        padding: 1.5rem;
        max-height: calc(90vh - 160px);
    }
    
    .icalo-popup-close {
        top: 10px;
        right: 10px;
        background: rgba(10, 37, 64, 0.8);
        color: white;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .section-padding { padding: 3.5rem 0; }
    .navbar-collapse { 
        background: var(--color-white); 
        padding: 1.5rem; 
        border-radius: var(--radius-lg); 
        margin-top: 1rem; 
        box-shadow: var(--shadow-lg); 
    }
    .trust-bar-section { margin-top: 2rem; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .stat-item:last-child { border-bottom: none; }
    .floating-badge, .floating-badge-2 { position: relative; bottom: auto; right: auto; left: auto; top: auto; margin-top: 1rem; }
}

@media (max-width: 767px) {
    .hero-section { min-height: auto; padding: 8rem 0 4rem; }
    .countdown-item { min-width: 60px; padding: 0.75rem; }
    .countdown-value { font-size: 1.5rem; }
    .enquire-float { left: 16px; bottom: 16px; padding: 12px 20px; font-size: 0.9rem; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
    #backToTop { bottom: 76px; right: 16px; width: 44px; height: 44px; }
    .journey-steps { position: relative; top: auto; left: auto; width: auto; height: auto; padding: 0; margin-top: 2rem; }
    .journey-step-card { max-width: 100% !important; margin-left: 0 !important; }
}

@media (max-width: 576px) {
    .section-title { font-size: 1.75rem; }
    .legacy-num { font-size: 2rem; }
    .footer-form-card { padding: 1.5rem; }
    .icalo-popup-container { max-height: 95vh; border-radius: var(--radius-lg); }
}

/* global location css  */
.global-reach-section {
    overflow: hidden;
}

/* ---------- Left: Globe ---------- */
.globe-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.globe-img {
    max-width: 100%;
    width: 380px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 25px 35px rgba(10, 37, 64, 0.25));
    animation: spinGlobe 12s linear infinite;
}

.globe-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.25) 0%, rgba(197, 160, 89, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes spinGlobe {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}
/* ---------- Right: Content ---------- */
.reach-subtitle {
    display: inline-block;
    background-color: var(--color-primary, #0a2540);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.location-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(10, 37, 64, 0.05);
    border: 1px solid rgba(10, 37, 64, 0.15);
    color: var(--color-primary, #0a2540);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.location-tag i {
    color: var(--color-accent, #c5a059);
}

.location-tag:hover {
    background: var(--color-primary, #0a2540);
    color: #fff;
    transform: translateY(-3px);
}

.location-tag:hover i {
    color: var(--color-accent, #c5a059);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .globe-img { width: 280px; }
    .globe-glow { width: 240px; height: 240px; }
}

@media (max-width: 767.98px) {
    .global-reach-section .row { text-align: center; }
    .location-grid { justify-content: center; }
    .globe-img { width: 220px; }
    .globe-glow { width: 190px; height: 190px; }
}

@media (max-width: 575.98px) {
    .location-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    .globe-img { width: 250px; }
}