/* ========================================
   GLOBAL TECHNO SOFTWARE SOLUTIONS
   Main Stylesheet
   ======================================== */

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

/* ========== CSS VARIABLES ========== */
:root {
  --orange: #ff6b00;
  --orange-light: #ff8c00;
  --orange-glow: rgba(255, 107, 0, 0.4);
  --purple: #7b2d8b;
  --dark-bg: #050a14;
  --dark-2: #080f1e;
  --dark-3: #0d1628;
  --dark-card: rgba(13, 22, 40, 0.85);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 107, 0, 0.2);
  --text-primary: #ffffff;
  --text-secondary: #b0bec5;
  --text-muted: #607d8b;
  --gradient-orange: linear-gradient(135deg, #ff6b00, #ff8c00);
  --gradient-dark: linear-gradient(135deg, #050a14, #0d1628);
  --neon-shadow: 0 0 20px rgba(255, 107, 0, 0.5), 0 0 40px rgba(255, 107, 0, 0.3), 0 0 80px rgba(255, 107, 0, 0.1);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ========== PARTICLES BACKGROUND ========== */
#particles-js {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 10, 20, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.navbar.scrolled {
  height: 65px;
  background: rgba(5, 10, 20, 0.98);
  box-shadow: 0 4px 30px rgba(255, 107, 0, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.4));
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  padding: 0.5rem 1rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
  box-shadow: var(--neon-shadow);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  left: 10%; right: 10%;
}

.nav-cta {
  background: var(--gradient-orange) !important;
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 25px !important;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4) !important;
}

.nav-cta:hover {
  box-shadow: var(--neon-shadow) !important;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
  border-radius: 2px;
}

/* ========== SECTION BASE ========== */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-badge {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid var(--orange);
  border-radius: 25px;
  font-size: 0.8rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--orange);
  text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 75px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(123, 45, 139, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, #050a14 0%, #080f1e 50%, #050a14 100%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 107, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 25px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.hero-text .badge i { font-size: 0.9rem; }

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title .line-1 { display: block; color: var(--text-primary); }
.hero-title .line-2 {
  display: block;
  color: var(--orange);
  text-shadow: 0 0 30px rgba(255, 107, 0, 0.6);
}
.hero-title .line-3 { display: block; color: var(--text-primary); font-size: 0.7em; font-weight: 500; margin-top: 0.25rem; }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--gradient-orange);
  color: white;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 25px rgba(255, 107, 0, 0.4);
  text-transform: uppercase;
}

.btn-primary:hover {
  box-shadow: var(--neon-shadow);
  transform: translateY(-3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--orange);
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-secondary:hover {
  background: rgba(255, 107, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.hero-stat .num {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  text-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

/* Hero Visual Side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-container {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  animation: rotateSlow 12s linear infinite;
}

.ring-1 {
  width: 350px; height: 350px;
  border-color: rgba(255, 107, 0, 0.3);
  border-top-color: var(--orange);
  animation-duration: 10s;
}

.ring-2 {
  width: 290px; height: 290px;
  border-color: rgba(123, 45, 139, 0.3);
  border-bottom-color: var(--purple);
  animation-direction: reverse;
  animation-duration: 15s;
}

.ring-3 {
  width: 230px; height: 230px;
  border-color: rgba(255, 107, 0, 0.2);
  border-right-color: var(--orange-light);
  animation-duration: 8s;
}

.hero-logo-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.5));
  animation: floatLogo 3s ease-in-out infinite;
}

.hero-floating-badge {
  position: absolute;
  padding: 0.6rem 1rem;
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--card-shadow);
  animation: floatBadge 4s ease-in-out infinite;
}

.fb-1 { top: 20%; left: -5%; animation-delay: 0s; }
.fb-2 { bottom: 20%; right: -5%; animation-delay: 1.5s; }
.fb-3 { top: 60%; left: -10%; animation-delay: 0.8s; }

.hero-floating-badge i { color: var(--orange); font-size: 1rem; }

/* ========== COURSES PREVIEW ========== */
.courses-preview {
  background: var(--dark-2);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.course-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

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

.course-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.course-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 107, 0, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--orange);
  border: 1px solid rgba(255, 107, 0, 0.2);
  transition: var(--transition);
}

.course-card:hover .course-icon {
  background: rgba(255, 107, 0, 0.25);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.course-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.course-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.course-meta i { color: var(--orange); }

.course-btns {
  display: flex;
  gap: 0.5rem;
}

.btn-enquire {
  flex: 1;
  padding: 0.55rem;
  background: var(--gradient-orange);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.82rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.btn-enquire:hover { box-shadow: var(--neon-shadow); }

.btn-whatsapp {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: white;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

/* ========== COUNTERS ========== */
.counters-section {
  background: var(--gradient-orange);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.counters-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(0,0,0,0.1) 0%, transparent 60%);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.counter-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.counter-item:last-child { border-right: none; }

.counter-num {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.counter-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
  opacity: 0.9;
}

/* ========== WHY CHOOSE US ========== */
.why-section { background: var(--dark-bg); }

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

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.why-feature {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: var(--transition);
}

.why-feature:hover {
  border-color: rgba(255, 107, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.why-feature i {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
}

.why-feature h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.why-feature p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section { background: var(--dark-2); }

.swiper-testimonials {
  padding: 1rem 0 3rem;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  backdrop-filter: blur(10px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 4rem;
  color: var(--orange);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.testimonial-stars i { color: var(--orange); font-size: 0.9rem; }

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}

.testimonial-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--orange);
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--dark-bg);
  padding: 5rem 0;
}

.cta-box {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.06) 0%, transparent 60%);
}

.cta-box h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  position: relative;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-box .btn-primary { position: relative; }

/* ========== PLACEMENT ========== */
.placement-section { background: var(--dark-3); }

.company-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 2rem;
}

.company-logo-item {
  padding: 1rem 2rem;
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.company-logo-item:hover {
  border-color: rgba(255, 107, 0, 0.4);
  color: var(--orange);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.1);
}

/* ========== FOOTER ========== */
.footer {
  background: #020609;
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 0;
  position: relative;
  z-index: 1;
}

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

.footer-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.3));
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  color: var(--orange);
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--orange);
  color: white;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 1.1rem;
}

.footer-links a:hover { color: var(--orange); padding-left: 5px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.87rem;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--orange);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 107, 0, 0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
}

.footer-bottom span { color: var(--orange); }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: waPulse 2s ease-in-out infinite;
}

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

/* ========== SWIPER CUSTOM ========== */
.swiper-pagination-bullet { background: var(--text-muted); }
.swiper-pagination-bullet-active { background: var(--orange); width: 20px; border-radius: 4px; }
.swiper-button-next, .swiper-button-prev {
  color: var(--orange) !important;
  width: 40px !important;
  height: 40px !important;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 0, 0.3);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1rem !important; }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  background: var(--dark-2);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, rgba(255, 107, 0, 0.08) 0%, transparent 70%),
    linear-gradient(rgba(255, 107, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.03) 1px, transparent 1px);
  background-size: auto, 50px 50px, 50px 50px;
}

.page-hero h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  position: relative;
}

.page-hero h1 span { color: var(--orange); text-shadow: 0 0 20px rgba(255, 107, 0, 0.5); }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  position: relative;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.breadcrumb a { color: var(--orange); }
.breadcrumb i { font-size: 0.7rem; }

/* ========== GLASS CARD ========== */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  padding: 2rem;
}

/* ========== ANIMATIONS ========== */
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

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

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ========== GALLERY PAGE ========== */
.gallery-grid {
  columns: 3;
  column-gap: 1.25rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 107, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay i {
  font-size: 2rem;
  color: white;
}

/* ========== CONTACT FORM ========== */
.contact-form {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

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

.form-group label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
  background: rgba(255, 107, 0, 0.05);
}

.form-control::placeholder { color: var(--text-muted); }

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

select.form-control option { background: var(--dark-3); }

/* ========== FAQ ========== */
.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.faq-question:hover { color: var(--orange); }

.faq-question i {
  color: var(--orange);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

/* ========== ABOUT TIMELINE ========== */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-content-left { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-content-right { grid-column: 1; grid-row: 1; }

.timeline-dot {
  grid-column: 2;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid var(--dark-bg);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.timeline-content {
  padding: 1.25rem 1.5rem;
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 5px 20px rgba(255, 107, 0, 0.1);
}

.timeline-year {
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.timeline-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.timeline-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ========== TEAM CARDS ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 107, 0, 0.1);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 1rem;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.team-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.83rem;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.team-exp {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

/* ========== SEARCH & FILTER ========== */
.search-filter-bar {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.search-input-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.search-input-wrap i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-input-wrap input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.search-input-wrap input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

.filter-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(255, 107, 0, 0.15);
  border-color: var(--orange);
  color: var(--orange);
}

/* ========== CATEGORY SECTION ========== */
.category-section { margin-bottom: 3rem; }

.category-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.25rem;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 25px;
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

/* ========== INFRASTRUCTURE ========== */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.infra-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.infra-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  transform: translateY(-5px);
}

.infra-card i {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
}

.infra-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.infra-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.3);
}

.lightbox-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  width: 44px; height: 44px;
  background: rgba(255, 107, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover { background: var(--orange); }

/* ========== CONTACT MAP ========== */
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
}

/* ========== CONTACT DETAILS ========== */
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-detail-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}

.contact-detail-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.contact-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.15);
  border: 2px solid rgba(255, 107, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin: 0 auto 1rem;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
}

.contact-detail-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-detail-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-detail-card a {
  color: var(--orange);
  transition: var(--transition);
}

.contact-detail-card a:hover { text-shadow: 0 0 10px rgba(255, 107, 0, 0.5); }

/* ========== MISSION VISION ========== */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mv-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-orange);
}

.mv-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.mv-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  color: var(--orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mv-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* AOS overrides */
[data-aos] { transition-duration: 0.7s !important; }
