/* 
   JEET COMPUTER EDUCATION - MODERN PREMIUM DESIGN SYSTEM
   Author: Antigravity AI
   Aesthetics: Premium, Modern, Dynamic, Glassmorphism, Micro-animations, Glowing states
*/

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

/* CSS Custom Properties / Tokens */
:root {
  --primary-color: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1e3a8a;
  --accent-color: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  --navy-gradient: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.04);
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 32px;
}

/* Global Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

p {
  color: var(--text-muted);
  font-weight: 400;
}

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

ul,
ol {
  list-style: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Layout Elements */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Beautiful fixed background section styles */
.section-dark {
  background:
    linear-gradient(135deg, rgba(0, 15, 56, 0.94) 0%, rgba(8, 27, 78, 0.97) 100%),
    url('https://images.unsplash.com/photo-1531482615713-2afd69097998?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-light);
}

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

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-dark .section-title h2 {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.section-title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Dynamic Grid */
.grid {
  display: grid;
  gap: 30px;
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Button Styles with Sweep effect */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-size: 1rem;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 127, 56, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 127, 56, 0.5);
  background: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 15, 56, 0.15);
}

.section-dark .btn-secondary {
  color: #fff;
  border-color: #fff;
}

.section-dark .btn-secondary:hover {
  background: #fff;
  color: #ffffff;
}

.btn-light {
  background: #fff;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: var(--bg-light);
}

/* Glassmorphism Classes with Gradient Border & Glowing Hover */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-panel:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 127, 56, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 15, 56, 0.08),
    0 0 25px rgba(255, 127, 56, 0.12);
}

/* Background animated colorful blobs */
.bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.bg-blob {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.12;
  mix-blend-mode: multiply;
}

.blob-orange {
  background-color: var(--accent-color);
  top: 15%;
  right: 5%;
  animation: blob-move-1 25s infinite alternate ease-in-out;
}

.blob-navy {
  background-color: #3b82f6;
  bottom: 10%;
  left: 5%;
  animation: blob-move-2 30s infinite alternate ease-in-out;
}

.blob-purple {
  background-color: #a855f7;
  top: 45%;
  left: 25%;
  animation: blob-move-3 22s infinite alternate ease-in-out;
}

@keyframes blob-move-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(80px, 60px) scale(1.2);
  }

  100% {
    transform: translate(-40px, 150px) scale(0.9);
  }
}

@keyframes blob-move-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-60px, -90px) scale(0.8);
  }

  100% {
    transform: translate(110px, 50px) scale(1.15);
  }
}

@keyframes blob-move-3 {
  0% {
    transform: translate(0, 0) scale(1.1);
  }

  50% {
    transform: translate(130px, -50px) scale(0.85);
  }

  100% {
    transform: translate(-60px, -90px) scale(1.25);
  }
}

/* Header & Navigation (Frosted glass when scrolled) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 24px 0;
}

header.scrolled {
  background: rgba(0, 15, 56, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  background: var(--accent-gradient);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(255, 127, 56, 0.35);
  transition: transform var(--transition-normal);
}

.logo:hover .logo-icon {
  transform: rotate(360deg);
}

.logo-text {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
}

header:not(.scrolled) .logo-text {
  color: #ffffff;
}

header.scrolled .logo-text {
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
}

header:not(.scrolled) .nav-link {
  color: #ffffff;
}

header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition-normal);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

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

.nav-link.active {
  color: var(--accent-color) !important;
  font-weight: 600;
}

.nav-btn {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: var(--transition-normal);
  border-radius: 2px;
}

header.scrolled .hamburger span {
  background-color: #fff;
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--primary-color);
  z-index: 1001;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--transition-normal), visibility var(--transition-normal);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-link {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
}

.mobile-link.active {
  color: var(--accent-color);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* Hero Section with fixed parallax visual background */
.hero {
  padding-top: 200px;
  padding-bottom: 120px;
  background:
    linear-gradient(135deg, rgba(248, 250, 252, 0.92) 0%, rgba(235, 241, 255, 0.96) 100%),
    url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 127, 56, 0.12);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 127, 56, 0.2);
  animation: float 3s ease-in-out infinite;
}

.hero h1 {
  font-size: 3.75rem;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--accent-color);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.hero-visual {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 15, 56, 0.2);
  border: 8px solid #fff;
  aspect-ratio: 16/10;
  background: #000;
  transition: transform var(--transition-slow);
}

.hero-img-wrapper:hover {
  transform: rotateY(-5deg) rotateX(5deg);
}

.hero-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-gradient);
  color: #fff;
  cursor: pointer;
  position: relative;
}

.hero-video-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: transform var(--transition-slow);
}

.hero-video-placeholder:hover img {
  transform: scale(1.08);
}

.play-btn-circle {
  width: 80px;
  height: 80px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(255, 127, 56, 0.5);
  transition: var(--transition-normal);
  animation: pulse 2s infinite;
}

.hero-video-placeholder:hover .play-btn-circle {
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(255, 127, 56, 0.7);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-left: 20px solid #fff;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius-md);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  transition: all var(--transition-normal);
}

.floating-card:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(255, 127, 56, 0.3);
}

.floating-card-1 {
  bottom: 30px;
  left: -45px;
  animation: float 4s ease-in-out infinite;
}

.floating-card-2 {
  top: 30px;
  right: -35px;
  animation: float 4.5s ease-in-out infinite 0.5s;
}

.floating-card .fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 127, 56, 0.15);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.floating-card .fc-text h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.floating-card .fc-text p {
  font-size: 0.75rem;
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 2;
}

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

.stat-item h3 {
  font-size: 3.25rem;
  color: var(--accent-color);
  margin-bottom: 8px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.stat-item p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Features Grid */
.features-grid {
  gap: 30px;
}

.feature-card {
  padding: 40px;
  height: 100%;
}

.feature-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 127, 56, 0.12);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon-box {
  background: var(--accent-gradient);
  color: #fff;
  transform: rotateY(180deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 127, 56, 0.3);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

/* Home Course Teaser */
.course-teaser-grid {
  gap: 30px;
}

.teaser-card {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.teaser-top h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.teaser-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 15, 56, 0.08);
  color: #ffffff;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.teaser-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-family: var(--font-heading);
  margin-top: 24px;
}

.teaser-link:hover {
  gap: 14px;
  color: var(--accent-hover);
}

/* Tab Filters (Courses) */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  background: var(--bg-light);
  border-color: #ffffff;
}

.tab-btn.active {
  background: var(--primary-color);
  color: #fff;
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 15, 56, 0.2);
}

.course-grid .course-card {
  display: block;
}

/* Course Card Details */
.course-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}

.course-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.course-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.course-card p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.course-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.course-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1rem;
}

.course-action {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Admission Schedule Table */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
  background: #fff;
  margin: 30px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

th,
td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-color);
}

th {
  background-color: #ffffff;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) {
  background-color: #f8fafc;
}

/* Testimonials Carousel */
.testimonials {
  background:
    linear-gradient(135deg, rgba(248, 250, 252, 0.92) 0%, rgba(235, 241, 255, 0.96) 100%),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  height: 320px;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
  height: 100%;
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.35rem;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
  font-weight: 500;
  max-width: 700px;
}

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

.author-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(255, 127, 56, 0.3);
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.85rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.control-btn {
  background: #fff;
  border: 1px solid var(--border-color);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: var(--transition-fast);
}

.control-btn:hover {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 15, 56, 0.2);
}

/* Director's Profile Section */
.director-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.director-img-box {
  position: relative;
}

.director-img-card {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: var(--navy-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform var(--transition-slow);
}

.director-img-card:hover {
  transform: scale(1.05) rotate(2deg);
}

.director-img-card h3 {
  color: #fff;
  font-size: 2rem;
}

.director-content h3 {
  font-size: 1.85rem;
  margin-bottom: 8px;
}

.director-title {
  color: var(--accent-color);
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 24px;
}

.director-quote {
  font-size: 1.15rem;
  font-style: italic;
  border-left: 4px solid var(--accent-color);
  padding-left: 20px;
  margin: 24px 0;
  line-height: 1.7;
}

/* Form Styles */
.form-panel {
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  color: var(--text-dark);
}

.form-control:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 127, 56, 0.12);
}

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

.checkbox-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.checkbox-group input {
  margin-top: 5px;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Contact Grid & Map */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

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

.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ci-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 127, 56, 0.12);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.contact-info-card:hover .ci-icon-box {
  background: var(--accent-gradient);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 5px 12px rgba(255, 127, 56, 0.3);
}

.ci-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.ci-text p {
  font-size: 0.9rem;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
}

/* Footer Styles */
footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  color: #fff;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-gradient);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(255, 127, 56, 0.3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  color: #fff;
  font-size: 0.9rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.newsletter-form button {
  padding: 12px 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

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

.footer-bottom-links a:hover {
  color: #fff;
}

/* Floating Card Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 127, 56, 0.5);
  }

  70% {
    box-shadow: 0 0 0 22px rgba(255, 127, 56, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 127, 56, 0);
  }
}

/* Scroll Animation Reveal Classes (Smooth Fade-In-Up) */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Modal Form styling */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 550px;
  background: #ffffff;
  border-radius: var(--border-radius-md);
  box-shadow: 0 25px 60px rgba(0, 15, 56, 0.25);
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  background: var(--navy-gradient);
  color: #ffffff;
  padding: 22px 28px;
  position: relative;
  border-bottom: 3px solid var(--accent-color);
}

.modal-header h3 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--accent-gradient);
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-body {
  padding: 28px;
  max-height: 75vh;
  overflow-y: auto;
  background: #ffffff;
}

.modal-body .form-group label {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: block;
}

.modal-body .checkbox-group label {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.45;
}

.modal-body .form-control {
  border: 1.5px solid var(--border-color);
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}

.modal-body .form-control:focus {
  border-color: var(--accent-color);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
  outline: none;
}

.modal-body button[type="submit"],
.modal-body .btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.modal-body button[type="submit"]:hover,
.modal-body .btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45);
}

/* Accordion for FAQ and Open Boards */
.accordion {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  background: #fff;
  margin-bottom: 12px;
}

.accordion-header {
  padding: 20px 24px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: background var(--transition-fast);
}

.accordion-header:hover {
  background: var(--bg-light);
}

.accordion-icon {
  font-size: 1.2rem;
  color: var(--accent-color);
  transition: transform var(--transition-fast);
}

.accordion-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal);
}

.accordion.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion.open .accordion-body {
  padding: 0 24px 20px 24px;
}

/* Mobile & Tablet Responsive Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .director-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .director-img-box {
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .nav-links,
  .nav-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero {
    padding-top: 150px;
    padding-bottom: 80px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/*==============================
      STATS SECTION
==============================*/

.stats-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  display: inline-block;
  color: #38bdf8;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.stats-section .section-title h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
}

.section-title p {
  color: #cbd5e1;
  max-width: 650px;
  margin: auto;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.stat-card {
  position: relative;
  padding: 40px 25px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .15);
  transition: .4s;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(#00d2ff, #3a7bd5);
  border-radius: 50%;
  top: -80px;
  right: -80px;
  opacity: .15;
  transition: .5s;
}

.stat-card:hover::before {
  transform: scale(2);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
  border-color: #38bdf8;
}

.icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  font-size: 32px;
  margin-bottom: 25px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 210, 255, .4);
}

.stat-card h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.stat-card h4 {
  color: #d1d5db;
  font-size: 18px;
  font-weight: 500;
}

/* Mobile */

@media(max-width:768px) {

  .section-title h2 {
    font-size: 30px;
  }

  .stat-card {
    padding: 35px 20px;
  }

  .stat-card h2 {
    font-size: 40px;
  }

  .icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

}

/*=============================
      WHY CHOOSE US
==============================*/

.why-us {
  padding: 100px 0;
  background: #f8fbff;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: #2563eb15;
  border-radius: 50%;
  top: -120px;
  left: -120px;
  filter: blur(40px);
}

.why-us::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: #06b6d420;
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  filter: blur(40px);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: auto;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.section-heading span {
  display: inline-block;
  color: #2563eb;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: 42px;
  color: #0f172a;
  margin-bottom: 18px;
}

.section-heading p {
  color: #64748b;
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  position: relative;
  z-index: 2;
}

.why-card {
  background: #fff;
  border-radius: 24px;
  padding: 45px 35px;
  text-align: center;
  position: relative;
  transition: .4s;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .06);
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(37, 99, 235, .15);
}

.icon-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #fff;
  font-size: 34px;
  margin-bottom: 25px;
  transition: .4s;
}

.why-card:hover .icon-box {
  transform: rotate(12deg) scale(1.08);
}

.why-card h3 {
  font-size: 24px;
  color: #111827;
  margin-bottom: 18px;
}

.why-card p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 25px;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 60px;
  font-weight: 800;
  color: #eef4ff;
  user-select: none;
}

@media(max-width:768px) {

  .section-heading h2 {
    font-size: 30px;
  }

  .why-card {
    padding: 35px 25px;
  }

  .icon-box {
    width: 75px;
    height: 75px;
    font-size: 28px;
  }

  .card-number {
    font-size: 45px;
  }

}

/*===========================
POPULAR COURSES
===========================*/

.popular-courses {

  padding: 100px 0;
  background: #0f172a;
  overflow: hidden;

}

.section-heading {

  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 70px;

}

.section-heading span {

  color: #38bdf8;
  letter-spacing: 2px;
  font-weight: 700;

}

.section-heading h2 {

  color: #fff;
  font-size: 42px;
  margin: 15px 0;

}

.section-heading p {

  color: #cbd5e1;
  line-height: 1.8;

}

.course-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;

}

.course-card {

  position: relative;

  background: rgba(255, 255, 255, .05);

  backdrop-filter: blur(18px);

  border-radius: 25px;

  padding: 40px;

  border: 1px solid rgba(255, 255, 255, .08);

  overflow: hidden;

  transition: .5s;

}

/* Animated Gradient Border */

.course-card::before {

  content: '';

  position: absolute;

  inset: 0;

  padding: 2px;

  border-radius: 25px;

  background: linear-gradient(135deg, #38bdf8, #2563eb, #06b6d4, #38bdf8);

  background-size: 300%;

  animation: borderMove 6s linear infinite;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask-composite: exclude;

}

/* Shine */

.course-card::after {

  content: '';

  position: absolute;

  top: -100%;

  left: -60%;

  width: 60%;

  height: 250%;

  background: rgba(255, 255, 255, .12);

  transform: rotate(25deg);

  transition: .8s;

}

.course-card:hover::after {

  left: 130%;

}

.course-card:hover {

  transform: translateY(-18px);

  box-shadow: 0 30px 70px rgba(0, 0, 0, .4);

}

.course-icon {

  width: 75px;

  height: 75px;

  border-radius: 50%;

  background: linear-gradient(135deg, #ff7f38, #ff512f);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 30px;

  color: #fff;

  margin-bottom: 25px;

  transition: .4s;

}

.course-card:hover .course-icon {

  transform: rotate(12deg) scale(1.15);

}

.course-icon.blue {

  background: linear-gradient(135deg, #2563eb, #38bdf8);

}

.course-icon.green {

  background: linear-gradient(135deg, #16a34a, #22c55e);

}

.course-badge {

  display: inline-block;

  padding: 8px 18px;

  border-radius: 40px;

  font-size: 13px;

  font-weight: 600;

  margin-bottom: 20px;

  animation: pulse 2s infinite;

}

.orange {

  background: #ffedd5;

  color: #ea580c;

}

.blue {

  background: #dbeafe;

  color: #2563eb;

}

.green {

  background: #dcfce7;

  color: #16a34a;

}

.course-card h3 {

  color: #fff;

  margin: 18px 0;

  font-size: 26px;

}

.course-card p {

  color: #cbd5e1;

  line-height: 1.8;

  margin-bottom: 25px;

}

.course-card a {

  color: #38bdf8;

  text-decoration: none;

  font-weight: 600;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  transition: .3s;

}

.course-card:hover a {

  gap: 18px;

}

.btn-area {

  text-align: center;

  margin-top: 60px;

}

.view-btn {

  display: inline-block;

  padding: 16px 42px;

  background: linear-gradient(135deg, #2563eb, #38bdf8);

  border-radius: 50px;

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  transition: .4s;

}

.view-btn:hover {

  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(37, 99, 235, .4);

}

/* Animations */

@keyframes pulse {

  0%,
  100% {

    transform: scale(1);

  }

  50% {

    transform: scale(1.08);

  }

}

@keyframes borderMove {

  0% {

    background-position: 0%;

  }

  100% {

    background-position: 300%;

  }

}

/*=============================
        PREMIUM HEADER
==============================*/

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

body {

  font-family: 'Poppins', sans-serif;

}

.header {

  position: fixed;

  top: 20px;

  left: 50%;

  transform: translateX(-50%);

  width: 92%;

  z-index: 9999;

  transition: .4s;

}

.header.scrolled {

  top: 10px;

}

.navbar {

  background: rgba(255, 255, 255, .92);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, .25);

  border-radius: 70px;

  padding: 14px 28px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

  transition: .4s;

}

/*=============================
LOGO
=============================*/

.logo {

  display: flex;

  align-items: center;

  gap: 15px;

  text-decoration: none;

}

.logo-circle {

  width: 60px;

  height: 60px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg, #2563eb, #06b6d4);

  color: #fff;

  font-size: 26px;

  box-shadow: 0 10px 25px rgba(37, 99, 235, .35);

  animation: rotateGlow 8s linear infinite;

}

.logo-text h2 {

  font-size: 23px;

  font-weight: 700;

  color: #0f172a;

  letter-spacing: .5px;

}

.logo-text span {

  font-size: 13px;

  color: #64748b;

}

/*=============================
MENU
=============================*/

.nav-menu {

  display: flex;

  gap: 35px;

}

.nav-menu a {

  text-decoration: none;

  color: #1e293b;

  font-weight: 600;

  position: relative;

  transition: .3s;

}

.nav-menu a::after {

  content: '';

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 3px;

  border-radius: 20px;

  background: linear-gradient(90deg, #2563eb, #06b6d4);

  transition: .35s;

}

.nav-menu a:hover,

.nav-menu .active {

  color: #2563eb;

}

.nav-menu a:hover::after,

.nav-menu .active::after {

  width: 100%;

}

/*=============================
BUTTON
=============================*/

.cta-btn {

  padding: 15px 30px;

  background: linear-gradient(135deg, #2563eb, #06b6d4);

  border-radius: 40px;

  text-decoration: none;

  color: #fff;

  font-weight: 600;

  display: flex;

  align-items: center;

  gap: 10px;

  transition: .35s;

}

.cta-btn:hover {

  transform: translateY(-4px);

  gap: 15px;

  box-shadow: 0 12px 30px rgba(37, 99, 235, .35);

}

/*=============================
MOBILE BUTTON
=============================*/

.menu-btn {

  display: none;

  font-size: 28px;

  cursor: pointer;

  color: #2563eb;

}

/*=============================
SCROLL EFFECT
=============================*/

.header.scrolled .navbar {

  padding: 10px 28px;

  box-shadow: 0 15px 45px rgba(0, 0, 0, .12);

}

/*=============================
LOGO ANIMATION
=============================*/

@keyframes rotateGlow {

  0% {

    box-shadow: 0 0 0 rgba(37, 99, 235, .3);

  }

  50% {

    box-shadow: 0 0 25px rgba(37, 99, 235, .45);

  }

  100% {

    box-shadow: 0 0 0 rgba(37, 99, 235, .3);

  }

}

/*=============================
RESPONSIVE
=============================*/

@media(max-width:991px) {

  .nav-menu {

    display: none;

  }

  .cta-btn {

    display: none;

  }

  .menu-btn {

    display: block;

  }

  .logo-text h2 {

    font-size: 20px;

  }

}

@media(max-width:600px) {

  .logo-circle {

    width: 50px;

    height: 50px;

    font-size: 22px;

  }

  .logo-text h2 {

    font-size: 17px;

  }

  .logo-text span {

    font-size: 11px;

  }

  .header {

    width: 96%;

  }

}

@media(max-width:991px) {

  .nav-menu {

    position: absolute;

    top: 90px;

    left: 0;

    width: 100%;

    background: #fff;

    border-radius: 20px;

    padding: 20px;

    display: none;

    flex-direction: column;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);

  }

  .nav-menu.show {

    display: flex;

  }

}

/*==========================
        HEADER
===========================*/

.jc-header {

  position: fixed;

  top: 25px;

  left: 50%;

  transform: translateX(-50%);

  width: 94%;

  z-index: 999;

  transition: .4s;

}

.jc-navbar {

  height: 82px;

  padding: 0 35px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  background: rgba(255, 255, 255, .90);

  backdrop-filter: blur(16px);

  border-radius: 20px;

  border: 1px solid rgba(255, 255, 255, .30);

  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

  transition: .4s;

}

/* Logo */

.jc-brand {

  display: flex;

  align-items: center;

  gap: 15px;

  text-decoration: none;

}

.jc-brand-icon {

  width: 58px;

  height: 58px;

  border-radius: 18px;

  background: linear-gradient(135deg, #2563eb, #06b6d4);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 24px;

  color: #fff;

  transition: .4s;

}

.jc-brand:hover .jc-brand-icon {

  transform: rotate(-10deg) scale(1.08);

}

.jc-brand-text h2 {

  font-size: 24px;

  color: #111827;

  font-weight: 700;

}

.jc-brand-text span {

  font-size: 13px;

  color: #64748b;

}

/* Navigation */

.jc-nav {

  display: flex;

  gap: 38px;

}

.jc-nav a {

  text-decoration: none;

  font-weight: 600;

  color: #374151;

  position: relative;

  transition: .3s;

}

.jc-nav a::before {

  content: "";

  position: absolute;

  bottom: -10px;

  left: 50%;

  width: 0;

  height: 3px;

  background: #2563eb;

  border-radius: 20px;

  transform: translateX(-50%);

  transition: .35s;

}

.jc-nav a:hover,

.jc-nav a.jc-active {

  color: #2563eb;

}

.jc-nav a:hover::before,

.jc-nav a.jc-active::before {

  width: 100%;

}

/* Right Side */

.jc-actions {

  display: flex;

  align-items: center;

  gap: 15px;

}

.jc-call {

  width: 48px;

  height: 48px;

  border-radius: 50%;

  background: #f1f5f9;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #2563eb;

  text-decoration: none;

  transition: .35s;

}

.jc-call:hover {

  background: #2563eb;

  color: #fff;

  transform: translateY(-3px);

}

.jc-btn {

  padding: 14px 28px;

  border-radius: 50px;

  background: linear-gradient(135deg, #2563eb, #06b6d4);

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  transition: .35s;

}

.jc-btn:hover {

  transform: translateY(-3px);

  box-shadow: 0 12px 25px rgba(37, 99, 235, .35);

}

/* Mobile */

.jc-toggle {

  display: none;

  font-size: 28px;

  cursor: pointer;

  color: #2563eb;

}

/* Scroll (Desktop View) */

@media (min-width: 992px) {
  .jc-header.scroll-active {
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .jc-header.scroll-active .jc-navbar {
    height: 74px !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
  }
}

/* Responsive */

@media(max-width:992px) {

  .jc-nav {

    display: none;

    position: absolute;

    top: 95px;

    left: 0;

    width: 100%;

    background: #fff;

    padding: 30px;

    border-radius: 20px;

    flex-direction: column;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);

  }

  .jc-nav.show {

    display: flex;

  }

  .jc-actions {

    display: flex;

    align-items: center;

    gap: 8px;

  }

  .jc-toggle {

    display: block;

  }

}

@media(max-width:576px) {

  .jc-brand-text h2 {

    font-size: 18px;

  }

  .jc-brand-text span {

    font-size: 11px;

  }

  .jc-brand-icon {

    width: 50px;

    height: 50px;

    font-size: 20px;

  }

  .jc-navbar {

    padding: 0 20px;

  }

}

/* ===========================
      HERO SECTION
=========================== */

.jeet-hero {

  position: relative;

  padding: 120px 8%;

  overflow: hidden;

  background: linear-gradient(135deg, #eef7ff, #ffffff);

}

.jeet-wrapper {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 70px;

  max-width: 1400px;

  margin: auto;

}

/* LEFT */

.jeet-left {

  flex: 1;

  animation: leftFade .8s;

}

.jeet-tag {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 22px;

  background: #dbeafe;

  color: #2563eb;

  border-radius: 40px;

  font-weight: 600;

  margin-bottom: 25px;

}

.jeet-left h1 {

  font-size: 65px;

  font-weight: 800;

  line-height: 1.15;

  color: #111827;

  margin-bottom: 25px;

}

.jeet-left h1 span {

  background: linear-gradient(90deg, #2563eb, #06b6d4);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}

.jeet-left p {

  font-size: 18px;

  line-height: 1.9;

  color: #64748b;

  max-width: 600px;

  margin-bottom: 40px;

}

/* Buttons */

.jeet-buttons {

  display: flex;

  gap: 18px;

  margin-bottom: 45px;

}

.jeet-main-btn {

  background: #2563eb;

  padding: 16px 34px;

  border-radius: 50px;

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  transition: .35s;

}

.jeet-main-btn:hover {

  transform: translateY(-5px);

  background: #1d4ed8;

}

.jeet-outline-btn {

  padding: 16px 34px;

  border-radius: 50px;

  border: 2px solid #2563eb;

  color: #2563eb;

  text-decoration: none;

  font-weight: 600;

  transition: .35s;

}

.jeet-outline-btn:hover {

  background: #2563eb;

  color: #fff;

}

/* Stats */

.jeet-stats {

  display: flex;

  gap: 55px;

}

.jeet-stats h2 {

  font-size: 38px;

  color: #2563eb;

  margin-bottom: 6px;

}

.jeet-stats span {

  color: #64748b;

}

/* RIGHT */

.jeet-right {

  flex: 1;

  position: relative;

  display: flex;

  justify-content: center;

}

.jeet-image-box {

  width: 520px;

  height: 620px;

  overflow: hidden;

  border-radius: 35px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, .15);

}

.jeet-image-box img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: .5s;

}

.jeet-image-box:hover img {

  transform: scale(1.08);

}

/* Floating Cards */

.jeet-card {

  position: absolute;

  background: #fff;

  padding: 18px 22px;

  display: flex;

  align-items: center;

  gap: 15px;

  border-radius: 18px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, .12);

  animation: floatCard 4s ease-in-out infinite;

}

.jeet-card i {

  font-size: 24px;

  color: #2563eb;

}

.card-one {

  top: 60px;

  left: -20px;

}

.card-two {

  top: 280px;

  right: -30px;

  animation-delay: 1s;

}

.card-three {

  bottom: 30px;

  left: 30px;

  animation-delay: 2s;

}

/* Background */

.jeet-bg-circle {

  position: absolute;

  border-radius: 50%;

  filter: blur(100px);

  opacity: .3;

}

.one {

  width: 300px;

  height: 300px;

  background: #60a5fa;

  top: -100px;

  left: -100px;

}

.two {

  width: 350px;

  height: 350px;

  background: #38bdf8;

  bottom: -150px;

  right: -100px;

}

.three {

  width: 250px;

  height: 250px;

  background: #818cf8;

  top: 200px;

  right: 20%;

}

/* Animation */

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

}

@keyframes leftFade {

  from {

    opacity: 0;

    transform: translateX(-60px);

  }

  to {

    opacity: 1;

    transform: none;

  }

}

/* Responsive */

@media(max-width:991px) {

  .jeet-wrapper {

    flex-direction: column;

    text-align: center;

  }

  .jeet-buttons {

    justify-content: center;

  }

  .jeet-stats {

    justify-content: center;

    flex-wrap: wrap;

  }

  .jeet-image-box {

    width: 100%;

    height: 500px;

  }

  .jeet-card {

    display: none;

  }

  .jeet-left h1 {

    font-size: 48px;

  }

}

.dg-service-area {

  padding: 120px 0;

  position: relative;

  overflow: hidden;

  background: linear-gradient(135deg, #f8fbff, #eef5ff);

}

.dg-wrapper {

  width: 90%;

  max-width: 1250px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 460px;

  gap: 70px;

  align-items: center;

}

.dg-shape {

  position: absolute;

  border-radius: 50%;

  filter: blur(70px);

  opacity: .25;

}

.dg-one {

  width: 320px;

  height: 320px;

  background: #2563eb;

  left: -120px;

  top: -100px;

}

.dg-two {

  width: 250px;

  height: 250px;

  background: #06b6d4;

  right: -100px;

  bottom: -100px;

}

.dg-label {

  display: inline-block;

  padding: 8px 18px;

  background: #dbeafe;

  color: #2563eb;

  border-radius: 40px;

  font-weight: 600;

  margin-bottom: 20px;

}

.dg-left h2 {

  font-size: 48px;

  margin-bottom: 20px;

  line-height: 1.2;

  color: #000000;

  -webkit-text-fill-color: #000000;

  background: none;

}

.dg-left p {

  font-size: 18px;

  line-height: 1.8;

  color: #64748b;

  margin-bottom: 35px;

}

.dg-list {

  display: grid;

  gap: 18px;

  margin-bottom: 40px;

}

.dg-item {

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 18px 22px;

  background: #fff;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

  transition: .35s;

}

.dg-item:hover {

  transform: translateX(12px);

}

.dg-item i {

  color: #2563eb;

  font-size: 22px;

}

.dg-more {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 15px 30px;

  background: #2563eb;

  color: #fff;

  border-radius: 40px;

  text-decoration: none;

  transition: .3s;

}

.dg-more:hover {

  gap: 18px;

}

.dg-form-box {

  background: rgba(255, 255, 255, .75);

  backdrop-filter: blur(18px);

  padding: 40px;

  border-radius: 30px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);

  position: relative;

  overflow: hidden;

}

.dg-form-box::before {

  content: "";

  position: absolute;

  inset: 0;

  padding: 2px;

  background: linear-gradient(135deg, #2563eb, #06b6d4, #2563eb);

  border-radius: 30px;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask-composite: exclude;

  animation: borderMove 5s linear infinite;

  background-size: 300%;

}

.dg-form-box h3 {

  text-align: center;

  margin-bottom: 30px;

  font-size: 28px;

}

.dg-form-box form {

  display: grid;

  gap: 18px;

}

.dg-form-box input,
.dg-form-box select,
.dg-form-box textarea {

  padding: 16px;

  border: none;

  border-radius: 15px;

  background: #f5f7fb;

  font-size: 15px;

  outline: none;

  transition: .3s;

}

.dg-form-box input:focus,
.dg-form-box textarea:focus,
.dg-form-box select:focus {

  background: #fff;

  box-shadow: 0 0 0 3px rgba(37, 99, 235, .18);

}

.dg-form-box button {

  padding: 17px;

  border: none;

  border-radius: 50px;

  background: linear-gradient(135deg, #2563eb, #06b6d4);

  color: #fff;

  font-size: 16px;

  cursor: pointer;

  transition: .3s;

}

.dg-form-box button:hover {

  transform: translateY(-4px);

}

@keyframes borderMove {

  100% {

    background-position: 300%;

  }

}

@media(max-width:992px) {

  .dg-wrapper {

    grid-template-columns: 1fr;

  }

  .dg-left {

    text-align: center;

  }

}

/*==========================
TESTIMONIAL
==========================*/

.jm-review-section {

  padding: 120px 0;

  position: relative;

  background: url("../images/hero\ image.png") center/cover fixed;

  overflow: hidden;

}

.jm-overlay {

  position: absolute;

  inset: 0;

  background: rgba(10, 20, 40, .78);

  backdrop-filter: blur(2px);

}

.jm-wrap {

  position: relative;

  width: 90%;

  max-width: 1200px;

  margin: auto;

  z-index: 2;

}

.jm-heading {

  text-align: center;

  color: #fff;

  margin-bottom: 60px;

}

.jm-heading span {

  color: #38bdf8;

  letter-spacing: 2px;

  font-weight: 700;

}

.jm-heading h2 {

  font-size: 48px;

  margin: 20px 0;

}

.jm-heading p {

  max-width: 700px;

  margin: auto;

  color: #dbeafe;

}

.jm-slider {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 5px 20px;
  scrollbar-width: none;
}

.jm-slider::-webkit-scrollbar {
  display: none;
}

.jm-track {
  display: flex;
  gap: 25px;
  width: max-content;
}

.jm-card {
  min-width: 320px;
  max-width: 360px;
  scroll-snap-align: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  padding: 35px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  transition: all 0.4s ease;
}

.jm-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.jm-stars {
  color: #FFD700;
  margin-bottom: 20px;
}

.jm-quote {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 40px;
  color: #38bdf8;
  opacity: 0.25;
}

.jm-card p {
  color: #fff;
  line-height: 1.8;
  margin: 20px 0;
}

.jm-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.jm-user img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #38bdf8;
}

.jm-user h4 {
  color: #fff;
}

.jm-user span {
  color: #cbd5e1;
}

.jm-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.jm-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.jm-nav-btn:hover,
.jm-nav-btn:active {
  background: #2563eb;
  border-color: #2563eb;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

@media (max-width: 480px) {
  .jm-card {
    min-width: 280px;
    max-width: 300px;
    padding: 24px 20px;
  }
}

@media(max-width:768px) {
  .jm-heading h2 {

    font-size: 34px;

  }

  .jm-card {

    min-width: 300px;

  }

}

/*==========================
DIRECTOR SECTION
==========================*/

.ceo-message-area {

  padding: 120px 0;

  background: #f8fbff;

  position: relative;

  overflow: hidden;

}

/*==========================
DIRECTOR SECTION
==========================*/

.ceo-message-area {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 50%, #f8fafc 100%);
  overflow: hidden;
}

.ceo-container {
  width: 90%;
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Background Glowing Shapes */
.ceo-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}

.ceo-shape-1 {
  width: 380px;
  height: 380px;
  background: #2563eb;
  left: -100px;
  top: -80px;
}

.ceo-shape-2 {
  width: 320px;
  height: 320px;
  background: #06b6d4;
  right: -80px;
  bottom: -80px;
}

/* Profile Card */
.ceo-profile-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border: 1.5px solid rgba(226, 232, 240, 0.8);
  transition: all 0.4s ease;
  position: relative;
}

.ceo-profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.15);
  border-color: rgba(6, 182, 212, 0.4);
}

.ceo-photo-wrapper {
  position: relative;
  width: 200px;
  margin: 0 auto 20px;
}

.ceo-photo {
  width: 190px;
  height: 190px;
  margin: auto;
  overflow: hidden;
  border-radius: 50%;
  border: 5px solid #ffffff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.2);
  outline: 3px solid #2563eb;
}

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

.ceo-profile-card:hover .ceo-photo img {
  transform: scale(1.08);
}

.ceo-experience-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  white-space: nowrap;
}

.ceo-profile-card h3 {
  margin-top: 18px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
}

.ceo-role {
  display: block;
  font-size: 0.92rem;
  color: #2563eb;
  font-weight: 700;
  margin-top: 4px;
}

.ceo-bio-short {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin: 14px 0 20px;
}

.ceo-social {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.ceo-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ceo-social a:hover {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

/* Right Message Box */
.ceo-message-box {
  background: #ffffff;
  padding: 48px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  border: 1px solid #e2e8f0;
  position: relative;
}

.ceo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  border: 1px solid #bfdbfe;
}

.ceo-message-box h2 {
  font-size: 2.2rem;
  line-height: 1.25;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 24px;
}

.ceo-message-box h2 span {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ceo-quote-icon {
  font-size: 48px;
  color: #2563eb;
  opacity: 0.12;
  margin-bottom: 12px;
}

.ceo-lead-text {
  font-size: 1.12rem !important;
  font-weight: 600;
  color: #1e293b !important;
  line-height: 1.8 !important;
}

.ceo-message-box p {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}

/* Key Pillars Ribbon */
.ceo-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
  padding: 20px;
  background: #f8fafc;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.ceo-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ceo-pillar i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.ceo-pillar strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
  font-weight: 700;
}

.ceo-pillar span {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
}

/* Footer */
.ceo-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1.5px dashed #e2e8f0;
}

.ceo-footer h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.ceo-footer span {
  color: #64748b;
  font-size: 0.88rem;
}

.ceo-cta-btn {
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.ceo-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
  .ceo-message-area {
    padding: 80px 0;
  }

  .ceo-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .ceo-profile-card {
    max-width: 440px;
    margin: 0 auto;
  }

  .ceo-message-box {
    padding: 30px 24px;
  }

  .ceo-message-box h2 {
    font-size: 1.7rem;
  }

  .ceo-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ceo-footer {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
}

@media(max-width:576px) {

  .ceo-message-box {

    padding: 30px;

  }

  .ceo-message-box h2 {

    font-size: 34px;

  }

  .ceo-footer {

    flex-direction: column;

    gap: 20px;

  }

}

/*==========================
FOOTER
==========================*/

.jf-footer {

  background: linear-gradient(135deg, #08111f, #0f172a, #111827);

  color: #fff;

  position: relative;

  padding-top: 80px;

  overflow: hidden;

}

.jf-wave {

  position: absolute;

  top: -2px;

  left: 0;

  width: 100%;

}

.jf-wave svg {

  display: block;

  width: 100%;

  height: 80px;

}

.jf-container {

  width: 90%;

  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1.5fr;

  gap: 50px;

  padding: 70px 0;

}

/* Logo */

.jf-logo {

  display: flex;

  align-items: center;

  gap: 18px;

  margin-bottom: 25px;

}

.jf-logo-icon {

  width: 65px;

  height: 65px;

  border-radius: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg, #2563eb, #06b6d4);

  font-size: 28px;

}

.jf-logo h2 {

  font-size: 28px;

}

.jf-logo span {

  color: #94a3b8;

}

.jf-about p {

  line-height: 1.8;

  color: #cbd5e1;

  margin-bottom: 30px;

}

/* Social */

.jf-social {

  display: flex;

  gap: 15px;

}

.jf-social a {

  width: 48px;

  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, .08);

  color: #fff;

  transition: .35s;

}

.jf-social a:hover {

  background: #2563eb;

  transform: translateY(-6px);

}

/* Links */

.jf-links h3,

.jf-contact h3 {

  margin-bottom: 25px;

  font-size: 22px;

}

.jf-links a {

  display: block;

  margin-bottom: 15px;

  color: #cbd5e1;

  text-decoration: none;

  transition: .3s;

}

.jf-links a:hover {

  color: #38bdf8;

  padding-left: 8px;

}

/* Contact */

.jf-contact div {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

  color: #cbd5e1;

}

.jf-contact i {

  color: #38bdf8;

}

/* Newsletter */

.jf-newsletter {

  margin-top: 25px;

  display: flex;

  background: #fff;

  border-radius: 50px;

  overflow: hidden;

}

.jf-newsletter input {

  flex: 1;

  border: none;

  padding: 16px;

  outline: none;

}

.jf-newsletter button {

  padding: 16px 28px;

  border: none;

  background: linear-gradient(135deg, #2563eb, #06b6d4);

  color: #fff;

  cursor: pointer;

}

/* Bottom */

.jf-copy {

  text-align: center;

  padding: 25px;

  border-top: 1px solid rgba(255, 255, 255, .08);

  color: #94a3b8;

}

/*==========================
   VISITOR COUNTER WIDGET
==========================*/
.jf-visitor-box {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto 30px auto;
  display: flex;
  justify-content: flex-end;
}

.jf-visitor-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.jf-visitor-live {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.jf-live-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981, 0 0 15px #10b981;
  animation: pulseLive 1.8s ease-in-out infinite;
}

@keyframes pulseLive {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.jf-live-text strong {
  color: #10b981;
}

.jf-visitor-counter-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.jf-counter-icon {
  font-size: 1.2rem;
  color: #38bdf8;
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.5));
}

.jf-counter-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #cbd5e1;
}

.jf-counter-digits {
  display: flex;
  gap: 4px;
  align-items: center;
}

.vc-digit {
  background: linear-gradient(180deg, #1e293b, #0f172a);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
  font-family: 'Courier New', Courier, monospace;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 4px 9px;
  border-radius: 6px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3);
  min-width: 24px;
  text-align: center;
  line-height: 1;
}

.vc-comma {
  color: #38bdf8;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 0 2px;
}

.jf-visitor-today {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.jf-visitor-today i {
  color: #38bdf8;
}

.jf-visitor-today strong {
  color: #38bdf8;
}

@media(max-width: 768px) {
  .jf-visitor-badge {
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 24px;
    width: 100%;
  }
}

/* Responsive */

@media(max-width:992px) {

  .jf-container {

    grid-template-columns: 1fr 1fr;

  }

}

@media(max-width:768px) {

  .jf-container {

    grid-template-columns: 1fr;

    text-align: center;

  }

  .jf-logo {

    justify-content: center;

  }

  .jf-social {

    justify-content: center;

  }

  .jf-contact div {

    justify-content: center;

  }

}

/*==========================
COURSE HERO
==========================*/

.cd-hero-wrap {

  padding: 170px 0 110px;

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(135deg, #eef6ff, #ffffff);

}

.cd-container {

  width: 90%;

  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 70px;

}

.cd-content h1 {

  font-size: 68px;

  line-height: 1.1;

  margin: 25px 0;

  color: #111827;

}

.cd-content h1 span {

  color: #2563eb;

}

.cd-content p {

  font-size: 18px;

  line-height: 1.9;

  color: #64748b;

  margin-bottom: 35px;

}

.cd-badge {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 10px 22px;

  background: #fff;

  border-radius: 40px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

  font-weight: 600;

  color: #2563eb;

}

/* Search */

.cd-search {

  display: flex;

  margin-bottom: 40px;

  background: #fff;

  border-radius: 60px;

  overflow: hidden;

  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.cd-search input {

  flex: 1;

  border: none;

  padding: 18px 25px;

  font-size: 16px;

  outline: none;

}

.cd-search button {

  width: 70px;

  border: none;

  background: #2563eb;

  color: #fff;

  cursor: pointer;

}

/* Counter */

.cd-counter {

  display: flex;

  gap: 45px;

}

.cd-counter h2 {

  font-size: 38px;

  color: #111827;

}

.cd-counter span {

  color: #64748b;

}

/* Image */

.cd-image {

  position: relative;

}

.cd-image img {

  width: 100%;

  border-radius: 35px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, .15);

}

.cd-floating {

  position: absolute;

  background: #fff;

  padding: 16px 22px;

  border-radius: 18px;

  display: flex;

  align-items: center;

  gap: 12px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

  animation: cdFloat 4s ease-in-out infinite;

}

.cd-floating i {

  width: 45px;

  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #2563eb;

  color: #fff;

}

.cd-one {

  top: 40px;

  left: -40px;

}

.cd-two {

  right: -30px;

  top: 160px;

  animation-delay: 1s;

}

.cd-three {

  left: 70px;

  bottom: -20px;

  animation-delay: 2s;

}

/* Shapes */

.cd-shape {

  position: absolute;

  border-radius: 50%;

  filter: blur(80px);

  opacity: .25;

}

.cd-shape-1 {

  width: 320px;

  height: 320px;

  background: #2563eb;

  left: -100px;

  top: -100px;

}

.cd-shape-2 {

  width: 250px;

  height: 250px;

  background: #06b6d4;

  right: -100px;

  top: 120px;

}

.cd-shape-3 {

  width: 280px;

  height: 280px;

  background: #8b5cf6;

  bottom: -120px;

  left: 40%;

}

/* Floating */

@keyframes cdFloat {

  0%,
  100% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(-12px);

  }

}

@media(max-width:992px) {

  .cd-container {

    grid-template-columns: 1fr;

    text-align: center;

  }

  .cd-counter {

    justify-content: center;

  }

  .cd-floating {

    display: none;

  }

}

@media(max-width:576px) {

  .cd-content h1 {

    font-size: 42px;

  }

  .cd-counter {

    gap: 25px;

  }

}

/*=============================
COURSE CARD
==============================*/

.pc-course-section {

  padding: 100px 0;

  background: #f8fbff;

}

.pc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 35px;
}

.pc-card {

  background: #fff;

  border-radius: 28px;

  overflow: hidden;

  position: relative;

  transition: .45s;

  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

  display: flex;

  flex-direction: column;

}

.pc-card.hidden {

  display: none !important;

}

/* Animated Border */

.pc-card::before {

  content: "";

  position: absolute;

  inset: -2px;

  background: linear-gradient(45deg, #2563eb, #06b6d4, #8b5cf6, #2563eb);

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.pc-card:hover {
  transform: translateY(-12px) scale(1.02) !important;
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.12) !important;
  border-color: rgba(6, 182, 212, 0.3) !important;
}

.pc-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.pc-card:hover img {
  transform: scale(1.08);
}

.pc-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pc-badge.orange {
  background: linear-gradient(135deg, #ff7f38, #ff512f);
  box-shadow: 0 4px 12px rgba(255, 127, 56, 0.2);
}

.pc-badge.blue {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.pc-badge.green {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.pc-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pc-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 13px;
  color: #64748b;
}

.pc-top span {
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #475569;
}

.pc-top i {
  color: #2563eb;
}

.pc-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1e293b;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: color 0.3s;
}

.pc-card:hover h3 {
  color: #2563eb;
}

.pc-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.pc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  background: #f8fbff;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px dashed rgba(37, 99, 235, 0.15);
}

.pc-list div {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: #475569;
  font-weight: 500;
}

.pc-list i {
  color: #10b981;
  font-size: 14px;
}

.pc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.pc-bottom span {
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.pc-bottom h4 {
  font-size: 16px;
  color: #1e293b;
  font-weight: 700;
  margin-top: 2px;
}

.pc-bottom a {
  padding: 12px 22px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pc-bottom a:hover {
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
}

.pc-filter-bar {
  background: #ffffff;
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.pc-filter {
  padding: 12px 24px;
  border: none;
  background: transparent;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  color: #475569;
  font-size: 14.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pc-filter.active,
.pc-filter:hover {
  background: linear-gradient(135deg, #2563eb, #06b6d4) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25) !important;
}

.pc-filter:active {
  transform: scale(0.95);
}

.pc-card {
  animation: pcCardFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pcCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   ACCORDIONS & TABLES (ADMISSIONS)
======================================*/

.accordion.open {
  border-color: rgba(37, 99, 235, 0.4) !important;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.05);
}

.accordion.open .accordion-header {
  color: #2563eb !important;
  background: #eef5ff !important;
}

.accordion.open .accordion-icon i {
  transform: rotate(45deg);
  color: #2563eb;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-bottom: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
}

th {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
  padding: 16px 24px;
}

td {
  padding: 16px 24px;
  border-bottom: 1px solid #edf2f7;
  color: #475569;
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) {
  background: #f8fbff;
}

/* ===================================
   HIGH-ENERGY INTERACTIVE ANIMATIONS
======================================*/

/* 1. Floating Background Shapes */
@keyframes floatSlow {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  50% {
    transform: translate(30px, -40px) rotate(180deg) scale(1.15);
  }

  100% {
    transform: translate(0, 0) rotate(360deg) scale(1);
  }
}

.cd-shape-1,
.cd-shape-2,
.cd-shape-3,
.dg-shape,
.ceo-shape-1,
.ceo-shape-2,
.bg-blob {
  animation: floatSlow 25s infinite ease-in-out alternate !important;
}

/* 2. Shifting Gradient Backgrounds for Buttons */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.jc-btn,
.pc-bottom a,
.pc-filter.active,
.inquiry-form button[type="submit"],
.btn-primary {
  background-size: 200% 200% !important;
  animation: gradientShift 6s ease infinite !important;
  transition: 0.3s ease-in-out !important;
}

.jc-btn:hover,
.pc-bottom a:hover,
.inquiry-form button[type="submit"]:hover,
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4) !important;
}

/* 3. Bounce / 3D Spring Hover Effects for Cards */
.pc-card,
.why-card,
.glass-panel,
.contact-info-card {
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
    border-color 0.6s ease !important;
}

.pc-card:hover,
.why-card:hover,
.glass-panel:hover,
.contact-info-card:hover {
  transform: translateY(-12px) scale(1.025) !important;
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15) !important;
  border-color: rgba(6, 182, 212, 0.4) !important;
}

/* 4. Navigation Link Hover Micro-Animations */
.jc-nav a::before {
  transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* 5. Custom Glowing Inputs */
.form-control:focus {
  border-color: #06b6d4 !important;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15) !important;
}

.jc-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.jc-brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(37, 99, 235), rgb(6, 182, 212));
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.jc-brand-logo img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  display: block;
}

.jc-brand-text h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
}

.jc-brand-text span {
  font-size: 14px;
  color: #64748b;
}

/* ===================================
   SEARCH & FILTER BAR SYSTEM
======================================*/
.filter-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  margin-bottom: 45px;
}

.search-box-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto 25px;
}

.search-box-container input {
  width: 100%;
  padding: 16px 24px 16px 52px;
  border-radius: 50px;
  border: 2px solid #e2e8f0;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  background: #f8fafc;
  color: #0f172a;
}

.search-box-container input:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.search-box-container i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 1.15rem;
}

.filter-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-pill-btn,
.st-filter-btn {
  padding: 12px 24px;
  border-radius: 50px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: #475569;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.filter-pill-btn:hover,
.filter-pill-btn.active,
.st-filter-btn:hover,
.st-filter-btn.active {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3) !important;
}

/* ===================================
   STATIONERY STORE & CART SYSTEM
======================================*/

/* Product Grid */
.st-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.st-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.st-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
  border-color: rgba(6, 182, 212, 0.4);
}

.st-img-wrapper {
  position: relative;
  width: 100%;
  height: 210px;
  background: #f8fafc;
  overflow: hidden;
}

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

.st-card:hover .st-img-wrapper img {
  transform: scale(1.08);
}

.st-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  z-index: 2;
}

.st-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.st-category {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.st-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.35;
}

.st-description {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.st-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  margin-top: auto;
}

.st-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #2563eb;
}

.st-mrp {
  font-size: 0.9rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.st-discount {
  font-size: 0.75rem;
  color: #16a34a;
  font-weight: 700;
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: 12px;
}

.st-actions {
  display: flex;
  gap: 10px;
}

.st-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.st-qty-btn:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.st-add-btn {
  flex-grow: 1;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
  transition: all 0.3s ease;
}

.st-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* Floating Cart Button */
.floating-cart-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  z-index: 1010;
  border: 2px solid rgba(56, 189, 248, 0.4);
  transition: all 0.3s ease;
}

.floating-cart-btn:hover {
  transform: scale(1.06);
  border-color: #38bdf8;
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.5);
}

.cart-count-badge {
  background: #ef4444;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
}

/* Cart Slide-Over Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1020;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: #ffffff;
  z-index: 1025;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

.cart-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.cart-drawer-header {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #ffffff;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.cart-close-btn:hover {
  background: #ef4444;
}

.cart-drawer-body {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  background: #f8fafc;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.85rem;
  color: #2563eb;
  font-weight: 700;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.cart-item-remove {
  background: #fef2f2;
  color: #ef4444;
  border: 1px solid #fee2e2;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.78rem;
  transition: 0.2s;
}

.cart-item-remove:hover {
  background: #ef4444;
  color: #ffffff;
}

.cart-drawer-footer {
  padding: 20px 24px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.coupon-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.coupon-row input {
  flex-grow: 1;
  padding: 10px 14px;
  border-radius: 30px;
  border: 1.5px solid #cbd5e1;
  font-size: 0.85rem;
  outline: none;
}

.coupon-row button {
  background: #0f172a;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 8px;
}

.cart-summary-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  border-top: 1.5px dashed #cbd5e1;
  padding-top: 10px;
  margin-top: 10px;
}

.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, #16a34a, #10b981);
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
  transition: all 0.3s;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

/* ===================================
   COMPLETE RESPONSIVE MEDIA QUERIES (ALL DEVICES)
======================================*/

/* 1. Global Touch & Overflow Protection */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

/* Fluid Typography for Hero Headings */
.cd-content h1,
.degree-hero h1,
.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 4.2rem) !important;
  line-height: 1.15 !important;
}

/* Table Responsive Scrolling Guard */
.table-wrapper,
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
}

/* 2. Ultra-Wide Screens (>1400px) */
@media (min-width: 1400px) {

  .container,
  .cd-container,
  .jf-container {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 3. Laptops & Small Desktops (992px to 1199px) */
@media (max-width: 1199px) {
  .pc-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }

  .st-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
  }

  .jf-container {
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 30px;
  }
}

/* 4. Tablets & Small Laptops (769px to 991px) */
@media (max-width: 991px) {
  .jc-header {
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .jc-navbar {
    border-radius: 0 !important;
    height: 70px !important;
    padding: 0 20px !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
  }

  .cd-hero-wrap {
    padding: 110px 0 60px !important;
  }

  .cd-container {
    grid-template-columns: 1fr !important;
    gap: 45px !important;
    text-align: center;
  }

  .cd-content p {
    margin-left: auto;
    margin-right: auto;
    max-width: 650px;
  }

  .cd-counter {
    justify-content: center !important;
  }

  .cd-floating {
    display: none !important;
  }

  .jf-container {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
  }

  .stats-ribbon {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* 5. Mobiles & Phablets (481px to 768px) */
@media (max-width: 768px) {
  .jc-header {
    top: 0 !important;
    left: 0 !important;
    padding: 0 !important;
  }

  .jc-navbar {
    padding: 0 15px !important;
    height: 65px !important;
  }

  .jc-brand-text h2 {
    font-size: 1.1rem !important;
  }

  .jc-brand-text span {
    font-size: 0.72rem !important;
  }

  .cd-hero-wrap {
    padding: 110px 0 50px !important;
  }

  .pc-grid,
  .st-grid {
    grid-template-columns: 1fr !important;
  }

  .filter-wrapper {
    padding: 20px 16px !important;
    border-radius: 18px !important;
  }

  .search-box-container input {
    padding: 14px 20px 14px 46px !important;
    font-size: 0.92rem !important;
  }

  .filter-pill-btn,
  .st-filter-btn {
    padding: 10px 18px !important;
    font-size: 0.85rem !important;
  }

  .detail-modal {
    width: 96% !important;
    max-height: 94vh !important;
  }

  .detail-modal-body {
    padding: 18px 16px !important;
  }

  .floating-cart-btn {
    bottom: 20px !important;
    right: 20px !important;
    padding: 12px 20px !important;
  }
}

/* 6. Ultra-Small Mobiles (320px to 480px) */
@media (max-width: 480px) {

  .cd-content h1,
  .degree-hero h1 {
    font-size: 1.8rem !important;
  }

  .cd-badge {
    font-size: 0.8rem !important;
    padding: 6px 14px !important;
  }

  .cd-counter {
    flex-wrap: wrap !important;
    gap: 16px !important;
  }

  .cd-counter h2 {
    font-size: 1.6rem !important;
  }

  .jf-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 40px 0 !important;
  }

  .cart-drawer {
    max-width: 100vw !important;
  }

  .modal-body {
    padding: 20px 16px !important;
  }

  .stats-ribbon {
    grid-template-columns: 1fr !important;
    padding: 16px !important;
  }
}

/* ===================================
   CAREER FINDER SECTION STYLES
======================================*/
.course-finder-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 50%, #ffffff 100%);
  position: relative;
}

.finder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
  border: 1px solid #bfdbfe;
}

.finder-wrapper {
  margin-top: 40px;
}

.finder-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.finder-tab-btn {
  padding: 14px 26px;
  border-radius: 50px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: #475569;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.finder-tab-btn:hover,
.finder-tab-btn.active {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3) !important;
  transform: translateY(-2px);
}

.finder-result-box {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
}

.finder-card-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: center;
}

.finder-info-side h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.finder-info-side p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.finder-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 25px;
}

.finder-hl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #1e293b;
  font-weight: 600;
}

.finder-hl-item i {
  color: #16a34a;
  font-size: 1.1rem;
}

.finder-action-card {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #ffffff;
  padding: 30px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

.finder-action-card h4 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.finder-action-card p {
  color: #93c5fd;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.finder-cta-btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  background: #06b6d4;
  color: #ffffff;
  border: none;
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.finder-cta-btn:hover {
  background: #ffffff;
  color: #2563eb;
  transform: translateY(-2px);
}

/* ===================================
   PLACEMENTS SECTION STYLES
======================================*/
.placements-section {
  padding: 100px 0;
  background: #ffffff;
}

.placement-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: #fef3c7;
  color: #d97706;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
  border: 1px solid #fde68a;
}

.placement-stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 24px;
  padding: 30px;
  margin: 35px 0 50px;
  color: #ffffff;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
}

.p-stat-item {
  text-align: center;
}

.p-stat-item h2 {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.p-stat-item span {
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.alumni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.alumni-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.alumni-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(37, 99, 235, 0.12);
  border-color: rgba(6, 182, 212, 0.4);
}

.alumni-photo {
  position: relative;
  width: 100%;
  height: 220px;
  background: #f8fafc;
  overflow: hidden;
}

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

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

.company-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.alumni-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.alumni-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.job-title {
  color: #2563eb;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.alumni-info p {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
}

.salary-tag {
  margin-top: auto;
  align-self: flex-start;
  background: #dcfce7;
  color: #15803d;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #bbf7d0;
}

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

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

  .placement-stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .placement-stats-ribbon {
    grid-template-columns: 1fr;
  }

  .finder-result-box {
    padding: 24px 18px;
  }
}

/* ===================================
   UPI MOBILE APP CHOOSER STYLES
======================================*/
.upi-app-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
  transition: all 0.3s ease;
}

.upi-app-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.upi-app-subbtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.upi-app-subbtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-color: #2563eb !important;
}

/* ==========================================================================
   INDEX.HTML COMPLETE RESPONSIVE SYSTEM (FOR ALL SCREEN SIZES: 320px - 4K)
   ========================================================================== */

/* --- 1. Global & Foundation Resets --- */
html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  box-sizing: border-box;
}

/* --- 2. Header & Mobile Navigation --- */
@media (max-width: 992px) {
  .jc-header {
    top: 10px !important;
    width: 95% !important;
    max-width: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .jc-navbar {
    height: 64px !important;
    padding: 0 16px !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .jc-brand {
    gap: 10px !important;
  }

  .jc-brand-logo {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    flex-shrink: 0 !important;
  }

  .jc-brand-logo img {
    width: 32px !important;
    height: 32px !important;
  }

  .jc-brand-text h2 {
    font-size: clamp(1rem, 3.5vw, 1.25rem) !important;
    margin: 0 !important;
    line-height: 1.1 !important;
  }

  .jc-brand-text span {
    font-size: clamp(0.68rem, 2vw, 0.75rem) !important;
    display: block !important;
  }

  .jc-nav {
    display: none !important;
  }

  .jc-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .jc-actions .jc-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 8px 14px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #2563eb, #06b6d4) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25) !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
  }

  .jc-actions .jc-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35) !important;
  }

  .jc-call {
    width: 38px !important;
    height: 38px !important;
    font-size: 15px !important;
  }

  .jc-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    font-size: 20px !important;
    color: #2563eb !important;
    cursor: pointer !important;
    background: #eff6ff !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
  }

  .jc-toggle:hover {
    background: #2563eb !important;
    color: #ffffff !important;
  }
}

@media (max-width: 480px) {
  .jc-header {
    top: 8px !important;
    width: 96% !important;
  }

  .jc-navbar {
    height: 58px !important;
    padding: 0 10px !important;
  }

  .jc-brand-logo {
    width: 36px !important;
    height: 36px !important;
  }

  .jc-brand-logo img {
    width: 26px !important;
    height: 26px !important;
  }

  .jc-brand-text h2 {
    font-size: 0.92rem !important;
  }

  .jc-brand-text span {
    font-size: 0.62rem !important;
  }

  .jc-actions .jc-btn {
    padding: 6px 10px !important;
    font-size: 0.72rem !important;
    gap: 4px !important;
  }

  .jc-call {
    width: 34px !important;
    height: 34px !important;
    font-size: 14px !important;
  }

  .jc-toggle {
    width: 34px !important;
    height: 34px !important;
    font-size: 18px !important;
  }
}

@media (max-width: 360px) {
  .jc-navbar {
    padding: 0 8px !important;
  }

  .jc-actions {
    gap: 5px !important;
  }

  .jc-actions .jc-btn span {
    display: none !important;
  }

  .jc-actions .jc-btn {
    padding: 6px 8px !important;
    border-radius: 10px !important;
  }
}

/* Mobile Drawer Links with Icons & Badges */
.mobile-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 1.1rem !important;
}

.mobile-link-portal {
  color: #38bdf8 !important;
  font-weight: 700 !important;
  background: rgba(56, 189, 248, 0.12) !important;
  padding: 10px 14px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
}

.portal-badge {
  margin-left: auto !important;
  font-size: 0.68rem !important;
  background: #10b981 !important;
  color: #ffffff !important;
  padding: 2px 8px !important;
  border-radius: 20px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  animation: pulseLive 1.8s infinite !important;
}

.btn-portal-drawer {
  background: linear-gradient(135deg, #06b6d4, #2563eb) !important;
  color: #ffffff !important;
  padding: 13px 20px !important;
  border-radius: 50px !important;
  text-align: center !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3) !important;
  transition: all 0.3s ease !important;
}

.btn-portal-drawer:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.45) !important;
}

/* --- 3. Hero Section (jeet-hero) --- */
.jeet-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.jeet-wrapper {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

@media (min-width: 993px) {
  .jeet-hero {
    padding: 140px 6% 80px !important;
  }

  .jeet-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: clamp(40px, 5vw, 70px) !important;
  }

  .jeet-left {
    flex: 1.1 !important;
  }

  .jeet-right {
    flex: 0.9 !important;
  }
}

@media (max-width: 992px) {
  .jeet-hero {
    padding: 110px 20px 60px !important;
  }

  .jeet-wrapper {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 40px !important;
  }

  .jeet-left {
    width: 100% !important;
  }

  .jeet-tag {
    margin: 0 auto 20px !important;
  }

  .jeet-left h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
  }

  .jeet-left p {
    font-size: 1.05rem !important;
    margin: 0 auto 30px !important;
    max-width: 650px !important;
  }

  .jeet-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 16px !important;
    margin-bottom: 35px !important;
  }

  .jeet-stats {
    display: flex !important;
    justify-content: center !important;
    gap: 35px !important;
    flex-wrap: wrap !important;
  }

  .jeet-right {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    position: relative !important;
  }

  .jeet-image-box {
    width: 100% !important;
    max-width: 520px !important;
    height: clamp(340px, 45vw, 460px) !important;
    margin: 0 auto !important;
  }

  .jeet-card {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .jeet-hero {
    padding: 90px 14px 45px !important;
  }

  .jeet-tag {
    font-size: 0.78rem !important;
    padding: 8px 14px !important;
    gap: 6px !important;
  }

  .jeet-left h1 {
    font-size: clamp(1.75rem, 7.5vw, 2.3rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
  }

  .jeet-left p {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin-bottom: 22px !important;
  }

  .jeet-buttons {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
    margin-bottom: 25px !important;
  }

  .jeet-main-btn,
  .jeet-outline-btn {
    width: 100% !important;
    padding: 13px 20px !important;
    font-size: 0.92rem !important;
    text-align: center !important;
    display: block !important;
  }

  .jeet-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .jeet-stats h2 {
    font-size: clamp(1.35rem, 5vw, 1.7rem) !important;
    margin-bottom: 2px !important;
  }

  .jeet-stats span {
    font-size: clamp(0.68rem, 2.2vw, 0.78rem) !important;
    display: block !important;
    line-height: 1.3 !important;
  }

  .jeet-image-box {
    height: clamp(240px, 58vw, 320px) !important;
    border-radius: 20px !important;
  }
}

/* --- 4. Interactive Stats Section (stats-section) --- */
.stats-section {
  padding: clamp(50px, 7vw, 90px) 0 !important;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
  }
}

@media (max-width: 991px) and (min-width: 577px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .stat-card {
    padding: 22px 14px !important;
    border-radius: 16px !important;
  }

  .stat-card .icon {
    width: 56px !important;
    height: 56px !important;
    font-size: 22px !important;
    margin-bottom: 16px !important;
  }

  .stat-card h2 {
    font-size: clamp(1.6rem, 5vw, 2.1rem) !important;
    margin-bottom: 6px !important;
  }

  .stat-card h4 {
    font-size: clamp(0.78rem, 2.5vw, 0.92rem) !important;
  }
}

@media (max-width: 360px) {
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

/* --- 5. Why Choose Us Section (why-us) --- */
.why-us {
  padding: clamp(50px, 7vw, 100px) 0 !important;
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)) !important;
  gap: clamp(18px, 3vw, 30px) !important;
}

.why-card {
  padding: clamp(28px, 4vw, 45px) clamp(20px, 3vw, 32px) !important;
  border-radius: 22px !important;
}

.section-heading h2 {
  font-size: clamp(1.65rem, 4vw, 2.6rem) !important;
  line-height: 1.3 !important;
}

.section-heading p {
  font-size: clamp(0.92rem, 2vw, 1.05rem) !important;
  line-height: 1.7 !important;
}

@media (max-width: 576px) {
  .why-card {
    padding: 26px 18px !important;
  }

  .why-card .icon-box {
    width: 68px !important;
    height: 68px !important;
    font-size: 26px !important;
    margin-bottom: 18px !important;
  }

  .why-card h3 {
    font-size: 1.25rem !important;
    margin-bottom: 12px !important;
  }

  .why-card p {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    margin-bottom: 18px !important;
  }

  .card-number {
    font-size: 38px !important;
    top: 14px !important;
    right: 18px !important;
  }
}

/* --- 6. Popular Courses Section (popular-courses) --- */
.popular-courses {
  padding: clamp(50px, 7vw, 100px) 0 !important;
  position: relative;
  overflow: hidden;
}

.course-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)) !important;
  gap: clamp(20px, 3vw, 30px) !important;
}

.course-card {
  padding: clamp(26px, 4vw, 38px) !important;
  border-radius: 22px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.course-card h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem) !important;
  margin: 14px 0 !important;
}

.course-card p {
  font-size: clamp(0.88rem, 2vw, 0.95rem) !important;
  line-height: 1.65 !important;
  margin-bottom: 20px !important;
}

@media (max-width: 576px) {
  .course-card {
    padding: 24px 18px !important;
  }

  .course-icon {
    width: 62px !important;
    height: 62px !important;
    font-size: 24px !important;
    margin-bottom: 18px !important;
  }

  .course-badge {
    font-size: 11px !important;
    padding: 6px 14px !important;
  }

  .view-btn {
    width: 100% !important;
    max-width: 320px !important;
    padding: 14px 24px !important;
    font-size: 0.95rem !important;
  }
}

/* --- 7. Career Path Finder Section (course-finder-section) --- */
.course-finder-section {
  padding: clamp(50px, 7vw, 100px) 0 !important;
  position: relative;
  overflow: hidden;
}

.finder-tabs {
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin-bottom: 30px !important;
}

.finder-tab-btn {
  padding: 12px 22px !important;
  border-radius: 50px !important;
  font-size: clamp(0.85rem, 2vw, 0.95rem) !important;
}

.finder-result-box {
  padding: clamp(22px, 4vw, 40px) !important;
  border-radius: 24px !important;
}

@media (max-width: 991px) {
  .finder-card-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .finder-info-side h3 {
    font-size: 1.45rem !important;
  }
}

@media (max-width: 640px) {
  .finder-tabs {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .finder-tab-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 16px !important;
    font-size: 0.88rem !important;
  }

  .finder-highlights {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .finder-action-card {
    padding: 22px 18px !important;
    border-radius: 18px !important;
  }
}

/* --- 8. Digital Services Area (dg-service-area) --- */
.dg-service-area {
  padding: clamp(50px, 7vw, 100px) 0 !important;
  position: relative;
  overflow: hidden;
}

.dg-wrapper {
  width: 100% !important;
  max-width: 1280px !important;
  padding: 0 clamp(16px, 4vw, 32px) !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

@media (min-width: 993px) {
  .dg-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 440px !important;
    gap: clamp(40px, 5vw, 70px) !important;
    align-items: center !important;
  }
}

@media (max-width: 992px) {
  .dg-wrapper {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 35px !important;
  }

  .dg-left {
    text-align: center !important;
  }

  .dg-left h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem) !important;
  }

  .dg-left p {
    font-size: 1rem !important;
    margin: 0 auto 25px !important;
  }

  .dg-list {
    max-width: 600px !important;
    margin: 0 auto 30px !important;
    text-align: left !important;
  }

  .dg-more {
    margin: 0 auto !important;
  }

  .dg-form-box {
    max-width: 500px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
}

@media (max-width: 576px) {
  .dg-form-box {
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }

  .dg-form-box h3 {
    font-size: 1.35rem !important;
    margin-bottom: 20px !important;
  }

  .dg-form-box input,
  .dg-form-box select,
  .dg-form-box textarea {
    padding: 13px 14px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
  }

  .dg-item {
    padding: 13px 16px !important;
    font-size: 0.9rem !important;
    border-radius: 14px !important;
  }
}

/* --- 9. Placements & Wall of Fame (placements-section) --- */
.placements-section {
  padding: clamp(50px, 7vw, 100px) 0 !important;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .placement-stats-ribbon {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    padding: 28px 24px !important;
  }
}

@media (max-width: 991px) and (min-width: 577px) {
  .placement-stats-ribbon {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 22px 18px !important;
  }
}

@media (max-width: 576px) {
  .placement-stats-ribbon {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 18px 12px !important;
    border-radius: 18px !important;
    margin: 25px 0 35px !important;
  }

  .p-stat-item h2 {
    font-size: 1.65rem !important;
  }

  .p-stat-item span {
    font-size: 0.72rem !important;
  }
}

@media (min-width: 1024px) {
  .alumni-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
  }
}

@media (max-width: 1023px) and (min-width: 641px) {
  .alumni-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 640px) {
  .alumni-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .alumni-card {
    border-radius: 20px !important;
  }

  .alumni-photo {
    height: clamp(180px, 40vw, 220px) !important;
  }

  .alumni-info {
    padding: 20px 18px !important;
  }
}

/* --- 10. Testimonials Slider (jm-review-section) --- */
.jm-review-section {
  padding: clamp(50px, 7vw, 100px) 0 !important;
  position: relative;
  overflow: hidden;
}

.jm-card {
  min-width: min(84vw, 340px) !important;
  max-width: 360px !important;
  padding: clamp(22px, 3.5vw, 32px) !important;
  border-radius: 22px !important;
}

@media (max-width: 576px) {
  .jm-heading h2 {
    font-size: 1.75rem !important;
  }

  .jm-card p {
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
  }

  .jm-quote {
    font-size: 30px !important;
    right: 20px !important;
    top: 20px !important;
  }
}

/* --- 11. Director's Message (ceo-message-area) --- */
.ceo-message-area {
  padding: clamp(50px, 7vw, 100px) 0 !important;
  position: relative;
  overflow: hidden;
}

.ceo-container {
  width: 100% !important;
  max-width: 1280px !important;
  padding: 0 clamp(16px, 4vw, 32px) !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

@media (min-width: 992px) {
  .ceo-container {
    display: grid !important;
    grid-template-columns: 340px 1fr !important;
    gap: 45px !important;
    align-items: center !important;
  }
}

@media (max-width: 991px) {
  .ceo-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 35px !important;
  }

  .ceo-profile-card {
    max-width: 420px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  .ceo-message-box {
    padding: clamp(24px, 4vw, 36px) !important;
    border-radius: 22px !important;
  }

  .ceo-message-box h2 {
    font-size: clamp(1.45rem, 3.5vw, 1.9rem) !important;
  }
}

@media (max-width: 640px) {
  .ceo-pillars {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 14px !important;
    margin: 20px 0 !important;
  }

  .ceo-footer {
    flex-direction: column !important;
    text-align: center !important;
    gap: 16px !important;
    align-items: center !important;
  }

  .ceo-cta-btn {
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
  }
}

/* --- 12. Footer Section (jf-footer) --- */
.jf-footer {
  padding-top: clamp(40px, 6vw, 70px) !important;
  position: relative;
  overflow: hidden;
}

.jf-container {
  width: 100% !important;
  max-width: 1280px !important;
  padding: clamp(30px, 5vw, 60px) clamp(16px, 4vw, 32px) !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

@media (min-width: 1024px) {
  .jf-container {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1.5fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 1023px) and (min-width: 641px) {
  .jf-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 35px !important;
  }
}

@media (max-width: 640px) {
  .jf-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 30px 16px !important;
  }

  .jf-visitor-box {
    width: 100% !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
  }

  .jf-visitor-badge {
    flex-direction: column !important;
    width: 100% !important;
    border-radius: 20px !important;
    padding: 16px 14px !important;
    gap: 12px !important;
    text-align: center !important;
  }

  .jf-visitor-counter-main {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .jf-newsletter {
    flex-direction: column !important;
    border-radius: 14px !important;
    background: transparent !important;
    gap: 10px !important;
  }

  .jf-newsletter input {
    border-radius: 12px !important;
    background: #ffffff !important;
    width: 100% !important;
    padding: 13px 16px !important;
  }

  .jf-newsletter button {
    border-radius: 12px !important;
    width: 100% !important;
    padding: 13px !important;
    text-align: center !important;
  }
}

/* --- 13. Dynamic Modal Dialogs --- */
.modal {
  width: min(94vw, 520px) !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  border-radius: 22px !important;
  box-sizing: border-box !important;
}

@media (max-width: 480px) {
  .modal-header h3 {
    font-size: 1.15rem !important;
  }

  .modal-body {
    padding: 20px 16px !important;
  }
}

/* ==========================================================================
   LANGUAGE SWITCHER (ENGLISH / HINDI) STYLES
   ========================================================================== */
.jc-lang-switcher {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  padding: 3px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.jc-lang-pill {
  border: none;
  background: transparent;
  padding: 6px 14px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  line-height: 1;
}

.jc-lang-pill:hover {
  color: #2563eb;
}

.jc-lang-pill.active {
  background: linear-gradient(135deg, #2563eb, #06b6d4) !important;
  color: #ffffff !important;
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.35);
}

/* Mobile Drawer Language Switcher */
.mobile-lang-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 20px;
}

.mobile-lang-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.mobile-lang-label i {
  color: #38bdf8;
}

.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mobile-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
  background: #ffffff !important;
  color: #2563eb !important;
  border-color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* Responsive Scaling for Header Language Pill */
@media (max-width: 992px) {
  .jc-lang-switcher {
    padding: 2px;
  }

  .jc-lang-pill {
    padding: 5px 10px !important;
    font-size: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .jc-lang-pill {
    padding: 4px 8px !important;
    font-size: 0.7rem !important;
  }
}

/* Hide Google Translate top banner & iframe styling to preserve aesthetic */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
}

body {
  top: 0px !important;
  position: static !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

.goog-te-gadget,
#google_translate_element {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* ==========================================================================
   SPECIAL OFFER POP-UP MODAL STYLES
   ========================================================================== */

.offer-popup-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 17, 34, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px;
  overflow-y: auto;
}

.offer-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.offer-popup-card {
  position: relative;
  width: fit-content;
  max-width: min(92vw, 480px);
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px -10px rgba(0, 15, 50, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.2);
  transform: scale(0.85) translateY(24px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.offer-popup-overlay.active .offer-popup-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Close Button */
.offer-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}

.offer-popup-close:hover {
  background: #ef4444;
  border-color: #ffffff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.5);
}

/* Banner Wrap - Auto adapts to image */
.offer-popup-banner-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  line-height: 0;
  overflow: hidden;
}

.offer-popup-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 68vh;
  object-fit: contain;
}

.offer-popup-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(255, 75, 43, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  animation: offerPulse 2s infinite;
  z-index: 20;
}

@keyframes offerPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Content */
.offer-popup-content {
  padding: 10px 14px 10px;
  text-align: center;
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

/* Action Buttons */
.offer-popup-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.offer-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.offer-btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff !important;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.35);
}

.offer-btn-whatsapp:hover {
  background: linear-gradient(135deg, #28e06c, #16a392);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

.offer-btn-call {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #ffffff !important;
  box-shadow: 0 3px 12px rgba(37, 99, 235, 0.3);
}

.offer-btn-call:hover {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}

/* Footer Links */
.offer-popup-footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
  font-size: 0.82rem;
}

.offer-link-more {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.offer-link-more:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.offer-link-dismiss {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.offer-link-dismiss:hover {
  color: #475569;
  background: #f1f5f9;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .offer-popup-card {
    max-width: 94vw;
    border-radius: 16px;
  }

  .offer-popup-img {
    max-height: 60vh;
  }

  .offer-popup-content {
    padding: 10px 10px 8px;
  }

  .offer-popup-actions {
    flex-direction: column;
    gap: 6px;
  }

  .offer-btn {
    padding: 9px 10px;
    font-size: 0.84rem;
  }
}

/* ==========================================================================
   DEDICATED LANDING PAGE STYLES (.lp-...)
   ========================================================================== */

.lp-body {
  background-color: #f8fafc;
  color: #1e293b;
  overflow-x: hidden;
  font-family: var(--font-body);
}

/* Topbar */
.lp-topbar {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-pulse-dot {
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: lpDotPulse 1.8s infinite;
}

@keyframes lpDotPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.lp-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-topbar-right a {
  color: #93c5fd;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.lp-topbar-right a:hover {
  color: #ffffff;
}

.lp-topbar-link {
  background: rgba(255, 255, 255, 0.12);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Header */
.lp-header {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
}

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

.lp-header-badges {
  display: flex;
  gap: 18px;
}

.lp-badge-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.lp-badge-pill i {
  font-size: 1.3rem;
  color: #2563eb;
}

.lp-badge-pill div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.lp-badge-pill strong {
  font-size: 0.82rem;
  color: #0f172a;
}

.lp-badge-pill span {
  font-size: 0.72rem;
  color: #64748b;
}

.lp-header-actions {
  display: flex;
  gap: 10px;
}

.btn-lp-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff !important;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 12px;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
}

.btn-lp-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.btn-lp-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #ffffff !important;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 12px;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all 0.25s ease;
}

.btn-lp-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}

/* ================= HERO SECTION ================= */
.lp-hero {
  position: relative;
  padding: 60px 0 70px;
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
  overflow: hidden;
}

.lp-hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.lp-hero-bg-shapes .shape-1 {
  width: 450px;
  height: 450px;
  background: #93c5fd;
  top: -100px;
  left: -100px;
}

.lp-hero-bg-shapes .shape-2 {
  width: 400px;
  height: 400px;
  background: #bae6fd;
  bottom: -50px;
  right: -50px;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 45px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.lp-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  line-height: 1.2;
  margin-bottom: 18px;
}

.lp-highlight {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
}

.lp-hero-desc {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 24px;
  line-height: 1.6;
}

.lp-usps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.lp-usp-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #334155;
}

.lp-usp-item i {
  color: #10b981;
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.lp-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  width: fit-content;
}

.lp-avatar-stack {
  display: flex;
  align-items: center;
}

.lp-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-left: -8px;
  border: 2px solid #ffffff;
}

.lp-avatar:first-child {
  margin-left: 0;
  background: #10b981;
}

.lp-avatar:nth-child(2) {
  background: #f59e0b;
}

.lp-avatar-count {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  margin-left: -8px;
  border: 2px solid #ffffff;
}

.lp-rating-text .stars {
  color: #f59e0b;
  font-size: 0.85rem;
}

.lp-rating-text span {
  font-size: 0.84rem;
  color: #475569;
}

/* ================= LEAD FORM CARD ================= */
.lp-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1), 0 0 0 1px #e2e8f0;
  position: relative;
}

.lp-form-header {
  text-align: center;
  margin-bottom: 22px;
}

.lp-form-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.lp-form-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  margin-bottom: 4px;
}

.lp-form-header p {
  font-size: 0.85rem;
  color: #64748b;
}

.lp-lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lp-input-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-input-group label i {
  color: #2563eb;
}

.lp-input-group input,
.lp-input-group select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 0.92rem;
  color: #0f172a;
  background: #f8fafc;
  outline: none;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.lp-input-group input:focus,
.lp-input-group select:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.lp-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: #64748b;
}

.lp-form-consent input {
  margin-top: 3px;
  accent-color: #2563eb;
}

.lp-submit-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.lp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.lp-form-secure {
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ================= STATS STRIP ================= */
.lp-stats-strip {
  background: #ffffff;
  padding: 35px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lp-stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
}

.lp-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.lp-stat-text h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  line-height: 1;
  margin-bottom: 3px;
}

.lp-stat-text p {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

/* ================= COURSES SECTION ================= */
.lp-courses-section {
  padding: 80px 0;
  background: #f8fafc;
}

.lp-section-tag {
  display: inline-block;
  background: #dbeafe;
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lp-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 45px;
}

.lp-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.lp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
  border-color: #93c5fd;
}

.lp-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.72rem;
  font-weight: 800;
  background: #f1f5f9;
  color: #475569;
  padding: 4px 10px;
  border-radius: 20px;
}

.lp-card-badge.featured {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
}

.lp-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.rscit-icon { background: #eff6ff; color: #2563eb; }
.tally-icon { background: #f0fdf4; color: #16a34a; }
.web-icon { background: #faf5ff; color: #9333ea; }
.python-icon { background: #fffbeb; color: #d97706; }
.design-icon { background: #fdf2f8; color: #db2777; }
.degree-icon { background: #f0f9ff; color: #0284c7; }

.lp-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  margin-bottom: 8px;
}

.lp-card p {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.5;
}

.lp-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  flex-grow: 1;
}

.lp-card-features li {
  font-size: 0.84rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.lp-card-features li i {
  color: #10b981;
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.lp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  gap: 10px;
}

.lp-card-duration {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-enroll-quick {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.btn-enroll-quick:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* ================= SCHEME SECTION ================= */
.lp-scheme-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: #ffffff;
}

.lp-scheme-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.lp-scheme-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 35px;
  align-items: center;
}

.lp-scheme-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.lp-scheme-poster {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
}

.lp-scheme-tag {
  display: inline-block;
  background: #f59e0b;
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.lp-scheme-details h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 12px;
  line-height: 1.3;
}

.lp-scheme-details p {
  font-size: 0.98rem;
  color: #cbd5e1;
  margin-bottom: 20px;
  line-height: 1.6;
}

.lp-scheme-courses-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.scheme-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 12px;
}

.scheme-item i {
  color: #22c55e;
  font-size: 1.1rem;
}

.scheme-item strong {
  color: #ffffff;
  font-size: 0.92rem;
  margin-right: 6px;
}

.scheme-item span {
  color: #94a3b8;
  font-size: 0.84rem;
}

.lp-scheme-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ================= WHY US SECTION ================= */
.lp-why-us {
  padding: 80px 0;
  background: #ffffff;
}

.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 45px;
}

.lp-why-card {
  padding: 28px 24px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.lp-why-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-color: #93c5fd;
}

.lp-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.lp-why-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  margin-bottom: 8px;
}

.lp-why-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

/* ================= TESTIMONIALS ================= */
.lp-testimonials {
  padding: 80px 0;
  background: #f1f5f9;
}

.lp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 45px;
}

.lp-testi-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lp-testi-card .stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.lp-testi-card p {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
}

.lp-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.lp-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.lp-testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
}

.lp-testi-author span {
  font-size: 0.75rem;
  color: #64748b;
}

/* ================= FAQ SECTION ================= */
.lp-faq-section {
  padding: 70px 0;
  background: #ffffff;
}

.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 35px;
}

.lp-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
}

.lp-faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.lp-faq-question:hover {
  color: #2563eb;
}

.lp-faq-question i {
  color: #64748b;
  transition: transform 0.3s ease;
}

.lp-faq-item.active .lp-faq-question i {
  transform: rotate(180deg);
  color: #2563eb;
}

.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: #ffffff;
}

.lp-faq-item.active .lp-faq-answer {
  max-height: 250px;
  padding: 14px 20px 18px;
  border-top: 1px solid #e2e8f0;
}

.lp-faq-answer p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

/* ================= FINAL CTA ================= */
.lp-final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #ffffff;
}

.lp-cta-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.lp-final-cta h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 10px;
}

.lp-final-cta p {
  font-size: 1.05rem;
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto 30px;
}

.lp-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.lp-btn-primary {
  background: #ffffff;
  color: #1e3a8a;
  border: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  background: #f8fafc;
}

.lp-btn-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.lp-btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #22c55e;
}

.lp-btn-call {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.lp-btn-call:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ================= FOOTER ================= */
.lp-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 40px 0 25px;
}

.lp-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #1e293b;
}

.lp-footer-left strong {
  color: #ffffff;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 4px;
}

.lp-footer-left p {
  font-size: 0.85rem;
  color: #94a3b8;
}

.lp-footer-right {
  display: flex;
  gap: 20px;
}

.lp-footer-right a {
  color: #cbd5e1;
  font-size: 0.88rem;
  text-decoration: none;
}

.lp-footer-right a:hover {
  color: #38bdf8;
}

.lp-footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 20px;
}

/* ================= STICKY MOBILE BAR ================= */
.lp-mobile-bar {
  display: none;
}

@media (max-width: 768px) {
  .lp-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    z-index: 99999;
    padding: 8px 12px;
    gap: 8px;
    border-top: 1px solid #e2e8f0;
  }

  .lp-mob-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
  }

  .lp-mob-wa {
    background: #25D366;
    color: #ffffff !important;
  }

  .lp-mob-demo {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff !important;
  }

  .lp-mob-call {
    background: #1e3a8a;
    color: #ffffff !important;
  }
}

/* Responsive adjustments for Landing Page */
@media (max-width: 992px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-courses-grid,
  .lp-why-grid,
  .lp-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-scheme-grid {
    grid-template-columns: 1fr;
  }

  .lp-header-badges {
    display: none;
  }
}

@media (max-width: 640px) {
  .lp-hero-title {
    font-size: 2rem;
  }

  .lp-courses-grid,
  .lp-why-grid,
  .lp-testi-grid,
  .lp-stats-grid {
    grid-template-columns: 1fr;
  }

  .lp-header-actions span {
    display: none;
  }

  .btn-lp-wa, .btn-lp-call {
    padding: 8px 12px;
  }

  .lp-topbar-right {
    display: none;
  }

  .lp-form-card {
    padding: 22px 18px;
  }
}