:root {
  --primary-color: #6108bc;
  --secondary-color: #140626;
  --light-font: #fff;
  --light-gray: #f0f1f0;

  /* New AI Theme Variables */
  --primary-gradient: linear-gradient(135deg, #6108bc 0%, #8b5cf6 50%, #a855f7 100%);
  --accent-cyan: #06b6d4;
  --accent-pink: #ec4899;
  --neon-glow: 0 0 20px rgba(97, 8, 188, 0.5);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: 10px;
}

/* ============== GLASSMORPHISM STYLES ============== */
.glass-card {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(97, 8, 188, 0.1) !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 32px rgba(97, 8, 188, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(97, 8, 188, 0.25);
}

.glass-card-dark {
  background: rgba(20, 6, 38, 0.9) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(97, 8, 188, 0.3) !important;
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 30px;
}

/* ============== AI BADGE ============== */
.ai-badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #06b6d4 0%, #6108bc 100%);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 5px rgba(6, 182, 212, 0.5); }
  50% { box-shadow: 0 0 20px rgba(6, 182, 212, 0.8); }
}

/* ============== GRADIENT TEXT ============== */
.heading-xl {
  font-size: 48px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
}

.heading-gradient {
  background: linear-gradient(135deg, #6108bc 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============== CTA PULSE ANIMATION ============== */
.cta-pulse {
  animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(97, 8, 188, 0.4);
  }
  50% {
    box-shadow: 0 4px 35px rgba(97, 8, 188, 0.7);
  }
}

/* ============== AI PARTICLES BACKGROUND ============== */
.ai-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.ai-particles::before,
.ai-particles::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 8, 188, 0.15) 0%, transparent 70%);
  animation: float-particle 15s linear infinite;
}

.ai-particles::before {
  top: 10%;
  left: 10%;
}

.ai-particles::after {
  bottom: 20%;
  right: 10%;
  animation-delay: -7s;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
}

@keyframes float-particle {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  25% {
    transform: translateY(-30px) translateX(20px) scale(1.1);
  }
  50% {
    transform: translateY(0) translateX(40px) scale(1);
  }
  75% {
    transform: translateY(30px) translateX(20px) scale(0.9);
  }
}

/* ============== ENHANCED HERO SECTION ============== */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #140626 100%) !important;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(97, 8, 188, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 40%);
  z-index: 0;
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

html {
  scroll-behavior: smooth;
}

* {
  font-family: Poppins, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Work Sans", sans-serif !important;
}

h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 * {
  font-family: "Work Sans", sans-serif !important;
}

.primary-text {
  color: var(--primary-color);
}

.theme-light-bg {
  background-color: var(--light-gray) !important;
}

.theme-light-bg-2 {
  background-color: rgb(246, 246, 248);
}

.crown-text {
  position: relative;
}

.crown-text::before {
  content: "";
  width: 35px;
  height: 47px;
  left: -27px;
  top: 0px;
  background-image: url("../webimages/crown-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 8888;
  position: absolute;
}

.new-mark {
  background-image: url("../webimages/mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 5px;
}

.secondary-text {
  color: var(--secondary-color);
}

span.money-back {
  position: relative;
}

span.money-back::before {
  content: "";
  width: 87px;
  height: 100px;
  position: absolute;
  left: -102px;
  transform: rotate(-30deg);
  top: -163px;
  background-image: url("../webimages/money-back.webp");
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* *************** Blinking Button Styles **************** */
.theme-btn-blink {
  border-radius: 50px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.3) 2px 3px 4px;
  padding: 7px 17px;
  color: #fff !important;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s, color 0.4s, transform 0.4s;
  display: inline-block;
}

/* Combined animation: blink, glow, and jiggle */
.blinking-button {
  animation: blink-bg 1s infinite alternate, glow 2s infinite ease-in-out,
    jiggle 3s infinite ease-in-out;
  color: #fff !important;
  border: none;
}

/* Background blinking */
@keyframes blink-bg {
  0% {
    background-color: #6108bc;
  }

  100% {
    background-color: #f9c700;
  }
  /* yellow */
}

/* Optional glow effect */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px #fff;
  }
  50% {
    box-shadow: 0 0 20px #f9c700;
  }
  100% {
    box-shadow: 0 0 5px #fff;
  }
}

/* Optional subtle jiggle */
@keyframes jiggle {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(2px);
  }
  75% {
    transform: translateX(-1px);
  }
  100% {
    transform: translateX(0);
  }
}

small.full {
  background: #df3f3f !important;
  color: white !important;
  padding: 3px;
  border-radius: 8px;
  box-shadow: 3px 3px 4px #00000052;
}

.para {
  font-size: 16px;
  line-height: 26px;
}

.tagline {
  font-size: 18px;
  line-height: 28px;
}

.heading-2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
}

.heading-3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
}

.highlight-text {
  display: inline-block;
  margin: 5px 0px;
  padding: 7px 30px;
  background: rgba(255, 255, 0, 0.5);
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 10px;
}

.highlight-text-2 {
  display: inline-block;
  background: linear-gradient(
      100deg,
      #ffd70000 1%,
      #ffd7009c 1%,
      #ffd70080 5.7%,
      #ffd7001a 93%,
      #ffd7008c 5%,
      #ffd70000 98%
    ),
    linear-gradient(182deg, #ffd70000, #ffd700b0 8%, #ffd70000 15%);
  color: #6108bc;
  font-weight: 500;
}

.border-img {
  border: 2px solid #dbdbdb;
  background-color: white;
  border-radius: 20px;
  padding: 8px;
  box-shadow: rgb(114 0 255 / 16%) 3px 11px 5px;
}

.theme-dark-btn {
  border-radius: 50px;
  background-color: var(--primary-color);
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.3) 2px 3px 4px;
  /* Reduced shadow intensity */
  padding: 7px 17px;
  color: #fff !important;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s, color 0.4s, transform 0.4s;
  display: inline-block;
  animation: glow 2s infinite ease-in-out, jiggle 3s infinite ease-in-out;
  /* Glow and jiggle animations */
}

.theme-dark-btn.black-btn {
  background-color: var(--secondary-color) !important;
}

.theme-dark-btn::before {
  /* content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    transition: 1.2s;
    animation: slide 2s infinite ease-in-out; */
  /* Smooth sliding effect */
}

.theme-dark-btn::after {
  /* content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s infinite ease-out;
    Infinite ripple effect
    pointer-events: none;
    Prevent interference with button functionality
    opacity: 0; */
}

.theme-dark-btn:hover {
  background-color: #6f42c1;
  color: var(--light-font);
  /* animation: jiggle-fast 0.5s ease-in-out; */
  /* Fast jiggle on hover */
}

/* .theme-dark-btn:hover::before {
    left: 100%;
} */
/* 
@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 3px rgba(255, 255, 255, 0.3), 0 0 10px var(--primary-color);
    }

    50% {
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.5), 0 0 15px var(--primary-color);
    }
}

@keyframes slide {
    0% {
        left: -150%;
    }

    50% {
        left: 50%;
    }

    100% {
        left: 100%;
    }
}

@keyframes jiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(1deg);
    }

    50% {
        transform: rotate(-1deg);
    }

    75% {
        transform: rotate(0.5deg);
    }
}

@keyframes jiggle-fast {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(2deg);
    }

    50% {
        transform: rotate(-2deg);
    }

    75% {
        transform: rotate(1deg);
    }
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.6;
    }

    50% {
        width: 200px;
        height: 200px;
        opacity: 0.2;
    }

    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
} */

.corner-effect {
  position: relative;
  background-color: var(--gray-back);
  z-index: 1;
}

.corner-effect::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  clip-path: polygon(100% 0px, 0px 0px, 100% 100%);
  z-index: -1;
}

.corner-effect::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  clip-path: polygon(0px 100%, 0px 0px, 100% 100%);
  z-index: -1;
}

header.header p {
  margin: 0px;
  padding: 0px;
  line-height: 1rem;
  font-size: 22px;
  text-align: center;
  color: white;
  font-weight: 600;
}

header.header {
  padding: 15px;
  background: var(--primary-color);
}

.secondary {
  background-color: var(--primary-color);
}

.secondary-bar {
  padding: 6px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.secondary-bar img {
  width: 40px;
}

.secondary-bar .timer {
  display: flex;
  gap: 10px;
}

.secondary-bar .timer .time-box {
  text-align: center;
  border: 1px solid rgb(255, 255, 255);
  padding: 5px 10px;
  border-radius: 5px;
  min-width: 70px;
}

.secondary-bar .timer .time-box span {
  display: block;
}

.secondary-bar .timer .time-box .number {
  font-size: 1.2rem;
  font-weight: bold;
}

.secondary-bar .timer .time-box .label {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.time-box * {
  line-height: 16px;
  font-size: 14px !important;
  color: white !important;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 3% 0px 12%;
  background-color: rgb(231, 231, 231);
}

.avatar {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.avatar:first-child {
  margin-left: 0;
}
.avatar:hover {
  transform: scale(1.1);
  z-index: 1;
}

.hero-content h1 {
  font-size: 43px;
  font-weight: 900;
  line-height: 60px;
  margin-bottom: 10px;
  color: #111122 !important;
}

.onlytraining {
  background: linear-gradient(270deg, #f9c700, #6108bc, #f9c700);
  background-size: 600% 600%;

  /* Compatibility */
  background-clip: text; /* Standard property (won't work for text in most cases) */
  -webkit-background-clip: text; /* Required for Chrome/Safari */

  -webkit-text-fill-color: transparent; /* Required for showing background as text color */
  color: transparent; /* Fallback for non-supporting browsers */

  animation: gradientMove 4s linear infinite;
  display: inline-block;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.hero-content h2 {
  font-size: 34px;
  line-height: 51px;
  font-weight: 700;
  margin-bottom: 0;
  color: rgb(97, 8, 188);
}

.hero-content h3 {
  font-size: 20px;
  font-weight: 700;
}

.hero-content h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.hero-list-sec {
  display: flex;
  gap: 20px;
  margin: 18px 0px;
}

.hero-list-sec ul {
  padding-left: 15px;
}

.hero-list-sec ul li {
  margin-bottom: 5px;
  list-style-type: none;
  position: relative;
  padding-left: 25px;
}

.hero-list-sec ul li::before {
  content: "\F270";
  font-family: bootstrap-icons;
  position: absolute;
  left: 0px;
  top: 0px;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: bold;
}

.imp-info-sec {
  border-radius: 8px;
  padding: 20px;
}

.imp-info-sec .card {
  /* transition: transform 0.3s, box-shadow 0.3s; */
  height: 100%;
  border-radius: 20px;
  background: #111122;
  border: 3px solid rgb(97, 8, 188) !important;
  position: relative;
  overflow: hidden;
}
/* 
.imp-info-sec .card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 80%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.imp-info-sec .card:hover::before {
    width: 300%;
    height: 300%;
    opacity: 1;
    animation: ripple-expand 1s ease-out forwards;
} */

/* .imp-info-sec .card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 16px;
} */

.imp-info-sec .card * {
  position: relative;
  z-index: 1;
}

@keyframes ripple-expand {
  0% {
    width: 0;
    height: 0;
    opacity: 0.6;
  }

  70% {
    opacity: 0.3;
  }

  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}

.imp-info-sec .card-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.imp-info-sec .card-text {
  font-size: 1rem;
  color: rgb(108, 117, 125);
}

.imp-info-sec .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.imp-info-sec .card * {
  color: white !important;
}

.imp-info-sec .icon-wrapper i {
  color: rgb(255 255 255) !important;
}

section.imp-info-sec.container.py-4 {
  margin-top: -136px;
}

img.styled-img {
  border-radius: 20px;
  box-shadow: rgb(0, 0, 0) 1px 3px 2px;
}

p.card-text strong {
  font-weight: 500;
}

p.card-text {
  font-weight: 300;
}

.imp-info-sec .card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10px;
}

@keyframes fastGradientMove {
  0% {
    background-position: 0% 50%;
  }

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

.thanks-btn .fee-btn {
  background-color: var(--primary-color) !important;
  color: white !important;
}

.container-fluid.location-bottom li {
  margin: 0px;
}

.container-fluid.location-bottom {
  padding: 8px;
  background: var(--primary-color);
}

.fee-btns .fee-btn:hover {
  opacity: 0.9;
}

section.fee-banner {
  margin-top: -58px;
  position: relative;
}

.fee-info-list {
  list-style: none;
  padding: 0px;
  margin: 15px 0px 0px 40px;
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.fee-info-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.fee-info-list li::before {
  position: absolute;
  left: 0px;
  font-size: 1.2rem;
  color: white;
}

.fee-info-list .batch-start::before {
  content: "Ã¯Ë†â€";
  font-family: bootstrap-icons;
}

.fee-info-list .last-day::before {
  content: "Ã¯â€¡Â¢";
  font-family: bootstrap-icons;
}

.fee-info-list .location::before {
  content: "";
  font-family: bootstrap-icons;
}

/* why choose section styling  */

/* .why-choose {
    
} */
/* 
.why-choose {

    padding: 30px;
    background: #f2f2f2;
    border-radius: 30px;
    box-shadow: 0px 15px 18px #6108bc45;
    border: 8px dashed #6108bc;
    margin-bottom: 85px !important;
    display: grid;
    place-content: center;
    color: white;
    text-shadow: 0 1px 0 #000;
    --border-angle: 0turn;
    --main-bg: conic-gradient(from var(--border-angle), #213, #112 5%, #112 60%, #213 95%);
    border: solid 5px transparent;
    border-radius: 2em;
    --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, #6108bc, #f03 99%, transparent);
    background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
    background-position: center center;
    animation: bg-spin 3s linear infinite;
}

@keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}

.why-choose:hover {
    animation-play-state: paused;
}

@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
} */

.activate-sec {
  padding: 60px 0px;
}

.active-content h2 {
  font-size: 35px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--primary-color);
}

.active-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--secondary-color);
}

.contact-sec {
  padding: 60px 0px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("../webimages/contact-bg.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}

.form-sec {
  background: rgb(255, 255, 255);
  padding: 30px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px;
  border: 2px solid lightgray;
}

.form-sec:hover {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 10px;
}

.form-control {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 15px;
  border: 1px solid rgb(206, 212, 218);
  border-radius: 8px;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: none;
}

.form-sec h2 {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.form-sec button {
  margin-top: 20px;
}

.upgrade-sec {
  padding: 60px 0px;
}

.upgrade-content .hero-list-sec ul {
  padding-left: 5px;
}

.upgrade-sec .upgrade-content h2 {
  font-size: 35px;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 49px;
}

.upgrade-sec .hero-list-sec ul li::before {
  left: 0px;
  top: -6px;
  font-size: 30px;
}

.upgrade-sec .hero-list-sec ul li {
  padding-left: 40px;
}

.upgrade-sec .upgrade-content p {
  font-size: 17px;
  line-height: 27px;
}

.upgrade-img img {
  border: 11px solid var(--primary-color);
  padding: 9px;
  box-shadow: black 1px 3px 5px;
  background: white;
}

.timer-sec {
  padding: 60px 0px;
}

.timer-sec .timer-content h2 {
  font-size: 35px;
  font-weight: 700;
}

.timer-sec .timer-content .important-dates {
  font-size: 16px;
  margin-top: 15px;
  color: rgb(51, 51, 51);
}

.timer-sec .timer-content .pricing-info {
  font-size: 16px;
  margin-top: 15px;
  color: rgb(51, 51, 51);
  font-weight: 500;
}

.service-sec-card {
  background: #111122;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 10px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  height: 100%;
  cursor: pointer;
}

.service-sec-card.corner-effect::after {
  background-color: #161634 !important;
}

.service-sec-card.corner-effect::before {
  background-color: #161634 !important;
}

.service-sec-card * {
  color: white;
}

.service-sec-card p {
  color: #f4f4f4c9 !important;
}

.service-sec-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 16px;
}

.module-heading {
  display: inline-block;
  padding: 15px 20px;
  margin-bottom: 33px !important;
  background: #6108bc;
  color: white;
  box-shadow: 2px 4px 4px black;
  border-radius: 20px;
}

.service-sec-icon {
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
  box-shadow: lightgray 3px 4px 5px;
}

.service-sec-icon i {
  color: white;
}

.service-sec-body {
  flex-grow: 1;
}

.service-icon img {
  width: 70px;
  margin-bottom: 20px;
}

.service-sec-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-sec-text {
  color: rgb(85, 85, 85);
  font-size: 20px;
}

.service-sec-icon i {
  font-size: 31px;
  line-height: 1;
}

/* after course section  */

section.after-course-section {
  background: linear-gradient(to bottom, #6108bc 50%, #5304a5 50%);
  padding: 30px 0px;
}

.review-heading h2 {
  font-size: 35px;
  font-weight: 700;
}

.WidgetTitle__Header-sc-ruy1gu-2.eWlnOb {
  display: none;
}

div#hide-marketing {
  width: 300px;
  height: 40px;
  position: absolute;
  bottom: 7px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 2;
  background-color: white !important;
}

section.after-course-section p {
  color: white;
  font-size: 22px;
}

section.after-course-section .theme-dark-btn {
  background: #111122;
}

@media (max-width: 767px) {
  .review-sec .carousel-caption {
    padding: 3rem 2rem;
    font-size: 0.7rem;
    line-height: 1.5rem;
  }

  .review-sec .carousel-caption img {
    width: 4rem;
    border-radius: 4rem;
    margin-top: 1rem;
  }

  .review-sec #image-caption {
    font-size: 0.6rem;
  }

  .review-sec i {
    padding: 3px !important;
    font-size: 14px !important;
  }

  .review-sec {
    min-height: 65vh !important;
  }

  .review-sec .review-stars i {
    font-size: 14px !important;
  }
}

.review-sec .carousel-control-prev,
.review-sec .carousel-control-next {
  transition: none;
  opacity: unset;
}

.review-sec .carousel-control-prev {
  justify-content: flex-start;
}

.review-sec .carousel-control-next {
  justify-content: flex-end;
}

.benifit-sec {
  padding: 60px 0px;
}

section.services-sec.commitment-sec {
  padding: 60px 0px;
  background: rgb(238, 235, 235);
}

.commitment-sec .service-sec-card {
  background: transparent;
  box-shadow: none;
  border: none;
}

.commitment-sec .service-sec-card {
  padding: 9px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.commitment-sec h2 {
  font-size: 35px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 50px !important;
}

.thanks-sec .card-wrapper {
  perspective: 1000px;
}

.thanks-sec .card {
  transition: transform 0.3s;
  transform-style: preserve-3d;
  min-height: 292px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px;
}

.thanks-sec .card:hover {
  transform: rotateY(5deg) rotateX(-2deg);
}

.thanks-sec .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.thanks-sec .social-links i,
.thanks-sec .sharing-links i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0px 10px;
  transition: color 0.3s;
}

.thanks-sec .social-links i:hover,
.thanks-sec .sharing-links i:hover {
  color: var(--secondary-color);
}

.thanks-sec .card-title {
  color: var(--primary-color);
}

.thanks-sec .tagline {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.thanks-sec .social-links,
.sharing-links {
  margin-top: auto;
}

.footer-section a,
.footer-section a:active,
.footer-section a:focus {
  color: rgb(111, 111, 111);
  text-decoration: none;
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
}

.footer-section ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.footer-section img {
  max-width: 100%;
  height: auto;
  width: 180px;
}

.footer-section {
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: -146%;
  left: -18%;
  width: 44%;
  height: 257%;
  background-color: var(--primary-color);
  transform: rotate(54deg);
  z-index: -10;
}

.footer-section::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  top: -24%;
  right: 4%;
  width: 26%;
  height: 264%;
  transform: rotate(44deg);
  z-index: -10;
}

.footer-section .footer-top {
  padding-top: 60px;
  padding-bottom: 25px;
}

.footer-section .footer-top p,
.footer-section .company-footer-contact-list li {
  color: rgb(255, 255, 255);
}

.footer-section .company-footer-contact-list {
  margin-top: 10px;
}

.footer-section .company-footer-contact-list li {
  display: -webkit-flex;
  align-items: center;
}

.footer-section .company-footer-contact-list li + li {
  margin-top: 5px;
}

.footer-section .company-footer-contact-list li i {
  margin-right: 10px;
  font-size: 25px;
  display: inline-block;
}

.footer-top .site-logo {
  margin-bottom: 25px;
  display: block;
  max-width: 200px;
}

.widget-title {
  text-transform: capitalize;
}

.footer-top .widget-title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--secondary-color);
}

.courses-link-list li + li {
  margin-top: 10px;
}

.courses-link-list li a {
  color: rgb(255, 255, 255);
  text-transform: capitalize;
  font-family: var(--para-font);
  font-weight: 400;
}

.courses-link-list li a:hover {
  color: var(--white-font);
}

.courses-link-list li i {
  margin-right: 5px;
}

.footer-top .small-post-title a {
  font-family: var(--para-font);
  color: rgb(255, 255, 255);
  font-weight: 400;
}

.footer-bottom {
  padding: 13px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sm-icons {
  flex-direction: row;
}

.sm-icons .nav-link {
  padding-right: 1em;
}

.copy-right-text {
  color: rgb(255, 255, 255);
}

.copy-right-text a {
  color: var(--white-font);
}

ul.navbar-nav.sm-icons i {
  font-size: 30px;
  color: var(--primary-color) !important;
}

.footer-top ul li a:hover {
  color: var(--primary-color) !important;
}

.phone-widget {
  z-index: 99999999;
  position: fixed;
  bottom: 18px;
  left: 26px;
}

.phone-widget div {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  font-size: 29px;
  box-shadow: rgba(0, 0, 0, 0.3) 1px 3px 6px;
  border: 2px solid var(--primary-color);
  transition: 0.4s;
}

.phone-widget div:hover {
  opacity: 0.9;
}

.phone-widget div i {
  color: var(--primary-color);
}


section.upgrade-sec.schedule-sec strong {
  font-weight: 600;
  color: var(--secondary-color);
}

section.upgrade-sec.schedule-sec ul li::marker {
  color: var(--primary-color);
  font-weight: 900;
}

.custom-reviews .review-card {
  background: rgb(246, 246, 248);
  border-radius: 8px;
  padding: 22px;
  text-align: left;
  height: 100%;
}

.custom-reviews .review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-reviews .review-name {
  font-weight: bold;
}

.custom-reviews .review-date {
  font-size: 0.85rem;
  color: rgb(102, 102, 102);
}

.custom-reviews .review-content {
  margin-top: 8px;
}

.custom-reviews .review-content .stars {
  font-size: 2rem;
  color: rgb(255, 193, 7);
  margin-bottom: 8px;
}

.custom-reviews .read-more {
  color: rgb(0, 123, 255);
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.custom-reviews .modal-header {
  border-bottom: none;
}

.custom-reviews .modal-content {
  border-radius: 10px;
  padding: 20px;
}

.custom-reviews .modal-stars {
  font-size: 1.5rem;
  color: rgb(255, 193, 7);
}

.review-main-header .stars {
  color: rgb(248, 188, 7);
  line-height: 1;
  font-size: 36px !important;
}

.custom-reviews .modal-body .modal-stars {
  font-size: 33px !important;
  line-height: 1;
}

.custom-reviews .modal-body {
  padding-top: 0px !important;
}

p#modalReviewText {
  margin-top: 20px;
}

/* timeline section  */

.quality-timeline {
  padding: 60px 0;
  /* background-color: #f2f2f2; */
}

.quality-timeline .container {
  padding: 50px 0;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
}

.quality-timeline .container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 100%;
  background: var(--primary-color);
  z-index: -2;
}

.quality-timeline .timeline-block {
  width: -webkit-calc(50% + 8px);
  width: -moz-calc(50% + 8px);
  width: calc(50% + 8px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  clear: both;
}

.quality-timeline .timeline-block-right {
  float: right;
}

.quality-timeline .timeline-block-left {
  float: left;
  direction: rtl;
}

.quality-timeline .marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #f5f7fa;
  background: var(--secondary-color);
  margin-top: 10px;
  z-index: 0;
}

.quality-timeline .timeline-content {
  width: 95%;
  padding: 0 15px;
  color: #666;
}

.quality-timeline .timeline-content h3 {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 500;
  color: #fff;
}

.quality-timeline .timeline-content span {
  font-size: 15px;
  color: #fff;
}

.quality-timeline .timeline-content p {
  font-size: 17px;
  line-height: 1.6em;
  direction: ltr;
  word-spacing: 1px;
  color: #fff !important;
}

.quality-timeline .timeline-content ul li::before {
  color: white !important;
}

section.section.quality-timeline ul li {
  color: white;
}

.timeline-content .highlight-text-2,
.imp-info-sec .highlight-text-2 {
  background: linear-gradient(
      100deg,
      #ffd70000 1%,
      #ffd7009c 1%,
      #ffd70080 5.7%,
      #ffd7001a 93%,
      #ffd7008c 5%,
      #ffd70000 98%
    ),
    linear-gradient(182deg, #ffd70000, #ffd700b0 8%, #ffd70000 15%);
  color: #6108bc;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .quality-timeline .container:before {
    left: 8px;
    width: 2px;
  }

  .quality-timeline .timeline-block {
    width: 100%;
    margin-bottom: 30px;
  }

  .quality-timeline .timeline-block-right {
    float: none;
  }

  .quality-timeline .timeline-block-left {
    float: none;
    direction: ltr;
  }
}

/* gallery section  */

.slick-slide {
  padding: 9px;
}

.slick-dots li button:before {
  font-size: 14px !important;
}

.slider-2,
.slider {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
}

.slider-2.slick-initialized,
.slider.slick-initialized {
  visibility: visible;
  opacity: 1;
}

.quality-timeline .timeline-content {
  padding: 20px !important;
  border: 5px solid #ffffff;
  border-radius: 20px;
  box-shadow: 0px 10px var(--secondary-color);
  text-align: left !important;
  background: linear-gradient(to bottom, #6108bc 50%, #5903b3 50%);
}

.fullstack-video {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
}

.fullstack-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire div */
}

@media only screen and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 50px;
    line-height: 58px;
  }

  .hero-content h2 {
    font-size: 38px;
    line-height: 48px;
  }

  .active-content h2 {
    font-size: 30px;
    margin-bottom: 11px;
  }

  .active-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .form-sec h2 {
    font-size: 22px;
  }

  .form-control {
    padding: 7px 15px;
  }

  .upgrade-sec .upgrade-content h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .upgrade-sec .upgrade-content p {
    font-size: 14px;
    line-height: 26px;
  }

  .fee-banner .fee-card h2 {
    font-size: 23px;
  }

  .hero-section {
    padding: 9% 0px 15%;
  }
}

@media only screen and (max-width: 991px) {
  .active-content {
    padding-bottom: 30px;
  }

  .upgrade-sec .upgrade-content h2 {
    margin-top: 40px;
  }

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

  .hero-list-sec ul {
    margin-bottom: 0px;
  }

  .hero-img {
    margin-top: 30px;
  }

  .pricing-tables .col-lg-4 {
    margin-bottom: 30px;
  }

  .active-video {
    max-height: 321px !important;
  }

  .step-sec h2 {
    font-size: 30px;
  }

  .heading-2 {
    font-size: 30px;
    line-height: 40px;
  }

  .timer-sec .timer-content h2 {
    font-size: 30px;
  }

  .testi-sec h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .full-stack-sec .row {
    flex-direction: column-reverse;
  }

  .upgrade-sec .upgrade-content h2 {
    margin-top: 9px;
  }

  .satisfaction-sec img {
    margin-top: 30px;
  }

  .review-main-header {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .hero-section {
    padding: 10% 0px 18% !important;
  }

  .hero-content h2 {
    font-size: 35px;
    line-height: 45px;
  }

  span.money-back::before {
    width: 118px;
    height: 118px;
    left: -98px;
    top: -74px;
  }

  section.after-course-section p {
    font-size: 18px;
    margin-top: 25px;
  }

  .rec-col {
    margin-bottom: 30px !important;
  }

  .why-choose {
    padding: 10px;
    margin-bottom: 35px !important;
  }

  .activate-sec {
    padding: 15px 0px;
  }

  .sm-reverse-row {
    flex-direction: column-reverse;
  }
}

@media only screen and (max-width: 991px) {
  .hero-section {
    padding: 9% 0px 12%;
  }
}

@media only screen and (max-width: 800px) {
  .secondary-bar {
    flex-direction: row;
    gap: 20px;
  }
  .secondary-bar p {
    font-size: 10px;
  }

  .crown-text::before {
    width: 25px;
    height: 34px;
    left: -17px;
    top: -9px;
  }
}
@media (max-width: 575.98px) {
  .hero-img {
    width: 55%;
  }
}

@media only screen and (max-width: 690px) {
  .header-sec .logo1 {
    width: 88px !important;
  }

  .header-sec .logo2 {
    width: 130px !important;
  }

  .hero-list-sec li {
    font-size: 14px;
  }

  .footer-top .widget-title {
    margin-bottom: 24px;
    margin-top: 27px;
  }

  .hero-list-sec {
    gap: 0px;
  }

  .hero-section {
    padding: 13% 0px 15%;
  }

  .tagline {
    font-size: 16px;
    line-height: 26px;
  }

  .faq-section h2.heading-2 {
    font-size: 23px;
    line-height: 33px;
  }

  .heading-2 {
    font-size: 23px;
    line-height: 23px;
  }

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

  header.header {
    padding: 7px;
  }

  section.hero-section {
    padding: 9% 0px 16% !important;
  }

  span.money-back::before {
    width: 108px;
    height: 108px;
    left: -46px;
    top: -108px;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 44px;
  }

  .hero-content h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .hero-content h3 {
    font-size: 18px;
    line-height: 1;
  }

  section.hero-section {
    padding: 9% 0px 25% !important;
  }

  .quality-timeline .container {
    margin-top: 0 !important;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 480px) {
  section.hero-section {
    padding: 14% 0px 19% !important;
  }

  .theme-dark-btn {
    font-size: 15px;
    padding: 9px 15px;
  }

  .hero-content h1 {
    font-size: 25px;
    line-height: 35px;
  }

  .active-content h2 {
    font-size: 26px;
    margin-bottom: 11px;
  }

  .active-content h3 {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .timer-sec .timer-content h2 {
    font-size: 23px;
  }

  .testi-sec h2 {
    font-size: 23px;
    line-height: 33px;
  }

  footer button.theme-dark-btn {
    font-size: 12px;
  }

  p.testimonial-text {
    height: 106px;
  }

  section.step-sec,
  .timer-sec,
  .testi-sec,
  .faq-section,
  .faq-section,
  .benifit-sec,
  .contact-sec,
  .upgrade-sec {
    padding: 20px 0px;
  }

  .fee-banner .fee-card {
    padding: 32px 23px;
  }

  .fee-banner .fee-card h2 {
    font-size: 20px;
  }

  footer h4 {
    font-size: 22px;
  }

  .fee-info-list {
    font-size: 13px;
    margin-left: 14px;
  }

  .highlight-text {
    padding: 7px 8px;
  }

  .fee-info-list li::before {
    position: absolute;
    left: 0px;
    font-size: 17px;
    color: white;
  }

  section.timer-sec.theme-light-bg.corner-effect img {
    margin-top: 27px;
  }

  span.money-back::before {
    width: 81px;
    height: 94px;
    left: -64px;
    top: -199px;
  }
  .hero-content h2 {
    font-size: 23px;
    line-height: 36px;
  }

  section.hero-section {
    padding: 14% 0px 38% !important;
  }
}

@media only screen and (max-width: 414px) {
  span.money-back::before {
    width: 81px;
    height: 94px;
    left: -10px;
    top: -199px;
  }

  /* Hero Section Layout */
  .hero-list-sec {
    flex-direction: column;
  }

  section.hero-section {
    padding: 0% 0px 42% !important;
  }

  /* Headings */
  .active-content h2 {
    font-size: 23px;
    margin-bottom: 11px;
  }

  .upgrade-sec .upgrade-content h2,
  .headig-2 {
    font-size: 23px;
    line-height: 33px;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 32px;
  }

  .hero-content h2 {
    font-size: 19px;
    line-height: 29px;
  }

  .hero-content h3 {
    font-size: 16px;
    line-height: 22px;
  }

  .hero-content h4 {
    font-size: 18px;
    line-height: 28px;
  }

  .step-sec h2 {
    font-size: 23px;
  }

  .hero-list-sec h5 {
    font-size: 18px;
  }

  /* Paragraphs */
  .hero-content p {
    font-size: 14px;
    line-height: 24px;
  }

  /* Fee Banner Section */
  .fee-banner .fee-card {
    padding: 19px 5px;
  }

  .fee-banner .fee-card h2 {
    font-size: 18px;
  }

  /* Miscellaneous */
  .secondary .text-start.text-white.fs-5 {
    font-size: 17px !important;
  }
}

/* ============== AI THEME RESPONSIVE STYLES ============== */
@media (max-width: 991px) {
  .heading-xl {
    font-size: 36px !important;
    line-height: 1.2 !important;
  }

  .secondary-bar {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center !important;
  }

  .secondary-bar > div {
    flex: 1 1 auto;
    justify-content: center !important;
  }

  .ai-badge {
    font-size: 9px;
    padding: 4px 10px;
  }
}

@media (max-width: 767px) {
  .heading-xl {
    font-size: 28px !important;
  }

  .heading-gradient {
    font-size: 20px !important;
  }

  .glass-card-dark {
    padding: 20px;
    margin-bottom: 20px;
  }

  .hero-btn-sec {
    flex-direction: column !important;
    width: 100%;
  }

  .hero-btn-sec .theme-dark-btn {
    width: 100%;
    text-align: center;
  }

  .ai-particles::before,
  .ai-particles::after {
    width: 150px;
    height: 150px;
  }

  .secondary-bar > div:last-child {
    display: none;
  }
}

@media (max-width: 575px) {
  .heading-xl {
    font-size: 24px !important;
  }

  .form-sec.glass-card {
    padding: 20px;
  }

  .form-sec .row > div {
    margin-bottom: 0;
  }

  .secondary-bar {
    padding: 8px 0;
  }

  .secondary-bar p {
    font-size: 12px !important;
  }
}

/* ============== ENHANCED BUTTON SHINE EFFECT ============== */
.theme-dark-btn {
  position: relative;
  overflow: hidden;
}

.theme-dark-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.theme-dark-btn:hover::before {
  left: 100%;
}

/* ============== CARD GRADIENT BORDER TOP ============== */
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6108bc, #06b6d4, #6108bc);
  background-size: 200% 100%;
  animation: gradient-flow 3s linear infinite;
  border-radius: 20px 20px 0 0;
}

@keyframes gradient-flow {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ============== SERVICE CARD ENHANCEMENTS ============== */
.service-sec-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-sec-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(97, 8, 188, 0.25);
}

@media only screen and (max-width: 400px) {
  span.money-back::before {
    width: 74px;
    height: 94px;
    left: -62px;
    top: -191px;
  }
}

@media only screen and (max-width: 375px) {
  .hero-content h2 {
    font-size: 27px;
    line-height: 35px;
  }
  .theme-dark-btn {
    font-size: 14px;
    padding: 8px 12px;
  }
  .fee-banner .fee-card h2 {
    font-size: 13px;
  }

  span.money-back::before {
    width: 44px;
    height: 44px;
    left: -39px;
    top: -24px;
  }

  .secondary .text-start.text-white.fs-5 {
    font-size: 15px !important;
  }

  .hero-content h2 {
    font-size: 24px;
    line-height: 33px;
  }

  span.money-back::before {
    width: 81px;
    height: 102px;
    left: -46px;
    top: -193px;
  }

  .crown-text::before {
    width: 19px;
    height: 22px;
    left: -15px;
    top: -2px;
  }
}

@media only screen and (max-width: 361px) {
  span.money-back::before {
    width: 74px !important;
    height: 91px !important;
    left: -44px !important;
    top: -185px !important;
  }
}

@media only screen and (max-width: 350px) {
  .hero-content h1 {
    font-size: 24px !important;
    line-height: 28px !important;
  }
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--secondary-purple, #6f42c1);
  color: rgb(255, 255, 255);
  border: 3px solid var(--secondary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: pointer !important;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

#backToTop:hover {
  background-color: rgb(90, 50, 168);
}

/* addtional css  */

.job-sec {
  background-color: #111122 !important;
  color: white;
}

.full {
  display: inline-block;
  padding: 4px 10px;
  background-color: #ff0000b5;
  border-radius: 10px;
  color: white;
}

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 6, 38, 0.8); /* semi-transparent secondary */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
}

/* Popup box */
.popup-content {
  background-color: var(--primary-color);
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: fadeIn 0.5s ease;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .popup-content {
    padding: 1.5rem;
    font-size: 15px;
  }
}
/* ************** batch tabs ************* */
#batchTabs .nav-link {
  color: var(--secondary-color);
  background-color: var(--light-gray);
  border: none;
  transition: all 0.3s ease;
}

#batchTabs .nav-link:hover {
  background-color: #e0d4f2;
  color: var(--primary-color);
}

#batchTabs .nav-link.active {
  background-color: var(--primary-color);
  color: var(--light-font);
  box-shadow: 0 4px 12px rgba(97, 8, 188, 0.2);
}

@media (max-width: 768px) {
  #batchTabs .nav-link {
    font-size: 14px;
    padding: 0.5rem 1rem;
  }
}

/* ============================================================
   NEW LANDING PAGE STYLES - Full Stack AI Course
   ============================================================ */

/* ============== FLOATING BUTTONS ============== */
.floating-buttons {
  position: fixed;
  top: 100px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9995;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.phone-btn {
  background: linear-gradient(135deg, #6108bc, #8b5cf6);
}

/* ============== HERO SECTION NEW ============== */
.hero-section-new {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a1a 0%, #140626 50%, #1a0a2e 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(97, 8, 188, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
  animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(97, 8, 188, 0.3);
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 50px;
  color: #a78bfa;
  font-size: 14px;
  font-weight: 500;
}

.badge-icon {
  color: #fbbf24;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #06b6d4 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 24px;
  color: #e2e8f0;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px;
}

.highlight-box {
  display: inline-block;
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.1));
  padding: 2px 12px;
  border-left: 3px solid #fbbf24;
  color: #fbbf24;
}

.hero-description {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 30px;
}

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

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: linear-gradient(135deg, #6108bc 0%, #8b5cf6 100%);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(97, 8, 188, 0.5);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(97, 8, 188, 0.7);
  color: #fff;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* ============== CODE WINDOW VISUAL ============== */
.hero-visual {
  position: relative;
  z-index: 1;
}

.code-window {
  background: #1e1e3f;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.code-header {
  background: #2d2d5a;
  padding: 12px 16px;
  display: flex;
  gap: 8px;
}

.code-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca40; }

.code-body {
  padding: 20px;
  font-family: 'Fira Code', 'Consolas', monospace;
  font-size: 14px;
  line-height: 1.8;
}

.code-body pre {
  margin: 0;
  color: #e2e8f0;
}

.code-comment { color: #6b7280; }
.code-keyword { color: #c084fc; }
.code-function { color: #60a5fa; }
.code-name { color: #fbbf24; }
.code-string { color: #34d399; }

/* Code Cursor Animation */
.code-cursor {
  color: #06b6d4;
  font-weight: bold;
  animation: code-blink 0.8s step-end infinite;
}

@keyframes code-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.code-body pre {
  min-height: 160px;
  display: flex;
  align-items: flex-start;
}

.code-body code {
  white-space: pre;
}

/* ============== PROBLEM SOLUTION SECTION ============== */
.problem-solution-section {
  background: #f8fafc;
}

.problem-card, .solution-card {
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  transition: transform 0.3s ease;
}

.problem-card:hover, .solution-card:hover {
  transform: translateY(-5px);
}

.problem-card {
  background: #fff;
  border: 2px solid #fecaca;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.1);
}

.solution-card {
  background: linear-gradient(135deg, #140626 0%, #1a0a2e 100%);
  border: 2px solid #6108bc;
  box-shadow: 0 4px 20px rgba(97, 8, 188, 0.2);
}

.solution-card h3, .solution-card li {
  color: #fff;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.card-icon.red {
  background: #fef2f2;
  color: #ef4444;
}

.card-icon.green {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.problem-card h3, .solution-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.problem-list, .solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-list li, .solution-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 16px;
}

.problem-list li i {
  color: #ef4444;
  font-size: 18px;
}

.solution-list li i {
  color: #22c55e;
  font-size: 18px;
}

/* ============== SECTION HEADERS ============== */
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(97, 8, 188, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(97, 8, 188, 0.3);
  border-radius: 50px;
  color: #6108bc;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: #140626;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
}

/* ============== PROJECT CARDS ============== */
.projects-section {
  background: #fff;
}

.project-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(97, 8, 188, 0.15);
  border-color: #6108bc;
}

.project-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #6108bc 0%, #8b5cf6 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
}

.project-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #140626;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 15px;
}

.project-tech {
  display: inline-block;
  padding: 4px 12px;
  background: #f1f5f9;
  border-radius: 50px;
  font-size: 12px;
  color: #6108bc;
  font-weight: 600;
}

/* ============== CURRICULUM TIMELINE ============== */
.curriculum-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #6108bc, #06b6d4);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -40px;
  top: 0;
  width: 80px;
  text-align: center;
  background: linear-gradient(135deg, #6108bc, #8b5cf6);
  color: #fff;
  padding: 8px 0;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  transform: translateX(-50%);
  left: -25px;
  box-shadow: 0 4px 15px rgba(97, 8, 188, 0.4);
}

.timeline-content {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  margin-left: 30px;
}

.timeline-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #140626;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-content p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 15px;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.timeline-tags span {
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(97, 8, 188, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: 50px;
  font-size: 12px;
  color: #6108bc;
  font-weight: 500;
}

.timeline-list {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}

.timeline-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #6108bc, #06b6d4);
  border-radius: 50%;
}

.timeline-list li:last-child {
  margin-bottom: 0;
}

/* ============== FEATURES SECTION ============== */
.features-section {
  background: #fff;
}

.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(97, 8, 188, 0.1);
  border-color: rgba(97, 8, 188, 0.3);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(97, 8, 188, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #6108bc;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #140626;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* ============== INSTRUCTOR SECTION ============== */
.instructor-section {
  background: linear-gradient(135deg, #140626 0%, #1a0a2e 100%);
  color: #fff;
}

.instructor-section .section-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #a78bfa;
}

.instructor-section .section-title {
  color: #fff;
}

.instructor-image {
  position: relative;
}

.instructor-image img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(97, 8, 188, 0.5);
  box-shadow: 0 10px 40px rgba(97, 8, 188, 0.3);
}

.instructor-title {
  color: #a78bfa;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.instructor-bio {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.7;
}

.instructor-stats {
  display: flex;
  gap: 30px;
}

.instructor-stats .stat {
  text-align: center;
}

.instructor-stats .number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.instructor-stats .label {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
}

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #0077b5;
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-linkedin:hover {
  background: #005885;
  transform: translateY(-2px);
  color: #fff;
}

/* ============== PRICING SECTION ============== */
.pricing-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.pricing-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(97, 8, 188, 0.15);
  border: 2px solid #6108bc;
}

.pricing-header {
  background: linear-gradient(135deg, #6108bc 0%, #8b5cf6 100%);
  padding: 40px 30px;
  text-align: center;
  color: #fff;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.price .currency {
  font-size: 20px;
  font-weight: 600;
}

.price .amount {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.price .period {
  font-size: 16px;
  opacity: 0.8;
}

.price-note {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.9;
}

.pricing-features {
  padding: 30px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: #22c55e;
  font-size: 18px;
}

.pricing-cta {
  padding: 0 30px 30px;
  text-align: center;
}

.guarantee {
  margin-top: 15px;
  font-size: 13px;
  color: #64748b;
}

.guarantee i {
  color: #22c55e;
}

/* ============== FAQ SECTION ============== */
.faq-section {
  background: #fff;
}

.faq-section .accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px !important;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-section .accordion-button {
  font-weight: 600;
  font-size: 16px;
  color: #140626;
  padding: 20px;
  background: #fff;
}

.faq-section .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(97, 8, 188, 0.05), rgba(6, 182, 212, 0.05));
  color: #6108bc;
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236108bc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
  padding: 0 20px 20px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

/* ============== REGISTER SECTION ============== */
.register-section {
  background: linear-gradient(135deg, #140626 0%, #1a0a2e 100%);
}

.register-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.register-header {
  margin-bottom: 30px;
}

.register-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #140626;
  margin-bottom: 10px;
}

.register-header p {
  color: #64748b;
  font-size: 15px;
}

.register-form .form-group {
  margin-bottom: 20px;
}

.register-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

.register-form label i {
  margin-right: 8px;
  color: #6108bc;
}

.register-form .form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.register-form .form-control:focus {
  border-color: #6108bc;
  box-shadow: 0 0 0 4px rgba(97, 8, 188, 0.1);
  outline: none;
}

/* ============== FOOTER SECTION NEW ============== */
.footer-section {
  background: #0a0a1a;
}

.footer-section::before,
.footer-section::after {
  display: none;
}

.footer-content {
  padding: 60px 0 30px;
}

.footer-logo {
  width: 150px;
}

.footer-section h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.footer-section > .container > .footer-content > p {
  color: #94a3b8;
  font-size: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(97, 8, 188, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa !important;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #6108bc;
  color: #fff !important;
  transform: translateY(-3px);
}

.footer-contact p {
  color: #94a3b8;
  font-size: 14px;
  margin: 8px 0;
}

.footer-contact i {
  margin-right: 8px;
  color: #6108bc;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

/* ============== RESPONSIVE STYLES FOR NEW SECTIONS ============== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-visual {
    margin-top: 50px;
  }

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

  .timeline {
    padding-left: 30px;
  }

  .timeline-marker {
    left: -20px;
    width: 70px;
    font-size: 11px;
  }

  .timeline-content {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .hero-section-new {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 28px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary-glow, .btn-outline-light {
    width: 100%;
    justify-content: center;
  }

  .code-window {
    display: none;
  }

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

  .problem-card, .solution-card {
    padding: 25px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-marker {
    position: relative;
    left: 0;
    transform: none;
    margin-bottom: 15px;
    display: inline-block;
  }

  .timeline-content {
    margin-left: 0;
  }

  .instructor-image img {
    width: 200px;
    height: 200px;
  }

  .instructor-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .price .amount {
    font-size: 44px;
  }

  .register-card {
    padding: 30px 20px;
  }

  .floating-buttons {
    bottom: 15px;
    right: 15px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1;
    min-width: 80px;
  }

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

  .project-card, .feature-card {
    padding: 20px;
  }

  .pricing-header {
    padding: 30px 20px;
  }

  .pricing-features {
    padding: 20px;
  }

  .pricing-cta {
    padding: 0 20px 20px;
  }
}

/* ============================================================
   HIGH-CONVERTING ELEMENTS - Urgency, Social Proof, Trust
   ============================================================ */

/* ============== STICKY HEADER ============== */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  padding: 10px 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  border-bottom: 1px solid rgba(97, 8, 188, 0.3);
}

.sticky-header.visible {
  transform: translateY(0);
}

.sticky-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sticky-logo {
  height: 35px;
  width: auto;
}

.sticky-timer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.timer-label {
  color: #fbbf24;
  font-size: 13px;
  font-weight: 600;
}

.timer-label i {
  animation: pulse 1s infinite;
}

.countdown-mini {
  display: flex;
  gap: 3px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(97, 8, 188, 0.3);
  padding: 5px 10px;
  border-radius: 6px;
}

.countdown-mini span {
  color: #a78bfa;
}

.sticky-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.seats-left {
  color: #ef4444;
  font-size: 13px;
  font-weight: 600;
  animation: pulse 2s infinite;
}

.seats-left span {
  font-size: 16px;
  font-weight: 800;
  transition: transform 0.3s ease;
}

.btn-sticky-cta {
  background: linear-gradient(135deg, #6108bc, #8b5cf6);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse-glow 2s infinite;
}

.btn-sticky-cta:hover {
  transform: scale(1.05);
  color: #fff;
}

/* ============== URGENCY BAR ============== */
.urgency-bar {
  background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
  padding: 12px 0;
  position: relative;
  overflow: hidden;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

.urgency-text {
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.urgency-text i {
  font-size: 20px;
  animation: shake 0.5s infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.countdown-timer {
  display: flex;
  gap: 10px;
}

.time-block {
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 12px;
  border-radius: 6px;
  text-align: center;
  min-width: 50px;
}

.time-value {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.time-block .time-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

.urgency-cta {
  background: #fff;
  color: #dc2626 !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: bounce-subtle 2s infinite;
}

.urgency-cta:hover {
  transform: scale(1.05);
  color: #dc2626;
}

@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* ============== SOCIAL PROOF BAR ============== */
.social-proof-bar {
  background: linear-gradient(135deg, #140626 0%, #1a0a2e 100%);
  padding: 40px 0;
  border-bottom: 1px solid rgba(97, 8, 188, 0.3);
}

.proof-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

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

.proof-number {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.proof-label {
  font-size: 14px;
  color: #94a3b8;
}

.proof-label .stars {
  display: block;
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 3px;
}

.proof-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(97, 8, 188, 0.5), transparent);
}

/* ============== TRUST SECTION ============== */
.trust-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(97, 8, 188, 0.15);
  border-color: rgba(97, 8, 188, 0.3);
}

.trust-badge i {
  font-size: 24px;
  color: #22c55e;
}

.trust-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

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

.logos-title {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
}

.logos-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.company-logo {
  background: #fff;
  padding: 15px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.company-logo span {
  font-size: 14px;
  font-weight: 700;
  color: #6108bc;
}

/* ============== SUCCESS/TESTIMONIALS SECTION ============== */
.success-section {
  background: linear-gradient(135deg, #140626 0%, #1a0a2e 100%);
}

.success-section .section-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fbbf24;
}

.success-section .section-title {
  color: #fff;
}

.success-section .section-subtitle {
  color: #94a3b8;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(97, 8, 188, 0.5);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(97, 8, 188, 0.2), rgba(6, 182, 212, 0.1));
  border-color: #6108bc;
}

.featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #e2e8f0;
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6108bc, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.author-info strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.author-info span {
  color: #94a3b8;
  font-size: 13px;
}

.result-badge {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: #22c55e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.result-badge.success {
  background: rgba(251, 191, 36, 0.2);
  border-color: rgba(251, 191, 36, 0.3);
  color: #fbbf24;
}

/* Results Summary */
.results-summary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
}

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

.result-number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.result-label {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.4;
}

/* ============== RESPONSIVE FOR NEW ELEMENTS ============== */
@media (max-width: 991px) {
  .sticky-timer {
    display: none;
  }

  .urgency-text span {
    display: none;
  }

  .proof-content {
    gap: 30px;
  }

  .proof-number {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .sticky-header-content {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .sticky-left {
    width: 100%;
    justify-content: center;
  }

  .sticky-logo {
    display: none;
  }

  .sticky-timer {
    display: flex;
  }

  .sticky-right {
    width: 100%;
    justify-content: center;
  }

  .urgency-content {
    flex-direction: column;
    gap: 15px;
  }

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

  .urgency-text span {
    display: inline;
  }

  .countdown-timer {
    gap: 8px;
  }

  .time-block {
    padding: 5px 10px;
    min-width: 45px;
  }

  .time-value {
    font-size: 18px;
  }

  .proof-divider {
    display: none;
  }

  .proof-content {
    gap: 20px;
  }

  .proof-item {
    flex: 1;
    min-width: 45%;
  }

  .proof-number {
    font-size: 24px;
  }

  .trust-badges {
    gap: 10px;
  }

  .trust-badge {
    padding: 10px 15px;
    font-size: 12px;
  }

  .trust-badge i {
    font-size: 18px;
  }

  .company-logo {
    padding: 10px 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .results-summary {
    padding: 25px;
  }

  .result-number {
    font-size: 32px;
  }

  .result-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .proof-item {
    min-width: 40%;
  }

  .proof-number {
    font-size: 22px;
  }

  .proof-label {
    font-size: 12px;
  }

  .trust-badge {
    width: 100%;
    justify-content: center;
  }

  .logos-row {
    gap: 15px;
  }

  .company-logo {
    flex: 1;
    min-width: 45%;
    text-align: center;
  }
}

/* ============================================================
   ADVANCED VISUAL EFFECTS - SCROLL REVEAL, PARTICLES, 3D TILT
   ============================================================ */

/* ============== SCROLL REVEAL ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered reveal for child elements */
.reveal .info-card-new,
.reveal .tech-card,
.reveal .project-card,
.reveal .testimonial-card,
.reveal .trust-badge {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed .info-card-new,
.reveal.revealed .tech-card,
.reveal.revealed .project-card,
.reveal.revealed .testimonial-card,
.reveal.revealed .trust-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for multiple items */
.reveal.revealed .info-card-new:nth-child(1),
.reveal.revealed .tech-card:nth-child(1),
.reveal.revealed .project-card:nth-child(1),
.reveal.revealed .testimonial-card:nth-child(1),
.reveal.revealed .trust-badge:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal.revealed .info-card-new:nth-child(2),
.reveal.revealed .tech-card:nth-child(2),
.reveal.revealed .project-card:nth-child(2),
.reveal.revealed .testimonial-card:nth-child(2),
.reveal.revealed .trust-badge:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal.revealed .info-card-new:nth-child(3),
.reveal.revealed .tech-card:nth-child(3),
.reveal.revealed .project-card:nth-child(3),
.reveal.revealed .testimonial-card:nth-child(3),
.reveal.revealed .trust-badge:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal.revealed .info-card-new:nth-child(4),
.reveal.revealed .tech-card:nth-child(4),
.reveal.revealed .project-card:nth-child(4),
.reveal.revealed .testimonial-card:nth-child(4),
.reveal.revealed .trust-badge:nth-child(4) {
  transition-delay: 0.4s;
}

/* ============== PARTICLE CANVAS ============== */
#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

/* ============== FLOATING SHAPES ANIMATION ============== */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(40px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #6108bc, #8b5cf6);
  top: -100px;
  right: -100px;
  animation: float-shape 15s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
  bottom: -50px;
  left: -50px;
  animation: float-shape 20s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #ec4899, #f472b6);
  top: 50%;
  left: 10%;
  animation: float-shape 18s ease-in-out infinite;
  animation-delay: -5s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #a855f7, #c084fc);
  bottom: 20%;
  right: 15%;
  animation: float-shape 22s ease-in-out infinite reverse;
  animation-delay: -8s;
}

@keyframes float-shape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(30px, -40px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translate(-20px, 30px) rotate(180deg) scale(0.95);
  }
  75% {
    transform: translate(40px, 20px) rotate(270deg) scale(1.05);
  }
}

/* ============== 3D TILT CARD EFFECT ============== */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow:
    0 25px 50px -12px rgba(97, 8, 188, 0.25),
    0 0 30px rgba(97, 8, 188, 0.1);
}

/* 3D Depth for card content */
.tilt-card .card-icon,
.tilt-card i {
  transform: translateZ(40px);
  transition: transform 0.3s ease;
}

.tilt-card h4,
.tilt-card h5,
.tilt-card .card-title {
  transform: translateZ(30px);
}

.tilt-card p,
.tilt-card .card-content {
  transform: translateZ(20px);
}

/* ============== GRADIENT BORDER ANIMATION ============== */
.gradient-border {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.gradient-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #6108bc, #06b6d4, #ec4899, #a855f7, #6108bc);
  background-size: 400% 400%;
  z-index: -1;
  border-radius: 22px;
  animation: gradient-rotate 8s linear infinite;
}

@keyframes gradient-rotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ============== GLOW BUTTON EFFECT ============== */
.btn-primary-glow {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary-glow::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: left 0.5s ease;
}

.btn-primary-glow:hover::before {
  left: 100%;
}

.btn-primary-glow:hover {
  box-shadow:
    0 0 20px rgba(97, 8, 188, 0.5),
    0 0 40px rgba(97, 8, 188, 0.3),
    0 0 60px rgba(97, 8, 188, 0.1);
  transform: translateY(-2px);
}

/* ============== TYPING CURSOR ============== */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: linear-gradient(135deg, #6108bc, #06b6d4);
  margin-left: 5px;
  animation: blink-cursor 0.7s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ============== MICRO INTERACTIONS ============== */

/* Hover lift effect */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(97, 8, 188, 0.2);
}

/* Pulse on hover */
.pulse-hover:hover {
  animation: pulse-once 0.4s ease;
}

@keyframes pulse-once {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Icon bounce on hover */
.icon-bounce:hover i {
  animation: bounce 0.5s ease;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Underline slide effect */
.underline-slide {
  position: relative;
}

.underline-slide::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6108bc, #06b6d4);
  transition: width 0.3s ease;
}

.underline-slide:hover::after {
  width: 100%;
}

/* Scale pop effect */
.scale-pop {
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scale-pop:hover {
  transform: scale(1.08);
}

/* Ripple effect on click */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 10%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}

.ripple:active::after {
  transform: scale(0, 0);
  opacity: 1;
  transition: 0s;
}

/* ============== COUNTER NUMBER ANIMATION ============== */
.counter-animated {
  display: inline-block;
  transition: transform 0.3s ease;
}

.counter-animated.counting {
  animation: count-pop 0.1s ease-out;
}

@keyframes count-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ============== GRADIENT TEXT ANIMATION ============== */
.gradient-text-animated {
  background: linear-gradient(90deg, #6108bc, #06b6d4, #ec4899, #a855f7, #6108bc);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text-flow 4s linear infinite;
}

@keyframes gradient-text-flow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ============== ADVANCED EFFECTS MOBILE RESPONSIVE ============== */
@media (max-width: 992px) {
  .floating-shapes .shape {
    opacity: 0.1;
  }

  .shape-1 {
    width: 250px;
    height: 250px;
  }

  .shape-2 {
    width: 200px;
    height: 200px;
  }

  .shape-3 {
    width: 150px;
    height: 150px;
  }

  .shape-4 {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .reveal {
    transform: translateY(40px);
  }

  #particleCanvas {
    opacity: 0.4;
  }

  .floating-shapes .shape {
    opacity: 0.08;
    filter: blur(60px);
  }

  /* Disable 3D tilt on mobile for better performance */
  .tilt-card {
    transform: none !important;
  }

  .tilt-card:hover {
    transform: translateY(-5px) !important;
  }
}

@media (max-width: 480px) {
  .reveal {
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  #particleCanvas {
    opacity: 0.3;
  }

  .floating-shapes {
    display: none;
  }

  .typing-cursor {
    width: 2px;
  }
}

/* ============== REDUCED MOTION SUPPORT ============== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal .info-card-new,
  .reveal .tech-card,
  .reveal .project-card,
  .reveal .testimonial-card,
  .reveal .trust-badge {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .shape,
  .floating-shapes {
    animation: none;
  }

  #particleCanvas {
    display: none;
  }

  .gradient-border::before {
    animation: none;
  }

  .typing-cursor {
    animation: none;
  }

  .gradient-text-animated {
    animation: none;
  }

  .btn-primary-glow::before {
    display: none;
  }
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ============================================================ */

/* ============== URGENCY BAR MOBILE ============== */
@media (max-width: 768px) {
  .urgency-bar {
    padding: 12px 0;
  }

  .urgency-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .urgency-text {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .urgency-text i {
    font-size: 20px;
  }

  .countdown-timer {
    gap: 6px;
    justify-content: center;
  }

  .time-block {
    padding: 6px 10px;
    min-width: 50px;
    border-radius: 8px;
  }

  .time-value {
    font-size: 18px;
  }

  .time-label {
    font-size: 9px;
  }

  .urgency-cta {
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .urgency-bar {
    padding: 10px 0;
  }

  .urgency-text {
    font-size: 12px;
  }

  .urgency-text strong {
    display: block;
    font-size: 14px;
  }

  .time-block {
    padding: 5px 8px;
    min-width: 42px;
  }

  .time-value {
    font-size: 16px;
  }

  .time-label {
    font-size: 8px;
  }
}

/* ============== STICKY HEADER MOBILE ============== */
@media (max-width: 768px) {
  .sticky-header {
    padding: 8px 0;
  }

  .sticky-header-content {
    flex-direction: column;
    gap: 8px;
  }

  .sticky-left {
    width: 100%;
    justify-content: center;
  }

  .sticky-logo {
    width: 80px;
    display: none;
  }

  .sticky-timer {
    display: flex;
    gap: 5px;
  }

  .timer-label {
    font-size: 11px;
  }

  .countdown-mini {
    font-size: 12px;
    gap: 3px;
  }

  .countdown-mini span {
    padding: 2px 5px;
  }

  .sticky-right {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .seats-left {
    font-size: 12px;
    padding: 5px 10px;
  }

  .btn-sticky-cta {
    padding: 8px 15px;
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .sticky-timer {
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }

  .timer-label {
    font-size: 10px;
  }

  .countdown-mini {
    font-size: 11px;
  }
}

/* ============== HERO SECTION MOBILE ============== */
@media (max-width: 768px) {
  .hero-section-new {
    padding: 60px 0 40px;
    min-height: auto;
  }

  .hero-section-new .row {
    min-height: auto !important;
  }

  .hero-badge {
    font-size: 11px;
    padding: 8px 14px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
  }

  .hero-subtitle br {
    display: none;
  }

  .highlight-box {
    display: inline;
    padding: 2px 8px;
    font-size: 14px;
  }

  .hero-description {
    font-size: 14px;
    text-align: center;
    padding: 0 10px;
  }

  .hero-stats {
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .stat-item {
    text-align: center;
    min-width: 70px;
  }

  .stat-number {
    font-size: 26px;
  }

  .stat-label {
    font-size: 11px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-cta .btn-primary-glow,
  .hero-cta .btn-outline-light {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-section-new {
    padding: 50px 0 30px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 6px 12px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .highlight-box {
    font-size: 13px;
  }

  .hero-description {
    font-size: 13px;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 10px;
  }

  .hero-cta .btn-primary-glow,
  .hero-cta .btn-outline-light {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* ============== SOCIAL PROOF BAR MOBILE ============== */
@media (max-width: 768px) {
  .social-proof-bar {
    padding: 25px 0;
  }

  .proof-content {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .proof-item {
    flex: 0 0 45%;
    text-align: center;
  }

  .proof-number {
    font-size: 26px;
  }

  .proof-label {
    font-size: 12px;
  }

  .proof-divider {
    display: none;
  }

  .stars i {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .proof-item {
    flex: 0 0 48%;
  }

  .proof-number {
    font-size: 22px;
  }

  .proof-label {
    font-size: 11px;
  }
}

/* ============== SECTION TITLES MOBILE ============== */
@media (max-width: 768px) {
  .section-header {
    padding: 0 10px;
  }

  .section-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .section-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 13px;
  }
}

/* ============== PROBLEM/SOLUTION CARDS MOBILE ============== */
@media (max-width: 768px) {
  .problem-solution-section {
    padding: 40px 0;
  }

  .problem-card,
  .solution-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .problem-card h3,
  .solution-card h3 {
    font-size: 20px;
  }

  .problem-card ul li,
  .solution-card ul li {
    font-size: 14px;
    padding: 8px 0;
  }
}

/* ============== PROJECT CARDS MOBILE ============== */
@media (max-width: 768px) {
  .projects-section {
    padding: 40px 0;
  }

  .project-card {
    padding: 25px 20px;
    margin-bottom: 15px;
  }

  .project-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .project-card h4 {
    font-size: 18px;
  }

  .project-card p {
    font-size: 13px;
  }

  .project-tech {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* ============== CURRICULUM TIMELINE MOBILE ============== */
@media (max-width: 768px) {
  .curriculum-section {
    padding: 40px 0;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline::before {
    left: 5px;
  }

  .timeline-item {
    padding-left: 25px;
    margin-bottom: 30px;
  }

  .timeline-marker {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-bottom: 10px;
    font-size: 11px;
    padding: 5px 12px;
  }

  .timeline-content {
    margin-left: 0;
    padding: 20px;
  }

  .timeline-content h4 {
    font-size: 18px;
  }

  .tech-stack span {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* ============== FEATURES SECTION MOBILE ============== */
@media (max-width: 768px) {
  .features-section {
    padding: 40px 0;
  }

  .feature-card {
    padding: 25px 20px;
    margin-bottom: 15px;
  }

  .feature-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .feature-card h4 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 13px;
  }
}

/* ============== TRUST BADGES MOBILE ============== */
@media (max-width: 768px) {
  .trust-section {
    padding: 40px 0;
  }

  .trust-badges {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .trust-badge {
    flex: 0 0 48%;
    padding: 12px 15px;
    font-size: 12px;
    justify-content: center;
  }

  .trust-badge i {
    font-size: 18px;
  }

  .company-logos {
    margin-top: 25px;
  }

  .logos-title {
    font-size: 13px;
  }

  .logos-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .company-logo {
    flex: 0 0 48%;
    padding: 12px 15px;
    font-size: 13px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .trust-badge {
    flex: 0 0 100%;
  }

  .company-logo {
    flex: 0 0 48%;
    font-size: 12px;
    padding: 10px 12px;
  }
}

/* ============== INSTRUCTOR SECTION MOBILE ============== */
@media (max-width: 768px) {
  .instructor-section {
    padding: 40px 0;
  }

  .instructor-image {
    margin-bottom: 25px;
  }

  .instructor-image img {
    width: 180px;
    height: 180px;
  }

  .instructor-title {
    font-size: 16px;
    text-align: center;
  }

  .instructor-bio {
    font-size: 14px;
    text-align: center;
  }

  .instructor-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .instructor-stats .stat {
    text-align: center;
    min-width: 80px;
  }

  .instructor-stats .number {
    font-size: 26px;
  }

  .instructor-stats .label {
    font-size: 11px;
  }

  .btn-linkedin {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
}

/* ============== TESTIMONIALS MOBILE ============== */
@media (max-width: 768px) {
  .success-section {
    padding: 40px 0;
  }

  .testimonial-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .testimonial-rating {
    font-size: 14px;
    gap: 3px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .author-info strong {
    font-size: 14px;
  }

  .author-info span {
    font-size: 12px;
  }

  .result-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .featured-tag {
    font-size: 10px;
    padding: 4px 10px;
  }
}

/* ============== RESULTS SUMMARY MOBILE ============== */
@media (max-width: 768px) {
  .results-summary {
    padding: 25px 20px;
    margin-top: 30px;
  }

  .result-stat {
    margin-bottom: 15px;
  }

  .result-number {
    font-size: 32px;
  }

  .result-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .results-summary {
    padding: 20px 15px;
  }

  .result-number {
    font-size: 28px;
  }

  .result-label {
    font-size: 11px;
  }
}

/* ============== PRICING SECTION MOBILE ============== */
@media (max-width: 768px) {
  .pricing-section {
    padding: 40px 0;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-header h3 {
    font-size: 22px;
  }

  .price {
    margin: 15px 0;
  }

  .price .currency {
    font-size: 18px;
  }

  .price .amount {
    font-size: 42px;
  }

  .price .period {
    font-size: 14px;
  }

  .price-note {
    font-size: 13px;
  }

  .pricing-features ul li {
    font-size: 14px;
    padding: 10px 0;
  }

  .pricing-cta {
    margin-top: 25px;
  }

  .guarantee {
    font-size: 12px;
  }
}

/* ============== FAQ SECTION MOBILE ============== */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0;
  }

  .accordion-button {
    font-size: 15px;
    padding: 15px;
  }

  .accordion-body {
    font-size: 14px;
    padding: 15px;
  }
}

/* ============== REGISTRATION FORM MOBILE ============== */
@media (max-width: 768px) {
  .register-section {
    padding: 40px 0;
  }

  .register-card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .register-header h2 {
    font-size: 24px;
  }

  .register-header p {
    font-size: 14px;
  }

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

  .form-group label {
    font-size: 13px;
  }

  .form-control {
    padding: 12px 15px;
    font-size: 14px;
  }

  .register-form .btn-primary-glow {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* ============== FOOTER MOBILE ============== */
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0 30px;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-content h4 {
    font-size: 18px;
  }

  .footer-content p {
    font-size: 13px;
  }

  .social-links {
    gap: 15px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

/* ============== FLOATING BUTTONS MOBILE ============== */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  .floating-buttons {
    bottom: 10px;
    right: 10px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* ============== EXTRA SMALL DEVICES (320px) ============== */
@media (max-width: 360px) {
  .hero-title {
    font-size: 20px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

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

  .stat-number {
    font-size: 20px;
  }

  .time-block {
    min-width: 38px;
    padding: 4px 6px;
  }

  .time-value {
    font-size: 14px;
  }

  .proof-number {
    font-size: 20px;
  }

  .price .amount {
    font-size: 36px;
  }

  .register-header h2 {
    font-size: 20px;
  }

  .testimonial-text {
    font-size: 13px;
  }

  .result-number {
    font-size: 24px;
  }
}

/* ============== FIX OVERFLOW ISSUES ============== */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  section {
    overflow-x: hidden;
  }

  .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .row > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ============== LANDSCAPE MOBILE FIXES ============== */
@media (max-width: 896px) and (orientation: landscape) {
  .hero-section-new {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-section-new .row {
    min-height: auto !important;
  }

  .urgency-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================================
   AI MADE BADGE - FLOATING TYPING EFFECT
   ============================================================ */

.ai-made-badge {
  position: fixed;
  bottom: 100px;
  left: 20px;
  z-index: 9999;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.ai-made-badge.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.ai-badge-content {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(97, 8, 188, 0.95), rgba(20, 6, 38, 0.98));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(97, 8, 188, 0.5);
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow:
    0 10px 40px rgba(97, 8, 188, 0.4),
    0 0 20px rgba(97, 8, 188, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.ai-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #06b6d4, #6108bc);
  border-radius: 50%;
  animation: icon-pulse 2s ease-in-out infinite;
}

.ai-icon i {
  font-size: 18px;
  color: #fff;
}

@keyframes icon-pulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.8), 0 0 40px rgba(97, 8, 188, 0.4);
  }
}

.ai-typing-text {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.3px;
  min-width: 200px;
  font-family: 'Poppins', sans-serif;
}

.ai-cursor {
  font-size: 16px;
  font-weight: 300;
  color: #06b6d4;
  animation: cursor-blink 0.7s step-end infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Glow effect on hover */
.ai-badge-content:hover {
  box-shadow:
    0 15px 50px rgba(97, 8, 188, 0.5),
    0 0 30px rgba(6, 182, 212, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(6, 182, 212, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ai-made-badge {
    bottom: 80px;
    left: 10px;
    right: 10px;
  }

  .ai-badge-content {
    padding: 10px 15px;
    border-radius: 40px;
    justify-content: center;
  }

  .ai-icon {
    width: 32px;
    height: 32px;
  }

  .ai-icon i {
    font-size: 16px;
  }

  .ai-typing-text {
    font-size: 12px;
    min-width: auto;
    max-width: 180px;
  }

  .ai-cursor {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .ai-made-badge {
    bottom: 75px;
    left: 8px;
    right: 8px;
  }

  .ai-badge-content {
    padding: 8px 12px;
    gap: 8px;
  }

  .ai-icon {
    width: 28px;
    height: 28px;
  }

  .ai-icon i {
    font-size: 14px;
  }

  .ai-typing-text {
    font-size: 11px;
    max-width: 150px;
  }
}

/* Hide on very small screens if it overlaps with floating buttons */
@media (max-width: 360px) {
  .ai-made-badge {
    bottom: 130px;
  }
}

/* ============== EXIT INTENT POPUP ============== */
.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.exit-popup-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.exit-popup {
  background: linear-gradient(135deg, #140626 0%, #1a0a2e 100%);
  border-radius: 24px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  position: relative;
  border: 2px solid rgba(97, 8, 188, 0.3);
  box-shadow: 0 25px 80px rgba(97, 8, 188, 0.4);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.exit-popup-overlay.visible .exit-popup {
  transform: scale(1);
}

.exit-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #888;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s;
}

.exit-popup-close:hover {
  color: #fff;
}

.exit-popup-content {
  text-align: center;
}

.exit-popup-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6108bc, #06b6d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: pulse-glow 2s infinite;
}

.exit-popup-icon i {
  font-size: 36px;
  color: #fff;
}

.exit-popup h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 15px;
}

.exit-popup p {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 20px;
}

.exit-popup-timer {
  background: rgba(97, 8, 188, 0.2);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.exit-popup-timer span {
  color: #aaa;
  font-size: 14px;
}

.exit-timer {
  font-size: 32px;
  font-weight: 700;
  color: #06b6d4;
  font-family: monospace;
}

.btn-exit-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6108bc, #06b6d4);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.btn-exit-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(97, 8, 188, 0.5);
  color: #fff;
}

.exit-popup-note {
  color: #666;
  font-size: 13px;
  margin-top: 15px;
  margin-bottom: 0;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(97, 8, 188, 0.5); }
  50% { box-shadow: 0 0 40px rgba(6, 182, 212, 0.5); }
}

/* ============== MOBILE STICKY CTA ============== */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #140626, #1a0a2e);
  padding: 12px 15px;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 2px solid rgba(97, 8, 188, 0.3);
  display: none;
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
}

.mobile-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.mobile-cta-info {
  display: flex;
  flex-direction: column;
}

.mobile-cta-price {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.mobile-cta-price small {
  font-weight: 400;
  font-size: 12px;
  color: #aaa;
}

.mobile-cta-seats {
  color: #06b6d4;
  font-size: 12px;
}

.btn-mobile-cta {
  background: linear-gradient(135deg, #6108bc, #8b5cf6);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  animation: pulse 2s infinite;
}

/* ============== LIVE VIEWERS COUNTER ============== */
.live-viewers {
  position: fixed;
  top: 100px;
  left: 20px;
  background: rgba(20, 6, 38, 0.95);
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #fff;
  z-index: 9990;
  border: 1px solid rgba(97, 8, 188, 0.3);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

@media (max-width: 768px) {
  .live-viewers {
    top: auto;
    bottom: 180px;
    left: 10px;
    font-size: 11px;
    padding: 8px 12px;
  }
}

/* ============== RECENT NOTIFICATION ============== */
.recent-notification {
  position: fixed;
  top: 100px;
  left: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 9991;
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.recent-notification.visible {
  transform: translateX(0);
}

.notification-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #6108bc, #06b6d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-avatar i {
  color: #fff;
  font-size: 20px;
}

.notification-content {
  flex: 1;
}

.notification-text {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.notification-text strong {
  color: #6108bc;
}

.notification-time {
  font-size: 11px;
  color: #888;
}

.notification-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #aaa;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .recent-notification {
    bottom: auto;
    top: 70px;
    left: 10px;
    right: 10px;
    max-width: none;
  }
}

/* ============== WHATSAPP CHAT WIDGET ============== */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9992;
}

.whatsapp-toggle {
  width: 60px;
  height: 60px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-toggle:hover {
  transform: scale(1.1);
}

.whatsapp-toggle.pulse {
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 5px 40px rgba(37, 211, 102, 0.8); }
}

.whatsapp-toggle i {
  font-size: 28px;
  color: #fff;
}

.whatsapp-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 22px;
  height: 22px;
  background: #ef4444;
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.whatsapp-chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s ease;
}

.whatsapp-chat-box.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-header {
  background: #075E54;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 5px;
}

.chat-header-info {
  flex: 1;
}

.chat-name {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ccc;
  font-size: 12px;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
}

.chat-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.8;
}

.chat-body {
  padding: 20px;
  background: #E5DDD5 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAABGlBMVEUAAADNzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc0AAAA=');
}

.chat-message {
  background: #fff;
  padding: 12px 15px;
  border-radius: 0 12px 12px 12px;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.chat-message p {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #333;
}

.chat-message p:last-child {
  margin-bottom: 0;
}

.chat-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.chat-cta:hover {
  background: #128C7E;
  color: #fff;
}

.chat-cta i {
  font-size: 20px;
}

@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 160px;
    right: 15px;
  }

  .whatsapp-toggle {
    width: 55px;
    height: 55px;
  }

  .whatsapp-chat-box {
    width: calc(100vw - 30px);
    right: -5px;
  }
}

/* ============== COMPARISON TABLE ============== */
.comparison-section {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(97, 8, 188, 0.1);
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background: #140626;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table th.old-way {
  background: #dc2626;
}

.comparison-table th.new-way {
  background: linear-gradient(135deg, #6108bc, #06b6d4);
}

.comparison-table td {
  font-size: 14px;
  color: #333;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  background: #f8fafc;
}

.comparison-table td.old-way {
  color: #888;
}

.comparison-table td.new-way {
  color: #6108bc;
  font-weight: 500;
}

.comparison-table tr:hover td {
  background: rgba(97, 8, 188, 0.03);
}

.comparison-table tr:hover td:first-child {
  background: rgba(97, 8, 188, 0.05);
}

@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
    font-size: 12px;
  }
}

/* ============== ANIMATED GRADIENT TEXT ============== */
.gradient-text-animated {
  background: linear-gradient(90deg, #6108bc, #06b6d4, #ec4899, #6108bc);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 4s ease infinite;
}

@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============== MICRO ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered animations for cards */
.reveal.revealed .project-card,
.reveal.revealed .feature-card,
.reveal.revealed .testimonial-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.reveal.revealed .project-card:nth-child(1),
.reveal.revealed .feature-card:nth-child(1),
.reveal.revealed .testimonial-card:nth-child(1) { animation-delay: 0.1s; }

.reveal.revealed .project-card:nth-child(2),
.reveal.revealed .feature-card:nth-child(2),
.reveal.revealed .testimonial-card:nth-child(2) { animation-delay: 0.2s; }

.reveal.revealed .project-card:nth-child(3),
.reveal.revealed .feature-card:nth-child(3),
.reveal.revealed .testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.reveal.revealed .project-card:nth-child(4),
.reveal.revealed .feature-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon bounce on hover */
.feature-icon:hover i,
.project-icon:hover i {
  animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Button shine effect */
.btn-primary-glow::after,
.btn-exit-cta::after,
.btn-mobile-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary-glow:hover::after,
.btn-exit-cta:hover::after,
.btn-mobile-cta:hover::after {
  left: 100%;
}

/* Floating animation for icons */
.floating-icon {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
