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

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #081226;
  --accent: #8b5cf6;
  --accent-soft: #14b8a6;
  --primary-soft: #dbeafe;
  --accent-soft-bg: rgba(139, 92, 246, 0.14);
  --text-main: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --bg-main: #f4f7fb;
  --bg-surface: #ffffff;
  --bg-elevated: rgba(255, 255, 255, 0.86);
  --border: rgba(148, 163, 184, 0.22);
  --border-strong: rgba(37, 99, 235, 0.18);
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #8b5cf6 55%, #14b8a6 100%);
  --gradient-dark: linear-gradient(135deg, #081226 0%, #10213f 55%, #1d4ed8 100%);
  --font-family: 'Inter', sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --container-width: 1200px;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 20px 45px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 28px 80px rgba(15, 23, 42, 0.16);
  --shadow-glow: 0 16px 50px rgba(37, 99, 235, 0.22);
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  --transition: all 0.35s ease;
}

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

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

body {
  position: relative;
  font-family: var(--font-family);
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg-main) 45%, #eef4ff 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.3;
  z-index: -1;
}

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

ul {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 6vw, 4.75rem);
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  margin-bottom: var(--space-4);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  margin-bottom: var(--space-3);
}

h4 {
  font-size: 1.2rem;
  margin-bottom: var(--space-2);
}

p {
  margin-bottom: var(--space-4);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section {
  position: relative;
  padding: var(--space-24) 0;
}

.section-light {
  background-color: rgba(255, 255, 255, 0.72);
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--text-light);
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.16), transparent 24%);
  pointer-events: none;
}

.section-dark > * {
  position: relative;
  z-index: 1;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-light);
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.w-full { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }

.grid {
  display: grid;
  gap: var(--space-8);
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-8 { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  font-size: 0.98rem;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.28);
  filter: saturate(1.08);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--secondary);
  border-color: rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.btn-light {
  background-color: rgba(255, 255, 255, 0.94);
  color: var(--primary);
}

.btn-light:hover {
  background-color: #fff;
}

.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
  z-index: 1000;
  padding: 0.95rem 0;
  transition: var(--transition);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links a {
  font-weight: 600;
  color: var(--text-main);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  transition: var(--transition);
}

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

.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--secondary);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.hero {
  position: relative;
  padding: calc(var(--space-24) + 1rem) 0 var(--space-16);
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.18), transparent 24%),
    radial-gradient(circle at 88% 28%, rgba(139, 92, 246, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 247, 255, 0.92) 100%);
  display: flex;
  align-items: center;
  min-height: 82vh;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero::before {
  width: 280px;
  height: 280px;
  top: 8%;
  right: -40px;
  background: rgba(37, 99, 235, 0.18);
}

.hero::after {
  width: 240px;
  height: 240px;
  bottom: 4%;
  left: -40px;
  background: rgba(139, 92, 246, 0.12);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
}

.hero-content p {
  font-size: 1.08rem;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  display: none;
  animation: heroFade 0.45s ease;
}

.hero-slide.active {
  display: block;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(100, 116, 139, 0.45);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  width: 28px;
  border-radius: var(--radius-full);
  background: var(--primary);
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  margin-bottom: var(--space-6);
}

.hero-image {
  position: relative;
  padding: 1.25rem;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: calc(var(--radius-lg) + 8px);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(139, 92, 246, 0.12));
  z-index: -1;
}

.hero-image img,
.section img:not(.course-img):not(.blog-img) {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.glass-panel {
  position: absolute;
  max-width: 220px;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.glass-panel strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--secondary);
  font-size: 1rem;
}

.glass-panel span {
  display: block;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.glass-panel-top {
  top: 0;
  left: 0;
}

.glass-panel-bottom {
  right: 0;
  bottom: 0;
}

.mission-card {
  background: linear-gradient(145deg, #2b70ff 0%, #1d4ed8 70%);
  border: none;
  color: #f8fbff !important;
}

.mission-card .card-title,
.mission-card .card-desc {
  color: #f8fbff !important;
}

.vision-card {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 70%);
  border: none;
  color: #e2e8f0 !important;
}

.vision-card .card-title {
  color: #ffffff !important;
}

.vision-card .card-desc {
  color: #dbeafe !important;
}

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84));
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

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

.card:hover {
  transform: translateY(-10px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(139, 92, 246, 0.16));
  color: var(--primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.card-title { margin-bottom: var(--space-2); }
.card-desc { color: var(--text-muted); flex-grow: 1; }

.course-card,
.blog-card {
  padding: 0;
  overflow: hidden;
}

.course-img,
.blog-img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.course-img { height: 220px; }
.blog-img { height: 230px; }

.course-card:hover .course-img,
.blog-card:hover .blog-img {
  transform: scale(1.06);
}

.course-content,
.blog-content {
  padding: var(--space-6);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-3);
}

.blog-meta {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-container {
  overflow: hidden;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: var(--space-12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.92));
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.testimonial-text {
  font-size: 1.18rem;
  font-style: italic;
  margin-bottom: var(--space-4);
  color: var(--text-main);
}

.testimonial-author { font-weight: 700; color: var(--secondary); }
.testimonial-role { color: var(--text-muted); font-size: 0.875rem; }

.slider-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

.content-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-4);
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: var(--space-6);
  transition: transform 0.45s ease;
  will-change: transform;
}

.carousel-card {
  flex: 0 0 calc((100% - (var(--space-6) * 2)) / 3);
  min-width: 0;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  color: var(--secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-bottom: var(--space-4);
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: var(--space-4) var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--secondary);
}

.faq-icon { transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--primary); }

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 var(--space-6);
}

.faq-item.active .faq-content {
  padding-bottom: var(--space-4);
  max-height: 500px;
}

.form-group { margin-bottom: var(--space-4); text-align: left; }

.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 600;
  color: var(--secondary);
}

.form-control {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  font-family: var(--font-family);
  font-size: 1rem;
  transition: var(--transition);
  background-color: rgba(248, 250, 252, 0.92);
}

.form-control:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

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

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 18, 38, 0.72);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  border-radius: 28px;
  padding: var(--space-8);
  max-width: 600px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-close:hover { color: var(--secondary); }

.footer {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 24%),
    linear-gradient(180deg, #07101f 0%, #081226 100%);
  color: var(--text-light);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer h4 { color: white; margin-bottom: var(--space-4); }
.footer p, .footer a { color: #94a3b8; }
.footer a:hover { color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: var(--space-2); }
.social-links { display: flex; gap: var(--space-4); margin-top: var(--space-4); }

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-6);
}

.stat-card {
  padding: var(--space-6);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.stat-card p {
  margin-bottom: 0;
}

.counter-value {
  display: block;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.section-dark .counter-value {
  background: linear-gradient(180deg, #ffffff 0%, #bfdbfe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
}

.portfolio-card {
  padding: 0;
  overflow: hidden;
}

.project-shot {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 0;
}

.project-meta {
  padding: var(--space-8);
}

.project-meta h3 {
  margin-bottom: var(--space-3);
}

.project-points {
  margin: var(--space-4) 0 var(--space-6);
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--text-muted);
}

.project-points li {
  margin-bottom: 0.45rem;
}

.project-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-full);
  padding: 0.55rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.grid > .animate-on-scroll:nth-child(2),
.flex > .animate-on-scroll:nth-child(2) {
  transition-delay: 0.08s;
}

.grid > .animate-on-scroll:nth-child(3),
.flex > .animate-on-scroll:nth-child(3) {
  transition-delay: 0.16s;
}

.grid > .animate-on-scroll:nth-child(4),
.flex > .animate-on-scroll:nth-child(4) {
  transition-delay: 0.24s;
}

/* Products Layout */
.product-row {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.product-image-col {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
}

.product-meta-col {
  flex: 1;
}

.product-section:nth-child(even) .product-row {
  flex-direction: row-reverse;
}

.phone-screenshot {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9/19.5;
  object-fit: cover;
  border-radius: 36px;
  border: 10px solid #1e293b;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

/* Academy Programmes */
.academy-program-card {
  padding: var(--space-8);
}

.academy-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
}

.academy-program-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: var(--space-16);
    min-height: auto;
  }

  .hero-content {
    margin-bottom: var(--space-8);
    max-width: 100%;
  }

  .glass-panel {
    position: static;
    max-width: none;
    margin-top: var(--space-4);
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .product-row, .product-section:nth-child(even) .product-row {
    flex-direction: column;
    text-align: center;
    gap: var(--space-8);
  }
  .product-image-col {
    flex: 0 0 auto;
  }
  .product-meta-col ul.project-points {
    text-align: left;
    display: inline-block;
  }
  .project-links {
    justify-content: center;
  }
  .academy-program-img {
    height: 170px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: inline-flex; align-items: center; justify-content: center; }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: var(--space-4);
    right: var(--space-4);
    width: auto;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 24px;
    flex-direction: column;
    padding: var(--space-4);
    box-shadow: var(--shadow-md);
    clip-path: inset(0 0 100% 0 round 24px);
    transition: clip-path 0.3s ease-in-out;
  }

  .nav-links.active {
    clip-path: inset(0 0 0 0 round 24px);
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: var(--space-2) 0;
  }

  .nav-links .btn {
    margin: var(--space-2) auto 0;
  }

  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
  .section { padding: var(--space-16) 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .social-links { justify-content: center; }
  .testimonial-slide { padding: var(--space-8); }
  .stat-card { padding: var(--space-4); }
  .hero-actions { justify-content: center; }
  .hero-dots { justify-content: center; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .project-shot { height: 220px; }
  .project-meta { padding: var(--space-6); }
  .content-carousel { grid-template-columns: 1fr; }
  .carousel-btn { display: none; }
  .carousel-card { flex-basis: 100%; }
}


/* Image Logo Styles */
.header-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 4px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 4px;
}

