/* Slide Animate Active (fade-in-up) */
.slide-animate-active {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition-delay: 0.2s;
}

/* Slide Animate (fade-in-up) */
.slide-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
/* =============================
   Coverage Plans Modern Cards (from insurance/index.php)
=============================== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.plan-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  -webkit-background-clip: text;
  background-clip: text;
  border: 1px solid #e6e6e6;
  min-height: 370px;
  position: relative;
}
.plan-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.13);
  border-color: #007bff;
}
.plan-card-image {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f8fb;
  border-bottom: 1px solid #e6e6e6;
}
.plan-card-image img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  border-radius: 0.5rem;
}
.icon-bg-blue {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff 60%, #00c6ff 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 2px 8px 0 rgba(0,123,255,0.10);
}
.plan-card-body {
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.plan-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #007bff;
}
.plan-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.1rem;
}
.plan-premium {
  font-size: 1.08rem;
  color: #222;
  background: #f4f8fb;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  margin-top: auto;
  display: inline-block;
}
.plan-premium span {
  color: #007bff;
  font-weight: 500;
}
@media (max-width: 600px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .plan-card {
    min-height: 320px;
  }
}
/* =============================
   Coverage Section Background & Title
============================== */
.coverage-section-bg {
  background: linear-gradient(120deg, #e0e7ef 60%, #f1f5f9 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(59,130,246,0.07);
  margin-bottom: 3rem;
  padding: 2.5rem 0 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.coverage-section-title {
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 16px;
}
.coverage-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.coverage-plans-grid {
  margin-bottom: 2.5rem;
}
/* =============================
   Coverage Plans Section
============================== */
.coverage-plans-grid {
  position: relative;
  z-index: 2;
}
.coverage-card {
  background: linear-gradient(135deg, #f1f5f9 60%, #e0e7ef 100%);
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(59,130,246,0.07);
  border: 1.5px solid #e0e7ef;
  transition: transform 0.18s cubic-bezier(.4,2,.3,1), box-shadow 0.18s cubic-bezier(.4,2,.3,1);
  overflow: hidden;
}
.coverage-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 48px rgba(59,130,246,0.13);
  border-color: var(--accent);
}
.coverage-card .card-image img,
.coverage-card .icon-bg-blue {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.coverage-card .card-body {
  padding-bottom: 2rem;
}
.coverage-premium {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.08rem;
  margin-top: 1.1rem;
}
.rocket-svg {
  position: absolute;
  left: 50%;
  bottom: -60px;
  width: 180px;
  height: 180px;
  transform: translateX(-50%);
  opacity: 0.13;
  z-index: 0;
  animation: rocketFly 7s ease-in-out infinite alternate;
  pointer-events: none;
}
/* =============================
   Animated SVG/Dots/Rocket Backgrounds
============================== */
.section-bg-dots {
  position: relative;
  overflow: hidden;
  background: var(--bg-body);
}
.section-bg-dots::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: url('../img/undraw_multitasking_i2bv.svg') no-repeat center center/contain;
  opacity: 0.10;
  z-index: 0;
  animation: floatDots 8s ease-in-out infinite alternate;
}
.section-bg-dots::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: url('../img/Data points-cuate.svg') no-repeat center center/contain;
  opacity: 0.10;
  z-index: 0;
  animation: floatDots2 10s ease-in-out infinite alternate;
}
@keyframes floatDots {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(30px) scale(1.04); }
}
@keyframes floatDots2 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-24px) scale(1.03); }
}

.section-bg-rocket {
  position: relative;
  overflow: hidden;
  background: var(--bg-body);
}
.section-bg-rocket .rocket-svg {
  position: absolute;
  left: 50%;
  bottom: -60px;
  width: 180px;
  height: 180px;
  transform: translateX(-50%);
  opacity: 0.13;
  z-index: 0;
  animation: rocketFly 7s ease-in-out infinite alternate;
}
@keyframes rocketFly {
  0% { transform: translateX(-50%) translateY(0) scale(1); }
  100% { transform: translateX(-50%) translateY(-30px) scale(1.05) rotate(-3deg); }
}
/* =============================
   Why Insure Your Tech Section
============================== */
.why-insure-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0 1rem 0;
}
.why-insure-text {
  flex: 1 1 340px;
  min-width: 300px;
  max-width: 540px;
  text-align: left;
}
.why-insure-text h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.1rem;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 12px;
}
.why-insure-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.why-insure-text p {
  color: var(--text-main);
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
}
.why-insure-text ul.list-check {
  margin-top: 1.2rem;
}
.why-insure-illustration {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-insure-illustration img {
  width: 100%;
  max-width: 410px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(59,130,246,0.10));
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}
/* =============================
   QTI Insurance Hero Section
============================== */
.hero-insurance {
  background: var(--gradient-hero);
  padding: 3.5rem 0 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.hero-insurance-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-insurance-content {
  flex: 1 1 340px;
  min-width: 300px;
  max-width: 540px;
  z-index: 2;
  text-align: left;
}
.hero-insurance h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
  text-align: left;
  position: relative;
  padding-bottom: 20px;
}
.hero-insurance h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.hero-insurance .lead {
  color: #e0e7ef;
  font-size: 1.18rem;
  margin-bottom: 0.7rem;
  text-align: left;
}
.hero-insurance-desc {
  color: #cbd5e1;
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
  text-align: left;
}
.hero-insurance .cta-group {
  display: flex;
  gap: 1.1rem;
}
.hero-btn {
  padding: 0.85rem 2.2rem;
  font-size: 1.1rem;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(59,130,246,0.13);
  transition: transform 0.18s cubic-bezier(.4,2,.3,1), box-shadow 0.18s cubic-bezier(.4,2,.3,1);
}
.hero-btn.btn-secondary {
  background: rgba(255,255,255,0.13);
  color: #fff;
  border: 1.5px solid var(--accent);
  box-shadow: 0 2px 8px rgba(59,130,246,0.08);
}
.hero-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(59,130,246,0.18);
}
.hero-insurance-illustration {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-insurance-illustration img {
  width: 100%;
  max-width: 410px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(59,130,246,0.10));
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}
.hero-insurance-bg-circle {
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 340px;
  height: 340px;
  background: var(--accent);
  opacity: 0.08;
  border-radius: 50%;
  z-index: 0;
}
/* =============================
   QTI Academy Hero Section
============================== */
.hero-academy {
  background: var(--gradient-hero);
  padding: 3.5rem 0 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.hero-academy-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-academy-content {
  flex: 1 1 340px;
  min-width: 300px;
  max-width: 540px;
  z-index: 2;
  text-align: left;
}
.hero-academy h1 {
  color: var(--white);
  font-size: 2.7rem;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
  text-align: left;
  position: relative;
  padding-bottom: 20px;
}
/* Left-aligned underline for hero header */
.hero-academy h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.hero-academy .lead {
  color: #e0e7ef;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  text-align: left;
}
.hero-academy-desc {
  color: #cbd5e1;
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
  text-align: left;
}
.hero-academy .cta-group {
  display: flex;
  gap: 1.1rem;
}
.hero-btn {
  padding: 0.85rem 2.2rem;
  font-size: 1.1rem;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(59,130,246,0.13);
  transition: transform 0.18s cubic-bezier(.4,2,.3,1), box-shadow 0.18s cubic-bezier(.4,2,.3,1);
}
.hero-btn.btn-secondary {
  background: rgba(255,255,255,0.13);
  color: #fff;
  border: 1.5px solid var(--accent);
  box-shadow: 0 2px 8px rgba(59,130,246,0.08);
}
.hero-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(59,130,246,0.18);
}
.hero-academy-illustration {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-academy-illustration img {
  width: 100%;
  max-width: 410px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(59,130,246,0.10));
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}
.hero-academy-bg-circle {
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 340px;
  height: 340px;
  background: var(--accent);
  opacity: 0.08;
  border-radius: 50%;
  z-index: 0;
}
/*--------------------------------------------------------------
# Modern Design System - QTI
--------------------------------------------------------------*/
:root {
  --primary: #0f172a;          /* Dark Slate */
  --secondary: #334155;        /* Muted Slate */
  --accent: #3b82f6;           /* Tech Blue */
  --accent-hover: #2563eb;
  --success: #10b981;          /* Growth Green */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --radius: 6px; /* Sharper corners for corporate look */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 24px -6px rgba(15, 23, 42, 0.15);
  --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.25);
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

* { box-sizing: border-box; 
  margin: 0; 
  padding: 0;
 }

body {
  background: var(--bg-body);
  color: var(--text-main);
  font-family: 'Inter', "Open Sans", sans-serif; /* Cleaner, modern font */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

/* Section Heading Underline */
section h2 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 1.5rem;
}

section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 50px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

/* Centering now applies to all section h2 headings */

/* Hero Headings Underline */
.hero-small h1 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 1rem;
}

.hero-small h1::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.hero-content h1 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 1.5rem;
}

.hero-content h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.hero-content.text-center h1::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Top Bar */
.top-bar {
  background: linear-gradient(90deg, var(--primary) 60%, var(--secondary) 100%);
  color: #e2e8f0;
  font-size: 0.95rem;
  padding: 0.7rem 0;
  border-bottom: 1.5px solid rgba(255,255,255,0.08);
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .contact-info {
  display: flex;
  gap: 2rem;
}

.top-bar .contact-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.top-bar .contact-info span:hover {
  color: var(--white);
}

.top-bar .contact-info i {
  color: var(--accent);
}

.top-bar .social-links {
  display: flex;
  gap: 0.75rem;
}

.top-bar .social-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.4,2,.3,1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.10);
  font-size: 1.25rem;
  box-shadow: 0 1px 4px rgba(15,23,42,0.06);
  position: relative;
  overflow: hidden;
}

.top-bar .social-links a:hover {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.12) translateY(-2px) rotate(-3deg);
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.18);
  z-index: 2;
}

/* Navigation */
header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: var(--primary);
  margin-bottom: 4px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent);
}

nav a.active {
  color: var(--accent);
  font-weight: 600;
}

nav a i {
  margin-right: 0.4rem;
}

.portal-btn {
  background: var(--gradient-accent);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 4px; /* Corporate radius */
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 58, 138, 0.85) 100%), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 85vh; /* Increased height for better presence */
  display: flex;
  align-items: center;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-small {
  background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}

.hero-small h1 {
  color: var(--white);
}

.carousel-slide {
  display: none;
  padding: 4rem 2rem;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.carousel-slide.active {
  display: flex;
}

/* Slide Content Animations */
.carousel-slide.active .hero-content > * {
  opacity: 0;
  animation: slideUpFade 0.8s ease forwards;
}

.carousel-slide.active .hero-content h1 { animation-delay: 0.1s; }
.carousel-slide.active .hero-content p { animation-delay: 0.3s; }
.carousel-slide.active .hero-content .cta-group { animation-delay: 0.5s; }

.carousel-slide.active .hero-visual {
  opacity: 0;
  animation: fadeInZoom 1s ease forwards 0.2s;
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInZoom {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Fade Animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.hero-content {
  flex: 1;
  z-index: 2;
  max-width: 600px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
  /* Optimized for unDraw Illustrations */
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
  animation: float 6s ease-in-out infinite;
}

/* SVG Specific Animations */
.svg-float {
  animation: float 6s ease-in-out infinite;
}

/* Pulse Animation for Security Shield */
.svg-pulse {
  animation: pulse-svg 3s infinite ease-in-out;
}

@keyframes pulse-svg {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}

/* Carousel Controls */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 10;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.5);
}

.carousel-dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
  z-index: 10;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}

.dot.active, .dot:hover {
  background-color: var(--white);
  width: 30px;
  border-radius: 10px;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.cta-group {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 4px; /* Corporate radius */
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  border-radius: 4px; /* Corporate radius */
  font-weight: 600;
  transition: background-color 0.3s;
  cursor: pointer;
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* Layout Utilities */
.section-padding {
  padding: 7rem 2rem;
}

.bg-white {
  background-color: var(--bg-card);
}

.bg-light {
  background-color: var(--bg-body);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.two-col {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1;
  min-width: 300px;
}

.rounded-shadow {
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
}

.hover-scale {
  transition: transform 0.5s ease;
}

.hover-scale:hover {
  transform: scale(1.02);
}

p.lead {
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Services Grid */
.services-grid {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.services-grid h2 {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 2rem;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.card-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  cursor: pointer;
}

.card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(15, 23, 42, 0.5) 100%);
  transition: all 0.3s ease;
}

.card-image::before {
  content: 'View Details';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card:hover .card-image::after {
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.5) 100%);
}

.card:hover .card-image::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.icon-bg-blue {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.icon-bg-green {
  background: linear-gradient(135deg, var(--success), #34d399);
}

.card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 130, 246, 0.2);
}

.card.highlight {
  border: 1px solid var(--accent);
}

.card h3 {
  margin-top: 0;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.read-more {
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-family: inherit;
  transition: border-color 0.3s;
  background: #f8fafc;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.9rem;
}

/* Banner Link */
.banner-link {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.banner-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.banner-link:hover img {
  transform: scale(1.02);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.floating-tech {
  width: 300px;
  height: 300px;
  animation: float 6s ease-in-out infinite;
}

.rotating-circle {
  transform-origin: center;
  animation: rotate 20s linear infinite;
}

.animated-icon {
  transition: transform 0.3s ease;
}

.card:hover .animated-icon {
  transform: scale(1.2) rotate(5deg);
}

/* Scroll Reveal Animation Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
   Homepage Hero Carousel
=============================== */
.hero.hero-carousel-section {
    color: var(--white);
}

.carousel-container {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Override existing carousel-slide for homepage */
.hero-carousel-section .carousel-slide {
    padding: 5rem 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel-section .carousel-slide.active {
    position: relative; /* Take up space in the document flow */
}

.hero-carousel-section .carousel-slide .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-carousel-section .carousel-slide .container.layout-reversed {
    flex-direction: row-reverse;
}

.hero-carousel-section .container.layout-reversed .hero-content {
    text-align: right;
}

/* Adjust underline for right-aligned text */
.hero-carousel-section .container.layout-reversed .hero-content h1::after {
    left: auto;
    right: 0;
}

/* Adjust button group for right-aligned text */
.hero-carousel-section .container.layout-reversed .hero-content .cta-group {
    justify-content: flex-end;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1300px; /* Align with container + padding */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    padding: 0 1rem;
}

.carousel-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.carousel-nav button:hover {
    background: var(--accent);
    transform: scale(1.1);
}

/* =============================
   Homepage Core Pillars Section
=============================== */
.pillars-section {
    padding: 7rem 2rem;
    background: var(--bg-body);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.pillar-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.pillar-card .icon { font-size: 3rem; color: var(--accent); margin-bottom: 1.5rem; display: inline-block; transition: transform 0.3s ease; }
.pillar-card:hover .icon { transform: scale(1.1) rotate(-5deg); }
.pillar-card h3 { margin-bottom: 1rem; color: var(--primary); font-size: 1.5rem; }
.pillar-card p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.pillar-card a { color: var(--accent); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.3s ease; }
.pillar-card a:hover { gap: 8px; text-decoration: underline; }

/* Staggered animation for pillar cards */
.pillars-grid .pillar-card.reveal-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.pillars-grid .pillar-card.reveal-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.pillars-grid .pillar-card.reveal-on-scroll:nth-child(3) { transition-delay: 0.3s; }

/* =============================
   Homepage CTA Section
=============================== */
.home-cta-section { padding: 6rem 2rem; background: var(--gradient-hero); color: white; text-align: center; border-top: 4px solid var(--accent); }
.home-cta-section h2 { font-size: 2.8rem; margin-bottom: 1rem; font-weight: 700; letter-spacing: -1px; text-shadow: 1px 1px 3px rgba(0,0,0,0.2); color: var(--white); }
.home-cta-section p { margin-bottom: 2.5rem; opacity: 0.9; font-size: 1.2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.home-cta-section .cta-btn { background: var(--gradient-accent); color: white; padding: 1rem 2.5rem; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 1.1rem; display: inline-block; transition: all 0.3s ease-in-out; box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3); border: none; }
.home-cta-section .cta-btn:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5); }

/* =============================
   Back to Top Button
=============================== */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--white);
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent-hover);
  transform: scale(1.1) translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

/* Utilities */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mb-3 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.w-100 { width: 100%; }

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .top-bar {
    display: none;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 1rem 0;
    text-align: center;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 1rem 0;
  }

  .carousel-slide { flex-direction: column; text-align: center; padding-top: 2rem; }
  .hero { min-height: auto; }
  .hero-visual { margin-top: 2rem; }

  .section-padding {
    padding: 3rem 1.5rem;
  }

  .hero-small {
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .two-col {
    gap: 2rem;
  }

  .card-body {
    padding: 1.5rem;
  }

  .feature-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .btn-primary, .btn-secondary {
    padding: 0.6rem 1.5rem;
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
    display: block;
  }

  .cta-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .two-col > div {
    min-width: 100%;
  }
}

/* Footer */
footer {
  background: linear-gradient(120deg, var(--primary) 70%, var(--secondary) 100%);
  color: #cbd5e1;
  padding: 3.5rem 2rem 1.5rem;
  margin-top: 4rem;
  box-shadow: 0 -2px 16px rgba(15,23,42,0.10);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.footer-section .social-links {
  display: flex;
  gap: 0.8rem;
}

.footer-section .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.10);
  color: #94a3b8;
  font-size: 1.35rem;
  margin-right: 0.2rem;
  transition: all 0.3s cubic-bezier(.4,2,.3,1);
  box-shadow: 0 1px 4px rgba(15,23,42,0.08);
  position: relative;
  overflow: hidden;
}

.footer-section .social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: scale(1.13) translateY(-3px) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.22);
  z-index: 2;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1.5px solid rgba(255,255,255,0.13);
  font-size: 1rem;
  color: #64748b;
  letter-spacing: 0.01em;
  opacity: 0.92;
}

/* Utility Classes & Components */
.list-check {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.list-check li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
}

.list-check li::before {
  content: '\f058'; /* fa-check-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--success);
  font-size: 1.2rem;
}

.bg-dark-slate {
  background-color: var(--secondary);
  color: var(--white);
}

.bg-dark-slate h1,
.bg-dark-slate h2,
.bg-dark-slate h3 {
  color: var(--white);
}

.feature-card {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  padding: 3rem;
  border-radius: var(--radius);
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-shadow: var(--shadow-lg);
}

.content-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.bg-network {
  background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('https://images.unsplash.com/photo-1558494949-efc5e60c9480?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Modal Styles */
.modal {
  display: none; 
  position: fixed; 
  z-index: 2000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.6); 
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
}

.modal.show {
  opacity: 1;
}

.modal-content {
  background-color: var(--bg-card);
  margin: auto;
  padding: 2.5rem;
  width: 90%;
  max-width: 600px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close-modal {
  color: #aaa;
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10;
}

.close-modal:hover {
  color: var(--primary);
}

#modalImageContainer img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.bg-dots {
  background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Login Page Styles */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 2rem;
  background-color: var(--bg-body);
}

.main-content{
	width: 100%;
    max-width: 900px;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	display: flex;
    background-color: var(--bg-card);
    overflow: hidden;
}

.company__info{
	background-color: var(--primary);
    background-image: var(--gradient-hero);
	display: flex;
	flex-direction: column;
	justify-content: center;
    align-items: center;
	color: var(--white);
    flex: 1;
    padding: 3rem;
    text-align: center;
}

.company__logo img {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.company_title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.login_form{
	background-color: var(--bg-card);
    flex: 1.2;
    padding: 3rem;
}

.login_form h2 {
	color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.form__input{
	width: 100%;
	border:0px solid transparent;
	border-radius: 0;
	border-bottom: 1px solid #cbd5e1;
	padding: 1em .5em .5em;
	padding-left: 0.5em;
	outline:none;
	margin: 0 0 1.5em 0;
	transition: all .3s ease;
    color: var(--text-main);
    background: transparent;
}

.form__input:focus{
	border-bottom-color: var(--accent);
	box-shadow: 0 1px 0 0 var(--accent);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-login{
	transition: all .3s ease;
	width: 100%;
	border-radius: var(--radius);
	color: var(--white);
	font-weight: 600;
	background-color: var(--accent);
	border: 1px solid var(--accent);
	margin-top: 1.5em;
	margin-bottom: 1em;
    padding: 0.8rem;
    cursor: pointer;
}

.btn-login:hover, .btn-login:focus{
	background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.login-footer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.login-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
	.main-content{
        flex-direction: column;
        max-width: 400px;
    }
	.company__info{
		display: none;
	}
    .login_form {
        padding: 2rem;
    }
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-notification {
  background: var(--bg-card);
  color: var(--text-main);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  min-width: 300px;
  border-left: 4px solid var(--accent);
  pointer-events: auto;
}

.toast-notification.show { transform: translateX(0); }
.toast-notification.success { border-left-color: var(--success); }
.toast-notification.error { border-left-color: #ef4444; }
.toast-notification i { font-size: 1.2rem; }
.toast-notification.success i { color: var(--success); }
.toast-notification.error i { color: #ef4444; }

@keyframes slideInToast {
  from { transform: translateX(120%); }
  to { transform: translateX(0); }
}

/* Academy Auth Pages */
.auth-wrapper {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1rem;
}
.auth-card {
    background: #fff;
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
}
.auth-header {
    background: var(--primary);
    padding: 1.5rem 1.5rem;
    text-align: center;
    color: #fff;
    background-image: var(--gradient-hero);
}
.auth-header h2 {
    color: #fff;
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}
.auth-header p {
    opacity: 0.8;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}
.auth-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 0.25rem;
    margin: 1rem 1.5rem;
    border-radius: 8px;
}
.auth-tab {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.auth-tab.active {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.auth-body {
    padding: 0 1.5rem 1.5rem;
}
.form-section {
    display: none;
    animation: fadeIn 0.4s ease-out;
}
.form-section.active {
    display: block;
}
.input-group {
    margin-bottom: 1rem;
    position: relative;
}
.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
}
.input-group:focus-within i {
    color: var(--accent);
}
.input-group input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    border-radius: 0;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: transparent;
}
.input-group input:focus {
    border-bottom-color: var(--accent);
    outline: none;
    background: transparent;
    box-shadow: none;
}
.btn-auth {
    width: 100%;
    padding: 0.75rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}
.btn-auth:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =============================
   FAQ Accordion Styles
=============================== */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-search-wrapper {
    position: relative;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.faq-search-wrapper i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}
.faq-search-wrapper input {
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}
.faq-search-wrapper input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.faq-category-group {
    margin-bottom: 3rem;
}
.faq-category-group:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}
.faq-category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}
.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    font-size: 1.05rem;
    transition: background-color 0.2s, color 0.2s;
}
.faq-question:hover {
    color: var(--accent);
    background-color: #f8fafc;
}

.faq-question::after {
    content: '\f078'; /* fa-chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
    color: var(--accent);
}
.faq-item.active .faq-question {
    color: var(--accent);
    background-color: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding-top 0.4s ease-out, padding-bottom 0.4s ease-out;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
    color: var(--text-main);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

/* =============================
   Services Page - Approach Grid
=============================== */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.approach-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-body);
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.approach-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}
.approach-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
}

/* =============================
   Services Page - Process Timeline
=============================== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}
.process-step {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--accent);
    position: relative;
    text-align: center;
}
.process-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: -3.5rem auto 1.5rem;
    border: 4px solid var(--bg-light);
}
.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

/* =============================
   Services Page - Industries Grid
=============================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.industry-card {
    background: var(--bg-body);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--secondary);
    transition: all 0.3s ease;
}
.industry-card:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.industry-card i {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}
.industry-card:hover i {
    transform: scale(1.1);
}

/* =============================
   Admin Dashboard Styles
=============================== */
.admin-container {
    display: flex;
    min-height: 100vh;
    background: #f1f5f9;
    font-family: 'Inter', sans-serif;
}
.admin-sidebar {
    width: 260px;
    background: var(--primary);
    color: #fff;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}
.admin-sidebar .logo {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.admin-nav {
    padding: 1rem 0;
    flex: 1;
}
.admin-nav a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    font-size: 0.95rem;
}
.admin-nav a i {
    width: 24px;
    margin-right: 10px;
    text-align: center;
}
.admin-nav a:hover, .admin-nav a.active {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-left-color: var(--accent);
}
.admin-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.admin-topbar {
    height: 64px;
    background: #fff;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e2e8f0;
}
.admin-main {
    padding: 2rem;
    overflow-y: auto;
    height: calc(100vh - 64px);
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.stat-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stat-info h3 { font-size: 1.8rem; margin: 0; color: var(--primary); font-weight: 700; }
.stat-info p { margin: 0; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }
.stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.bg-blue-light { background: #eff6ff; color: #3b82f6; }
.bg-green-light { background: #f0fdf4; color: #22c55e; }
.bg-purple-light { background: #faf5ff; color: #a855f7; }
.bg-orange-light { background: #fff7ed; color: #f97316; }

.admin-card { background: #fff; border-radius: 8px; box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); border: 1px solid #e2e8f0; overflow: hidden; }
.admin-card-header { padding: 1rem 1.5rem; border-bottom: 1px solid #f1f5f9; display: flex; justify-content: space-between; align-items: center; }
.admin-card-header h3 { margin: 0; font-size: 1.1rem; color: var(--primary); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 1rem 1.5rem; text-align: left; border-bottom: 1px solid #f1f5f9; }
.admin-table th { background: #f8fafc; font-weight: 600; color: var(--secondary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover { background: #f8fafc; }
.status-badge { padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; display: inline-block; }
.status-active { background: #dcfce7; color: #166534; }
.status-pending { background: #fef9c3; color: #854d0e; }
.status-inactive { background: #f1f5f9; color: #475569; }

/* =============================
   Admin Dashboard Styles
=============================== */
.admin-container {
    display: flex;
    min-height: 100vh;
    background: #f1f5f9;
    font-family: 'Inter', sans-serif;
}
.admin-sidebar {
    width: 260px;
    background: var(--primary);
    color: #fff;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}
.admin-sidebar .logo {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.admin-nav {
    padding: 1rem 0;
    flex: 1;
}
.admin-nav a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    font-size: 0.95rem;
}
.admin-nav a i {
    width: 24px;
    margin-right: 10px;
    text-align: center;
}
.admin-nav a:hover, .admin-nav a.active {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-left-color: var(--accent);
}
.admin-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.admin-topbar {
    height: 64px;
    background: #fff;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e2e8f0;
}
.admin-main {
    padding: 2rem;
    overflow-y: auto;
    height: calc(100vh - 64px);
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.stat-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stat-info h3 { font-size: 1.8rem; margin: 0; color: var(--primary); font-weight: 700; }
.stat-info p { margin: 0; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }
.stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.bg-blue-light { background: #eff6ff; color: #3b82f6; }
.bg-green-light { background: #f0fdf4; color: #22c55e; }
.bg-purple-light { background: #faf5ff; color: #a855f7; }
.bg-orange-light { background: #fff7ed; color: #f97316; }

.admin-card { background: #fff; border-radius: 8px; box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); border: 1px solid #e2e8f0; overflow: hidden; }
.admin-card-header { padding: 1rem 1.5rem; border-bottom: 1px solid #f1f5f9; display: flex; justify-content: space-between; align-items: center; }
.admin-card-header h3 { margin: 0; font-size: 1.1rem; color: var(--primary); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 1rem 1.5rem; text-align: left; border-bottom: 1px solid #f1f5f9; }
.admin-table th { background: #f8fafc; font-weight: 600; color: var(--secondary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover { background: #f8fafc; }
.status-badge { padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; display: inline-block; }
.status-active { background: #dcfce7; color: #166534; }
.status-pending { background: #fef9c3; color: #854d0e; }
.status-inactive { background: #f1f5f9; color: #475569; }

/* =============================
   Admin Dashboard Styles
=============================== */
.admin-container {
    display: flex;
    min-height: 100vh;
    background: #f1f5f9;
    font-family: 'Inter', sans-serif;
}
.admin-sidebar {
    width: 260px;
    background: var(--primary);
    color: #fff;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}
.admin-sidebar .logo {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.admin-nav {
    padding: 1rem 0;
    flex: 1;
}
.admin-nav a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    font-size: 0.95rem;
}
.admin-nav a i {
    width: 24px;
    margin-right: 10px;
    text-align: center;
}
.admin-nav a:hover, .admin-nav a.active {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-left-color: var(--accent);
}
.admin-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.admin-topbar {
    height: 64px;
    background: #fff;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e2e8f0;
}
.admin-main {
    padding: 2rem;
    overflow-y: auto;
    height: calc(100vh - 64px);
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.stat-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stat-info h3 { font-size: 1.8rem; margin: 0; color: var(--primary); font-weight: 700; }
.stat-info p { margin: 0; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }
.stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.bg-blue-light { background: #eff6ff; color: #3b82f6; }
.bg-green-light { background: #f0fdf4; color: #22c55e; }
.bg-purple-light { background: #faf5ff; color: #a855f7; }
.bg-orange-light { background: #fff7ed; color: #f97316; }

.admin-card { background: #fff; border-radius: 8px; box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); border: 1px solid #e2e8f0; overflow: hidden; }
.admin-card-header { padding: 1rem 1.5rem; border-bottom: 1px solid #f1f5f9; display: flex; justify-content: space-between; align-items: center; }
.admin-card-header h3 { margin: 0; font-size: 1.1rem; color: var(--primary); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 1rem 1.5rem; text-align: left; border-bottom: 1px solid #f1f5f9; }
.admin-table th { background: #f8fafc; font-weight: 600; color: var(--secondary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover { background: #f8fafc; }
.status-badge { padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; display: inline-block; }
.status-active { background: #dcfce7; color: #166534; }
.status-pending { background: #fef9c3; color: #854d0e; }
.status-inactive { background: #f1f5f9; color: #475569; }

/* Admin Sidebar Toggle Animation */
#sidebar-toggle i {
    transition: transform 0.3s ease;
}
#sidebar-toggle i.rotated {
    transform: rotate(180deg);
}

/* Update Twitter Icon to X (Font Awesome 6) */
.fa-twitter::before {
    content: "\e61b" !important;
}