@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:wght@300;400;600&display=swap");

:root {
  --bg-dark: #050505;
  --bg-secondary: #0a0a12;
  --primary: #00f3ff;
  --primary-dim: rgba(0, 243, 255, 0.1);
  --secondary: #d600ff; /* Hot pink */
  --accent: #bc13fe;
  --text-main: #e0e0e0;
  --text-muted: #a0a0a0;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);

  --font-heading: "Orbitron", sans-serif;
  --font-body: "Exo 2", sans-serif;

  --neon-glow:
    0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.3),
    0 0 30px rgba(0, 243, 255, 0.1);
  --neon-pink: 0 0 10px rgba(214, 0, 255, 0.5), 0 0 20px rgba(214, 0, 255, 0.3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center top;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: var(--neon-glow);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--primary);
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  padding: 20px 0;
  transition: all 0.3s ease;
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Mobile Menu */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Backgrounds */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(5,5,5,0.8), var(--bg-dark)),
        url('../assets/hero-bg.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.6;
}

/* Custom glowing orb effect behind hero */
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 243, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  z-index: -2;
  animation: pulse 4s infinite alternate;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.btn-main {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
  margin: 10px;
  clip-path: polygon(
    10px 0,
    100% 0,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0 100%,
    0 10px
  );
}

.btn-main:hover {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 20px var(--primary);
}

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

.btn-secondary:hover {
  background: var(--secondary);
  box-shadow: 0 0 20px var(--secondary);
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
  margin-top: -50px;
  padding-bottom: 50px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 50px;
  border-bottom: 1px solid var(--glass-border);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Why Choose Us Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--primary),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before {
  opacity: 1;
}

/* Regions / Markets */
.feature-card h4 {
    font-size: 0.9rem; /* Reduced to fit wide text like "Industry Connections" */
    letter-spacing: 0; /* Removed spacing to save space */
    margin-bottom: 2px;
    white-space: nowrap;
}

.feature-card p {
    font-size: 0.85rem; /* Smaller font */
    margin-bottom: 8px; /* Tighter margin */
    line-height: 1.3; /* Tighter line height */
}

.card-content {
    padding: 10px; /* Minimal padding */
}

.feature-icon {
  font-size: 1.5rem; /* Smaller icon */
  margin-bottom: 5px; /* Minimal margin */
  color: var(--secondary);
}

.regions-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.region-tab {
  padding: 10px 25px;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-heading);
  transition: all 0.3s;
}

.region-tab.active,
.region-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 243, 255, 0.05);
}

.region-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.region-content.active {
  display: block;
}

/* Success Stories */
.testimonial-card {
  background: var(--bg-secondary);
  padding: 40px;
  border-left: 4px solid var(--secondary);
  position: relative;
}

.testimonial-card h4 {
  color: var(--secondary);
  text-shadow: 0 0 5px rgba(214, 0, 255, 0.3);
}

/* Positions / Missions */
.position-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.position-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
}

.position-info h4 {
  color: #fff;
  margin-bottom: 5px;
}

.position-pay {
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-heading);
}

/* Footer */
footer {
  background: #000;
  padding: 50px 0 20px;
  border-top: 1px solid var(--glass-border);
  margin-top: 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 80px;
  margin-bottom: 40px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #1a1a1a;
  color: #666;
  font-size: 0.8rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

/* Animations */
@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 0;
  }

  .navbar .logo {
    position: relative;
    z-index: 1001; /* Stay above the full-screen overlay */
  }
  
  .navbar .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 20px;
    border-bottom: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease-in-out;
    z-index: 1000;
  }

  .navbar .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.5rem;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 80%;
    text-align: center;
    letter-spacing: 6px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
  }

  .navbar .nav-links.active a {
    transform: translateY(0);
  }

  .hamburger {
    display: block;
    color: var(--primary);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px var(--primary);
    z-index: 1001;
    position: relative;
  }

  .navbar .nav-links.active ~ .hamburger {
    transform: rotate(90deg);
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .position-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  /* Footer Mobile Optimization */
  footer {
    padding: 60px 0 30px;
    text-align: center;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
    margin-bottom: 40px;
  }

  .footer-content > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-content .logo {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer-content p {
    max-width: 320px;
    margin: 0 auto;
  }

  .footer-content h4 {
    margin-bottom: 15px;
    width: 100%;
  }

  .footer-content ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
    list-style: none;
  }

  .footer-content .footer-legal-links {
    justify-content: center;
    margin-top: 20px;
    width: 100%;
  }
}

/* Section Backgrounds */
#partnerships {
    background: linear-gradient(to bottom, var(--bg-dark), rgba(10, 10, 18, 0.8)), 
                url('../assets/partnerships-bg.webp');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

#training {
    background: linear-gradient(to bottom, var(--bg-dark), rgba(10, 10, 18, 0.8)), 
                url('../assets/training-bg.webp');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
    overflow: hidden;
}

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

/* Lifestyle Gallery */
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.lifestyle-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.lifestyle-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.lifestyle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: brightness(0.7) contrast(1.2);
}

.lifestyle-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.lifestyle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, #000, transparent);
    z-index: 2;
}

.lifestyle-overlay h5 {
    color: #fff;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Card Images */
.feature-card {
    padding: 0; /* remove padding from card itself */
}

.card-image-wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}

.card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.feature-card:hover .card-bg-img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
}

/* Position Images */
.position-card {
    align-items: stretch; /* Stretch to match height */
    padding: 0;
}

.position-img {
    width: 150px;
    min-width: 150px;
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--glass-border);
}

.position-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.position-card:hover .position-img img {
    transform: scale(1.1);
}

.position-info {
    padding: 25px;
    flex: 1;
}

.position-action {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.2);
    min-width: 180px;
    text-align: center;
}

@media (max-width: 600px) {
    .position-card {
        flex-direction: column;
    }
    .position-img {
        width: 100%;
        height: 150px;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }
    .position-action {
        border-left: none;
        border-top: 1px solid var(--glass-border);
    }
}
/* Large WhatsApp Button */
.whatsapp-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.whatsapp-btn-large:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 0 50px rgba(37, 211, 102, 0.8);
    background: #29e66f;
}

.whatsapp-btn-large i {
    font-size: 1.8rem;
}

@media (max-width: 600px) {
    .whatsapp-btn-large {
        padding: 15px 30px;
        font-size: 1rem;
        gap: 10px;
    }
}
