/* 
   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: -100%;
  width: 300px;
  height: 100vh;
  background: var(--primary-color);
  z-index: 1001;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: right var(--transition-normal);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

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

.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 */

.jc-header.scroll-active {

  top: 12px;

}

.jc-header.scroll-active .jc-navbar {

  height: 74px;

}

/* 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: none;

  }

  .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: hidden;

}

.jm-track {

  display: flex;

  gap: 35px;

  animation: slideReview 18s infinite linear;

}

.jm-card {

  min-width: 360px;

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

  backdrop-filter: blur(18px);

  padding: 35px;

  border-radius: 30px;

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

  position: relative;

  transition: .4s;

}

.jm-card:hover {

  transform: translateY(-12px);

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

}

.jm-stars {

  color: #FFD700;

  margin-bottom: 20px;

}

.jm-quote {

  position: absolute;

  right: 30px;

  top: 30px;

  font-size: 40px;

  color: #38bdf8;

  opacity: .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;

}

@keyframes slideReview {

  0% {

    transform: translateX(0);

  }

  100% {

    transform: translateX(-395px);

  }

}

@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;

}

.ceo-container {

  width: 90%;

  max-width: 1250px;

  margin: auto;

  display: grid;

  grid-template-columns: 360px 1fr;

  gap: 70px;

  align-items: center;

}

/* Background */

.ceo-bg-shape {

  position: absolute;

  border-radius: 50%;

  filter: blur(80px);

  opacity: .25;

}

.ceo-shape-1 {

  width: 320px;

  height: 320px;

  background: #2563eb;

  left: -120px;

  top: -120px;

}

.ceo-shape-2 {

  width: 260px;

  height: 260px;

  background: #06b6d4;

  right: -100px;

  bottom: -120px;

}

/* Profile */

.ceo-profile-card {

  background: #fff;

  border-radius: 35px;

  padding: 35px;

  text-align: center;

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

  transition: .4s;

}

.ceo-profile-card:hover {

  transform: translateY(-10px);

}

.ceo-photo {

  width: 220px;

  height: 220px;

  margin: auto;

  overflow: hidden;

  border-radius: 50%;

  border: 8px solid #eef4ff;

}

.ceo-photo img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}

.ceo-profile-card h3 {

  margin-top: 25px;

  font-size: 28px;

}

.ceo-profile-card span {

  color: #64748b;

}

.ceo-social {

  margin-top: 25px;

  display: flex;

  justify-content: center;

  gap: 18px;

}

.ceo-social i {

  width: 45px;

  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #eef4ff;

  color: #2563eb;

  cursor: pointer;

  transition: .3s;

}

.ceo-social i:hover {

  background: #2563eb;

  color: #fff;

}

/* Right */

.ceo-message-box {

  background: #fff;

  padding: 50px;

  border-radius: 35px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, .06);

  position: relative;

}

.ceo-tag {

  display: inline-block;

  padding: 8px 18px;

  background: #dbeafe;

  color: #2563eb;

  border-radius: 40px;

  font-weight: 600;

  margin-bottom: 20px;

}

.ceo-message-box h2 {

  font-size: 46px;

  line-height: 1.2;

  margin-bottom: 30px;

}

.ceo-message-box h2 span {

  color: #2563eb;

}

.ceo-quote-icon {

  font-size: 55px;

  color: #2563eb;

  opacity: .15;

  margin-bottom: 20px;

}

.ceo-message-box p {

  font-size: 18px;

  line-height: 1.9;

  color: #64748b;

  margin-bottom: 25px;

}

.ceo-footer {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-top: 35px;

  padding-top: 25px;

  border-top: 1px solid #e5e7eb;

}

.ceo-footer h4 {

  font-size: 22px;

}

.ceo-footer span {

  color: #64748b;

}

.ceo-footer a {

  padding: 15px 30px;

  border-radius: 40px;

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

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  transition: .3s;

}

.ceo-footer a:hover {

  transform: translateY(-5px);

}

@media(max-width:991px) {

  .ceo-container {

    grid-template-columns: 1fr;

  }

  .ceo-profile-card {

    max-width: 420px;

    margin: auto;

  }

}

@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;
}