/* ==========================================================================
   FrontierWox Tech Private Limited - Official Global Stylesheet v3.0
   Corporate Brand Colors: Electric Sky Blue (#27b4fb) & Vibrant Orange (#eb4d1c)
   Enhanced: Full Mobile-First Responsiveness, Rich Animations, Premium UI/UX
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@600;700&family=Fredoka:wght@400;500;600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --sky-blue: #0080d9;
  --sky-blue-rgb: 0, 128, 217;
  --sky-blue-light: #e6f2fc;
  --orange: #f7641c;
  --orange-rgb: 247, 100, 28;
  --orange-light: #fef0e8;
  --navy-dark: #0f172a;
  --navy-card: #0a254d;
  --navy-light: #123261;

  --font-primary: 'Lexend', sans-serif;
  --font-secondary: 'Fredoka', sans-serif;
  
  --text-main: #334155;
  --bg-light: #f8fafc;

  --surface-light: #f8fafc;
  --surface-white: #ffffff;
  --border-light: #dce1e6;
  --border-glow: rgba(0, 86, 179, 0.15);
  --border-orange-glow: rgba(209, 65, 12, 0.15);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-orange-glow: 0 4px 12px rgba(0, 0, 0, 0.06);

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-secondary);
  font-size: 18px;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: fadeIn 0.4s ease-out both;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.25;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-padding {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

/* ============================================================
   KEYFRAMES â€” Animation Library
   ============================================================ */

/* Float gently up and down */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Pulsing glow ring */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(39, 180, 251, 0.2); }
  50%       { box-shadow: 0 0 35px rgba(39, 180, 251, 0.5); }
}

/* Pulsing orange glow ring */
@keyframes pulse-orange-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(235, 77, 28, 0.2); }
  50%       { box-shadow: 0 0 35px rgba(235, 77, 28, 0.5); }
}

/* Fade-in from bottom */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Fade-in from left */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Fade-in from right */
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Simple fade-in */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scale in from small */
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* Gradient shimmer sweep */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Rotating border conic gradient */
@keyframes rotateBorder {
  to { --angle: 360deg; }
}

/* Tab pane slide */
@keyframes tabSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Staggered number count */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SCROLL REVEAL SYSTEM
   ============================================================ */
.sr {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sr-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.sr-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.8s ease, transform 0.8s ease; }
.sr-scale { opacity: 0; transform: scale(0.88);        transition: opacity 0.7s ease, transform 0.7s var(--transition-bounce); }

.sr.revealed, .sr-left.revealed, .sr-right.revealed, .sr-scale.revealed {
  opacity: 1;
  transform: none;
}

/* Stagger delays for grid children */
.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.47s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.54s; }
.stagger-children > *:nth-child(9) { transition-delay: 0.61s; }
.stagger-children > *:nth-child(10) { transition-delay: 0.68s; }

/* Legacy scroll-reveal support */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-title-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(var(--sky-blue-rgb), 0.08);
  border: 1px solid rgba(var(--sky-blue-rgb), 0.25);
  color: #0284c7;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  transition: all var(--transition-fast);
}

.badge-tag:hover {
  background: rgba(var(--sky-blue-rgb), 0.15);
  transform: translateY(-2px);
}

.badge-tag.orange {
  background: rgba(var(--orange-rgb), 0.08);
  border-color: rgba(var(--orange-rgb), 0.25);
  color: var(--orange);
}

.badge-tag.orange:hover {
  background: rgba(var(--orange-rgb), 0.15);
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--text-muted);
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, var(--sky-blue) 0%, #38bdf8 50%, var(--orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Ripple effect base */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
}

.btn:hover::after {
  background: rgba(255,255,255,0.08);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sky-blue), #0284c7);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(39, 180, 251, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(39, 180, 251, 0.45);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), #c23b12);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(235, 77, 28, 0.3);
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(235, 77, 28, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--sky-blue);
  color: var(--sky-blue);
}

.btn-outline:hover {
  background: var(--sky-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 180, 251, 0.3);
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .btn { font-size: 0.92rem; padding: 0.75rem 1.4rem; }
}

/* ============================================================
   PAGE SHUTTLE TRANSITION OVERLAY
   ============================================================ */
.page-shuttle {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  background-image: 
    radial-gradient(circle at 50% 40%, rgba(39, 180, 251, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(235, 77, 28, 0.18) 0%, transparent 50%);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: auto;
}

.page-shuttle.shuttle-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.shuttle-content {
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  transform: scale(1);
  transition: transform 0.4s ease;
}

.page-shuttle.shuttle-out .shuttle-content {
  transform: scale(0.92);
}

.shuttle-logo-box {
  position: relative;
  width: 140px;
  height: 140px;
  background: #ffffff;
  border-radius: 24px;
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(39, 180, 251, 0.4);
  animation: pulse-glow 2.5s infinite;
}

.shuttle-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.shuttle-title {
  font-family: var(--font-primary);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

.shuttle-tagline {
  font-size: 0.92rem;
  color: var(--sky-blue);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.shuttle-progress {
  width: 160px;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 0.5rem;
}

.shuttle-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--sky-blue), var(--orange));
  animation: shuttleBar 1.2s ease-in-out infinite;
  transform-origin: left;
}

@keyframes shuttleBar {
  0%   { transform: scaleX(0); }
  50%  { transform: scaleX(0.7); }
  100% { transform: scaleX(1); }
}

/* ============================================================
   TOP UTILITY BAR & STICKY HEADER WRAPPER
   ============================================================ */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar {
  background: linear-gradient(90deg, #0b1428 0%, #152244 50%, #0b1428 100%);
  color: #f1f5f9;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(39, 180, 251, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.35s ease;
  overflow: hidden;
  max-height: 250px;
}

.header-wrapper.scrolled .top-bar {
  max-height: 0;
  padding: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.top-bar-left span,
.top-bar-left a {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 0 3px rgba(255,255,255,0.4);
}

.top-bar-left i {
  color: var(--sky-blue);
  margin-right: 0.35rem;
  font-size: 0.9rem;
}

.top-bar-left a:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.top-bar-divider {
  color: rgba(255, 255, 255, 0.3);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.follow-label {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.social-links-sm {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.social-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.social-sm:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(39, 180, 251, 0.4);
}

.social-sm.linkedin:hover  { background: #0a66c2; border-color: #0a66c2; }
.social-sm.github:hover    { background: #24292e; border-color: #24292e; }
.social-sm.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #bc1888); border-color: #dc2743; }
.social-sm.whatsapp:hover  { background: #25d366; border-color: #25d366; }
.social-sm.ambitionbox:hover { background: var(--orange); border-color: var(--orange); }

.header {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled,
.header-wrapper.scrolled .header {
  background: #ffffff;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.09);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 1rem;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .navbar,
.header-wrapper.scrolled .navbar {
  height: 68px;
}

/* Company Logo Size & Shrink on Scroll */
.brand-logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform var(--transition-bounce);
}

.header.scrolled .brand-logo img,
.header-wrapper.scrolled .brand-logo img {
  height: 46px;
}

.brand-logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--sky-blue), var(--orange));
  transition: width var(--transition-normal);
  border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link.active {
  color: var(--sky-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Mobile hamburger */
.mobile-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border-light);
  font-size: 1.2rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  line-height: 1;
}

.mobile-toggle:hover {
  border-color: var(--sky-blue);
  color: var(--sky-blue);
}

/* Mobile Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #041e42;
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.nav-overlay.active {
  opacity: 1;
}

/* ---- RESPONSIVE: hide nav menu on small screens ---- */
@media (max-width: 1040px) {
  .mobile-toggle { display: flex; align-items: center; }
  .nav-overlay { display: block; pointer-events: none; }
  .nav-overlay.active { pointer-events: all; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: min(320px, 85vw);
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2.5rem;
    gap: 0.25rem;
    box-shadow: -8px 0 50px rgba(0,0,0,0.2);
    transition: right var(--transition-normal);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.active { right: 0; }

  .nav-link {
    font-size: 1.05rem;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast), color var(--transition-fast);
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(var(--sky-blue-rgb), 0.08);
    color: var(--sky-blue);
  }

  .nav-actions { display: none; }
}

@media (max-width: 768px) {
  .top-bar {
    max-height: 140px;
    padding: 0.4rem 0;
    font-size: 0.76rem;
  }

  .top-bar-container {
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
  }

  .top-bar-left {
    justify-content: center;
    gap: 0.35rem 0.65rem;
    font-size: 0.75rem;
    width: 100%;
  }

  .top-bar-divider {
    display: none;
  }

  .top-bar-left span,
  .top-bar-left a {
    font-size: 0.75rem;
  }

  .top-bar-right {
    justify-content: center;
    width: 100%;
    gap: 0.4rem;
  }

  .follow-label {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }

  .social-sm {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .header-wrapper.scrolled .top-bar {
    max-height: 0;
    padding: 0;
    opacity: 0;
  }

  .navbar {
    height: 72px;
  }

  .header.scrolled .navbar,
  .header-wrapper.scrolled .navbar {
    height: 60px;
  }

  .brand-logo img {
    height: 48px;
  }

  .header.scrolled .brand-logo img,
  .header-wrapper.scrolled .brand-logo img {
    height: 38px;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  padding-top: clamp(140px, 15vw, 180px);
  padding-bottom: clamp(60px, 10vw, 100px);
  background-color: var(--navy-dark);
  background-image: linear-gradient(180deg, rgba(4, 30, 66, 0.85) 0%, rgba(4, 30, 66, 0.95) 100%), url('bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  display: flex;
  align-items: center;
}

/* Grid overlay */
.cyber-grid-overlay {
  display: none !important;
}

/* Animated orbs */
.hero-orb {
  display: none !important;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(39,180,251,0.15) 0%, transparent 70%);
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(235,77,28,0.12) 0%, transparent 70%);
  bottom: 15%;
  left: 5%;
  animation-delay: -4s;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-orb-1 { width: 200px; height: 200px; }
  .hero-orb-2 { width: 150px; height: 150px; }
}

.cin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: #ffffff1a;
  border: 1px solid #ffffff33;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.cin-badge i { color: var(--orange); }

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease both;
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #94a3b8;
  margin-bottom: 2.5rem;
  max-width: 620px;
  line-height: 1.7;
  animation: fadeInUp 0.8s 0.15s ease both;
}

@media (max-width: 991px) {
  .hero-description { margin-left: auto; margin-right: auto; }
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease both;
}

@media (max-width: 991px) {
  .hero-buttons { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons .btn { text-align: center; width: 100%; }
}

/* Hero Glass Card */
.hero-glass-card {
  background: var(--navy-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.9s 0.2s ease both;
}

.hero-glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky-blue), var(--orange));
}

.tech-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.tech-spec-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: default;
}

.tech-spec-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(39, 180, 251, 0.5);
  background: rgba(39, 180, 251, 0.09);
  box-shadow: 0 10px 30px rgba(39, 180, 251, 0.15);
}

.tech-spec-num {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--sky-blue);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.tech-spec-num.orange { color: var(--orange); }

.tech-spec-label {
  font-size: 0.82rem;
  color: #cbd5e1;
  font-weight: 500;
  line-height: 1.3;
}

/* ============================================================
   PAGE BANNER (Inner Pages)
   ============================================================ */
.page-banner {
  background: var(--navy-dark);
  background-image:
    radial-gradient(circle at 90% 10%, rgba(39, 180, 251, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(235, 77, 28, 0.12) 0%, transparent 45%),
    linear-gradient(180deg, rgba(10, 15, 29, 0.92) 0%, rgba(10, 15, 29, 0.98) 100%),
    url('bg.jpg');
  background-size: cover;
  background-position: center;
  padding-top: clamp(150px, 20vw, 190px);
  padding-bottom: clamp(50px, 8vw, 80px);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(39, 180, 251, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 180, 251, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.page-banner-title {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  color: #ffffff;
  margin-bottom: 1rem;
  animation: fadeInUp 0.7s ease both;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #94a3b8;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.breadcrumbs a { color: var(--sky-blue); }
.breadcrumbs a:hover { text-decoration: underline; color: #38bdf8; }

/* ============================================================
   FWT iZON SECTION
   ============================================================ */
.izon-section {
  background: linear-gradient(180deg, #0a0f1d 0%, #0d1527 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.izon-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(39, 180, 251, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 180, 251, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.izon-card {
  background: linear-gradient(135deg, rgba(26, 35, 58, 0.97) 0%, rgba(13, 21, 39, 0.99) 100%);
  border: 1px solid rgba(235, 77, 28, 0.3);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}

.izon-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(235,77,28,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.izon-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--sky-blue));
}

.izon-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.izon-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.izon-logo-wrap img {
  height: 64px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  flex-shrink: 0;
}

.izon-motto {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  background: linear-gradient(90deg, var(--sky-blue), #38bdf8, var(--orange));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-style: italic;
}

/* ============================================================
   CARDS & GRIDS
   ============================================================ */
.services-grid,
.features-grid,
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.card {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Top gradient bar on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--sky-blue), var(--orange));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

/* Sheen sweep on hover */
.card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--sky-blue-rgb), 0.3);
}

.card:hover::before { opacity: 1; }
.card:hover::after  { left: 150%; }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(var(--sky-blue-rgb), 0.1);
  color: var(--sky-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-bounce), background var(--transition-fast);
  flex-shrink: 0;
}

.card:hover .card-icon {
  transform: scale(1.12) rotate(-5deg);
  background: rgba(var(--sky-blue-rgb), 0.18);
}

.card-icon.orange {
  background: rgba(var(--orange-rgb), 0.1);
  color: var(--orange);
}

.card:hover .card-icon.orange {
  background: rgba(var(--orange-rgb), 0.18);
}

.card-title {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin-bottom: 0.75rem;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.65;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.card-tag {
  font-size: 0.75rem;
  padding: 0.28rem 0.75rem;
  background: var(--bg-light);
  color: #475569;
  border-radius: var(--radius-sm);
  font-weight: 500;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.card-tag:hover {
  background: var(--sky-blue-light);
  color: #0284c7;
  border-color: rgba(var(--sky-blue-rgb), 0.3);
}

/* ============================================================
   TIMELINE / CONTINUUM STEP COMPONENT
   ============================================================ */
.timeline-continuum {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}

.continuum-step {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.75rem;
  text-align: center;
  position: relative;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-sm);
}

.continuum-step:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: var(--sky-blue);
  box-shadow: 0 12px 35px rgba(39, 180, 251, 0.18);
}

.continuum-step-num {
  width: 32px; height: 32px;
  background: var(--sky-blue);
  color: #ffffff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
  font-size: 0.875rem;
  transition: transform var(--transition-bounce);
}

.continuum-step:hover .continuum-step-num {
  transform: scale(1.15);
}

.continuum-step.orange .continuum-step-num { background: var(--orange); }

.continuum-step-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
}

/* ============================================================
   INTERACTIVE TABS
   ============================================================ */
.tab-controllers {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.tab-btn {
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  color: var(--text-main);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--sky-blue);
  color: #ffffff;
  border-color: var(--sky-blue);
  box-shadow: 0 6px 18px rgba(39, 180, 251, 0.3);
  transform: translateY(-2px);
}

.tab-pane { display: none; }

.tab-pane.active {
  display: block;
  animation: tabSlideIn 0.4s ease both;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
}

@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
  background: var(--navy-dark);
  color: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky-blue), var(--orange));
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(39,180,251,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-card h3 {
  color: #ffffff;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  transition: transform var(--transition-fast);
}

.contact-item:hover { transform: translateX(4px); }

.contact-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  background: rgba(39, 180, 251, 0.15);
  color: var(--sky-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
}

.contact-text h5 {
  color: #94a3b8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 0.25rem;
}

.contact-text p,
.contact-text a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-size: 0.975rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #ffffff;
  transition: all var(--transition-fast);
  font-family: inherit;
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 4px rgba(39, 180, 251, 0.12);
  background: #fafeff;
}

.form-control:hover:not(:focus) {
  border-color: #b0d8f0;
}

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

select.form-control {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%2364748b' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ============================================================
   GOOGLE MAP
   ============================================================ */
.map-section {
  background: var(--bg-light);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 50px rgba(39, 180, 251, 0.14), 0 2px 12px rgba(0,0,0,0.07);
  border: 2px solid rgba(39, 180, 251, 0.18);
  position: relative;
  transition: box-shadow var(--transition-normal);
}

.map-wrapper:hover {
  box-shadow: 0 12px 60px rgba(39, 180, 251, 0.22), 0 4px 18px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.map-header-text h3 {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.map-header-text p { color: var(--text-muted); font-size: 0.95rem; }

.map-action-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.map-address-strip {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--surface-white);
  border-radius: 0 0 18px 18px;
  padding: 1.25rem 1.75rem;
  border-top: 1.5px solid rgba(39, 180, 251, 0.12);
}

.map-address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  flex: 1;
  min-width: 180px;
}

.map-address-item i {
  font-size: 1.1rem;
  width: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.map-address-item span { color: var(--text-muted); line-height: 1.4; }

.map-address-item strong {
  color: var(--text-dark);
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.15rem;
}

@media (max-width: 768px) {
  .map-wrapper iframe { height: 280px; }
  .map-header { flex-direction: column; align-items: flex-start; }
  .map-action-btns { width: 100%; }
  .map-action-btns .btn { flex: 1; justify-content: center; }
  .map-address-strip { gap: 1rem; padding: 1rem; }
  .map-address-item { min-width: 140px; }
}

/* ============================================================
   LEADERSHIP PAGE
   ============================================================ */
.leader-card {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  border-color: rgba(var(--sky-blue-rgb), 0.25);
}

.leader-photo-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f8ff, #fff5f0);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.leader-card:hover .leader-photo-wrap img {
  transform: scale(1.05);
}

.leader-info {
  padding: 2rem 2rem 2.5rem;
  position: relative;
}

.leader-info::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-blue), var(--orange));
  border-radius: var(--radius-full);
}

/* ============================================================
   FOOTER â€” Light Orange Tech Theme
   ============================================================ */
.footer {
  background: linear-gradient(180deg, #fffaf7 0%, #fff3ed 100%);
  color: var(--text-main);
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: 2rem;
  border-top: 2px solid rgba(235, 77, 28, 0.12);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky-blue), var(--orange));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 3.5rem;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.footer-col h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--orange);
  transition: width var(--transition-normal);
}

.footer-col:hover h4::after { width: 56px; }

.footer-links li { margin-bottom: 0.7rem; }

.footer-links a {
  color: #64748b;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

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

/* Recognition Section */
.footer-recognitions {
  background: #ffffff;
  border: 1px solid rgba(235, 77, 28, 0.18);
  box-shadow: 0 8px 30px rgba(235, 77, 28, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 3.5rem;
  text-align: center;
  transition: box-shadow var(--transition-normal);
}

.footer-recognitions:hover {
  box-shadow: 0 12px 40px rgba(235, 77, 28, 0.1);
}

.recognition-title {
  color: var(--text-dark);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.recognition-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  flex-wrap: wrap;
}

.recognition-logo-card {
  background: #fff;
  padding: 0.85rem 1.75rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-bounce);
}

.recognition-logo-card:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 10px 30px rgba(235, 77, 28, 0.14);
  border-color: rgba(235, 77, 28, 0.28);
}

.recognition-logo-card img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(235, 77, 28, 0.12);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition-bounce);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.social-link:hover {
  transform: translateY(-4px) scale(1.1);
}

.social-link.linkedin:hover  { background: #0a66c2; border-color: #0a66c2; color: #fff; box-shadow: 0 8px 20px rgba(10,102,194,0.35); }
.social-link.github:hover    { background: #24292e; border-color: #24292e; color: #fff; box-shadow: 0 8px 20px rgba(36,41,46,0.35); }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #dc2743; color: #fff; box-shadow: 0 8px 20px rgba(220,39,67,0.35); }
.social-link.whatsapp:hover  { background: #25d366; border-color: #25d366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,0.35); }
.social-link.ambitionbox:hover { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(235,77,28,0.35); }

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sky-blue), #0284c7);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(39, 180, 251, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 900;
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(39, 180, 251, 0.55);
}

@media (max-width: 480px) {
  .back-to-top { bottom: 1.25rem; right: 1.25rem; width: 42px; height: 42px; }
}

/* ============================================================
   TOOLTIP (title-based custom tooltip on hover optional)
   ============================================================ */

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-sky    { color: var(--sky-blue); }
.text-orange { color: var(--orange); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Glowing divider */
.glow-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sky-blue), transparent);
  margin: 2rem 0;
  opacity: 0.5;
}

/* Highlight number pill */
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: rgba(var(--sky-blue-rgb), 0.1);
  color: #0284c7;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(var(--sky-blue-rgb), 0.2);
}

.stat-pill.orange {
  background: rgba(var(--orange-rgb), 0.1);
  color: var(--orange);
  border-color: rgba(var(--orange-rgb), 0.2);
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--sky-blue), var(--orange));
  z-index: 9999;
  width: 0%;
  box-shadow: 0 0 10px rgba(39, 180, 251, 0.5);
  transition: width 0.1s ease-out;
}

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* ============================================================
   ACCESSIBILITY: Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .sr, .sr-left, .sr-right, .sr-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   NEW LAYOUT GRIDS & SERVICE LOGO BOX
   ============================================================ */
.journey-grid, .vision-grid {
  display: grid;
  align-items: center;
}
.journey-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
}
.vision-grid {
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 991px) {
  .journey-grid, .vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .journey-grid > div:nth-child(2) {
    order: -1;
  }
}

.service-logo-box {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(39,180,251,0.12) 0%, rgba(39,180,251,0.02) 100%);
  border: 1px solid rgba(39,180,251,0.25);
  box-shadow: 0 8px 24px rgba(39, 180, 251, 0.1), inset 0 2px 4px rgba(255,255,255,0.2);
  color: var(--sky-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.service-logo-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card:hover .service-logo-box {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 30px rgba(39, 180, 251, 0.25), inset 0 2px 4px rgba(255,255,255,0.4);
  border-color: rgba(39,180,251,0.5);
}

.card:hover .service-logo-box::before {
  opacity: 0.15;
}

.service-logo-box.orange {
  background: linear-gradient(135deg, rgba(235,77,28,0.12) 0%, rgba(235,77,28,0.02) 100%);
  border: 1px solid rgba(235,77,28,0.25);
  box-shadow: 0 8px 24px rgba(235, 77, 28, 0.1), inset 0 2px 4px rgba(255,255,255,0.2);
  color: var(--orange);
}

.card:hover .service-logo-box.orange {
  box-shadow: 0 12px 30px rgba(235, 77, 28, 0.25), inset 0 2px 4px rgba(255,255,255,0.4);
  border-color: rgba(235,77,28,0.5);
}

/* ============================================================
   MARQUEE SCROLLING GALLERY
   ============================================================ */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--surface-white);
  padding: 4rem 0;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--surface-white), transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--surface-white), transparent);
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marqueeScroll 200s linear infinite;
  gap: 1.5rem;
  padding: 0 1.5rem;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  width: 350px;
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-light);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marquee-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .marquee-item {
    width: 280px;
    height: 380px;
  }
}

/* ============================================================
   COLLEGE PARTNER MARQUEE
   ============================================================ */
.college-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  padding: 0 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.college-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.college-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky-blue);
}

.college-logo-img {
  max-height: 60px;
  max-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
}

.college-name {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-dark);
}

/* ============================================================
   INTERN SLIDER
   ============================================================ */
.intern-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}

.intern-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 1.5rem;
  padding: 0 4rem; /* space for buttons */
}

.intern-slide {
  flex: 0 0 calc(33.333% - 1rem); /* 3 items per view minus gap */
  max-width: calc(33.333% - 1rem);
}

.intern-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: block;
}

@media (max-width: 992px) {
  .intern-slide {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .intern-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--sky-blue);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: var(--navy-dark);
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

