:root {
  /* Colors */
  --bg-primary: #070b14;
  --bg-secondary: #0c1220;
  --bg-card: rgba(18, 26, 46, 0.65);
  --bg-card-hover: rgba(24, 35, 62, 0.85);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Logo Colors */
  --accent-red: #ed2024;
  --accent-yellow: #ffcc00;
  --accent-green: #89f956;
  
  /* Glows */
  --glow-red: rgba(237, 32, 36, 0.15);
  --glow-yellow: rgba(255, 204, 0, 0.15);
  --glow-green: rgba(137, 249, 86, 0.15);
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  
  /* Fonts */
  --font-header: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --container-width: 1280px;
  --header-height: 80px;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden !important;
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, a, span, label, input, button {
  overflow-wrap: break-word;
  word-break: break-word;
}

img, svg, video, canvas {
  max-width: 100%;
  height: auto;
}

/* Background Gradients */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 800px;
  background: radial-gradient(circle at 50% 0%, rgba(24, 35, 62, 0.5) 0%, rgba(7, 11, 20, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 800px;
  background: radial-gradient(circle at 50% 100%, rgba(18, 26, 46, 0.4) 0%, rgba(7, 11, 20, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

/* Utility Layouts */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-yellow);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 204, 0, 0.15);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-yellow) 100%);
  color: #000;
  font-weight: 700;
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(237, 32, 36, 0.3);
}

/* Navigation Header */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 20, 0.75);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.header-nav.scrolled {
  background: rgba(7, 11, 20, 0.9);
  height: 70px;
}

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

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-header);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

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

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 260px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  padding-left: 1.25rem;
}

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.phone-badge svg {
  color: var(--accent-green);
  fill: currentColor;
  width: 14px;
  height: 14px;
}

.phone-badge:hover {
  border-color: var(--accent-green);
  box-shadow: 0 0 15px rgba(137, 249, 86, 0.15);
}

.book-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.book-badge svg {
  color: var(--accent-yellow);
  width: 14px;
  height: 14px;
}

.book-badge:hover {
  border-color: var(--accent-yellow);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.15);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.burger-bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: heroZoom 45s ease-in-out infinite alternate;
  will-change: transform;
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(7, 11, 20, 0.9) 0%, rgba(7, 11, 20, 0.75) 40%, rgba(7, 11, 20, 0.3) 100%),
              linear-gradient(180deg, rgba(7, 11, 20, 0.2) 0%, var(--bg-primary) 100%);
  z-index: 2;
}

/* Animated Ambient Orbs to accompany the tech banner */
.hero-bg::before,
.hero-bg::after {
  content: '';
  display: block;
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}

.hero-bg::before {
  background: radial-gradient(circle, var(--accent-red) 0%, rgba(237, 32, 36, 0) 70%);
  top: -10%;
  left: 30%;
  animation: floatOrbRed 25s ease-in-out infinite alternate;
}

.hero-bg::after {
  background: radial-gradient(circle, var(--accent-green) 0%, rgba(137, 249, 86, 0) 70%);
  bottom: -10%;
  right: 15%;
  animation: floatOrbGreen 30s ease-in-out infinite alternate;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 750px;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-yellow);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.typed-container {
  display: inline-flex;
  align-items: center;
  font-size: 2.25rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 2.5rem;
  height: 45px;
}

.typed-text {
  color: var(--text-primary);
  font-weight: 700;
  margin-left: 0.75rem;
  position: relative;
  border-right: 2px solid var(--accent-red);
  padding-right: 4px;
  animation: blink 0.75s step-end infinite;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(12px);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:nth-child(3n-2)::before {
  background: var(--accent-red);
}

.service-card:nth-child(3n-1)::before {
  background: var(--accent-yellow);
}

.service-card:nth-child(3n)::before {
  background: var(--accent-green);
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.card-icon {
  margin-bottom: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.service-card:hover .card-icon {
  color: var(--accent-yellow);
  background: rgba(255, 204, 0, 0.05);
  border-color: rgba(255, 204, 0, 0.3);
}

.service-card:hover:nth-child(3n-2) .card-icon {
  color: var(--accent-red);
  background: rgba(237, 32, 36, 0.05);
  border-color: rgba(237, 32, 36, 0.3);
}

.service-card:hover:nth-child(3n-1) .card-icon {
  color: var(--accent-yellow);
  background: rgba(255, 204, 0, 0.05);
  border-color: rgba(255, 204, 0, 0.3);
}

.service-card:hover:nth-child(3n) .card-icon {
  color: var(--accent-green);
  background: rgba(137, 249, 86, 0.05);
  border-color: rgba(137, 249, 86, 0.3);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-description {
  color: var(--text-secondary);
  font-size: 0.975rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.card-link svg {
  transition: var(--transition-smooth);
}

.service-card:hover .card-link svg {
  transform: translateX(5px);
}

/* Page Header */
.page-header {
  padding: 12rem 0 6rem 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.25rem;
  max-width: 800px;
}

/* About Page Fact Generator */
.fact-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 4rem;
  margin: 4rem auto;
  max-width: 900px;
  text-align: center;
  backdrop-filter: blur(12px);
  position: relative;
}

.fact-title {
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.fact-content {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.fact-static {
  font-size: 1.25rem;
  color: var(--text-primary);
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  margin-top: 2rem;
}

.btn-refresh {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-bounce);
}

.btn-refresh:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.05);
}

/* Accordion FAQs */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  outline: none;
}

.faq-title-text {
  font-family: var(--font-header);
  font-size: 1.15rem;
  font-weight: 600;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: var(--transition-smooth);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.faq-icon::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  top: 2px;
  left: 9px;
  width: 2px;
  height: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-icon::before, .faq-item.active .faq-icon::after {
  background-color: var(--accent-yellow);
}

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

.faq-content {
  padding: 0 2rem 2rem 2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Director Testimonial / Meet Team */
.directors-section {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.director-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 380px;
  width: 100%;
  backdrop-filter: blur(12px);
  transition: var(--transition-bounce);
}

.director-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.director-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
  border: 4px solid var(--border-color);
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.director-avatar svg {
  width: 70px;
  height: 70px;
  color: var(--text-secondary);
}

.director-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.director-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.director-role {
  color: var(--accent-yellow);
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.director-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Partners & Accreditations grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.partner-logo-box {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.partner-logo-box svg, .partner-logo-box img {
  max-width: 180px;
  max-height: 70px;
  width: auto;
  height: auto;
  display: block;
  fill: currentColor;
}

.partner-logo-link {
  display: block;
}

.partner-name {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.partner-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Overrides for Partners Page light cards */
.partners-grid .partner-card {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-grid .partner-card:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.partners-grid .partner-name {
  color: #0f172a;
}

.partners-grid .partner-desc {
  color: #475569;
}

.partners-grid .partner-logo-box {
  color: #0f172a;
}


/* Partners Slider on Home Page */
.partners-slider-container {
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
  width: 100%;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}


.partners-track {
  display: flex;
  width: max-content !important;
  max-width: none !important;
  animation: scroll 45s linear infinite;
  gap: 2rem;
  flex-shrink: 0;
}

.partner-slide {
  width: 240px !important;
  height: 90px !important;
  flex-shrink: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0 0.5rem;
}

.partner-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: var(--transition-smooth);
}

.partner-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-240px * 14 - 2rem * 14)); }
}

/* Contact Page Layout & Form */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
}

.contact-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 4rem;
  backdrop-filter: blur(12px);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-yellow);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
}

.info-details h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.info-details p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-phone-link {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-phone-link:hover {
  color: var(--text-primary);
}

/* Alert Box */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  display: none;
}

.alert-success {
  background: rgba(137, 249, 86, 0.1);
  border: 1px solid rgba(137, 249, 86, 0.3);
  color: var(--accent-green);
}

.alert-danger {
  background: rgba(237, 32, 36, 0.1);
  border: 1px solid rgba(237, 32, 36, 0.3);
  color: var(--accent-red);
}

/* Two Column Feature Block (Alternative to Solutions section blocks) */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 8rem;
}

.feature-split:nth-child(even) {
  direction: rtl;
}

.feature-split:nth-child(even) .feature-text {
  direction: ltr;
}

.feature-image-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-image-panel svg {
  width: 260px;
  height: 260px;
  opacity: 0.85;
  transition: var(--transition-bounce);
}

.feature-image-panel:hover svg {
  opacity: 1;
  transform: scale(1.05);
}

.feature-text h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.feature-text p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 3rem 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links-col {
  text-align: right;
}

.footer-links-col h4 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.footer-links-col a {
  color: var(--text-secondary);
  display: inline-block;
  transition: transform var(--transition-smooth), color var(--transition-smooth);
}

.footer-links-col a:hover {
  color: var(--text-primary);
  transform: translateX(-4px);
}

.footer-badges-row {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.social-icon-link:hover {
  transform: translateY(-2px);
}

.social-icon-link:nth-child(1):hover {
  color: var(--accent-green);
  border-color: var(--accent-green);
  background: rgba(137, 249, 86, 0.1);
  box-shadow: 0 0 12px rgba(137, 249, 86, 0.2);
}

.social-icon-link:nth-child(2):hover {
  color: var(--accent-yellow);
  border-color: var(--accent-yellow);
  background: rgba(255, 204, 0, 0.1);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.2);
}

.social-icon-link:nth-child(3):hover {
  color: var(--accent-red);
  border-color: var(--accent-red);
  background: rgba(237, 32, 36, 0.1);
  box-shadow: 0 0 12px rgba(237, 32, 36, 0.2);
}

/* Animations */
@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: var(--accent-red); }
}

@keyframes heroZoom {
  0% {
    transform: scale(1.02) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-10px, -5px);
  }
}

/* Float animations for Orbs */
@keyframes floatOrbRed {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, 60px) scale(1.15);
  }
  100% {
    transform: translate(-40px, 120px) scale(0.9);
  }
}

@keyframes floatOrbGreen {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-100px, -50px) scale(0.85);
  }
  100% {
    transform: translate(60px, -100px) scale(1.1);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .hero-bg-overlay {
    background: linear-gradient(180deg, rgba(7, 11, 20, 0.75) 0%, rgba(7, 11, 20, 0.9) 100%);
  }
  .hero-buttons {
    justify-content: center;
  }
  .typed-container {
    justify-content: center;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .feature-split {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
  }
  .feature-split:nth-child(even) {
    direction: ltr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :first-child {
    grid-column: span 2;
  }
  .fact-widget {
    padding: 2.5rem 2rem;
    margin: 3rem auto;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .container {
    padding: 0 1.25rem;
  }
  .section {
    padding: 4rem 0;
  }
  .hero {
    min-height: 80vh;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .contact-card-box {
    padding: 2rem 1.25rem;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .service-card, .partner-card {
    padding: 2rem 1.25rem;
  }
  .fact-widget {
    padding: 1.25rem 1rem !important;
    margin: 1.5rem auto !important;
    width: 100% !important;
    border-radius: 12px !important;
    text-align: left !important;
  }
  .fact-content,
  .fact-static {
    display: block !important;
    text-align: left !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    min-height: auto !important;
  }
  .fact-static {
    padding-top: 1.25rem !important;
    margin-top: 1.25rem !important;
  }
  .typed-container {
    font-size: 1.35rem;
    height: 35px;
  }
  .mobile-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: calc(100vh - var(--header-height));
    background: var(--bg-primary);
    flex-direction: column;
    padding: 3rem 1.5rem;
    align-items: flex-start;
    gap: 1.5rem;
    transform: translateX(-100%);
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-color);
    overflow-y: auto;
    overflow-x: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
  
  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .dropdown-menu,
  .nav-item:hover .dropdown-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    background: rgba(18, 26, 46, 0.95) !important;
    border: 1px solid var(--border-hover) !important;
    border-radius: 12px !important;
    padding: 0.75rem 1rem !important;
    margin-top: 0.75rem !important;
    display: none;
  }
  
  .nav-item.active .dropdown-menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  .dropdown-item {
    color: var(--text-primary) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    padding: 0.65rem 0.85rem !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    transition: var(--transition-smooth) !important;
  }

  .dropdown-item:hover,
  .dropdown-item:active {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--accent-yellow) !important;
    padding-left: 1.1rem !important;
  }
  
  .mobile-toggle.active .burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .mobile-toggle.active .burger-bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active .burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > :first-child {
    grid-column: span 1;
  }
  .footer-links-col {
    text-align: center;
  }
  .footer-links-col ul {
    align-items: center;
  }
  .footer-links-col a:hover {
    transform: none;
  }
  .footer-badges-row,
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .contact-card-box,
  .fact-widget {
    padding: 1.25rem 0.75rem !important;
  }
  .hero-title {
    font-size: 2rem;
  }
}
