/* 
   Unity Education Consult - Premium Futuristic Stylesheet
   Design Language: Dark Navy, Electric Blue, Gold Accents, Glassmorphism, Glowing effects
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --bg-color: #040814;
  --bg-color-alt: #080f25;
  --bg-card: rgba(10, 18, 42, 0.65);
  --bg-card-hover: rgba(16, 29, 66, 0.85);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 210, 255, 0.4);
  
  --primary-color: #00d2ff;     /* Electric Blue */
  --primary-hover: #00b0db;
  --primary-rgb: 0, 210, 255;
  --secondary-color: #0052d4;   /* Deep Royal Blue */
  --accent-color: #dfb76c;      /* Premium Champagne Gold */
  --accent-rgb: 223, 183, 108;
  
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;    /* Slate-400 */
  --text-muted: #64748b;        /* Slate-500 */
  
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --glow-shadow: 0 0 25px rgba(0, 210, 255, 0.25);
  --glow-shadow-gold: 0 0 25px rgba(223, 183, 108, 0.2);
  --glass-blur: blur(12px);
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

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

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

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 210, 255, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
  box-shadow: var(--glow-shadow);
}

/* Background Gradients and Particles */
.glow-bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: 
    linear-gradient(rgba(0, 210, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 210, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.8;
}

.glow-orb {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(160px);
  pointer-events: none;
  opacity: 0.15;
  animation: orbFloat 25s infinite alternate ease-in-out;
}

.glow-orb-1 {
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  top: -10%;
  right: -10%;
}

.glow-orb-2 {
  background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
  bottom: -15%;
  left: -10%;
  animation-delay: -5s;
}

.glow-orb-3 {
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  width: 400px;
  height: 400px;
  opacity: 0.08;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 80px) scale(1.1); }
  100% { transform: translate(-30px, -40px) scale(0.9); }
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-color);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}
.loader-logo span {
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(223, 183, 108, 0.5);
}
.loader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
}
.loader-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.loader-circle-inner {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 3px solid transparent;
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1002;
  background: transparent;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  box-shadow: 0 0 8px var(--primary-color);
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}
.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title-wrapper h2 {
  margin-bottom: 1rem;
}
.section-title-wrapper h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  box-shadow: var(--glow-shadow);
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Glassmorphism Generic Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  pointer-events: none;
}
.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-shadow);
  transform: translateY(-5px);
}

/* Glowing Buttons */
.btn-container {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 30px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.2);
  position: relative;
  z-index: 1;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}
.btn-primary:hover {
  box-shadow: var(--glow-shadow);
  transform: translateY(-2px);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: var(--glass-blur);
}
.btn-secondary:hover {
  border-color: var(--primary-color);
  box-shadow: var(--glow-shadow);
  background: rgba(0, 210, 255, 0.05);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--accent-color) 0%, #b89149 100%);
  color: #121212;
  border: none;
  box-shadow: 0 4px 15px rgba(223, 183, 108, 0.2);
}
.btn-gold:hover {
  box-shadow: var(--glow-shadow-gold);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #b89149 0%, var(--accent-color) 100%);
  color: #000;
}
.btn i {
  margin-left: 8px;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.btn:hover i {
  transform: translateX(4px);
}

/* Header & Sticky Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(4, 8, 20, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
header .navbar {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.scrolled .navbar {
  padding: 0.8rem 2rem;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
}
.logo-icon {
  margin-right: 10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-shadow);
}
.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.logo-text span {
  color: var(--accent-color);
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  box-shadow: var(--glow-shadow);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}
.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mega Mobile Menu */
@media (max-width: 991px) {
  .mobile-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(4, 8, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    padding: 100px 2.5rem 2.5rem;
    gap: 1.8rem;
    transition: var(--transition);
    z-index: 1000;
    align-items: flex-start;
  }
  .nav-menu.active {
    right: 0;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    display: block;
  }
  .header-cta {
    width: 100%;
  }
  .header-cta .btn {
    width: 100%;
  }
}

/* Banner / Page Hero section */
.page-hero {
  position: relative;
  padding: 10rem 2rem 5rem;
  background: linear-gradient(180deg, rgba(0, 82, 212, 0.15) 0%, transparent 100%);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}
.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 30%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Home Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
  background-image: 
    linear-gradient(135deg, rgba(3, 7, 18, 0.6) 0%, rgba(10, 18, 42, 0.35) 100%),
    url('../img/about-library.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Elegant premium parallax effect */
}
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.hero-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-content {
  position: relative;
  z-index: 10;
  background: rgba(4, 8, 20, 0.55);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: 30px;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.1);
}
.hero-badge i {
  margin-right: 8px;
  font-size: 0.8rem;
}
.hero-title {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  perspective: 1000px;
}
.hero-image-console {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1.05;
  transform: rotateY(-14deg) rotateX(10deg);
  transform-style: preserve-3d;
  transition: var(--transition);
}
.hero-image-console:hover {
  transform: rotateY(-4deg) rotateX(4deg) scale(1.03);
}
.hero-console-glow {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.18) 0%, transparent 75%);
  z-index: -1;
  pointer-events: none;
  filter: blur(25px);
}
.hero-image-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(0, 210, 255, 0.35);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), var(--glow-shadow);
  z-index: 2;
  transform: translateZ(20px);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 60%, rgba(4, 8, 20, 0.5) 100%);
  pointer-events: none;
}
.hero-image-frame-bg {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-lg);
  background: rgba(10, 18, 42, 0.45);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(223, 183, 108, 0.2);
  z-index: 1;
  transform: translateZ(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.hero-floating-card {
  position: absolute;
  padding: 1rem 1.5rem;
  background: rgba(4, 8, 20, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--glow-shadow);
  z-index: 10;
  animation: floatAnim 4s ease-in-out infinite alternate;
}
.hero-floating-card-1 {
  bottom: 10%;
  left: -5%;
}
.hero-floating-card-2 {
  top: 15%;
  right: -5%;
  animation-delay: -2s;
  border-color: rgba(223, 183, 108, 0.25);
  box-shadow: var(--glow-shadow-gold);
}
.hero-floating-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
}
.hero-floating-card-2 i {
  color: var(--accent-color);
}
.hero-floating-card span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  display: block;
}
.hero-floating-card p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

@keyframes floatAnim {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-15px); }
}

@media (max-width: 991px) {
  .hero {
    padding-top: 7rem;
    min-height: auto;
  }
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 2.5rem;
  }
  .btn-container {
    justify-content: center;
  }
  .hero-globe-wrap {
    width: 320px;
    height: 320px;
  }
  .hero-floating-card-1 {
    left: 0;
  }
  .hero-floating-card-2 {
    right: 0;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-globe-wrap {
    width: 250px;
    height: 250px;
  }
}

/* Sections Global */
section {
  padding: 7rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Trust Section (Counters) */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.counter-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--border-radius);
}
.counter-val {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.counter-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* About Preview */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: center;
}
.about-preview-text h2 {
  margin-bottom: 1.5rem;
}
.about-preview-text p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.about-img-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.about-img-box {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: var(--transition);
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-img-box:hover img {
  transform: scale(1.08);
}
.about-img-box:hover {
  border-color: var(--primary-color);
  box-shadow: var(--glow-shadow);
}
.about-img-1 {
  grid-row: span 2;
  height: 380px;
}
.about-img-2 {
  height: 180px;
}
.about-img-3 {
  height: 180px;
}
.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--accent-color);
  padding: 1.2rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--glow-shadow-gold);
}
.about-experience-badge span {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
}
.about-experience-badge p {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
}
@media (max-width: 991px) {
  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

/* Services Preview */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.service-card {
  padding: 2.2rem 1.8rem;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-size: 1.4rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary-color);
  color: #040814;
  box-shadow: var(--glow-shadow);
  transform: rotateY(360deg);
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.service-more-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary-color);
  transition: var(--transition);
}
.service-more-link i {
  font-size: 0.75rem;
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.service-card:hover .service-more-link {
  color: var(--accent-color);
}
.service-card:hover .service-more-link i {
  transform: translateX(4px);
}
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Countries Section */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.country-card {
  position: relative;
  height: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}
.country-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 8, 20, 0.95) 100%);
  z-index: 2;
  transition: var(--transition);
}
.country-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.country-flag-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 28px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 3;
}
.country-flag-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.country-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  z-index: 3;
  transition: var(--transition);
}
.country-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
  color: #fff;
}
.country-info p {
  font-size: 0.8rem;
  margin: 0;
  color: var(--primary-color);
  opacity: 0.9;
  transform: translateY(10px);
  transition: var(--transition);
}
.country-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--glow-shadow);
}
.country-card:hover .country-img {
  transform: scale(1.08);
}
.country-card:hover .country-info p {
  transform: translateY(0);
}
.country-card:hover::before {
  background: linear-gradient(180deg, rgba(0, 210, 255, 0.1) 0%, rgba(4, 8, 20, 0.98) 95%);
}
@media (max-width: 1200px) {
  .countries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .countries-grid {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Us (Timeline/Grid) */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  position: relative;
}
.why-num {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  transition: var(--transition);
}
.why-card:hover .why-num {
  color: rgba(0, 210, 255, 0.1);
  transform: scale(1.1);
}
.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-card h3 i {
  color: var(--accent-color);
  font-size: 1.1rem;
}
.why-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonial Section */
.testimonial-swiper {
  position: relative;
  padding-bottom: 3.5rem;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
}
.testimonial-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
}
.testimonial-quote-icon {
  font-size: 3rem;
  color: rgba(0, 210, 255, 0.15);
  margin-bottom: 1.5rem;
}
.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.student-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.student-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  box-shadow: var(--glow-shadow);
}
.student-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.student-details {
  text-align: left;
}
.student-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.student-sub {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
}
.swiper-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(10, 18, 42, 0.8);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.swiper-nav-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #040814;
  box-shadow: var(--glow-shadow);
}
.swiper-btn-prev {
  left: -20px;
}
.swiper-btn-next {
  right: -20px;
}
.swiper-pagination-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.swiper-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}
.swiper-dot.active {
  background: var(--primary-color);
  width: 25px;
  border-radius: 10px;
  box-shadow: var(--glow-shadow);
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  .swiper-nav-btn {
    display: none;
  }
}

/* FAQ Accordion */
.faq-max {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 1.2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(0, 210, 255, 0.25);
}
.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: var(--glow-shadow);
}
.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.faq-question h3 {
  font-size: 1.05rem;
  margin: 0;
  color: #fff;
  transition: var(--transition);
}
.faq-item.active .faq-question h3 {
  color: var(--primary-color);
}
.faq-toggle-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-secondary);
}
.faq-item.active .faq-toggle-icon {
  background: var(--primary-color);
  color: #040814;
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.03);
}

/* About Page Styles */
.about-story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}
.about-story-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  position: relative;
}
.about-story-img img {
  width: 100%;
  display: block;
}
.about-story-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(4, 8, 20, 0.4));
}
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}
.mission-card {
  padding: 3rem 2.5rem;
}
.mission-card .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-shadow: var(--glow-shadow);
}
.mission-card.vision .icon {
  color: var(--accent-color);
}
.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.value-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
}
.value-card:nth-child(even) .value-icon {
  color: var(--accent-color);
}
.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.8rem;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .core-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .core-values-grid {
    grid-template-columns: 1fr;
  }
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.team-card {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
}
.team-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  position: relative;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.08);
}
.team-card:hover .team-img-wrap {
  border-color: var(--primary-color);
  box-shadow: var(--glow-shadow);
}
.team-socials {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-socials {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.team-social-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}
.team-social-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #040814;
  box-shadow: var(--glow-shadow);
}
.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.team-card p {
  font-size: 0.85rem;
  color: var(--accent-color);
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Partnerships Grid */
.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.partner-logo-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  text-align: center;
}
.partner-logo-card i {
  font-size: 2.2rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: var(--transition);
}
.partner-logo-card span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}
.partner-logo-card:hover i {
  color: var(--accent-color);
  transform: scale(1.1);
  text-shadow: var(--glow-shadow-gold);
}
@media (max-width: 991px) {
  .partnerships-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .partnerships-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Services Page Styles */
.services-detailed-section {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border-color);
}
.services-detailed-section:last-child {
  border-bottom: none;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail-grid.reverse {
  grid-template-columns: 1fr 1fr;
}
.service-detail-grid.reverse .service-detail-info {
  order: 2;
}
.service-detail-grid.reverse .service-detail-visual {
  order: 1;
}
.service-detail-info h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-detail-info h2 i {
  color: var(--primary-color);
}
.service-features-list {
  list-style: none;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.service-features-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.service-features-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-color);
  font-size: 0.85rem;
  text-shadow: var(--glow-shadow-gold);
}
.service-detail-visual {
  position: relative;
}
.service-glow-image-wrap {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 210, 255, 0.2);
  box-shadow: var(--glow-shadow);
}
.service-glow-image-wrap img {
  width: 100%;
  display: block;
}

/* Service Process Timeline */
.process-timeline {
  margin-top: 2.5rem;
  position: relative;
  padding-left: 20px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}
.process-step {
  position: relative;
  padding-bottom: 1.5rem;
}
.process-step:last-child {
  padding-bottom: 0;
}
.process-step::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 2px solid var(--primary-color);
  box-shadow: var(--glow-shadow);
  z-index: 2;
}
.process-step:nth-child(even)::before {
  border-color: var(--accent-color);
  box-shadow: var(--glow-shadow-gold);
}
.process-step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 4px;
}
.process-step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@media (max-width: 991px) {
  .service-detail-grid, .service-detail-grid.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .service-detail-grid.reverse .service-detail-info {
    order: 1;
  }
  .service-detail-grid.reverse .service-detail-visual {
    order: 2;
  }
}

/* Apply Now Page Styles */
.apply-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 1rem;
}
.apply-step-card {
  padding: 2.2rem 1.8rem;
  text-align: center;
}
.apply-step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--glow-shadow);
}
.apply-step-card:nth-child(even) .apply-step-num {
  border-color: var(--accent-color);
  color: var(--accent-color);
  box-shadow: var(--glow-shadow-gold);
}
.apply-step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}
.apply-step-card p {
  font-size: 0.88rem;
  margin: 0;
}
@media (max-width: 991px) {
  .apply-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .apply-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Document & Eligibility Tabs */
.apply-info-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  margin-top: 2rem;
}
.apply-documents-wrap h2, .apply-eligibility-wrap h2 {
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
}
.doc-accordion-item {
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  margin-bottom: 1rem;
}
.doc-header {
  padding: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.doc-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
.doc-header i {
  color: var(--primary-color);
  transition: var(--transition);
}
.doc-accordion-item.active .doc-header i {
  transform: rotate(180deg);
}
.doc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.doc-content-inner {
  padding: 0 1.2rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.doc-list {
  list-style: none;
}
.doc-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}
.doc-list li::before {
  content: '\f15c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--primary-color);
}

.eligibility-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.eligibility-table th, .eligibility-table td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}
.eligibility-table th {
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.eligibility-table td {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.eligibility-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 991px) {
  .apply-info-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Student Form Page (Multi-step) */
.form-stepper {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto 3.5rem;
  position: relative;
}
.form-stepper::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(255,255,255,0.06);
  z-index: 1;
}
.form-stepper-progress {
  position: absolute;
  top: 25px;
  left: 5%;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  z-index: 1;
  transition: width 0.4s ease;
  box-shadow: var(--glow-shadow);
}
.step-indicator {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 25%;
}
.step-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-color-alt);
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
}
.step-indicator.active .step-dot {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: var(--bg-color);
  box-shadow: var(--glow-shadow);
}
.step-indicator.completed .step-dot {
  border-color: var(--accent-color);
  color: #040814;
  background: var(--accent-color);
  box-shadow: var(--glow-shadow-gold);
}
.step-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.step-indicator.active .step-label {
  color: #fff;
}
.step-indicator.completed .step-label {
  color: var(--accent-color);
}

.student-form-container {
  max-width: 800px;
  margin: 0 auto;
}
.form-step-content {
  display: none;
}
.form-step-content.active {
  display: block;
  animation: formStepFade 0.5s ease;
}
@keyframes formStepFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.form-group.full-width {
  grid-column: span 2;
}
.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 8px;
  text-align: left;
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}
.form-group input[type="file"] {
  padding: 0.6rem;
  cursor: pointer;
}
.form-group small {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 5px;
}
.form-btn-row {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .form-stepper {
    flex-wrap: wrap;
  }
  .step-indicator {
    width: 50%;
    margin-bottom: 1.5rem;
  }
  .form-stepper::before, .form-stepper-progress {
    display: none;
  }
}

/* Success Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 8, 20, 0.95);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  width: 90%;
  max-width: 500px;
  text-align: center;
  transform: scale(0.8);
  transition: var(--transition);
}
.modal-overlay.active .modal-box {
  transform: scale(1);
}
.modal-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(223, 183, 108, 0.08);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--glow-shadow-gold);
}
.modal-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 40%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.modal-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Gallery Page Styles */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.gallery-filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.6rem 1.6rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  border-color: var(--primary-color);
  color: #fff;
  background: rgba(0, 210, 255, 0.05);
  box-shadow: var(--glow-shadow);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(4, 8, 20, 0.95) 0%, rgba(4, 8, 20, 0.4) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  z-index: 2;
}
.gallery-overlay-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #040814;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--glow-shadow);
  transform: scale(0.7);
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #fff;
  transform: translateY(15px);
  transition: var(--transition);
}
.gallery-overlay p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--accent-color);
  transform: translateY(15px);
  transition: var(--transition);
}
.gallery-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--glow-shadow);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
  transform: scale(1);
}
.gallery-item:hover .gallery-overlay h3, .gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Lightbox Styles */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 8, 20, 0.98);
  backdrop-filter: blur(15px);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover {
  color: var(--primary-color);
  text-shadow: var(--glow-shadow);
}
.lightbox-content-wrap {
  width: 90%;
  max-width: 900px;
  max-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 50px rgba(0,0,0,0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.lightbox-caption {
  margin-top: 15px;
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.1rem;
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
}
.lightbox-arrow:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #040814;
  box-shadow: var(--glow-shadow);
}
.lightbox-prev {
  left: -70px;
}
.lightbox-next {
  right: -70px;
}
@media (max-width: 1024px) {
  .lightbox-arrow {
    display: none;
  }
}

/* Contact Page Styles */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
}
.contact-details-wrap h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.contact-details-wrap p {
  margin-bottom: 2.5rem;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.contact-info-card {
  padding: 1.8rem 1.5rem;
  border-radius: var(--border-radius);
}
.contact-info-card i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
}
.contact-info-card:nth-child(even) i {
  color: var(--accent-color);
}
.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.contact-info-card p, .contact-info-card a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  margin: 0;
  display: block;
}
.contact-info-card a:hover {
  color: var(--primary-color);
}

.contact-form-wrap {
  padding: 3rem;
}
.contact-form-wrap h2 {
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
}
@media (max-width: 991px) {
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
@media (max-width: 576px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }
}

/* Styled Map Container */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  margin-top: 5rem;
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* Footer Styles */
footer {
  background-color: #02040b;
  border-top: 1px solid var(--border-color);
  padding: 5rem 2rem 2rem;
  position: relative;
  z-index: 10;
}
.footer-grid {
  max-width: 1300px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 3.5rem;
}
.footer-brand .logo {
  margin-bottom: 1.5rem;
}
.footer-brand p {
  font-size: 0.88rem;
  margin-bottom: 1.8rem;
  max-width: 320px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-color-alt);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-social-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #040814;
  box-shadow: var(--glow-shadow);
  transform: translateY(-3px);
}
.footer-column h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 1.8rem;
  position: relative;
  display: inline-block;
}
.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.footer-links a i {
  font-size: 0.75rem;
  margin-right: 8px;
  transition: transform 0.3s ease;
}
.footer-links a:hover {
  color: var(--primary-color);
}
.footer-links a:hover i {
  transform: translateX(4px);
}

.footer-newsletter p {
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}
.newsletter-form {
  position: relative;
}
.newsletter-form input {
  width: 100%;
  background: var(--bg-color-alt);
  border: 1px solid var(--border-color);
  padding: 0.9rem 3.5rem 0.9rem 1.2rem;
  border-radius: 30px;
  color: #fff;
  font-size: 0.88rem;
  box-sizing: border-box;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: var(--glow-shadow);
}
.newsletter-submit-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #040814;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-submit-btn:hover {
  background: var(--accent-color);
  box-shadow: var(--glow-shadow-gold);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 2rem;
}
.footer-bottom-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Floating Elements */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 20px rgba(37, 211, 102, 0.2);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.4);
}
.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background-color: var(--accent-color);
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulseBadge 2s infinite;
}
@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* Sticky Bottom CTA for Mobile */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(4, 8, 20, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  padding: 0.8rem 1.5rem;
  display: none;
  justify-content: space-between;
  gap: 15px;
  z-index: 998;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}
.mobile-sticky-cta .btn {
  flex: 1;
  padding: 0.7rem 1.2rem;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
  }
  body {
    padding-bottom: 70px; /* Space for sticky bar */
  }
}

/* Elegant Light Theme Overrides (Metallic Light Ice-Blue, NOT stark white) */
.section-light-theme {
  max-width: none !important;
  width: 100% !important;
  background-color: #ebf1f6 !important; /* Premium light metallic blue-slate, not stark white */
  background-image: 
    linear-gradient(rgba(0, 82, 212, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 212, 0.02) 1px, transparent 1px) !important;
  background-size: 50px 50px !important;
  color: #0b1329 !important;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(0, 82, 212, 0.08);
  border-bottom: 1px solid rgba(0, 82, 212, 0.08);
  padding: 7rem 0 !important; /* Reset padding to contain the wrapper */
}

/* Outer wrapper to restrict content width in full width light sections */
.section-light-theme-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Light Theme Typography updates */
.section-light-theme h2 {
  color: #040814 !important;
}
.section-light-theme h2::after {
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color)) !important;
}
.section-light-theme p {
  color: #334155 !important; /* Dark legible slate for body text */
}
.section-light-theme .section-subtitle {
  color: #475569 !important;
}
.section-light-theme .hero-badge {
  background: rgba(0, 82, 212, 0.06) !important;
  border: 1px solid rgba(0, 82, 212, 0.18) !important;
  color: var(--secondary-color) !important;
  box-shadow: 0 4px 10px rgba(0, 82, 212, 0.05) !important;
}

/* Light frosted glass cards in light sections */
.section-light-theme .glass-card {
  background: rgba(255, 255, 255, 0.75) !important;
  border: 1px solid rgba(0, 82, 212, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 82, 212, 0.04) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}
.section-light-theme .glass-card:hover {
  border-color: rgba(0, 82, 212, 0.35) !important;
  box-shadow: 0 15px 35px rgba(0, 82, 212, 0.1) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  transform: translateY(-5px);
}

/* Counter card specifically inside light theme if any */
.section-light-theme .counter-card {
  box-shadow: 0 10px 30px rgba(0, 82, 212, 0.04) !important;
}

/* Why choose us numbers in light theme */
.section-light-theme .why-num {
  color: rgba(0, 82, 212, 0.04) !important;
}
.section-light-theme .why-card:hover .why-num {
  color: rgba(0, 82, 212, 0.08) !important;
}
.section-light-theme .why-card h3 {
  color: #040814 !important;
}
.section-light-theme .why-card p {
  color: #334155 !important;
}

/* About experience badge in light theme */
.section-light-theme .about-experience-badge {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid var(--accent-color) !important;
  box-shadow: 0 15px 30px rgba(223, 183, 108, 0.15) !important;
  backdrop-filter: blur(10px) !important;
}
.section-light-theme .about-experience-badge p {
  color: #1e293b !important;
}
.section-light-theme .about-img-box {
  box-shadow: 0 15px 35px rgba(0, 82, 212, 0.08) !important;
  border-color: rgba(0, 82, 212, 0.08) !important;
}

/* Buttons in light theme */
.section-light-theme .btn-secondary {
  border-color: rgba(0, 82, 212, 0.3) !important;
  color: #0b1329 !important;
}
.section-light-theme .btn-secondary:hover {
  background: rgba(0, 82, 212, 0.05) !important;
  border-color: var(--secondary-color) !important;
  color: var(--secondary-color) !important;
}

/* Detailed Services Sections inside Light Theme (Alternating layout) */
.section-light-theme.services-detailed-section {
  border-bottom: 1px solid rgba(0, 82, 212, 0.08) !important;
}
.section-light-theme.services-detailed-section:last-child {
  border-bottom: none !important;
}
.section-light-theme .service-detail-info h2 {
  color: #040814 !important;
}
.section-light-theme .service-detail-info h2 i {
  color: var(--secondary-color) !important;
}
.section-light-theme .service-features-list li {
  color: #334155 !important;
}
.section-light-theme .service-features-list li::before {
  color: var(--secondary-color) !important;
  text-shadow: 0 0 10px rgba(0, 82, 212, 0.1) !important;
}

/* Timeline nested inside light theme */
.section-light-theme .process-timeline::before {
  background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color)) !important;
}
.section-light-theme .process-step::before {
  background: #ebf1f6 !important;
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 10px rgba(0, 82, 212, 0.15) !important;
}
.section-light-theme .process-step:nth-child(even)::before {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 10px rgba(223, 183, 108, 0.2) !important;
}
.section-light-theme .process-step-title {
  color: #040814 !important;
}
.section-light-theme .process-step-desc {
  color: #475569 !important;
}
.section-light-theme .service-glow-image-wrap {
  border-color: rgba(0, 82, 212, 0.12) !important;
  box-shadow: 0 15px 35px rgba(0, 82, 212, 0.08) !important;
}

/* Contact Page elements inside Light Theme */
.section-light-theme .contact-info-card h3 {
  color: #040814 !important;
}
.section-light-theme .contact-info-card i {
  color: var(--secondary-color) !important;
}
.section-light-theme .contact-info-card a {
  color: var(--secondary-color) !important;
}
.section-light-theme .contact-details-wrap h2 {
  color: #040814 !important;
}
.section-light-theme h4 {
  color: #040814 !important;
}

/* Contact Form inside Light Theme */
.section-light-theme .contact-form-wrap {
  background: rgba(255, 255, 255, 0.85) !important;
}
.section-light-theme .form-group label {
  color: #0b1329 !important;
}
.section-light-theme .form-group input,
.section-light-theme .form-group select,
.section-light-theme .form-group textarea {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(0, 82, 212, 0.15) !important;
  color: #0b1329 !important;
}
.section-light-theme .form-group input:focus,
.section-light-theme .form-group select:focus,
.section-light-theme .form-group textarea:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 15px rgba(0, 82, 212, 0.12) !important;
  background: #fff !important;
}
.section-light-theme .form-group input::placeholder,
.section-light-theme .form-group textarea::placeholder {
  color: #94a3b8 !important;
}
.section-light-theme .form-group small {
  color: #64748b !important;
}

/* Apply Page Accordion inside Light Theme */
.section-light-theme .doc-accordion-item {
  background: rgba(255, 255, 255, 0.8) !important;
  border-color: rgba(0, 82, 212, 0.08) !important;
}
.section-light-theme .doc-header h3 {
  color: #040814 !important;
}
.section-light-theme .doc-header i {
  color: var(--secondary-color) !important;
}
.section-light-theme .doc-content-inner {
  border-top-color: rgba(0, 82, 212, 0.06) !important;
}
.section-light-theme .doc-list li {
  color: #334155 !important;
}
.section-light-theme .doc-list li::before {
  color: var(--secondary-color) !important;
}

/* Eligibility Table inside Light Theme */
.section-light-theme .eligibility-table {
  border-color: rgba(0, 82, 212, 0.1) !important;
}
.section-light-theme .eligibility-table th {
  background: rgba(0, 82, 212, 0.04) !important;
  color: #040814 !important;
  border-bottom-color: rgba(0, 82, 212, 0.1) !important;
}
.section-light-theme .eligibility-table td {
  color: #334155 !important;
  border-bottom-color: rgba(0, 82, 212, 0.06) !important;
}
.section-light-theme .apply-documents-wrap h2,
.section-light-theme .apply-eligibility-wrap h2 {
  color: #040814 !important;
}
.section-light-theme .apply-documents-wrap h2 i {
  color: var(--secondary-color) !important;
}

/* Gallery Filters inside Light Theme */
.section-light-theme .gallery-filter-btn {
  background: rgba(255, 255, 255, 0.7) !important;
  border-color: rgba(0, 82, 212, 0.12) !important;
  color: #334155 !important;
}
.section-light-theme .gallery-filter-btn:hover {
  border-color: var(--secondary-color) !important;
  color: var(--secondary-color) !important;
}
.section-light-theme .gallery-filter-btn.active {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #fff !important;
}

/* Gallery items inside Light Theme */
.section-light-theme .gallery-item {
  border-color: rgba(0, 82, 212, 0.08) !important;
  box-shadow: 0 8px 25px rgba(0, 82, 212, 0.06) !important;
}

/* Value card icons in Light Theme */
.section-light-theme .value-icon {
  color: var(--secondary-color) !important;
}
.section-light-theme .value-card:nth-child(even) .value-icon {
  color: var(--accent-color) !important;
}
.section-light-theme .value-card h3 {
  color: #040814 !important;
}

/* Partner logo cards in Light Theme */
.section-light-theme .partner-logo-card i {
  color: #64748b !important;
}
.section-light-theme .partner-logo-card span {
  color: #334155 !important;
}
.section-light-theme .partner-logo-card:hover i {
  color: var(--accent-color) !important;
}

/* Apply step cards inside Light Theme */
.section-light-theme .apply-step-num {
  background: rgba(0, 82, 212, 0.06) !important;
  border-color: var(--secondary-color) !important;
  color: var(--secondary-color) !important;
}
.section-light-theme .apply-step-card h3 {
  color: #040814 !important;
}
