/* =============================================
   GPS COMPUTER ACADEMY - Main Stylesheet
   ============================================= */

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

/* ---- CSS Variables ---- */
:root {
  --primary: #1a3c8f;
  --primary-dark: #102569;
  --primary-light: #2855c8;
  --accent: #f47920;
  --accent-dark: #d4620f;
  --accent-light: #ff9a45;
  --dark: #0d0d1a;
  --dark2: #111827;
  --text: #2d3748;
  --text-light: #6b7280;
  --white: #ffffff;
  --gray-bg: #f5f7ff;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(26,60,143,0.12);
  --shadow-hover: 0 10px 40px rgba(26,60,143,0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 700; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.badge {
  display: inline-block;
  background: rgba(244,121,32,0.12);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 50px;
  border: 1px solid rgba(244,121,32,0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.badge.blue {
  background: rgba(26,60,143,0.1);
  color: var(--primary);
  border-color: rgba(26,60,143,0.25);
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title span { color: var(--accent); }
.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(244,121,32,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244,121,32,0.5);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-blue {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,60,143,0.35);
}
.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26,60,143,0.5);
}
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.top-bar a:hover { color: var(--accent-light); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item i { color: var(--accent-light); font-size: 13px; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,60,143,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(26,60,143,0.2); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text .name { font-size: 18px; font-weight: 800; color: var(--primary); }
.nav-logo-text .tagline { font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 0.5px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: calc(100% - 32px); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active { color: var(--primary); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: var(--gray-bg);
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Dropdown Menu CSS */
.nav-dropdown { 
  position: relative; 
  list-style: none;
}
.dropdown-content {
  position: absolute;
  top: calc(100% + 15px); /* Adds a physical gap between navbar and dropdown */
  left: 0;
  background: var(--white);
  min-width: 500px;
  box-shadow: 0 10px 30px rgba(26,60,143,0.15);
  border-radius: 12px;
  padding: 24px;
  display: flex; 
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border-top: 3px solid var(--accent);
}
/* Invisible bridge to keep hover active while mouse moves down */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}
.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-content .dd-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dropdown-content .dd-col h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  border-bottom: 2px solid var(--gray-bg);
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dropdown-content .dd-col h4 i { color: var(--accent); font-size: 14px; }
.dropdown-content .dd-col a {
  padding: 0;
  border-radius: 0;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  display: block;
}
.dropdown-content .dd-col a::after { display: none; }
.dropdown-content .dd-col a:hover { color: var(--accent); padding-left: 6px; }

/* Mobile menu hidden by default on all devices */
.mobile-menu { display: none; }

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 580px;
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 50%, #1e4dbf 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,25,80,0.92) 0%, rgba(10,25,80,0.6) 60%, rgba(10,25,80,0.3) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(244,121,32,0.15) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(26,60,143,0.3) 0%, transparent 40%);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,121,32,0.2);
  border: 1px solid rgba(244,121,32,0.4);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease;
}
.hero-badge i { font-size: 12px; }
.hero h1 {
  font-size: clamp(30px, 4vw, 52px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.75;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-stat .num {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease 0.2s both;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.12);
}
.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}
.hero-card-float.card-1 { bottom: 30px; left: -30px; }
.hero-card-float.card-2 { top: 30px; right: -20px; animation-delay: 1.5s; }
.hero-card-float i { font-size: 20px; color: var(--accent); }
.hero-card-float .card-text { font-size: 12px; font-weight: 700; color: var(--dark); }
.hero-card-float .card-sub { font-size: 11px; color: var(--text-light); }

/* ================================================
   MARQUEE / PARTNERS
   ================================================ */
.partners-bar {
  background: var(--primary-dark);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-wrap { display: flex; align-items: center; gap: 0; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  padding-right: 50px;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.marquee-item i { color: var(--accent-light); font-size: 16px; }
.marquee-sep { color: var(--accent); font-size: 18px; }

/* ================================================
   ABOUT SECTION
   ================================================ */
.about { background: var(--gray-bg); }
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(244,121,32,0.4);
}
.about-exp-badge .num { font-size: 38px; font-weight: 800; line-height: 1; }
.about-exp-badge .lbl { font-size: 12px; opacity: 0.9; margin-top: 4px; }
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.about-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(26,60,143,0.07);
  transition: var(--transition);
}
.about-feat-item:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 18px;
}
.feat-text h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.feat-text p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ================================================
   STATS COUNTER BAR
   ================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('tech_bg.png') center/cover;
  opacity: 0.08;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-card { padding: 20px; }
.stat-card .icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  color: var(--accent-light);
  border: 2px solid rgba(255,255,255,0.15);
}
.stat-card .count { font-size: 44px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-card .plus { font-size: 28px; color: var(--accent-light); }
.stat-card .label { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 8px; font-weight: 500; }
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  margin: auto;
  height: 80px;
}

/* ================================================
   COURSES SECTION  
   ================================================ */
.courses { background: var(--white); }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,60,143,0.09);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(244,121,32,0.2);
}
.course-icon-wrap {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.course-icon-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.course-icon-wrap i { font-size: 42px; color: var(--white); position: relative; z-index: 1; }
.course-duration {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f97316;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(249,115,22,0.4);
}
.course-duration i {
  font-size: 13px;
  background: var(--white);
  color: #f97316;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.course-body h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.course-body p { font-size: 14px; color: var(--text-light); line-height: 1.65; flex: 1; }
.course-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0; }
.course-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(26,60,143,0.08);
  padding: 3px 10px;
  border-radius: 50px;
}
.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: 10px;
}
.course-fee { font-size: 20px; font-weight: 800; color: var(--accent); }
.course-fee span { font-size: 12px; color: var(--text-light); font-weight: 400; display: block; }
.view-details-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}
.view-details-link:hover { color: var(--primary); }
.course-card .btn-sm {
  border-radius: 50px;
  padding: 8px 24px;
  background: #f97316;
  border-color: #f97316;
}
.course-card .btn-sm:hover {
  background: #ea580c;
  border-color: #ea580c;
}
.view-all-wrap { text-align: center; margin-top: 50px; }

/* ================================================
   WHY CHOOSE US  
   ================================================ */
.why-us { background: var(--gray-bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26,60,143,0.07);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(26,60,143,0.1), rgba(244,121,32,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition);
  border: 2px solid rgba(26,60,143,0.1);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-color: transparent;
  transform: scale(1.1) rotate(-5deg);
}
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ================================================
   TESTIMONIALS  
   ================================================ */
.testimonials {
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('tech_bg.png') center/cover;
  opacity: 0.07;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.7); }
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-5px);
  border-color: rgba(244,121,32,0.4);
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.testimonial-stars i { color: #fbbf24; font-size: 14px; }
.testimonial-text { font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.t-name { font-size: 15px; font-weight: 700; color: var(--white); }
.t-course { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.quote-icon {
  font-size: 40px;
  color: rgba(244,121,32,0.3);
  float: right;
  line-height: 1;
}

/* ================================================
   GALLERY
   ================================================ */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 14px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,60,143,0.7), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 14px; font-weight: 600; }

/* ================================================
   CONTACT / ENQUIRY
   ================================================ */
.enquiry { background: var(--gray-bg); }
.enquiry .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.enquiry-info h2 { font-size: 34px; font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.enquiry-info h2 span { color: var(--accent); }
.enquiry-info p { font-size: 15px; color: var(--text-light); line-height: 1.75; margin-bottom: 30px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(26,60,143,0.07);
  transition: var(--transition);
}
.contact-item:hover { box-shadow: var(--shadow); transform: translateX(6px); }
.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--text-light); }
.contact-item a { color: var(--primary); font-weight: 500; }
.contact-item a:hover { color: var(--accent); }

/* Form */
.enquiry-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.enquiry-form h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.enquiry-form .sub { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--gray-bg);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,60,143,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }
.form-submit { width: 100%; padding: 15px; font-size: 16px; border-radius: 10px; }

/* ================================================
   YOUTUBE VIDEOS GRID
   ================================================ */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.video-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}
.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 992px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .videos-grid { grid-template-columns: 1fr; }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
}
.footer-main {
  padding: 70px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 48px; }
.footer-logo-text .name { font-size: 20px; font-weight: 800; color: var(--white); }
.footer-logo-text .tagline { font-size: 11px; color: var(--accent-light); font-weight: 600; }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i { font-size: 10px; color: var(--accent); }
.footer-links a:hover { color: var(--accent-light); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.footer-contact-item i { color: var(--accent); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent-light); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ================================================
   PAGE HEADER (Inner pages)
   ================================================ */
.page-hero {
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 60%, #1e4dbf 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('tech_bg.png') center/cover;
  opacity: 0.07;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb i { font-size: 10px; color: var(--accent-light); }
.breadcrumb .current { color: var(--accent-light); font-weight: 600; }
.page-hero h1 { font-size: clamp(28px, 4vw, 46px); color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 550px; margin: 0 auto; }

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes countUp { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ================================================
   SCROLL TO TOP
   ================================================ */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(244,121,32,0.4);
  z-index: 999;
  transition: var(--transition);
}
#scrollTop:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(244,121,32,0.5); }
#scrollTop.show { display: flex; }

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 85px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.15); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-right { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about .container { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 500px; margin: 0 auto; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
  .enquiry .container { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  /* Mobile Nav */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
  .mobile-close { font-size: 24px; cursor: pointer; color: var(--text); }
  .mobile-nav-links { display: flex; flex-direction: column; gap: 5px; }
  .mobile-nav-links a { padding: 14px 16px; border-radius: 10px; font-size: 16px; font-weight: 500; color: var(--text); display: block; }
  .mobile-nav-links a:hover, .mobile-nav-links a.active { background: var(--gray-bg); color: var(--primary); }
  .mobile-nav-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
  .mobile-nav-cta .btn { justify-content: center; }

  .courses-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar .top-bar-right { display: none; }
  .hero-card-float { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero { min-height: 500px; }
  .hero h1 { font-size: 28px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .enquiry-form { padding: 24px; }
}

/* ================================================
   FLOATING BUTTONS & CHATBOT
   ================================================ */
/* Left Floating Icons */
.left-float-group {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}
.float-btn-left {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  text-decoration: none;
}
.float-btn-left:hover { transform: scale(1.1); color: white; }
.float-btn-left.wa { background: #25D366; }
.float-btn-left.call { background: var(--primary); }

/* Chatbot Area */
.chatbot-float {
  position: fixed;
  bottom: 30px;
  right: 100px; /* shift left of whatsapp */
  width: 52px; height: 52px;
  background: #f97316;
  color: white;
  border-radius: 50%;
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s;
}
.chatbot-float:hover { transform: scale(1.1); }
.chatbot-window {
  position: fixed;
  bottom: 100px; right: 30px;
  width: 320px; height: 420px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.chatbot-window.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.chatbot-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white; padding: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.chatbot-header-info { display: flex; align-items: center; gap: 10px; }
.chatbot-header-info .cb-avatar { width: 36px; height: 36px; background: white; color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.chatbot-header-text h4 { margin: 0; font-size: 15px; font-weight: 700; }
.chatbot-header-text p { margin: 0; font-size: 11px; opacity: 0.8; }
.chatbot-close { background: none; border: none; color: white; font-size: 20px; cursor: pointer; }
.chatbot-body {
  flex: 1; padding: 16px;
  overflow-y: auto;
  background: #f5f7ff;
  display: flex; flex-direction: column; gap: 12px;
}
.cb-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  animation: fadeInMsg 0.4s ease-out forwards;
  opacity: 0;
  transform: translateY(10px);
}
@keyframes fadeInMsg { to { opacity: 1; transform: translateY(0); } }
.cb-msg.bot { background: white; color: var(--text); border-bottom-left-radius: 2px; align-self: flex-start; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.cb-msg.user { background: var(--primary); color: white; border-bottom-right-radius: 2px; align-self: flex-end; }
.cb-btn {
  display: inline-block; margin-top: 8px; padding: 8px 16px;
  border-radius: 20px; background: #25D366; color: white;
  text-decoration: none; font-weight: 600; text-align: center;
  transition: 0.3s;
}
.cb-btn:hover { background: #128C7E; color: white; }
.typing-dots { display: flex; gap: 4px; padding: 4px; }
.typing-dots span { width: 6px; height: 6px; background: #cbd5e1; border-radius: 50%; animation: blink 1.4s infinite both; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0% { opacity: 0.2; } 20% { opacity: 1; } 100% { opacity: 0.2; } }

/* Videos Section */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Blog Section */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  display: flex;
  margin-top: 30px;
}
.blog-img { width: 40%; flex-shrink: 0; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-content { padding: 40px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.blog-meta { font-size: 13px; color: var(--primary); font-weight: 700; margin-bottom: 12px; }
.blog-content h3 { font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.blog-content p { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }

@media (max-width: 768px) {
  .videos-grid { grid-template-columns: 1fr; }
  .blog-card { display: block; }
  .blog-img { width: 100%; height: 200px; }
  .blog-content { padding: 24px; }
  .left-float-group { flex-direction: row; left: 50%; transform: translateX(-50%); bottom: 15px; background: rgba(255,255,255,0.9); padding: 8px 16px; border-radius: 50px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); backdrop-filter: blur(5px); }
  .float-btn-left { width: 40px; height: 40px; font-size: 18px; }
  .chatbot-float { bottom: 85px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
  .chatbot-window { right: 10px; left: 10px; bottom: 85px; width: auto; height: 400px; }
  .whatsapp-float { display: none; }
}

/* Dropdown Menu */
.nav-dropdown { position: relative; }
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 450px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 20px;
  z-index: 1000;
  border-top: 3px solid #f97316;
}
@media(min-width: 1025px) {
  .nav-dropdown:hover .dropdown-content { display: flex; gap: 30px; }
}
@media(max-width: 1024px) {
  .dropdown-content { min-width: 100%; position: static; box-shadow: none; border: none; background: #f8fafc; margin-top: 10px; display: none; }
  .nav-dropdown.open .dropdown-content { display: flex; flex-direction: column; gap: 20px; }
}
.dd-col { flex: 1; }
.dd-col h4 { font-size: 14px; color: var(--text-light); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.dd-col a { display: block; padding: 8px 0; color: var(--dark); font-size: 15px; font-weight: 500; transition: var(--transition); border-bottom: 1px solid #f1f5f9; }
.dd-col a:last-child { border-bottom: none; }
.dd-col a:hover { color: #f97316; padding-left: 5px; }

/* Testimonials Slider Design */
.testimonials {
  background: #1e3a8a;
  background-image: radial-gradient(circle at 15% 50%, rgba(249,115,22,0.05), transparent 25%), radial-gradient(circle at 85% 30%, rgba(37,99,235,0.2), transparent 25%);
  position: relative;
  overflow: hidden;
}
.testimonial-card {
  background: #274796 !important;
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
  border-radius: 16px !important;
  padding: 40px 30px !important;
  height: auto;
}
.testimonial-text { color: rgba(255,255,255,0.9) !important; font-size: 15px !important; font-style: italic; }
.testimonial-stars i { color: #facc15 !important; }
.t-name { color: white !important; }
.t-course { color: #94a3b8 !important; }
.swiper-pagination-bullet { background: rgba(255,255,255,0.5) !important; }
.swiper-pagination-bullet-active { background: #f97316 !important; width: 24px; border-radius: 50px; }
