* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary: #ff8b00;
  --light-primary: #ff8b0066;
  --black: #000000;
  --light-black: #000000aa;
  --gray: #666666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --light-white: #ffffff33;
}

body {
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-y: scroll;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 160px;
  background: var(--primary);
  position: relative;
  z-index: 1000;
}

.logo-link {
  text-decoration: none;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

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

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 10px;
}

.hamburger span:nth-child(2) {
  width: 20px;
}

.hamburger span:nth-child(3) {
  width: 22px;
}

.drawer {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border: 1px dashed var(--light-primary);
  gap: 20px;
  transition: right 0.35s ease;
  z-index: 1100;
}

.drawer a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  background-color: var(--light-gray);
  color: var(--black);
  padding: 10px 20px;
  border-radius: 15px;
  border: 1px dashed var(--light-primary);
}

.drawer.active {
  right: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1050;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* 
   HERO + DOODLES
 */
.split-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 90px 160px;
  background: radial-gradient(
    circle at right top,
    var(--light-primary),
    var(--white) 40%
  );
  overflow: hidden;
}

.split-hero::before {
  content: "</>";
  position: absolute;
  top: 40px;
  left: 60px;
  font-size: 120px;
  color: var(--light-gray);
  font-weight: 700;
  animation: float 6s ease-in-out infinite;
}

.split-hero::after {
  content: "{}";
  position: absolute;
  bottom: 20px;
  right: 60px;
  font-size: 140px;
  color: var(--light-primary);
  font-weight: 700;
  animation: float 6s ease-in-out infinite;
}

.hero-text,
.hero-image {
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-text .highlight {
  color: var(--primary);
  text-decoration: underline;
}

.hero-text .hero-tagline {
  display: inline-block;
  margin: 12px 0 18px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--light-gray);
  border-radius: 50px;
  background: var(--light-gray);
}

.hero-text p {
  font-size: 18px;
  color: var(--gray);
  max-width: 520px;
}

.hero-text .btn-container {
  display: flex;
  gap: 20px;
}

.hero-image img {
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  display: block;
  border-radius: 20px;
  background: var(--light-gray);
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
  outline: 1px dashed var(--primary);
  outline-offset: 12px;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 100px;
  font-weight: 600;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px var(--light-primary);
}

/* 
   YT STATS
 */
.yt-stats {
  padding: 60px 160px;
  background: linear-gradient(135deg, var(--primary), var(--primary));
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 35px;
  color: var(--white);
}

.yt-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.yt-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #eaeaea;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.yt-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.yt-card h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.yt-card h3 {
  font-size: 22px;
}

.yt-card p {
  margin-top: 8px;
  color: var(--gray);
}

.yt-card.highlight {
  background: var(--primary);
  color: var(--black);
}

.yt-card.highlight h2 {
  color: var(--black);
}

/* 
   SECTIONS
 */
.section {
  padding: 70px 20px;
  text-align: center;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 35px;
}

/* 
   CARDS
 */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

.card {
  padding: 30px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: var(--white);
  font-size: 18px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.card span {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
}

/* 
   HOW JITCODE WORKS
 */
.jitcode-work {
  padding: 60px 160px;
  background: var(--white);
  text-align: center;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 50px;
  color: var(--gray);
  font-size: 16px;
}

.work-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.work-card {
  background: var(--white);
  border-radius: 18px;
  padding: 35px 25px;
  position: relative;
  border: 1px solid #e5e5e5;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.work-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.work-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.work-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

.step {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

/* 
   WHAT YOU'LL GAIN
 */
.jitcode-gain {
  padding: 60px 160px;
  background: var(--primary);
  text-align: center;
}

.jitcode-gain .section-heading {
  color: var(--white);
}

.jitcode-gain .section-desc {
  color: var(--white);
}

.gain-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.gain-card {
  background: var(--white);
  border-radius: 18px;
  padding: 35px 25px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gain-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.gain-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.gain-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary);
}

.gain-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* 
   YOUTUBE VIDEO BACKGROUND
 */
.yt-video-cta {
  position: relative;
  height: 85vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

/* Video container */
.yt-video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

/* YouTube iframe trick */
.yt-video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* acts like background */
}

/* Dark overlay */
.yt-overlay {
  position: absolute;
  inset: 0;
  background: var(--light-black);
  z-index: 2;
}

/* Content */
.yt-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.yt-content h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
}

.yt-content p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* FOOTER */
.jitcode-footer {
  background: var(--white);
  color: var(--white);
  padding: 70px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
}

.footer-brand h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  text-align: left;
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary);
}

.footer-links a,
.footer-links p {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
}

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

/* 
   SOCIAL ICONS
 */
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--white);
  border: 1px solid var(--primary);
  color: var(--primary);
  transform: translateY(-4px);
}

/* 
   FOOTER BOTTOM
 */
.footer-bottom {
  background-color: var(--primary);
  text-align: center;
  font-size: 14px;
  color: var(--white);
  padding: 10px;
}

/* 
   COURSES PAGE
 */
.courses-hero {
  position: relative;
  padding: 90px 160px;
  text-align: center;
  background: radial-gradient(
    circle at center bottom,
    var(--light-primary),
    var(--white) 60%
  );
  overflow: hidden;
}

.courses-hero::before {
  content: "</>";
  position: absolute;
  top: 30px;
  left: 60px;
  font-size: 120px;
  font-weight: 700;
  color: var(--light-gray);
  opacity: 0.6;
}

.courses-hero h1,
.courses-hero p {
  position: relative;
  z-index: 1;
}

.courses-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: var(--black);
}

.courses-hero p {
  font-size: 18px;
  color: var(--gray);
}

.courses-section {
  position: relative;
  padding: 10px 160px;
  background: radial-gradient(
    circle at center top,
    var(--light-primary),
    var(--white) 50%
  );
}

.courses-section::after {
  content: "{}";
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 140px;
  font-weight: 700;
  color: var(--light-primary);
  opacity: 0.5;
}

.courses-grid {
  max-width: 1100px;
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  justify-items: center;
}

.course-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid var(--light-primary);
  transition: 0.3s;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--light-primary);
}

.course-card i {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 15px;
}

.courses-syllabus {
  padding: 60px 160px;
  text-align: center;
  background:
    radial-gradient(
      circle at left center,
      var(--light-primary),
      transparent 18%
    ),
    radial-gradient(
      circle at right center,
      var(--light-primary),
      transparent 18%
    ),
    var(--white);
}

.courses-syllabus h2 {
  color: var(--primary);
  font-size: 42px;
}

.section-desc {
  max-width: 650px;
  margin: 0 auto 40px;
  color: var(--gray);
}

.syllabus-container {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.syllabus-item {
  border-radius: 14px;
  margin-bottom: 18px;
  background: var(--white);
  border: 1px solid var(--light-primary);
  border-style: dashed;
  overflow: hidden;
}

.syllabus-header {
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.syllabus-content {
  height: 0;
  overflow: hidden;
  padding: 0 20px;
  border-top: 1px solid var(--light-gray);
}

.download-btn-container {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.download-btn {
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 10px 18px;
  background: #ff8b00;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: small;
}

.download-btn-outline {
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 10px 18px;
  background: #fff;
  color: #ff8b00;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: small;
  border: 1px solid #ff8b00;
}

.courses-why {
  margin-top: 80px;
  position: relative;
  padding: 60px 160px;
  background: var(--primary);
  text-align: center;
}

.courses-why h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--white);
}

.why-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.why-card {
  padding: 30px 25px;
  background: var(--white);
  border-radius: 18px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.why-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.courses-cta {
  position: relative;
  padding: 60px 160px;
  text-align: center;
  color: var(--white);

  background:
    linear-gradient(var(--light-primary), var(--light-black)),
    linear-gradient(var(--light-black), var(--light-black)),
    url("./images/coursesBack.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
}

.courses-cta h2 {
  font-size: 42px;
  margin-bottom: 12px;
}

.courses-cta p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-split {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  background: radial-gradient(
    circle at center top,
    var(--light-primary),
    var(--white) 65%
  );
  z-index: 1;
}

.about-split::before {
  content: ";";
  position: absolute;
  top: -40px;
  left: -50px;
  font-size: 140px;
  color: var(--light-gray);
  font-weight: 700;
  animation: float 6s ease-in-out infinite;
}

.about-split::after {
  content: "{}";
  position: absolute;
  bottom: -40px;
  right: -50px;
  font-size: 140px;
  color: var(--light-primary);
  font-weight: 700;
  animation: float 10s ease-in-out infinite;
}

.about-text {
  text-align: left;
}

.about-image img {
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  display: block;
  border-radius: 18px;
  background: var(--white);
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px var(--light-primary));
  outline: 1px dashed var(--primary);
  outline-offset: 12px;
}

/* Text helpers */
.text {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  color: var(--gray);
}

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

.about-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.section.light {
  background: var(--primary);
}

.section.light h2 {
  color: var(--white);
}

.section.light .text {
  color: var(--light-gray);
}

.section.gradient {
  background:
    radial-gradient(
      circle at left center,
      var(--light-primary),
      transparent 18%
    ),
    radial-gradient(
      circle at right center,
      var(--light-primary),
      transparent 18%
    ),
    var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--black);
}

.about-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.about-box {
  background: var(--white);
  padding: 35px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-dual .about-box .about-text {
  margin-bottom: 15px;
  color: var(--primary);
  text-align: center;
}

.about-box .about-para-text {
  margin: 0;
  color: var(--black);
  text-align: center;
}

/* Contact Page */

.contact-section {
  position: relative;
  padding: 0px 120px 80px;
  background: radial-gradient(
    circle at center top,
    var(--light-primary),
    var(--white) 55%
  );
  overflow: hidden;
}

.contact-hero::after {
  content: "{}";
  position: absolute;
  bottom: 0px;
  right: 60px;
  font-size: 120px;
  font-weight: 700;
  color: var(--light-primary);
  animation: float 4s ease-in-out infinite;
}

.contact-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background: var(--white);
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0;
  font-size: 15px;
}

.contact-item i {
  color: var(--primary);
  font-size: 18px;
}

.contact-item a {
  color: var(--gray);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease-in-out;
}

.contact-item a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form form {
  background: var(--white);
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.whatsapp-box {
  background: var(--white);
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.whatsapp-btn {
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-top: 25px;
}

.whatsapp-btn i {
  font-size: 20px;
}

.whatsapp-btn:hover {
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-note {
  margin-top: 15px;
  font-size: 14px;
  color: var(--gray);
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* =========================
   SERVICES PAGE (THEMED)
========================= */

.services-hero-custom {
  padding: 40px 160px;
  text-align: center;
  background: radial-gradient(
    circle at center bottom,
    var(--light-primary),
    var(--white) 60%
  );
}

.services-hero-custom h1 {
  font-size: 42px;
}

.services-hero-custom p {
  margin-top: 10px;
  color: var(--gray);
}

/* FILTER */
.services-filter-custom {
  background: radial-gradient(
    ellipse at center top,
    var(--light-primary),
    var(--white) 40%
  );
  text-align: center;
  padding: 20px 20px;
}

.services-filter-custom .filter-btn {
  background: var(--white);
  border: 1px solid var(--light-primary);
  color: var(--black);
  font-weight: 600;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.services-filter-custom .filter-btn.active,
.services-filter-custom .filter-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* GRID */
.services-grid-custom {
  max-width: 1100px;
  margin: auto;
  padding: 10px 160px 80px 160px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.service-box {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 18px;
  border: 1px solid var(--light-primary);
  transition: 0.3s;
  position: relative;
}

.service-box span {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.service-box h3 {
  margin-bottom: 12px;
}

.service-box p {
  color: var(--gray);
  font-size: 15px;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px var(--light-primary);
}

/* CTA */
.services-cta-custom {
  text-align: center;
  padding: 80px 160px;
  background:
    linear-gradient(var(--light-primary), var(--light-black)),
    linear-gradient(var(--light-black), var(--light-black)),
    url("./images/coursesBack.jpg");
  color: var(--white);
}

.services-cta-custom h2 {
  margin-bottom: 20px;
}

/* Tablet Device */
@media (max-width: 1024px) {
  .header {
    padding: 18px 100px;
  }

  .hero-image {
    display: none;
  }

  .about-image {
    display: none;
  }

  .split-hero,
  .about-split {
    padding: 90px 100px;
    display: flex;
  }

  .courses-hero {
    padding: 90px 100px;
  }

  .courses-section,
  .contact-section {
    padding: 10px 100px;
    background: radial-gradient(
      circle at center top,
      var(--light-primary),
      var(--white) 40%
    );
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
    padding-bottom: 60px;
  }

  .split-hero::after,
  .contact-hero::after {
    font-size: 100px;
  }

  .about-split::after {
    display: none;
  }

  .split-hero::before,
  .courses-hero::before {
    font-size: 100px;
  }

  .about-split::before {
    display: none;
  }

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

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

  .hero-text h1,
  p {
    text-align: center;
  }

  .yt-stats,
  .jitcode-work,
  .jitcode-gain,
  .courses-why,
  .courses-syllabus,
  .courses-cta {
    padding: 60px 100px;
  }

  .yt-content,
  .courses-why,
  .courses-syllabus,
  .courses-cta h2 {
    font-size: 28px;
  }

  .yt-content,
  .courses-cta.cta-content,
  .courses-syllabus p {
    font-size: 14px;
  }

  .courses-section::after {
    display: none;
  }

  .about-dual {
    display: flex;
    flex-direction: column;
  }

  .services-hero-custom,
  .services-grid-custom,
  .services-cta-custom {
    padding: 20px 100px;
  }
}

/* Standard Mobile */
@media (max-width: 768px) {
  .header {
    padding: 18px 80px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .split-hero,
  .courses-hero {
    padding: 90px 80px;
  }

  .courses-section,
  .contact-section {
    padding: 10px 80px;
    background: radial-gradient(
      circle at center top,
      var(--light-primary),
      var(--white) 20%
    );
  }

  .split-hero::after,
  .contact-hero::after {
    font-size: 60px;
  }

  .split-hero::before,
  .courses-hero::before {
    font-size: 60px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .btn {
    font-size: 10px;
  }

  .yt-stats,
  .jitcode-work,
  .jitcode-gain,
  .courses-why,
  .courses-syllabus,
  .courses-cta {
    padding: 60px 80px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-heading {
    font-size: 28px;
  }

  .section-desc {
    font-size: 16px;
  }

  .section {
    padding: 40px 20px;
  }

  .section h2 {
    font-size: 28px;
  }

  .syllabus-header {
    font-size: 16px;
  }

  .syllabus-content iframe {
    display: none;
  }

  .services-hero-custom,
  .services-grid-custom,
  .services-cta-custom {
    padding: 20px 80px;
  }

  .services-hero-custom h1 {
    font-size: 32px;
  }

  .services-filter-custom {
    background: radial-gradient(
      ellipse at center top,
      var(--light-primary),
      var(--white) 50%
    );
  }
}

/* Small Device */
@media (max-width: 480px) {
  .header {
    padding: 18px 40px;
  }

  .split-hero,
  .courses-hero {
    padding: 90px 40px;
  }

  .split-hero::after,
  .contact-hero::after {
    font-size: 40px;
  }

  .split-hero::before,
  .courses-hero::before {
    font-size: 40px;
  }

  .yt-stats,
  .jitcode-work,
  .jitcode-gain,
  .courses-why,
  .courses-syllabus,
  .courses-cta {
    padding: 60px 40px;
  }

  .courses-section {
    padding: 10px 40px;
    background: radial-gradient(
      circle at center top,
      var(--light-primary),
      var(--white) 15%
    );
  }

  .syllabus-header {
    font-size: 14px;
  }

  .services-filter-custom {
    background: radial-gradient(
      ellipse at center top,
      var(--light-primary),
      var(--white) 60%
    );
  }

  .services-hero-custom,
  .services-grid-custom,
  .services-cta-custom {
    padding: 20px 40px;
  }
}
