﻿/* ============================================
   about.css - Source Area Solutions
   About Page Styles - Dark-minimalist corporate
   ============================================ */

/* ----- RESET & BASE (inherits from index, but specific to about) ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0A0E17;
  color: #EDF2F8;
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding-top: 90px;
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin: 0.75rem 0 0.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2E8FD9;
  background: rgba(46, 143, 217, 0.1);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.highlight {
  color: #2E8FD9;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF, #2E8FD9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== UNIQUE CORPORATE NAVBAR ===== */
.navbar {
  position: fixed;
  top: 30px;
  width: 100%;
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid rgba(46, 143, 217, 0.2);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(6, 10, 18, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar.hide-nav {
  top: -80px;
  opacity: 0;
  pointer-events: none;
}

.navbar.show-nav {
  top: 30px;
  opacity: 1;
  pointer-events: auto;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 2rem;
}

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

.logo-wrapper {
  position: relative;
}

.logo-img {
  height: 32px;
  width: auto;
  position: relative;
  z-index: 2;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: radial-gradient(circle, rgba(230, 90, 90, 0.3), transparent);
  border-radius: 50%;
  filter: blur(8px);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.3px;
  color: #FFFFFF;
}

.brand-tagline {
  font-size: 0.55rem;
  letter-spacing: 1px;
  color: #88C9F0;
  text-transform: uppercase;
}

.area-highlight {
  color: #E65A5A;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: #E2E8F0;
  font-weight: 500;
  font-size: 0.8rem;
  transition: 0.25s;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2E8FD9;
  transition: width 0.25s;
}

.nav-menu li a:hover::after,
.nav-menu li a.active-nav::after {
  width: 100%;
}

.nav-menu li a:hover {
  color: #2E8FD9;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #111724;
  min-width: 230px;
  border-radius: 12px;
  padding: 0.75rem 0;
  top: 40px;
  left: -20px;
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(230, 90, 90, 0.2);
  backdrop-filter: blur(8px);
  z-index: 1001;
  pointer-events: auto;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  color: #EDF2F8;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  pointer-events: auto;
}

.dropdown-content a i {
  width: 20px;
  color: #2E8FD9;
}

.dropdown-content a:hover {
  background: rgba(46, 143, 217, 0.1);
  color: #60A5FA;
  padding-left: 1.8rem;
}

.dropdown:hover .dropdown-content {
  display: block;
  pointer-events: auto;
}

.external-link i {
  font-size: 0.7rem;
  margin-left: 4px;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.nav-progress {
  height: 2px;
  background: linear-gradient(90deg, #E65A5A, #1B2A4A);
  width: 0%;
  transition: width 0.2s;
}

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A0F1A, #111827);
  z-index: 0;
}

.about-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(46, 143, 217, 0.15), transparent 70%);
  animation: subtleShift 12s infinite alternate;
}

@keyframes subtleShift {
  0% { opacity: 0.4; transform: scale(1);}
  100% { opacity: 0.8; transform: scale(1.05);}
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(46, 143, 217, 0.3);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #2E8FD9;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.about-hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  color: #B0B8D0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: #94A3B8;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== COMPANY OVERVIEW ===== */
.company-overview {
  padding: 5rem 0;
  background: #0D121C;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-content p {
  color: #B0B8D0;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: #111722;
  border-radius: 16px;
  border: 1px solid #1F2838;
  transition: 0.2s;
}

.stat-item:hover {
  border-color: #2E8FD9;
  transform: translateY(-3px);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #2E8FD9;
}

.stat-label {
  font-size: 0.8rem;
  color: #94A3B8;
}

.overview-image {
  position: relative;
}

.overview-image img {
  width: 100%;
  border-radius: 24px;
}

.image-card {
  position: absolute;
  bottom: -35px;
  right: -25px;
  background: #111722;
  padding: 1.2rem;
  border-radius: 16px;
  max-width: 220px;
  border-left: 3px solid #2E8FD9;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.image-card i {
  font-size: 1.5rem;
  color: #2E8FD9;
  margin-bottom: 0.5rem;
}

.image-card p {
  font-size: 0.85rem;
  font-style: italic;
  color: #CBD5E1;
}

/* ===== MISSION & VISION SECTION ===== */
.mission-vision {
  padding: 5rem 0;
  background: #0A0E17;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mv-card {
  background: #111722;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #1F2838;
  transition: all 0.3s;
}

.mv-card:hover {
  transform: translateY(-5px);
  border-color: #2E8FD9;
  box-shadow: 0 20px 30px -12px rgba(46, 143, 217, 0.15);
}

.mv-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1B2A4A, #0F172A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  border: 2px solid #2E8FD940;
}

.mv-icon i {
  font-size: 2rem;
  color: #2E8FD9;
}

.mv-card p {
  color: #94A3B8;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== LEADERSHIP CAROUSEL SECTION ===== */
.leadership-section {
  padding: 5rem 0;
  background: #0D121C;
  overflow: hidden;
}

.leadership-swiper {
  padding: 2rem 1rem 3rem;
  overflow: visible;
}

.leader-slide {
  background: #111722;
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  border: 1px solid #1F2838;
  transition: all 0.3s ease;
  cursor: pointer;
}

.leader-slide:hover {
  transform: translateY(-8px);
  border-color: #2E8FD9;
  box-shadow: 0 20px 35px -12px rgba(46, 143, 217, 0.2);
}

.leader-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.2rem;
  border: 3px solid #2E8FD940;
  transition: all 0.3s;
}

.leader-slide:hover .leader-image {
  border-color: #2E8FD9;
  transform: scale(1.02);
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-slide h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.leader-title {
  font-size: 0.8rem;
  color: #2E8FD9;
  margin-bottom: 0.75rem;
}

.leader-bio {
  font-size: 0.8rem;
  color: #94A3B8;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.view-details {
  font-size: 0.75rem;
  color: #2E8FD9;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.leader-slide:hover .view-details {
  opacity: 1;
}

/* Swiper Navigation */
.leadership-pagination {
  margin-top: 1rem;
}

.leadership-pagination .swiper-pagination-bullet {
  background: #2A3343;
  opacity: 0.6;
}

.leadership-pagination .swiper-pagination-bullet-active {
  background: #2E8FD9;
  opacity: 1;
}

.leadership-prev,
.leadership-next {
  color: #2E8FD9;
  background: #111722;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #2A3343;
  transition: all 0.3s;
}

.leadership-prev:hover,
.leadership-next:hover {
  background: #2E8FD9;
  color: white;
  border-color: #2E8FD9;
}

/* ===== LEADERSHIP MODAL ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #111722;
  border-radius: 24px;
  border: 1px solid #2A3343;
  animation: modalFadeIn 0.3s;
  max-width: 90%;
  width: 500px;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-header {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid #1F2838;
}

.modal-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #2E8FD9;
}

.modal-title h3 {
  margin: 0 0 0.25rem;
}

.modal-title span {
  color: #2E8FD9;
  font-size: 0.85rem;
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 1.8rem;
  cursor: pointer;
  color: #94A3B8;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #2E8FD9;
}

.modal-body {
  padding: 1.5rem;
}

.modal-specialization {
  background: #0D121C;
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.modal-specialization h4 {
  font-size: 0.9rem;
  color: #2E8FD9;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-specialization p {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.5;
}

.modal-contact {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.modal-contact a {
  color: #2E8FD9;
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.modal-contact a:hover {
  text-decoration: underline;
}

/* ===== CREDENTIALS & EXPERTISE SECTION ===== */
.credentials-section {
  padding: 5rem 0;
  background: #0A0E17;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 3000px;
  margin: 0 auto;
}

.expertise-item {
  display: flex;
  gap: 1.5rem;
  padding-left: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  align-items: flex-start;
}

.expertise-marker {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(180deg, #2E8FD9, #E65A5A);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.expertise-item:hover .expertise-marker {
  width: 4px;
}

.expertise-icon {
  font-size: 2.5rem;
  transition: all 0.3s ease;
  min-width: 70px;
  text-align: center;
  margin-left: 12px;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloud-icon {
  color: #60A5FA;
}

.security-icon {
  color: #FCA5A5;
}

.performance-icon {
  color: #86EFAC;
}

.innovation-icon {
  color: #D8B4FE;
}

.expertise-item:hover .expertise-icon {
  transform: scale(1.15) rotate(10deg);
}

.expertise-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.expertise-item h4 {
  font-size: 1.15rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
}

.expertise-item:hover h4 {
  color: #2E8FD9;
}

.expertise-item p {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.6;
  margin: 0;
}

/* ===== GLOBAL PRESENCE SECTION ===== */
.global-presence {
  padding: 5rem 0;
  background: #0D121C;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.location-card {
  background: #111722;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #1F2838;
  transition: all 0.3s;
}

.location-card:hover {
  transform: translateY(-5px);
  border-color: #2E8FD9;
}

.location-card i {
  font-size: 2rem;
  color: #2E8FD9;
  margin-bottom: 1rem;
}

.location-card h4 {
  margin-bottom: 0.5rem;
}

.location-card p {
  font-size: 0.8rem;
  color: #94A3B8;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0A0E17, #0D121C);
  border-top: 1px solid #1F2838;
}

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

.cta-container h3 {
  font-size: 2rem;
}

.cta-container p {
  margin: 1rem 0;
  color: #94A3B8;
}

.btn-primary {
  background: #2E8FD9;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: #1B5A99;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(46, 143, 217, 0.4);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ===== ENHANCED FOOTER ===== */
.footer {
  background: #05080F;
  position: relative;
  margin-top: 0;
}

.footer-wave {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.footer-main {
  padding: 3rem 0 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding: 0 32px;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}

.footer-logo-img {
  height: 42px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.footer-desc {
  color: #94A3B8;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #111722;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  transition: all 0.3s;
  border: 1px solid #1F2838;
  text-decoration: none;
}

.social-icons a:hover {
  background: #2E8FD9;
  color: white;
  border-color: #2E8FD9;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #2E8FD9;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.footer-col ul li a:hover {
  color: #2E8FD9;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #94A3B8;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.contact-info li i {
  width: 20px;
  color: #2E8FD9;
}

.footer-bottom {
  border-top: 1px solid #1A202E;
  padding: 1.5rem 0;
}

.footer-bottom-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 32px;
}

.footer-bottom p {
  color: #64748B;
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #64748B;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #2E8FD9;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }
  
  .about-hero h1 {
    font-size: 3rem;
  }
  
  .overview-grid {
    gap: 2rem;
  }
  
  .mv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: #0C111C;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem;
    gap: 1.5rem;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .about-hero h1 {
    font-size: 2.2rem;
  }
  
  .overview-grid {
    grid-template-columns: 1fr;
  }
  
  .mv-grid {
    grid-template-columns: 1fr;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-logo-wrapper {
    justify-content: center;
  }
  
  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-info li {
    justify-content: center;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .certifications-horizontal {
    gap: 1.5rem;
  }
  
  .cert-item {
    width: calc(33.33% - 1rem);
  }
}

@media (max-width: 480px) {
  .cert-item {
    width: calc(50% - 0.75rem);
  }
}

/* ===== 3D GLOBE CAROUSEL STYLES ===== */
.leadership-section {
  padding: 5rem 0;
  background: #0D121C;
  overflow: hidden;
  position: relative;
}

.globe-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0;
  perspective: 1200px;
  overflow: visible;
}

.globe-wrapper {
  position: relative;
  width: 100%;
  min-height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.globe-carousel {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.globe-card {
  position: absolute;
  width: 280px;
  background: #111722;
  border-radius: 24px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #1F2838;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  transform-style: preserve-3d;
}

.globe-card:hover {
  border-color: #2E8FD9;
  box-shadow: 0 20px 40px rgba(46, 143, 217, 0.2);
  filter: brightness(1.1);
}

.globe-card.active {
  border-color: #2E8FD9;
  box-shadow: 0 0 30px rgba(46, 143, 217, 0.3);
}

.globe-card .leader-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid #2E8FD940;
  transition: all 0.3s;
}

.globe-card:hover .leader-image {
  border-color: #2E8FD9;
  transform: scale(1.02);
}

.globe-card .leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.globe-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.globe-card .leader-title {
  font-size: 0.75rem;
  color: #2E8FD9;
  margin-bottom: 0.75rem;
}

.globe-card .leader-bio {
  font-size: 0.75rem;
  color: #94A3B8;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.globe-card .view-hint {
  font-size: 0.7rem;
  color: #2E8FD9;
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.globe-card:hover .view-hint {
  opacity: 1;
}

/* Globe Controls */
.globe-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.globe-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111722;
  border: 1px solid #2A3343;
  color: #2E8FD9;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-nav:hover {
  background: #2E8FD9;
  color: white;
  border-color: #2E8FD9;
  transform: scale(1.05);
}

/* Globe Indicators */
.globe-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.globe-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2A3343;
  cursor: pointer;
  transition: all 0.3s;
}

.globe-dot.active {
  background: #2E8FD9;
  width: 24px;
  border-radius: 4px;
}

/* Drag Hint */
.drag-hint {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.7rem;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.drag-hint i {
  font-size: 0.8rem;
}

/* ===== NATIONWIDE PRESENCE SECTION (replacing global) ===== */
.nationwide-presence {
  padding: 5rem 0;
  background: #0D121C;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.location-card {
  background: #111722;
  padding: 1.8rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #1F2838;
  transition: all 0.3s;
}

.location-card:hover {
  transform: translateY(-5px);
  border-color: #2E8FD9;
}

.location-card i {
  font-size: 2.2rem;
  color: #2E8FD9;
  margin-bottom: 1rem;
}

.location-card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.location-card p {
  font-size: 0.8rem;
  color: #94A3B8;
  line-height: 1.5;
}

/* Responsive for Globe */
@media (max-width: 1024px) {
  .globe-card {
    width: 240px;
    padding: 1.2rem;
  }
  
  .globe-card .leader-image {
    width: 100px;
    height: 100px;
  }
  
  .globe-carousel {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .globe-card {
    width: 220px;
  }
  
  .globe-card .leader-image {
    width: 80px;
    height: 80px;
  }
  
  .globe-carousel {
    height: 400px;
  }
  
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .globe-card {
    width: 200px;
  }
  
  .globe-card h3 {
    font-size: 0.9rem;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
}



