/* ============================================================
   RAMPRO SOLUTIONS — HOMEPAGE STYLESHEET
   Colors: Orange #F47920 | Blue #1A5EA0 | Dark #1C2B5E
   Font: Poppins (all headings and body)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --orange:        #F47920;
  --orange-dark:   #D4620F;
  --orange-light:  #FDF0E6;
  --blue:          #1A5EA0;
  --blue-dark:     #103D70;
  --blue-light:    #E8F0FA;
  --dark:          #1C2B5E;
  --dark-2:        #2D3748;
  --text:          #374151;
  --text-light:    #6B7280;
  --bg:            #FFFFFF;
  --bg-light:      #F8F9FB;
  --border:        #E5E7EB;
  --success:       #10B981;
  --warning:       #F59E0B;
  --error:         #EF4444;
  --font:          'Poppins', sans-serif;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:        0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.14);
  --shadow-xl:     0 20px 60px rgba(0,0,0,.18);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:      96px;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

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

.section-pad { padding: 96px 0; }
.bg-light { background: var(--bg-light); }
.mt-20 { margin-top: 20px; }

/* ===== SCROLL BAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--dark);
  line-height: 1.2;
}

p { font-family: var(--font); line-height: 1.7; }

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 121, 32, 0.4);
  color: #fff;
}

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary-sm:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all var(--transition);
  cursor: pointer;
}

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

.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ===== HEADER — always white, sits above everything ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  padding: 12px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
  transition: box-shadow var(--transition), padding var(--transition);
}

/* Slightly tighter on scroll */
.site-header.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.14);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand-logo { flex-shrink: 0; }

.logo-img {
  height: 72px;
  width: auto;
  display: block;
  transition: transform var(--transition);
}

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

.main-nav { margin-left: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list li { position: relative; }

/* Nav links — always dark since header is always white */
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-link .arrow { font-size: 10px; }
.nav-link:hover  { color: var(--orange); }
.nav-link.active { color: var(--orange); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  border-top: 3px solid var(--orange);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text);
  transition: all var(--transition);
  font-weight: 400;
}

.dropdown li a:hover {
  color: var(--orange);
  background: var(--orange-light);
  padding-left: 26px;
}

.header-cta { margin-left: 16px; flex-shrink: 0; }

/* Hamburger — always dark since bg is white */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}

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

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SLIDER — sits BELOW the fixed white header ===== */
.hero {
  position: relative;
  margin-top: var(--header-h);          /* push content below fixed header */
  height: calc(100vh - var(--header-h));
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
}

.slider-wrapper { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.slide.active { opacity: 1; z-index: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 43, 94, 0.82) 0%,
    rgba(26, 94, 160, 0.55) 50%,
    rgba(244, 121, 32, 0.25) 100%
  );
}

/* Slide content — no top padding needed, header is separate */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
}

.slide-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.2s;
}

.slide.active .slide-tag {
  opacity: 1;
  transform: translateY(0);
}

.slide-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease 0.35s;
}

.slide-title em {
  font-style: normal;
  color: var(--orange);
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.5s;
}

.slide.active .slide-desc {
  opacity: 1;
  transform: translateY(0);
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.65s;
}

.slide.active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.slider-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: 28px; }
.slider-btn.next { right: 28px; }

.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

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

.dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--dark);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 32px;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

.ticker-track span:nth-child(even) {
  color: var(--orange);
  font-size: 8px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge span { font-size: 12px; font-weight: 500; opacity: 0.9; }

.about-content { padding: 20px 0; }

.about-text {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-2);
}

.highlight-icon {
  width: 22px;
  height: 22px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card.featured {
  border: 2px solid var(--orange);
  transform: scale(1.02);
}

.service-card.featured:hover { transform: scale(1.02) translateY(-8px); }

.service-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 43, 94, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .service-card-overlay { opacity: 1; }

.service-card-body { padding: 28px; }

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: #fff;
}

.service-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.6;
}

.service-list { margin-bottom: 20px; }

.service-list li {
  font-size: 13px;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-link:hover { gap: 10px; }

/* ===== COURSES SECTION ===== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.course-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.course-card-top {
  padding: 32px 24px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.ai-bg        { background: linear-gradient(135deg, #1A5EA0, #0D3D6E); }
.genai-bg     { background: linear-gradient(135deg, #F47920, #C45800); }
.agenticai-bg { background: linear-gradient(135deg, #1C2B5E, #3D5A9E); }
.mlops-bg     { background: linear-gradient(135deg, #1A7A4A, #0D5230); }

.course-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}

.course-card:hover .course-icon-wrap {
  background: rgba(255,255,255,0.25);
  transform: rotate(5deg) scale(1.05);
}

.course-level {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.course-card-body { padding: 24px; }

.course-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.course-card-body p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 18px;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.course-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 50px;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.course-info span {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Wrapper keeps the number + symbol on one line, vertically baseline-aligned */
.stat-value-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

.stat-item h3 {
  font-size: 52px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin: 0;
}

.stat-plus {
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat-item p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all var(--transition);
}

.why-icon.orange { background: var(--orange-light); color: var(--orange); }
.why-icon.blue   { background: var(--blue-light);   color: var(--blue); }

.why-card:hover .why-icon.orange { background: var(--orange); color: #fff; }
.why-card:hover .why-icon.blue   { background: var(--blue);   color: #fff; }

.why-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,43,94,0.92) 0%, rgba(26,94,160,0.82) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testimonial-card.featured-testimonial {
  background: var(--dark);
  border-color: transparent;
}

.testimonial-card.featured-testimonial .testimonial-text { color: rgba(255,255,255,0.82); }
.testimonial-card.featured-testimonial strong { color: #fff; }
.testimonial-card.featured-testimonial span   { color: rgba(255,255,255,0.55); }

.testimonial-stars { color: var(--orange); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }

.testimonial-text {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.contact-info-item:hover .contact-icon {
  background: var(--orange);
  color: #fff;
}

.contact-info-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.55;
}

.contact-info-item a {
  color: var(--text-light);
  transition: color var(--transition);
}

.contact-info-item a:hover { color: var(--orange); }

.contact-form-wrap {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  outline: none;
  transition: all var(--transition);
  width: 100%;
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(244,121,32,0.12);
}

.form-success {
  display: none;
  background: #D1FAE5;
  color: #065F46;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #A7F3D0;
  text-align: center;
}

.form-success.show { display: block; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-col h5 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}

/* Footer logo — white background box so it shows clearly on dark footer */
.footer-logo {
  height: 56px;
  width: auto;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: block;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--orange);
  font-size: 16px;
}

.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }

.footer-col address p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 10px;
}

.footer-col address a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col address a:hover { color: var(--orange); }

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--orange); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
}

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

.back-to-top:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
}

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="zoom-in"]    { transform: scale(0.88); }

[data-aos].in-view { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  :root { --header-h: 84px; }
  .services-grid     { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .about-grid        { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contact-grid      { grid-template-columns: 1fr; }
  .about-badge       { right: 20px; bottom: 20px; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .section-pad { padding: 64px 0; }

  .hamburger { display: flex; }
  .header-cta { display: none; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    padding: 80px 24px 32px;
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open { right: 0; }

  .nav-list { flex-direction: column; align-items: flex-start; gap: 4px; }

  /* Mobile: nav links white on dark drawer */
  .nav-link { color: rgba(255,255,255,0.85); font-size: 15px; padding: 10px 0; }
  .nav-link:hover, .nav-link.active { color: var(--orange); }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.06);
    border-top: none;
    border-left: 3px solid var(--orange);
    border-radius: 0;
    padding: 4px 0;
    margin: 4px 0 8px 8px;
    display: none;
  }

  .has-dropdown:hover .dropdown { display: block; }

  .dropdown li a { color: rgba(255,255,255,0.7); font-size: 13px; }
  .dropdown li a:hover { color: var(--orange); background: transparent; }

  .courses-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .why-grid     { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .form-row     { grid-template-columns: 1fr; }

  .slide-content { max-width: 100%; }
  .slide-title   { font-size: 28px; }
  .slide-desc    { font-size: 15px; }

  .service-card.featured { transform: scale(1); }
  .service-card.featured:hover { transform: translateY(-8px); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item h3 { font-size: 40px; }

  .contact-form-wrap { padding: 28px 20px; }

  .logo-img { height: 56px; }
}

@media (max-width: 480px) {
  :root { --header-h: 68px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .slide-actions { gap: 12px; }
  .btn-primary, .btn-outline-white { font-size: 14px; padding: 11px 22px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .logo-img { height: 48px; }
}
