/* =========================================
   ITSY AI – Main Stylesheet
   ITSY Infotech, Bilaspur, Chhattisgarh
   ========================================= */

:root {
  --cyan: #00f5ff;
  --purple: #7b2ff7;
  --pink: #ff2d78;
  --gold: #ffd700;
  --dark: #020412;
  --dark2: #060b1e;
  --dark3: #0a1128;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(0, 245, 255, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--dark);
  color: #e0e8ff;
  overflow-x: hidden;
}

/* ─── ANIMATED GRID BG ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5%;
  background: rgba(2, 4, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

.nav-logo span {
  color: var(--pink);
  -webkit-text-fill-color: var(--pink);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav ul a {
  text-decoration: none;
  color: #a0b0d0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s;
  text-transform: uppercase;
}

nav ul a:hover {
  color: var(--cyan);
}

.nav-cta {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 245, 255, 0.4);
  color: #000 !important;
}

/* ─── HAMBURGER BUTTON ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10000;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 5% 40px;
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.25), transparent 70%);
  top: -100px;
  left: -100px;
  animation: float1 8s ease-in-out infinite;
}

.orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.2), transparent 70%);
  bottom: -80px;
  right: -80px;
  animation: float2 10s ease-in-out infinite;
}

.orb3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 45, 120, 0.15), transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float1 6s ease-in-out infinite reverse;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.3);
  color: var(--cyan);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease forwards;
}

.hero h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero h1 .line1 {
  color: #ffffff;
}

.hero h1 .line2 {
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite, fadeInUp 0.9s ease 0.3s both;
}

.hero-sub {
  font-size: 1.2rem;
  color: #8090b0;
  max-width: 540px;
  margin: 0 0 32px 0;
  font-weight: 400;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-sub b {
  color: var(--cyan);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-pills {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 245, 255, 0.15);
  padding: 10px 20px;
  border-radius: 50px;
}

.hero-pill .pill-icon {
  font-size: 1.2rem;
}

.hero-pill .pill-text {
  font-size: 0.85rem;
  color: #8090c0;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  animation: float1 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(0, 245, 255, 0.2));
}

/* ─── BUTTONS ─── */
.btn-primary {
  padding: 14px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
  text-transform: uppercase;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 245, 255, 0.45);
}

.btn-outline {
  padding: 14px 36px;
  border-radius: 50px;
  background: transparent;
  color: var(--cyan);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid var(--cyan);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  text-transform: uppercase;
}

.btn-outline:hover {
  background: rgba(0, 245, 255, 0.1);
  transform: translateY(-3px);
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--dark2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 30px 5%;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

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

.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #6070a0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ─── SECTIONS COMMON ─── */
section {
  position: relative;
  z-index: 1;
  padding: 80px 5%;
}

.section-tag {
  display: inline-block;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title span {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  color: #7080a0;
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ─── TOOLS SECTION ─── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tool-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(123, 47, 247, 0.05));
  opacity: 0;
  transition: opacity 0.4s;
}

.tool-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
}

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

.tool-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
  animation: iconPulse 3s ease-in-out infinite;
}

.tool-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.tool-desc {
  font-size: 0.82rem;
  color: #6070a0;
  line-height: 1.5;
}

.tool-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tag-ai {
  background: rgba(0, 245, 255, 0.1);
  color: var(--cyan);
}

.tag-design {
  background: rgba(255, 45, 120, 0.1);
  color: var(--pink);
}

.tag-video {
  background: rgba(123, 47, 247, 0.1);
  color: #a855f7;
}

.tag-write {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
}

/* ─── WEBINAR SECTION ─── */
.webinar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.webinar-card {
  background: linear-gradient(135deg, var(--dark3), var(--dark2));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.webinar-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
  box-shadow: 0 24px 60px rgba(255, 45, 120, 0.15);
}

.webinar-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.webinar-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.webinar-tag {
  color: #7aff6e;
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.webinar-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.webinar-title span {
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.webinar-desc {
  font-size: 0.88rem;
  color: #7080a0;
  line-height: 1.6;
}

.webinar-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.price-new {
  font-family: 'Orbitron', monospace;
  font-size: 2.2rem;
  font-weight: 900;
  color: #7aff6e;
}

.price-only {
  font-size: 0.85rem;
  color: #6070a0;
}

.price-off {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.price-old {
  color: #4050a0;
  text-decoration: line-through;
  font-size: 1rem;
}

.webinar-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.wf-item {
  font-size: 0.82rem;
  color: #8090b0;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.webinar-date {
  font-size: 0.9rem;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 8px;
}

.webinar-seats {
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
  animation: shimmer 2s linear infinite;
  background: linear-gradient(90deg, var(--gold), var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
}

.webinar-btn {
  width: 100%;
  text-align: center;
  display: block;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .webinar-features {
    grid-template-columns: 1fr;
  }

  .webinar-card {
    padding: 24px 18px;
  }
}

/* ─── COURSES ─── */
.courses-section {
  background: linear-gradient(180deg, var(--dark), var(--dark2));
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.course-card {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(123, 47, 247, 0.2);
  border-color: var(--purple);
}

.course-card-top {
  padding: 30px 28px 20px;
  position: relative;
}

.course-num {
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 245, 255, 0.08);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.course-icon-big {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.course-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.course-desc {
  font-size: 0.9rem;
  color: #7080a0;
  line-height: 1.6;
  margin-bottom: 18px;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.course-chip {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
}

.course-chip-cyan {
  background: rgba(0, 245, 255, 0.08);
  color: var(--cyan);
}

.course-chip-purple {
  background: rgba(123, 47, 247, 0.1);
  color: #a855f7;
}

.course-chip-pink {
  background: rgba(255, 45, 120, 0.1);
  color: var(--pink);
}

.course-meta {
  display: flex;
  gap: 16px;
  padding: 16px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: space-between;
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #6070a0;
}

.course-meta-item span {
  color: var(--cyan);
  font-weight: 700;
}

.badge-popular {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-new {
  background: linear-gradient(135deg, #00f5ff, #7b2ff7);
}

/* ─── WHY CHOOSE ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.why-card:hover {
  border-color: rgba(123, 47, 247, 0.5);
  transform: translateY(-4px);
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
  transform: scaleX(0);
  transition: transform 0.4s;
}

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

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.why-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.why-text {
  font-size: 0.88rem;
  color: #6070a0;
  line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.testi-section {
  background: var(--dark2);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.testi-card {
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: all 0.4s;
}

.testi-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 16px 50px rgba(0, 245, 255, 0.1);
}

.testi-quote {
  font-size: 3rem;
  color: var(--cyan);
  opacity: 0.3;
  font-family: serif;
  line-height: 1;
  margin-bottom: 8px;
}

.testi-text {
  font-size: 0.95rem;
  color: #9090b0;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  font-weight: 700;
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.testi-role {
  font-size: 0.78rem;
  color: #6070a0;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

/* ─── ENROLL CTA ─── */
.enroll-section {
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.15), rgba(0, 245, 255, 0.1));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.enroll-section::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--cyan), var(--purple), var(--pink));
  z-index: -1;
  opacity: 0.3;
}

.enroll-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
}

.enroll-sub {
  color: #8090b0;
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.enroll-sub b {
  color: var(--cyan);
}

.enroll-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.enroll-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.enroll-form input:focus {
  border-color: var(--cyan);
}

.enroll-form input::placeholder {
  color: #5060a0;
}

.enroll-address {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #4050a0;
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--dark2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-text {
  font-size: 0.92rem;
  color: #8090b0;
  line-height: 1.5;
}

.contact-text b {
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.contact-form {
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
}

.contact-form h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #4050a0;
}

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

.btn-full {
  width: 100%;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--glass-border);
  padding: 40px 5% 24px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand p {
  color: #5060a0;
  font-size: rem;
  max-width: 260px;
  line-height: 1.6;
  margin-top: 10px;
}

.footer-links h4 {
  color: var(--cyan);
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Orbitron', monospace;
}


.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #6070a0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--cyan);
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: #4050a0;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--cyan);
  text-decoration: none;
}

/* ─── SOCIAL LINKS ─── */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6070a0;
  transition: all 0.3s;
  text-decoration: none;
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

.social-btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 245, 255, 0.3);
}

/* ─── GLOW LINE ─── */
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
  position: relative;
  z-index: 1;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  overflow: hidden;
  background: rgba(0, 245, 255, 0.03);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5060a0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ─── FLOATING PARTICLES ─── */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat linear infinite;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ─── ANIMATIONS ─── */
@keyframes float1 {

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

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

@keyframes float2 {

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

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

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

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

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════
   WEBINAR SECTION
   ═══════════════════════════════ */
.ws-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.ws-card {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  min-width: unset !important;
}

.ws-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 20px 50px rgba(0, 245, 255, 0.1);
}

.ws-banner {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  min-height: 60px;
}

.ws-banner-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.ws-topic {
  font-size: 0.75rem;
  color: #8090b0;
}

.ws-cert {
  font-size: 0.72rem;
  color: #a0b0d0;
  white-space: nowrap;
}

.ws-btitle {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.2;
}

.ws-timerow {
  display: inline-flex;
  gap: 10px;
  font-size: 0.72rem;
  color: #a0b0d0;
  background: rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 50px;
  flex-wrap: wrap;
  width: fit-content;
}

.ws-banner-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.ws-bimg-center {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.ws-body {
  padding: 18px;
  background: var(--dark2);
  border-top: 1px solid var(--glass-border);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ws-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.ws-desc {
  font-size: 0.82rem;
  color: #7080a0;
  line-height: 1.6;
  margin-bottom: 10px;
}

.ws-meta {
  font-size: 0.78rem;
  color: #8090b0;
  margin-bottom: 4px;
}

.ws-dur {
  color: var(--cyan);
  font-weight: 600;
}

.ws-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}

.ws-tag-item {
  padding: 3px 10px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.68rem;
  color: #8090b0;
  background: rgba(255, 255, 255, 0.02);
}

.ws-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ws-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.ws-old {
  text-decoration: line-through;
  font-size: 0.95rem;
  color: #4050a0;
}

.ws-free {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: 900;
  color: #22c55e;
}

.ws-paid {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
}

.ws-btn {
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  background: var(--cyan);
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.ws-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 245, 255, 0.3);
}

.ws-nav {
  max-width: 500px;
  margin: 16px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ws-arr {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.ws-arr:hover {
  background: rgba(0, 245, 255, 0.1);
  border-color: var(--cyan);
}

.ws-dots {
  display: flex;
  gap: 6px;
}

.ws-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--glass-border);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.3s;
}

.ws-dot.active {
  background: var(--cyan);
  width: 20px;
  border-radius: 4px;
}

/* ─── FOOTER LINKS HOVER ─── */
.footer-links h4 {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff2d78, #ffd700, #00f5ff);
  transition: width 0.4s ease;
}

.footer-links h4:hover::after {
  width: 100%;
}

.footer-links ul li a {
  position: relative;
  display: inline-block;
}

.footer-links ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff2d78, #ffd700, #00f5ff);
  transition: width 0.4s ease;
}

.footer-links ul li a:hover {
  background: linear-gradient(90deg, #ff2d78, #ffd700, #00f5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links ul li a:hover::after {
  width: 100%;
}

/* =========================================
   MOBILE – Ek hi clean media query block
   ========================================= */
@media (max-width: 768px) {

  /* NAV */
  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(2, 4, 18, 0.99);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  nav ul.open {
    display: flex;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul a {
    display: block;
    padding: 20px 0;
    font-size: 1.4rem;
    color: #fff;
    border-bottom: 1px solid rgba(0, 245, 255, 0.08);
  }

  nav ul a:hover {
    color: var(--cyan);
  }

  .nav-cta {
    margin-top: 20px;
    display: inline-block !important;
    width: auto !important;
    padding: 12px 32px !important;
    border-radius: 50px !important;
  }

  /* HERO */
  .hero {
    padding: 80px 4% 30px;
  }

  .hero-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 240px;
  }

  .hero-text {
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .hero-sub {
    font-size: 1rem;
    margin: 0 auto 24px;
  }

  .hero-buttons {
    justify-content: center;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    padding: 11px 24px;
    font-size: 0.9rem;
  }

  .hero-pills {
    justify-content: center;
    gap: 8px;
  }

  .hero-pill {
    padding: 8px 14px;
  }

  .hero-pill .pill-text {
    font-size: 0.78rem;
  }

  /* STATS */
  .stats-strip {
    gap: 20px;
    padding: 20px 4%;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  /* SECTIONS */
  section {
    padding: 50px 4%;
  }

  .section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

  /* TOOLS */
  .tools-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 10px;
  }

  .tool-card {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .tool-icon {
    margin-bottom: 0;
    animation: none;
  }

  .tool-icon img {
    width: 64px !important;
    height: 64px !important;
    object-fit: contain;
    border-radius: 16px;
  }

  .fallback-icon {
    font-size: 3rem !important;
  }

  .tool-name {
    font-size: 0.95rem;
    margin-bottom: 0;
  }

  .tool-desc {
    display: none;
  }

  .tool-tag {
    font-size: 0.65rem;
    padding: 2px 8px;
  }

  /* COURSES */
  .courses-grid {
    grid-template-columns: 1fr;
  }

  /* WHY */
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .why-card {
    padding: 20px 16px;
  }

  /* TESTIMONIALS */
  .testi-grid {
    grid-template-columns: 1fr;
  }

  /* ENROLL */
  .enroll-section {
    padding: 36px 20px;
  }

  .enroll-form {
    flex-direction: column;
  }

  .enroll-form input {
    min-width: unset;
    width: 100%;
  }

  /* CONTACT */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* FOOTER */
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

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

  /* WEBINAR */
  .ws-grid {
    display: flex !important;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0 !important;
  }

  .ws-card {
    min-width: 100% !important;
  }

  #wsNav {
    display: flex !important;
  }

}