/********** Template CSS **********/
:root {
  --primary: #003563;
  --secondary: #ff7722;
  --light: #fef1e4;
  --dark: #0c2b4b;
}
body {
  background-color: #fef1e4;
}

.py-6 {
  padding-top: 1rem;
  padding-bottom: 6rem;
}
.py-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.my-2 {
  margin-top: 1rem;
  margin-bottom: 6rem;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand,
.navbar a.btn {
  height: 80px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: var(--dark);
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 53, 99, 0.75);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border: 10px solid var(--primary);
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #999999;
}

/*** Facts ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

/*** Courses ***/
.courses {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url(../img/main-banner.png) center center no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.courses-item .courses-overlay {
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

.courses-item:hover .courses-overlay {
  height: 100%;
  opacity: 1;
}

/*** Team ***/
.team-items {
  margin: -0.75rem;
}

.team-item {
  padding: 0.75rem;
}

.team-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: #ffffff;
  transition: 0.5s;
  z-index: -1;
}

.team-item:hover::after {
  height: 100%;
  background: var(--primary);
}

.team-item .team-social {
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-social {
  height: 100%;
  opacity: 1;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  height: 40px;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 2px solid var(--primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 40px;
  height: 40px;
  background: var(--primary);
}

.testimonial-carousel .owl-item img {
  width: 150px;
  height: 150px;
}

/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--light);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  background: #092139;
}

.copyright a {
  color: var(--primary);
}

.copyright a:hover {
  color: var(--light);
}

/* FORCE PRIMARY COLOR OVERRIDE */

.bg-primary {
  background-color: var(--primary) !important;
}

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

.btn-primary {
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  color: #fff !important;
}

.btn-primary:hover {
  background-color: #e8661a !important;
  border-color: #e8661a !important;
}

.btn-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
  background-color: var(--primary) !important;
  color: #fff !important;
}

.btn-square.bg-primary {
  background-color: var(--secondary) !important;
}

.bg-light {
  background-color: #fef1e4 !important;
}
.border-primary {
  border-color: var(--secondary) !important;
}

/* HERO FIXED HEIGHT */
.hero-section {
  min-height: 555px;
  position: relative;
  overflow: hidden;
}

.hero-section img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */

  text-align: center;
  background: rgba(0, 53, 99, 0.75);
}

/* MAIN OFFER BOX */
.offer-box {
  background: linear-gradient(200deg, #fff7ed, #ffe8d6);
  padding: 30px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* HOVER EFFECT */
.offer-box:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 119, 34, 0.2);
}

/* BADGE */
.offer-badge {
  display: inline-block;
  background: #ff7722;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  animation: pulseBadge 2s infinite;
}

/* PULSE ANIMATION */
@keyframes pulseBadge {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/* HEADING */
.offer-box h4 {
  color: #003563;
  font-size: 24px;
}

/* SUBTEXT */
.offer-box p {
  font-size: 16px;
  color: #333;
}

/* TIMER TEXT */
.offer-timer {
  font-size: 13px;
  color: #ff7722;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* GLOW BACKGROUND EFFECT */
.offer-box::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 119, 34, 0.15);
  border-radius: 50%;
  top: -40px;
  right: -40px;
  filter: blur(40px);
}

/* MAIN BOX */
.insight-box {
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  border-left: 4px solid #ff7722;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.insight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ICON BASE */
.icon-box {
  width: 40px;
  height: 40px;
  background: #ffe5e5;
  color: #ff4d4d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
}

/* PRIMARY ICON */
.icon-box.primary {
  background: #e6f0ff;
  color: #003563;
}

/* TEXT */
.insight-text {
  font-size: 17px;
  line-height: 1.5;
}

/* LOGO SIZE CONTROL */
.navbar-logo {
  height: 45px;
  width: auto;
  transition: 0.3s ease;
}

/* NAVBAR HEIGHT CONSISTENCY */
.navbar {
  min-height: 70px;
}

/* LOGO HOVER EFFECT */
.navbar-logo:hover {
  transform: scale(1.05);
}

/* ALIGN ITEMS PROPERLY */
.navbar-brand {
  display: flex;
  align-items: center;
}

/* NAV LINKS SPACING */
.navbar-nav .nav-link {
  font-weight: 500;
  padding: 20px 15px;
}

/* ACTIVE + HOVER EFFECT */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary) !important;
}

/* CTA BUTTON FIX */
.navbar .btn-primary {
  height: 70px;
  display: flex;
  align-items: center;
}

/* MOBILE FIX */
@media (max-width: 991px) {
  .navbar-logo {
    height: 35px;
  }

  .navbar .btn-primary {
    height: auto;
    padding: 10px 20px;
  }
}

/* HERO SECTION BACKGROUND */
.hero-section {
  background: linear-gradient(135deg, #fef1e4 50%, #ffffff 50%);
  padding: 80px 0;
}

/* TAG */
.hero-tag {
  font-size: 16px;
  letter-spacing: 1px;
  color: #003563;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* TITLE */
.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #003563;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* DESCRIPTION */
.hero-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* PRICE */
.hero-price {
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

/* BUTTONS */
.hero-btns .btn-primary {
  background: #ff7722;
  border: none;
}

.hero-btns .btn-primary:hover {
  background: #e8651a;
}

.hero-btns .btn-outline-primary {
  border: 2px solid #003563;
  color: #003563;
}

.hero-btns .btn-outline-primary:hover {
  background: #003563;
  color: #fff;
}

/* IMAGE BOX */
.hero-img-box {
  background: linear-gradient(135deg, #eae6f5, #ffffff);
  padding: 15px;
  border-radius: 15px;
}

.hero-img-box img {
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-section {
    height: auto;
    padding: 40px 0;
  }
  .hero-img-box {
    margin-top: 30px;
  }
  .hero-img-box img {
    max-width: 100%;
    height: auto;
  }
}

html {
  scroll-behavior: smooth;
}

/* Global fade-in system */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}
.hero-title {
  animation: fadeSlide 1s ease forwards;
}

.hero-desc {
  animation: fadeSlide 1.2s ease forwards;
}

.hero-btns {
  animation: fadeSlide 1.4s ease forwards;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bg-white {
  transition: 0.4s ease;
}

.bg-white:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
}

.btn:hover::after {
  width: 100%;
}
.btn-square i {
  transition: 0.3s;
}

.d-flex:hover .btn-square i {
  transform: scale(1.2);
}
.accordion-button {
  transition: 0.3s;
}

.accordion-button:hover {
  background: #fef1e4;
}

.accordion-button:not(.collapsed) {
  background: #003563;
  color: #fff;
}
.bg-primary {
  position: relative;
  overflow: hidden;
}

.bg-primary::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  animation: float 6s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
.courses-item {
  transition: 0.4s ease;
}

.courses-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999; /* FIX: bring it above everything */

  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;

  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

  transition: all 0.3s ease;
}
.about-img-box {
  border-radius: 15px;
  overflow: hidden;
}

.about-img-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .about-img-box {
    margin-top: 30px;
  }
}

/* RESPONSIVE FIX FOR ELIGIBILITY SECTION */
@media (max-width: 768px) {
  /* Fix alignment (VERY IMPORTANT) */
  #eligibility .d-flex {
    align-items: flex-start !important;
  }

  /* Improve icon box spacing */
  #eligibility .btn-square {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    margin-top: 3px;
  }

  /* Better spacing between items */
  #eligibility .mb-3 {
    margin-bottom: 15px !important;
  }

  /* Improve text readability */
  #eligibility p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Fix right section spacing */
  #eligibility .p-5 {
    padding: 25px !important;
  }
}

/* IMPACT SECTION MOBILE FIX */
@media (max-width: 768px) {
  /* Reduce card padding */
  #curriculum .bg-light {
    padding: 15px !important;
  }

  /* Reduce icon size */
  #curriculum i {
    font-size: 16px;
    margin-bottom: 5px !important;
  }

  /* Reduce number size */
  #curriculum h2 {
    font-size: 20px;
  }

  /* Improve small text */
  #curriculum small {
    font-size: 12px;
  }

  /* Reduce spacing between cards */
  #curriculum .row.g-4 {
    gap: 10px !important;
  }
}

.whats-app {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 90px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.my-float {
  margin-top: 13px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 10px;
}

.hero-highlights span {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.fpga-problem-section {
  background: #ffffff;
}

.fpga-problem-highlight {
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  border-left: 4px solid #ff7722;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.fpga-problem-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.fpga-problem-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fpga-problem-icon.danger {
  background: #ffe5e5;
  color: #ff4d4d;
}

.fpga-problem-icon.success {
  background: #e6f0ff;
  color: #003563;
}

.fpga-solution-highlight {
  background: #fef1e4;
  padding: 16px 20px;
  border-radius: 10px;
  border-left: 4px solid #ff7722;
}

.fpga-solution-icon {
  background: #fef1e4;
  border-radius: 8px;
}

.fpga-solution-card {
  background: linear-gradient(135deg, #003563 0%, #0c2b4b 100%);
  position: relative;
  overflow: hidden;
}

.fpga-solution-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

.fpga-solution-card-icon {
  color: #ffb37a;
  font-size: 18px;
  margin-top: 4px;
}

.fpga-value-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

/* Animated Top Border */
.fpga-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #ff7722;
  transition: width 0.35s ease;
}

/* Hover Effects */
.fpga-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 119, 34, 0.15);
}

.fpga-value-card:hover::before {
  width: 100%;
}

.fpga-value-card:hover .fpga-value-icon {
  transform: scale(1.08);
  background: #ff7722;
  color: #fff;
}

.fpga-value-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #fef1e4;
  color: #ff7722;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.fpga-value-card h5 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #003563;
  font-weight: 600;
}

.fpga-value-card p {
  margin-bottom: 0;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .fpga-value-card {
    padding: 25px 20px;
  }

  .fpga-value-card h5 {
    font-size: 18px;
  }
}

.fpga-eligibility-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fpga-eligibility-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 12px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.fpga-eligibility-item:hover {
  transform: translateX(8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.fpga-eligibility-item p {
  margin: 0;
  font-weight: 500;
  color: #222;
}

.fpga-eligibility-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ff7722;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.fpga-eligibility-item:hover .fpga-eligibility-icon {
  transform: scale(1.1) rotate(5deg);
}

.fpga-eligibility-card {
  background: linear-gradient(135deg, #003563, #0c2b4b);
  color: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 53, 99, 0.18);
  position: relative;
  overflow: hidden;
}

.fpga-eligibility-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

.fpga-eligibility-card h4 {
  color: #fff;
  margin-bottom: 25px;
}

.fpga-eligibility-card-item {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.fpga-eligibility-card-item i {
  color: #ffb37a;
  margin-top: 4px;
}

.fpga-eligibility-bottom {
  margin-top: 25px;
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: 12px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .fpga-eligibility-card {
    padding: 28px 22px;
  }

  .fpga-eligibility-item {
    align-items: flex-start;
  }

  .fpga-eligibility-icon {
    width: 42px;
    height: 42px;
  }
}

.fpga-eligibility-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fpga-eligibility-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 12px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.fpga-eligibility-item:hover {
  transform: translateX(8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.fpga-eligibility-item p {
  margin: 0;
  font-weight: 500;
  color: #222;
}

.fpga-eligibility-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ff7722;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.fpga-eligibility-item:hover .fpga-eligibility-icon {
  transform: scale(1.1) rotate(5deg);
}

.fpga-eligibility-card {
  background: linear-gradient(135deg, #003563, #0c2b4b);
  color: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 53, 99, 0.18);
  position: relative;
  overflow: hidden;
}

.fpga-eligibility-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

.fpga-eligibility-card h4 {
  color: #fff;
  margin-bottom: 25px;
}

.fpga-eligibility-card-item {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.fpga-eligibility-card-item i {
  color: #ffb37a;
  margin-top: 4px;
}

.fpga-eligibility-bottom {
  margin-top: 25px;
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: 12px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .fpga-eligibility-card {
    padding: 28px 22px;
  }

  .fpga-eligibility-item {
    align-items: flex-start;
  }

  .fpga-eligibility-icon {
    width: 42px;
    height: 42px;
  }
}

.fpga-program-section {
  background: #ffffff;
}

.fpga-program-card {
  background: #fef1e4;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.fpga-program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(255, 119, 34, 0.25));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.fpga-program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.fpga-program-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #ff7722;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.35s ease;
}

.fpga-program-card:hover .fpga-program-icon {
  transform: scale(1.08) rotate(6deg);
  box-shadow: 0 10px 25px rgba(255, 119, 34, 0.35);
}

.fpga-program-card h5 {
  color: #003563;
  font-weight: 600;
  margin-bottom: 10px;
}

.fpga-program-card p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .fpga-program-card {
    padding: 24px 18px;
  }

  .fpga-program-icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .fpga-program-card h5 {
    font-size: 18px;
  }

  .fpga-program-card p {
    font-size: 14px;
  }
}

.fpga-eligibility-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 28px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.fpga-mini-stat {
  background: rgba(255, 255, 255, 0.12);
  padding: 18px 15px;
  border-radius: 12px;
  text-align: center;
}

.fpga-mini-stat h5 {
  color: #ffb37a;
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 700;
}

.fpga-mini-stat p {
  margin: 0;
  font-size: 13px;
  color: #fff;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .fpga-eligibility-mini-stats {
    grid-template-columns: 1fr;
  }
}

.fpga-batch-section {
  background: linear-gradient(135deg, #003563 0%, #0c2b4b 100%);
  position: relative;
  overflow: hidden;
}

.fpga-batch-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.fpga-batch-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.fpga-batch-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.fpga-batch-card span {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #ffb37a;
  line-height: 1;
  margin-bottom: 10px;
}

.fpga-batch-card p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .fpga-batch-card {
    padding: 25px 15px;
  }

  .fpga-batch-card span {
    font-size: 34px;
  }

  .fpga-batch-card p {
    font-size: 14px;
  }
}

.fpga-timing-section {
  background: linear-gradient(135deg, #ff7722 0%, #e8661a 100%);
  position: relative;
  overflow: hidden;
}

.fpga-timing-section::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -80px;
  left: -80px;
}

.fpga-timing-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
}

.fpga-timing-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.fpga-timing-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.fpga-timing-card:hover .fpga-timing-icon {
  transform: scale(1.08) rotate(6deg);
}

.fpga-timing-card h4 {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.fpga-timing-card p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .fpga-timing-card {
    padding: 28px 20px;
  }

  .fpga-timing-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .fpga-timing-card p {
    font-size: 15px;
  }
}

.fpga-roadmap {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
}

.fpga-roadmap::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #ff7722, #003563);
  border-radius: 20px;
}

.fpga-roadmap-item {
  position: relative;
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
}

.fpga-roadmap-number {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7722, #e8661a);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(255, 119, 34, 0.3);
}

.fpga-roadmap-content {
  background: #fff;
  padding: 28px 30px;
  border-radius: 16px;
  flex: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.fpga-roadmap-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.fpga-roadmap-content h4 {
  color: #003563;
  margin-bottom: 16px;
  font-weight: 600;
}

.fpga-roadmap-content ul {
  padding-left: 18px;
  margin: 0;
}

.fpga-roadmap-content ul li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.7;
}

.fpga-roadmap-content ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .fpga-roadmap::before {
    left: 22px;
  }

  .fpga-roadmap-item {
    gap: 15px;
    margin-bottom: 28px;
  }

  .fpga-roadmap-number {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 16px;
  }

  .fpga-roadmap-content {
    padding: 22px 18px;
  }

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

  .fpga-roadmap-content ul li {
    font-size: 14px;
  }
}

.fpga-projects-section {
  background: #ffffff;
}

.fpga-project-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.fpga-project-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, #ff7722, #003563);
  transition: all 0.4s ease;
}

.fpga-project-card:hover::before {
  left: 0;
}

.fpga-project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.fpga-project-card i {
  font-size: 34px;
  color: #ff7722;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.fpga-project-card:hover i {
  transform: scale(1.12);
  color: #003563;
}

.fpga-project-card h5 {
  color: #003563;
  font-weight: 600;
  margin-bottom: 12px;
}

.fpga-project-card p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .fpga-project-card {
    padding: 24px 18px;
  }

  .fpga-project-card i {
    font-size: 28px;
  }

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

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

.fpga-outcomes-section {
  background: #fef1e4;
}

.fpga-outcome-highlight {
  background: #003563;
  color: #fff;
  padding: 22px 24px;
  border-radius: 14px;
  font-weight: 500;
  line-height: 1.7;
  box-shadow: 0 15px 35px rgba(0, 53, 99, 0.15);
}

.fpga-outcome-card {
  background: #fff;
  padding: 22px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  border-left: 4px solid transparent;
}

.fpga-outcome-card:hover {
  transform: translateY(-6px);
  border-left: 4px solid #ff7722;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.fpga-outcome-card i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: #fef1e4;
  color: #ff7722;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.35s ease;
}

.fpga-outcome-card:hover i {
  background: #ff7722;
  color: #fff;
  transform: scale(1.08);
}

.fpga-outcome-card span {
  font-weight: 500;
  color: #222;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .fpga-outcome-highlight {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .fpga-outcome-card {
    padding: 18px 16px;
    gap: 12px;
  }

  .fpga-outcome-card span {
    font-size: 14px;
  }

  .fpga-outcome-card i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 16px;
  }

  .fpga-outcome-highlight {
    padding: 18px;
    font-size: 14px;
  }
}

.fpga-mentor-section {
  background: linear-gradient(135deg, #111111 0%, #1b1b1b 100%);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.fpga-mentor-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.fpga-mentor-card {
  background: #1f1f1f;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fpga-mentor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 119, 34, 0.35);
}

.fpga-mentor-image {
  height: 320px;
  overflow: hidden;
}

.fpga-mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.fpga-mentor-card:hover .fpga-mentor-image img {
  transform: scale(1.05);
}

.fpga-mentor-content {
  padding: 28px 24px;
}

.fpga-mentor-content h4 {
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}

.fpga-mentor-role {
  color: #bbb;
  margin-bottom: 14px;
  font-size: 15px;
}

.fpga-mentor-badge {
  display: inline-block;
  background: rgba(255, 119, 34, 0.12);
  color: #ffb37a;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
}

.fpga-mentor-desc {
  color: #ddd;
  margin-bottom: 0;
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 768px) {
  .fpga-mentor-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .fpga-mentor-image {
    height: 260px;
  }

  .fpga-mentor-content {
    padding: 22px 18px;
  }

  .fpga-mentor-desc {
    font-size: 14px;
  }
}

.fpga-scarcity-section {
  background: #ffffff;
}

.fpga-scarcity-box {
  background: linear-gradient(135deg, #ff7722 0%, #e8661a 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(255, 119, 34, 0.25);
  transition: all 0.35s ease;
}

.fpga-scarcity-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(255, 119, 34, 0.35);
}

/* Animated Glow Circle */
.fpga-scarcity-box::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -80px;
  animation: fpgaPulseGlow 4s infinite ease-in-out;
}

@keyframes fpgaPulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.fpga-scarcity-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  animation: fpgaBounce 2.2s infinite;
}

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

.fpga-scarcity-box h6 {
  color: #ffe1cc;
  letter-spacing: 1px;
  font-weight: 600;
}

.fpga-scarcity-box p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-size: 17px;
}

.fpga-scarcity-note {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  padding: 14px 24px;
  border-radius: 40px;
  font-weight: 600;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .fpga-scarcity-box {
    padding: 40px 22px;
    border-radius: 18px;
  }

  .fpga-scarcity-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .fpga-scarcity-box p {
    font-size: 15px;
  }

  .fpga-scarcity-note {
    padding: 12px 18px;
    font-size: 14px;
    line-height: 1.5;
  }
}

.fpga-faq-accordion .accordion-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.fpga-faq-accordion .accordion-button {
  font-weight: 600;
  padding: 20px 22px;
  background: #fff;
  color: #003563;
  box-shadow: none;
}

.fpga-faq-accordion .accordion-button:not(.collapsed) {
  background: #fef1e4;
  color: #ff7722;
}

.fpga-faq-accordion .accordion-body {
  padding: 20px 22px;
  line-height: 1.7;
  color: #555;
  background: #fff;
}

.fpga-final-cta-box {
  background: linear-gradient(135deg, #003563 0%, #0c2b4b 100%);
  color: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 53, 99, 0.18);
  transition: all 0.35s ease;
}

.fpga-final-cta-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 53, 99, 0.25);
}

@media (max-width: 768px) {
  .fpga-final-cta-box {
    padding: 35px 22px;
  }

  .fpga-faq-accordion .accordion-button,
  .fpga-faq-accordion .accordion-body {
    padding: 16px 16px;
  }
}

.fpga-scarcity-section {
  background: #ffffff;
}

.fpga-scarcity-box {
  background: linear-gradient(135deg, #ff7722 0%, #e8661a 100%);
  border-radius: 18px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  box-shadow: 0 15px 35px rgba(255, 119, 34, 0.18);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.fpga-scarcity-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(255, 119, 34, 0.25);
}

.fpga-scarcity-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -70px;
  right: -50px;
  animation: fpgaPulseGlow 4s infinite ease-in-out;
}

.fpga-scarcity-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  animation: fpgaBounce 2.2s infinite;
}

.fpga-scarcity-content h5 {
  font-weight: 600;
  margin-bottom: 6px;
}

.fpga-scarcity-content p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  font-size: 15px;
}

.fpga-scarcity-note {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .fpga-scarcity-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .fpga-scarcity-note {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .fpga-scarcity-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 18px;
  }

  .fpga-scarcity-content h5 {
    font-size: 18px;
  }

  .fpga-scarcity-content p {
    font-size: 14px;
  }

  .fpga-scarcity-note {
    font-size: 13px;
    padding: 8px 14px;
  }
}

.fpga-hero-img-box {
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fpga-hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 991px) {
  .fpga-hero-img-box {
    height: auto;
    margin-top: 40px;
  }

  .fpga-hero-img-box img {
    height: auto;
  }
}

#heroImageSlider,
#heroImageSlider .carousel-inner,
#heroImageSlider .carousel-item {
  height: 100%;
}

#heroImageSlider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.footer-contact-inline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

@media (min-width: 1200px) {
  .footer-contact-inline {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}
.fpga-footer {
  background: #f5f5f5;
  font-size: 15px;
}

.fpga-footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
}

.fpga-footer-contact span {
  color: #0c2b4b;
  font-weight: 500;
}

.fpga-footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.fpga-footer-social a {
  color: #003563;
  font-size: 18px;
  transition: 0.3s ease;
}

.fpga-footer-social a:hover {
  color: #ff7722;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .fpga-footer-contact,
  .fpga-footer-social {
    justify-content: center;
    text-align: center;
  }

  .fpga-footer-contact {
    gap: 15px;
    flex-direction: column;
  }
}

/* TOP HIGHLIGHT STRIP */
.top-highlight-strip {
  background: linear-gradient(90deg, #003563, #0c2b4b);
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1050;
}

.top-highlight-strip span {
  color: #ffb37a;
  margin: 0 10px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .top-highlight-strip {
    font-size: 12px;
    padding: 8px 10px;
    line-height: 1.6;
  }

  .top-highlight-strip span {
    margin: 0 6px;
  }
}

/* PROGRAM OVERVIEW SECTION */
.program-overview-section {
  background: #ffffff;
}

.program-overview-content {
  padding-right: 20px;
}

.program-overview-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.program-point {
  background: #fef1e4;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 500;
  color: #003563;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.35s ease;
}

.program-point i {
  color: #ff7722;
  font-size: 18px;
}

.program-point:hover {
  transform: translateX(8px);
  background: #fff7ef;
  box-shadow: 0 12px 25px rgba(255, 119, 34, 0.12);
}

/* RIGHT CARD */
.program-overview-card {
  background: linear-gradient(135deg, #003563, #0c2b4b);
  color: #fff;
  padding: 50px 40px;
  border-radius: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 53, 99, 0.18);
  transition: all 0.4s ease;
}

.program-overview-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

.program-overview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 60px rgba(0, 53, 99, 0.25);
}

.program-card-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #ffb37a;
  transition: all 0.35s ease;
}

.program-overview-card:hover .program-card-icon {
  transform: scale(1.1) rotate(8deg);
  background: rgba(255, 255, 255, 0.18);
}

.program-overview-card h4 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.program-overview-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.8;
}

/* MOBILE */
@media (max-width: 768px) {
  .program-overview-card {
    padding: 35px 25px;
  }

  .program-card-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

  .program-point {
    font-size: 14px;
  }
}

/* SPECIALIZATION SECTION */
.specialization-section {
  background: linear-gradient(135deg, #111111 0%, #1b1b1b 100%);
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Background Decorative Glow */
.specialization-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 119, 34, 0.08);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

.specialization-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(0, 53, 99, 0.15);
  border-radius: 50%;
  bottom: -80px;
  right: -80px;
}

.specialization-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 35px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.specialization-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  transition: all 0.4s ease;
}

.vlsi-card::before {
  background: linear-gradient(90deg, #003563, #ff7722);
}

.embedded-card::before {
  background: linear-gradient(90deg, #ff7722, #003563);
}

.specialization-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.08);
}

.specialization-icon {
  width: 75px;
  height: 75px;
  border-radius: 18px;
  background: #fef1e4;
  color: #ff7722;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 25px;
  transition: all 0.35s ease;
}

.specialization-card:hover .specialization-icon {
  transform: scale(1.1) rotate(8deg);
  background: #ff7722;
  color: #fff;
}

.specialization-card h3 {
  color: #003563;
  margin-bottom: 15px;
  font-weight: 700;
}

.specialization-subtitle {
  color: #555;
  font-weight: 500;
  margin-bottom: 20px;
}

.specialization-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.specialization-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #444;
  transition: all 0.3s ease;
}

.specialization-list li:last-child {
  border-bottom: none;
}

.specialization-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 13px;
  color: #ff7722;
  font-size: 14px;
}

.specialization-list li:hover {
  padding-left: 36px;
  color: #003563;
}

.specialization-section h6,
.specialization-section h1,
.specialization-section p {
  color: #fff;
}

.specialization-section h6.text-primary {
  color: #ffb37a !important;
}

/* MOBILE */
@media (max-width: 768px) {
  .specialization-card {
    padding: 30px 22px;
  }

  .specialization-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .specialization-card h3 {
    font-size: 24px;
  }

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

/* COURSE MODULES SECTION */
.course-modules-section {
  background: #ffffff;
}

.course-modules-roadmap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.course-modules-roadmap::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #ff7722, #003563);
  border-radius: 20px;
}

.course-module-item {
  display: flex;
  gap: 25px;
  position: relative;
  margin-bottom: 30px;
}

.course-module-number {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7722, #e8661a);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 12px 28px rgba(255, 119, 34, 0.25);
  transition: all 0.35s ease;
}

.course-module-content {
  flex: 1;
  background: #fff;
  padding: 24px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  border-left: 4px solid transparent;
}

.course-module-content h4 {
  margin: 0;
  color: #003563;
  font-weight: 600;
}

.course-module-item:hover .course-module-number {
  transform: scale(1.08) rotate(8deg);
}

.course-module-item:hover .course-module-content {
  transform: translateY(-5px);
  border-left: 4px solid #ff7722;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* MOBILE */
@media (max-width: 768px) {
  .course-modules-roadmap::before {
    left: 22px;
  }

  .course-module-item {
    gap: 15px;
  }

  .course-module-number {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 16px;
  }

  .course-module-content {
    padding: 18px 16px;
  }

  .course-module-content h4 {
    font-size: 17px;
  }
}

/* PROJECT TRAINING SECTION */
.project-training-section {
  background: linear-gradient(135deg, #111111 0%, #1b1b1b 100%);
  position: relative;
  overflow: hidden;
}

.project-training-section::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255, 119, 34, 0.06);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

/* LEFT HIGHLIGHT */
.project-training-highlight {
  background: linear-gradient(135deg, #003563 0%, #0c2b4b 100%);
  padding: 45px 35px;
  border-radius: 22px;
  color: #fff;
  height: 100%;
  box-shadow: 0 25px 50px rgba(0, 53, 99, 0.18);
  transition: all 0.35s ease;
}

.project-training-highlight:hover {
  transform: translateY(-8px);
}

.project-training-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffb37a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 25px;
  transition: all 0.35s ease;
}

.project-training-highlight:hover .project-training-icon {
  transform: scale(1.1) rotate(8deg);
}

.project-training-highlight h3 {
  color: #fff;
  margin-bottom: 18px;
}

.project-training-highlight p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
  line-height: 1.8;
}

/* RIGHT FEATURE CARDS */
.project-training-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 28px 22px;
  border-radius: 18px;
  height: 100%;
  transition: all 0.35s ease;
  text-align: center;
}

.project-training-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 119, 34, 0.25);
}

.project-training-card i {
  font-size: 30px;
  color: #ff7722;
  margin-bottom: 18px;
  transition: all 0.35s ease;
}

.project-training-card:hover i {
  transform: scale(1.12);
  color: #ffb37a;
}

.project-training-card h5 {
  color: #fff;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .project-training-highlight {
    padding: 32px 24px;
  }

  .project-training-card {
    padding: 22px 18px;
  }

  .project-training-card h5 {
    font-size: 16px;
  }
}

/* CERTIFICATION PROCESS SECTION */
.certification-process-section {
  background: #f8fbff;
  position: relative;
  overflow: hidden;
}

.certification-process-section::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255, 119, 34, 0.05);
  border-radius: 50%;
  top: -80px;
  left: -80px;
}

/* CERT CARDS */
.cert-process-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  border-top: 4px solid transparent;
}

.cert-process-card:hover {
  transform: translateY(-8px);
  border-top: 4px solid #ff7722;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.08);
}

.cert-process-card i {
  font-size: 30px;
  color: #ff7722;
  margin-bottom: 18px;
}

.cert-process-card h5 {
  color: #003563;
  margin-bottom: 12px;
}

.cert-process-card p {
  margin-bottom: 0;
  color: #666;
}

/* RIGHT VISUAL CARD */
.cert-process-visual {
  background: linear-gradient(135deg, #003563, #0c2b4b);
  padding: 45px 35px;
  border-radius: 22px;
  color: #fff;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 53, 99, 0.18);
  transition: all 0.35s ease;
}

.cert-process-visual:hover {
  transform: translateY(-8px);
}

.cert-visual-icon {
  width: 85px;
  height: 85px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffb37a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 25px;
}

.cert-process-visual h4 {
  color: #fff;
  margin-bottom: 15px;
}

.cert-process-visual p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
  line-height: 1.8;
}

/* MOBILE */
@media (max-width: 768px) {
  .cert-process-card {
    padding: 22px 18px;
  }

  .cert-process-visual {
    padding: 32px 24px;
  }
}

/* CERTIFICATION IMAGE */
.cert-process-image-box {
  background: #fff;
  padding: 18px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.cert-process-image-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.12);
}

.cert-process-image-box img {
  border-radius: 14px;
  width: 100%;
  display: block;
}

/* ADDITIONAL BENEFITS SECTION */
.additional-benefits-section {
  background: #f8fbff;
  position: relative;
}

.additional-benefit-card {
  background: #fff;
  padding: 35px 28px;
  border-radius: 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  border-bottom: 4px solid transparent;
}

.additional-benefit-card:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid #ff7722;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 25px;
  border-radius: 20px;
  background: #fef1e4;
  color: #ff7722;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all 0.35s ease;
}

.additional-benefit-card:hover .benefit-icon {
  background: #ff7722;
  color: #fff;
  transform: scale(1.08) rotate(8deg);
}

.additional-benefit-card h4 {
  color: #003563;
  margin-bottom: 15px;
  font-weight: 600;
}

.additional-benefit-card p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.8;
}

/* MOBILE */
@media (max-width: 768px) {
  .additional-benefit-card {
    padding: 28px 22px;
  }

  .benefit-icon {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }
}

/* DURATION & BATCH SECTION */
.duration-batch-section {
  background: linear-gradient(135deg, #f8fbff 0%, #eef5fc 100%);
  position: relative;
}

.batch-schedule-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.batch-schedule-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
}

.summer-batch::before {
  background: linear-gradient(90deg, #ff7722, #ffb37a);
}

.winter-batch::before {
  background: linear-gradient(90deg, #003563, #4f8bc9);
}

.batch-schedule-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.08);
}

.batch-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  border-radius: 20px;
  background: #fef1e4;
  color: #ff7722;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all 0.35s ease;
}

.winter-batch .batch-icon {
  background: #edf4ff;
  color: #003563;
}

.batch-schedule-card:hover .batch-icon {
  transform: scale(1.08) rotate(8deg);
}

.batch-schedule-card h3 {
  color: #003563;
  margin-bottom: 18px;
  font-weight: 700;
}

.batch-duration {
  display: inline-block;
  background: #f8fbff;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  color: #003563;
  margin-bottom: 18px;
}

.batch-date {
  color: #666;
  margin-bottom: 0;
  line-height: 1.8;
}

.batch-note {
  margin-top: 40px;
  background: #003563;
  color: #fff;
  text-align: center;
  padding: 18px 24px;
  border-radius: 16px;
  font-weight: 500;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 15px 35px rgba(0, 53, 99, 0.18);
}

.batch-note i {
  color: #ffb37a;
}

/* MOBILE */
@media (max-width: 768px) {
  .batch-schedule-card {
    padding: 30px 22px;
  }

  .batch-icon {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }

  .batch-note {
    font-size: 14px;
    padding: 15px 18px;
  }
}

/* LEARNING MODES SECTION */
.learning-modes-section {
  background: #f8fbff;
  position: relative;
}

.learning-mode-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border-top: 5px solid transparent;
}

.offline-mode {
  border-top-color: #ff7722;
}

.online-mode {
  border-top-color: #003563;
}

.learning-mode-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.08);
}

.learning-mode-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  border-radius: 20px;
  background: #fef1e4;
  color: #ff7722;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: all 0.35s ease;
}

.online-mode .learning-mode-icon {
  background: #edf4ff;
  color: #003563;
}

.learning-mode-card:hover .learning-mode-icon {
  transform: scale(1.08) rotate(8deg);
}

.learning-mode-card h3 {
  color: #003563;
  margin-bottom: 15px;
  font-weight: 700;
}

.learning-mode-card p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.8;
}

.learning-mode-note {
  margin-top: 40px;
  background: linear-gradient(135deg, #003563, #0c2b4b);
  color: #fff;
  text-align: center;
  padding: 18px 24px;
  border-radius: 16px;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 15px 35px rgba(0, 53, 99, 0.18);
}

.learning-mode-note i {
  color: #ffb37a;
}

/* MOBILE */
@media (max-width: 768px) {
  .learning-mode-card {
    padding: 30px 22px;
  }

  .learning-mode-icon {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }

  .learning-mode-note {
    font-size: 14px;
    padding: 15px 18px;
  }
}

/* PROGRAM FEE SECTION */
.program-fee-section {
  background: linear-gradient(135deg, #f8fbff 0%, #eef5fc 100%);
  position: relative;
}

.program-fee-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.program-fee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.1);
}

/* HEADER */
.program-fee-header {
  background: linear-gradient(135deg, #003563, #0c2b4b);
  color: #fff;
  text-align: center;
  padding: 35px 20px;
}

.program-fee-header h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.program-fee-header span {
  color: #ffb37a;
  font-size: 15px;
  font-weight: 500;
}

/* INCLUDES GRID */
.program-fee-includes {
  padding: 35px 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.fee-include-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fbff;
  padding: 14px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.fee-include-item:hover {
  transform: translateX(6px);
  background: #eef5fc;
}

.fee-include-item i {
  color: #ff7722;
  font-size: 18px;
}

.fee-include-item span {
  font-weight: 500;
  color: #003563;
}

/* NOTE */
.program-fee-note {
  background: #fef1e4;
  text-align: center;
  padding: 18px 20px;
  font-weight: 600;
  color: #ff7722;
}

/* MOBILE */
@media (max-width: 768px) {
  .program-fee-header h2 {
    font-size: 38px;
  }

  .program-fee-includes {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }
}

/* PROGRAM FEE BUTTON */
.program-fee-btn-wrap {
  text-align: center;
  padding: 28px 20px 35px;
  background: #fff;
}

.program-fee-btn {
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 12px 25px rgba(0, 53, 99, 0.18);
  transition: all 0.35s ease;
}

.program-fee-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0, 53, 99, 0.25);
}

/* KEY OUTCOMES SECTION */
.key-outcomes-section {
  background: linear-gradient(135deg, #003563 0%, #0c2b4b 100%);
  position: relative;
  overflow: hidden;
}

.key-outcomes-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

.key-outcomes-section h6.text-primary {
  color: #ffb37a !important;
}

.key-outcomes-section h1,
.key-outcomes-section p {
  color: #fff;
}

/* OUTCOME CARDS */
.outcome-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 24px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
}

.outcome-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 179, 122, 0.35);
}

.outcome-card i {
  font-size: 34px;
  color: #ffb37a;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.outcome-card:hover i {
  transform: scale(1.12) rotate(8deg);
}

.outcome-card h5 {
  color: #fff;
  margin-bottom: 0;
  line-height: 1.7;
  font-size: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
  .outcome-card {
    padding: 24px 18px;
  }

  .outcome-card h5 {
    font-size: 16px;
  }
}

/* VLSI HERO BUTTONS */
.vlsi-hero-buttons-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* TOP ROW */
.vlsi-hero-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* SECOND ROW */
.vlsi-hero-btn-row-secondary {
  display: flex;
  align-items: center;
}

/* UNIFORM BUTTON HEIGHT */
.vlsi-hero-buttons-wrap .btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .vlsi-hero-btn-row,
  .vlsi-hero-btn-row-secondary {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .vlsi-hero-buttons-wrap .btn {
    width: 100%;
  }
}

/* =========================
   VLSI PAGE HERO SECTION
========================= */

.vlsi-hero-section {
  padding: 70px 0 80px;
  background: #fef1e4;
  position: relative;
  overflow: hidden;
}

/* Decorative Glow */
.vlsi-hero-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255, 119, 34, 0.05);
  border-radius: 50%;
  top: -120px;
  right: -120px;
  z-index: 0;
}

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

/* IMAGE BOX */
.vlsi-hero-img-box {
  background: linear-gradient(135deg, #eae6f5, #ffffff);
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  height: 500px;
}

.vlsi-hero-img-box,
.vlsi-hero-img-box .carousel-inner,
.vlsi-hero-img-box .carousel-item {
  height: 100%;
}

.vlsi-hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* BUTTON WRAPPER */
.vlsi-hero-buttons-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-top: 30px;
}

/* TOP BUTTON ROW */
.vlsi-hero-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* SECOND ROW */
.vlsi-hero-btn-row-secondary {
  display: flex;
}

/* BUTTON SIZE FIX */
.vlsi-hero-buttons-wrap .btn {
  min-height: 52px;
  padding-left: 26px;
  padding-right: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE */
@media (max-width: 991px) {
  .vlsi-hero-section {
    padding: 50px 0;
  }

  .vlsi-hero-img-box {
    height: auto;
    margin-top: 30px;
  }

  .vlsi-hero-img-box img {
    height: auto;
  }

  .vlsi-hero-btn-row,
  .vlsi-hero-btn-row-secondary {
    flex-direction: column;
    width: 100%;
  }

  .vlsi-hero-buttons-wrap .btn {
    width: 100%;
  }
}
/* TRACK CARD DESIGN */
.track-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.track-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.track-card-header {
  background: linear-gradient(135deg, #003563, #0c2b4b);
  color: #fff;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.track-card-header h4 {
  margin: 0;
  font-size: 22px;
  color: #fff;
}

.track-card-header span {
  background: rgba(255, 255, 255, 0.14);
  padding: 8px 14px;
  border-radius: 30px;
  font-weight: 600;
  color: #ffb37a;
}

.track-card-body {
  padding: 28px 24px;
}

.track-card-body h6 {
  color: #003563;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 22px;
}

.track-card-body h6:first-child {
  margin-top: 0;
}

.track-card-body ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.track-card-body ul li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #555;
}

.track-ideal {
  margin-top: 22px;
  padding: 14px 16px;
  background: #fef1e4;
  border-radius: 12px;
  font-weight: 600;
  color: #003563;
}

@media (max-width: 768px) {
  .track-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .track-card-header h4 {
    font-size: 20px;
  }

  .track-card-body {
    padding: 22px 18px;
  }

  .track-card-body ul li {
    font-size: 14px;
  }
}

.pricing-modern-section {
  background: #fef1e4;
}

/* Banner */
.limited-pill {
  display: inline-block;
  background: linear-gradient(90deg, #ff5a00, #ff7722);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}
/* PREMIUM PRICING GRID */
.pricing-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.pricing-track-modern {
  position: relative;
  background: #fff;
  padding: 30px 22px;
  border-radius: 22px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

/* TOP ACCENT BAR */
.pricing-track-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #003563, #ff7722);
}

/* HOVER */
.pricing-track-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* ICON */
.track-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: #fef1e4;
  color: #ff7722;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.35s ease;
}

.pricing-track-modern:hover .track-icon {
  transform: scale(1.08) rotate(6deg);
  background: #ff7722;
  color: #fff;
}

/* TITLE */
.pricing-track-modern h5 {
  font-size: 18px;
  font-weight: 700;
  color: #003563;
  margin-bottom: 16px;
  min-height: 48px;
}

/* PRICE */
.track-price {
  display: inline-block;
  background: #fff4ec;
  color: #ff7722;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 24px;
  font-weight: 800;
}

/* FEATURED CARD */
.pricing-track-modern.featured {
  border: 2px solid #ff7722;
  transform: scale(1.03);
}

.pricing-track-modern.featured:hover {
  transform: scale(1.03) translateY(-10px);
}

/* BADGE */
.popular-badge-modern {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ff7722;
  color: #fff;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

/* TABLET */
@media (max-width: 992px) {
  .pricing-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .pricing-grid-modern {
    grid-template-columns: 1fr;
  }

  .pricing-track-modern {
    padding: 26px 18px;
  }

  .track-icon {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .track-price {
    font-size: 20px;
  }
}

/* PRICE WRAPPER */
.track-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* SMALL LABEL */
.price-label {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* PREMIUM PRICE CTA */
.track-price {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff7722, #ff8c42);
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(255, 119, 34, 0.22);
  transition: all 0.35s ease;
  cursor: pointer;
}

/* ICON */
.track-price i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.pricing-track-modern:hover .track-price {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 35px rgba(255, 119, 34, 0.28);
}

.pricing-track-modern:hover .track-price i {
  transform: translateX(4px);
}
/* Bundle Cards */
.bundle-offer {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
}

.featured-bundle {
  background: #003563;
  color: #fff;
  position: relative;
}

.bundle-tag {
  position: absolute;
  top: -12px;
  left: 25px;
  background: #ff7722;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .bundle-offer {
    padding: 28px 22px;
  }
} /* Unified Offer Card */
.unified-offer {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 34px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1e3d7;
  height: 100%;
  transition: 0.3s ease;
}

.unified-offer:hover {
  transform: translateY(-6px);
}

/* Badge */
.offer-badge-top {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #ff7722;
  color: #fff;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 30px;
}

.alt-badge {
  background: #003563;
}

/* Percentage */
.offer-percent {
  font-size: 44px;
  font-weight: 800;
  color: #ff7722;
  line-height: 1;
  margin-bottom: 18px;
}

/* Title */
.unified-offer h3 {
  font-size: 30px;
  font-weight: 700;
  color: #003563;
  margin-bottom: 14px;
}

/* Paragraph */
.unified-offer p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* Highlight Strip */
.offer-highlight {
  background: #fff4ec;
  color: #ff7722;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 26px;
}

/* Button */
.offer-btn {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .unified-offer {
    padding: 30px 22px;
  }

  .offer-percent {
    font-size: 34px;
  }

  .unified-offer h3 {
    font-size: 24px;
  }
}
/* Track List Style */
.offer-track-list {
  background: #f8f5f1;
  border-left: 4px solid #ff7722;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
  color: #003563;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* COMPACT NOTE CARD */
.compact-note-card {
  background: #fff7ef;
  border: 1px solid rgba(255, 119, 34, 0.18);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.compact-note-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 14px;
  background: rgba(255, 119, 34, 0.12);
  color: #ff7722;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.compact-note-card h4 {
  color: #003563;
  margin-bottom: 10px;
  font-weight: 700;
}

.compact-note-card p {
  color: #555;
  line-height: 1.7;
}

/* BENEFITS */
.compact-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compact-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #003563;
  font-weight: 500;
}

.compact-benefits i {
  color: #ff7722;
}

/* MAIN RIGHT CARD */
.transparency-main-card {
  background: linear-gradient(135deg, #003563, #0c2b4b);
  color: #fff;
  padding: 40px 35px;
  border-radius: 22px;
  height: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .compact-note-card {
    flex-direction: column;
  }

  .transparency-main-card {
    padding: 30px 22px;
  }
}

/* FORCE RIGHT CARD TEXT COLORS */
.transparency-main-card,
.transparency-main-card * {
  color: #fff;
}

/* HEADINGS */
.transparency-main-card h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff !important;
}

.transparency-main-card h5 {
  color: #ffb37a !important;
  font-weight: 600;
  margin-bottom: 14px;
}

/* PARAGRAPH */
.transparency-main-card p {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 17px;
  line-height: 1.8;
}

/* LIST */
.transparency-main-card ul li {
  color: #fff !important;
  margin-bottom: 10px;
  font-size: 17px;
}

/* INNER GLASS BOX */
.final-message-box {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

/* CTA BOX */
.transparency-cta {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 18px 20px;
  border-radius: 14px;
  font-size: 17px;
  line-height: 1.7;
  color: #fff !important;
}

/* LEFT CARD ALIGNMENT IMPROVEMENT */
.compact-note-card {
  align-items: flex-start;
}

.compact-note-card h4 {
  margin-bottom: 12px;
  font-size: 28px;
}

.transparency-main-card {
  padding: 48px 40px;
}

/* FOUNDER MESSAGE SECTION */
.founder-message-section {
  background: #ffffff;
}

/* LEFT QUOTE CARD */
.founder-quote-card {
  background: linear-gradient(135deg, #003563, #0c2b4b);
  color: #fff;
  padding: 45px 35px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 53, 99, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-quote-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffb37a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.founder-quote-card h6 {
  color: #ffb37a;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}

.founder-quote-card h2 {
  color: #fff;
  font-size: 34px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 24px;
}

.founder-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
  border-radius: 14px;
  line-height: 1.7;
}

/* RIGHT CONTENT CARD */
.founder-content-card {
  background: #f8fbff;
  padding: 40px 35px;
  border-radius: 24px;
  border: 1px solid rgba(0, 53, 99, 0.06);
}

.founder-content-card p {
  color: #444;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* STRUGGLE BOX */
.founder-struggle-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 25px 0;
}

.founder-struggle-box span {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 500;
  color: #003563;
  display: flex;
  align-items: center;
  gap: 10px;
}

.founder-struggle-box i {
  color: #ff7722;
}

/* BENEFITS BOX */
.founder-benefit-box {
  margin-top: 30px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid #ff7722;
}

.founder-benefit-box h5 {
  color: #003563;
  margin-bottom: 14px;
}

.founder-benefit-box ul {
  margin: 0;
  padding-left: 20px;
}

.founder-benefit-box li {
  margin-bottom: 10px;
  color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
  .founder-quote-card,
  .founder-content-card {
    padding: 30px 22px;
  }

  .founder-quote-card h2 {
    font-size: 26px;
  }
}

/* YOUTUBE VIDEO SECTION */
.youtube-video-section {
  background: #ffffff;
}

/* CARD */
.video-feature-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}

/* THUMBNAIL WRAP */
.video-thumbnail-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.video-thumbnail-wrap img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: 0.4s ease;
}

.video-thumbnail-wrap:hover img {
  transform: scale(1.05);
}

/* PLAY BUTTON */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85px;
  height: 85px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 119, 34, 0.95);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(255, 119, 34, 0.35);
  transition: 0.3s ease;
}

.video-thumbnail-wrap:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
}

/* CONTENT */
.video-content {
  padding: 40px;
}

.video-content h3 {
  color: #003563;
  margin-bottom: 18px;
  font-weight: 700;
}

.video-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* MOBILE */
@media (max-width: 991px) {
  .video-feature-card {
    grid-template-columns: 1fr;
  }

  .video-thumbnail-wrap img {
    min-height: auto;
  }

  .video-content {
    padding: 28px 22px;
  }
}

.track-market-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.track-market-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.track-market-card:hover .track-market-image img {
  transform: scale(1.05);
}

.track-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 30px;
  color: #fff;
}

.track-badge.premium {
  background: #6f42c1;
}

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

.track-market-body h5 {
  font-size: 19px;
  font-weight: 700;
  color: #003563;
  min-height: 54px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.track-market-subtitle {
  font-size: 14px;
  color: black;
  min-height: 56px; /* fixed subtitle area */
  margin-bottom: 0;
}

.track-market-bottom {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  min-height: 52px;
  flex-direction: column;
}

.track-market-rating {
  font-size: 14px;
  color: #ff7722;
  font-weight: 600;
  margin-bottom: 12px;
}

.track-market-rating small {
  color: #777;
  margin-left: 6px;
}

.track-market-price-wrap {
  margin-bottom: 18px;
}

.track-price-main {
  font-size: 28px;
  font-weight: 800;
  color: #111;
}

.track-market-buttons {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.track-market-buttons .btn {
  width: 100%;
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 16px;
}
/* COURSE POPUP */
.course-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 23, 43, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  padding: 20px;
}

.course-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.course-popup-box {
  width: 100%;
  max-width: 750px;
  max-height: 85vh;
  overflow-y: auto;

  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  position: relative;

  transform: translateY(30px);
  transition: 0.35s ease;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
}

.course-popup-overlay.active .course-popup-box {
  transform: translateY(0);
}

.course-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;

  background: #f4f7fb;
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
}

.course-popup-content h4 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.course-popup-content .popup-label {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 15px;
  display: block;
}

.course-popup-content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 25px;
}

.course-popup-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: black;
}

.course-popup-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: 700;
}

.popup-ideal-box {
  background: #f8fbff;
  border-left: 4px solid var(--primary);
  padding: 15px 18px;
  border-radius: 10px;
  font-weight: 500;
  color: #1f2937;
}
/* OLD PRICE STYLE */
.track-price-old {
  font-size: 18px;
  font-weight: 500;
  color: red;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #dc3545;
  margin-left: 3px;
  opacity: 0.9;
}

.track-market-price-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

/* ===============================
   PROGRAM TRACKS RESPONSIVE FIX
   Paste Below Existing CSS
=============================== */

#programs .row {
  row-gap: 24px;
}

#programs .col-lg-3,
#programs .col-md-6 {
  display: flex;
}

#programs .track-market-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

#programs .track-market-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

/* IMAGE FIX */
#programs .track-market-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}



/* BODY FLEX */
#programs .track-market-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 20px;
}

/* TITLE FIX */
#programs .track-market-body h5 {
  font-size: 19px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #003563;
  font-weight: 700;
}



/* SUBTITLE FIX */
#programs .track-market-subtitle {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 18px;
}

/* BOTTOM PUSH */
#programs .track-market-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

/* RATING */
#programs .track-market-rating {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* PRICE */
#programs .track-market-price-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

#programs .track-price-main {
  font-size: 22px;
  font-weight: 800;
  color: #003563;
}

#programs .track-price-old {
  font-size: 16px;
  color: #dc3545;
  text-decoration: line-through;
}

/* BUTTON STACK */
#programs .track-market-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#programs .track-market-buttons .btn {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 16px;
}

/* BADGE FIX */
#programs .track-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
}


/* SMALL MOBILE */
@media (max-width: 480px) {
  #programs .track-market-buttons .btn {
    font-size: 14px;
    min-height: 42px;
  }
}
#programs .track-market-image img {
  transition: transform 0.4s ease;
}
#programs .col-lg-3,
#programs .col-md-6 {
  align-items: stretch;
}


/* MOBILE */
@media (max-width: 767px) {

  #programs .track-market-body {
    padding: 18px 16px;
  }

  #programs .track-market-body h5 {
    font-size: 18px;
  }

  #programs .track-market-subtitle {
    font-size: 14px;
    margin-bottom: 14px;
  }

  #programs .track-price-main {
    font-size: 20px;
  }

  #programs .track-price-old {
    font-size: 14px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

  #programs .track-market-buttons .btn {
    font-size: 14px;
    min-height: 42px;
  }
}

#programs .track-market-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;

  aspect-ratio: 4/3;
  min-height: 220px;
}

#programs .track-market-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.4s ease;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* =========================
   PTA PROGRAM TRACKS
========================= */

.pta-programs-section {
  background: #fef1e4;
}

/* GRID FIX */
.pta-programs-section .row {
  row-gap: 24px;
}

/* CARD */
.pta-track-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;

  width: 100%;
  height: 100%;
}

/* HOVER */
.pta-track-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

/* IMAGE WRAPPER */
.pta-track-image {
  position: relative;

  width: 100%;
  overflow: hidden;

  background: #f5f5f5;

  aspect-ratio: 4 / 3;

  flex-shrink: 0;
}

/* IMAGE */
.pta-track-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transform: translateZ(0);
  -webkit-transform: translateZ(0);

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  transition: transform 0.4s ease;
}

/* IMAGE HOVER */
.pta-track-card:hover .pta-track-image img {
  transform: scale(1.04);
}

/* BADGE */
.pta-track-badge {
  position: absolute;
  top: 16px;
  left: 16px;

  z-index: 2;

  background: #7b3ff2;
  color: #fff;

  padding: 6px 14px;

  border-radius: 40px;

  font-size: 12px;
  font-weight: 700;
}

/* BODY */
.pta-track-body {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding: 24px 24px 26px;
}

/* TITLE */
.pta-track-body h5 {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 700;

  color: #003563;

  margin-bottom: 14px;

  min-height: 56px;
}

/* SUBTITLE */
.pta-track-subtitle {
  font-size: 15px;
  line-height: 1.7;

  color: #555;

  margin-bottom: 24px;

  min-height: 78px;
}

/* BOTTOM */
.pta-track-bottom {
  margin-top: auto;
}

/* RATING */
.pta-track-rating {
  font-size: 15px;
  font-weight: 600;

  color: #ff7722;

  margin-bottom: 18px;
}

.pta-track-rating small {
  color: #666;
  margin-left: 6px;
}

/* PRICE WRAP */
.pta-track-price-wrap {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 22px;

  flex-wrap: wrap;
}

/* MAIN PRICE */
.pta-track-price {
  font-size: 22px;
  font-weight: 800;

  color: #003563;
}

/* OLD PRICE */
.pta-track-old-price {
  font-size: 16px;
  font-weight: 600;

  color: #dc3545;

  text-decoration: line-through;
}

/* BUTTONS */
.pta-track-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* BUTTON */
.pta-track-buttons .btn {
  width: 100%;

  min-height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  font-weight: 700;

  font-size: 16px;
}

/* PRIMARY */
.pta-track-buttons .btn-primary {
  background: #ff7722;
  border-color: #ff7722;
}

/* PRIMARY HOVER */
.pta-track-buttons .btn-primary:hover {
  background: #eb6615;
  border-color: #eb6615;
}

/* OUTLINE */
.pta-track-buttons .btn-outline-primary {
  border: 2px solid #003563;
  color: #003563;
  background: transparent;
}

/* OUTLINE HOVER */
.pta-track-buttons .btn-outline-primary:hover {
  background: #003563;
  color: #fff;
}

/* TABLET */
@media (max-width: 991px) {
  .pta-track-body {
    padding: 22px 20px 24px;
  }

  .pta-track-body h5 {
    font-size: 18px;
  }

  .pta-track-subtitle {
    min-height: auto;
  }
}

/* MOBILE */
@media (max-width: 767px) {

  .pta-track-image {
    aspect-ratio: 16 / 10;
  }

  .pta-track-body {
    padding: 20px 18px 22px;
  }

  .pta-track-body h5 {
    font-size: 18px;
    min-height: auto;
  }

  .pta-track-subtitle {
    font-size: 14px;
    line-height: 1.6;

    margin-bottom: 18px;
  }

  .pta-track-price {
    font-size: 20px;
  }

  .pta-track-old-price {
    font-size: 14px;
  }

  .pta-track-buttons .btn {
    min-height: 48px;
    font-size: 15px;
  }
}

/* =========================
   WHAT YOU WILL LEARN SECTION
========================= */

/* MAIN CARD */
.course-module-content {
  position: relative;
  overflow: hidden;
  border-left: 4px solid transparent;
}

/* TOP GLOW EFFECT */
.course-module-content::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 119, 34, 0.06);
  border-radius: 50%;
  top: -60px;
  right: -60px;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.course-module-item:hover .course-module-content {
  border-left: 4px solid #ff7722;
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.course-module-item:hover .course-module-content::before {
  transform: scale(1.15);
}

/* TITLE */
.course-module-content h4 {
  font-size: 26px;
  font-weight: 700;
  color: #003563;
}

/* LIST RESET */
.course-module-content ul {
  margin: 0;
  padding: 0;
}

/* PREMIUM LIST ITEM */
.course-module-content ul li {
  background: #f8fbff;
  padding: 14px 18px;
  border-radius: 12px;

  color: #1f2937;
  font-weight: 500;
  line-height: 1.7;

  transition: all 0.35s ease;

  border: 1px solid rgba(0, 53, 99, 0.05);
}

/* HOVER */
.course-module-content ul li:hover {
  background: #fff4ec;
  color: #003563;

  transform: translateX(8px);

  border-color: rgba(255, 119, 34, 0.18);

  box-shadow: 0 10px 25px rgba(255, 119, 34, 0.08);
}

/* ICON */
.course-module-content ul li i {
  color: #ff7722;
  transition: 0.3s ease;
}

/* ICON HOVER */
.course-module-content ul li:hover i {
  transform: scale(1.15);
  color: #003563;
}

/* NUMBER HOVER */
.course-module-item:hover .course-module-number {
  transform: scale(1.08) rotate(8deg);

  box-shadow: 0 15px 35px rgba(255, 119, 34, 0.3);
}

/* ICON BOX HOVER */
.course-module-item:hover .fpga-value-icon {
  background: #ff7722;
  color: #fff;

  transform: scale(1.08) rotate(6deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .course-module-content h4 {
    font-size: 22px;
  }

  .course-module-content ul li {
    padding: 12px 14px;
    font-size: 14px;
  }
}

/* =========================
   TOOLS & PRACTICAL EXPOSURE
========================= */

.specialization-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;

  padding: 35px 30px;

  height: 100%;
  min-height: 260px;

  overflow: hidden;

  transition: all 0.4s ease;

  border-top: 4px solid #ff7722;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* HOVER */
.specialization-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* ICON */
.specialization-icon {
  width: 76px;
  height: 76px;

  border-radius: 20px;

  background: #fff4ec;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;

  transition: 0.4s ease;
}

.specialization-icon i {
  font-size: 32px;
  color: #ff7722;
}

/* ICON HOVER */
.specialization-card:hover .specialization-icon {
  background: #ff7722;
  transform: rotate(6deg) scale(1.05);
}

.specialization-card:hover .specialization-icon i {
  color: #fff;
}

/* TITLE */
.specialization-card h3 {
  font-size: 22px;
  line-height: 1.35;

  font-weight: 700;

  color: #003563;

  margin-bottom: 16px;
}

/* DESCRIPTION */
.specialization-subtitle {
  font-size: 15px;
  line-height: 1.8;

  color: #5b6470;

  margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .specialization-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .specialization-card h3 {
    font-size: 20px;
  }
}

/* =====================================
   ANALOG ELIGIBILITY SECTION
===================================== */

.analog-eligibility-section {
  background: #fdf8f2;
  position: relative;
  overflow: hidden;
}

/* SECTION TAG */
.analog-section-tag {
  color: #ff7722;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* SECTION TITLE */
.analog-section-title {
  font-size: 54px;
  line-height: 1.2;
  font-weight: 800;
  color: #003563;
  margin-bottom: 24px;
}

/* SECTION DESC */
.analog-section-desc {
  font-size: 18px;
  line-height: 1.9;
  color: #6b7280;
}

/* LEFT MAIN CARD */
.analog-main-eligibility-card {
  background: linear-gradient(135deg, #002b52, #003b70);

  border-radius: 28px;

  padding: 45px 40px;

  position: relative;

  overflow: hidden;

  height: 100%;

  box-shadow: 0 20px 45px rgba(0, 43, 82, 0.12);
}

/* GLOW EFFECT */
.analog-main-eligibility-card::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 50%;

  top: -80px;
  right: -80px;
}

/* BADGE */
.analog-offer-badge {
  background: rgba(255, 255, 255, 0.12);

  color: #ffffff;

  padding: 10px 18px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  display: inline-block;

  backdrop-filter: blur(8px);
}

/* TITLE */
.analog-main-card-title {
  color: #ffffff;

  font-size: 40px;

  line-height: 1.25;

  font-weight: 700;

  margin-bottom: 24px;
}

/* DESC */
.analog-main-card-desc {
  color: rgba(255, 255, 255, 0.82);

  font-size: 16px;

  line-height: 1.9;

  margin-bottom: 35px;
}

/* MINI STATS */
.analog-mini-stats-wrap {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

/* MINI CARD */
.analog-mini-stat-card {
  flex: 1;

  background: rgba(255, 255, 255, 0.08);

  border-radius: 20px;

  padding: 24px 20px;

  text-align: center;

  backdrop-filter: blur(8px);

  transition: 0.35s ease;
}

/* HOVER */
.analog-mini-stat-card:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.12);
}

/* MINI TITLE */
.analog-mini-stat-card h5 {
  color: #ffb066;

  font-size: 32px;

  font-weight: 700;

  margin-bottom: 8px;
}

/* MINI TEXT */
.analog-mini-stat-card p {
  color: rgba(255, 255, 255, 0.75);

  font-size: 14px;

  margin-bottom: 0;
}

/* BOTTOM NOTE */
.analog-main-card-bottom {
  color: rgba(255, 255, 255, 0.88);

  line-height: 1.9;

  font-weight: 500;
}

/* RIGHT CARDS */
.analog-career-card {
  background: #ffffff;

  border-radius: 24px;

  padding: 35px 30px;

  height: 100%;

  min-height: 280px;

  transition: 0.4s ease;

  position: relative;

  overflow: hidden;

  border-top: 4px solid transparent;
}

/* TOP GLOW */
.analog-career-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  background: rgba(255, 119, 34, 0.04);

  border-radius: 50%;

  top: -60px;
  right: -60px;

  transition: 0.4s ease;
}

/* HOVER */
.analog-career-card:hover {
  transform: translateY(-8px);

  border-top: 4px solid #ff7722;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.analog-career-card:hover::before {
  transform: scale(1.15);
}

/* ICON */
.analog-career-icon {
  width: 78px;
  height: 78px;

  border-radius: 20px;

  background: #fff4ec;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;

  transition: 0.35s ease;
}

/* ICON I */
.analog-career-icon i {
  font-size: 32px;
  color: #ff7722;
}

/* ICON HOVER */
.analog-career-card:hover .analog-career-icon {
  background: #ff7722;

  transform: rotate(6deg) scale(1.05);
}

.analog-career-card:hover .analog-career-icon i {
  color: #ffffff;
}

/* CARD TITLE */
.analog-career-card h5 {
  font-size: 28px;

  line-height: 1.35;

  font-weight: 700;

  color: #003563;

  margin-bottom: 16px;
}

/* CARD TEXT */
.analog-career-card p {
  font-size: 15px;

  line-height: 1.9;

  color: #5b6470;

  margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 991px) {

  .analog-section-title {
    font-size: 42px;
  }

  .analog-main-card-title {
    font-size: 34px;
  }

}

@media (max-width: 768px) {

  .analog-section-title {
    font-size: 34px;
  }

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

  .analog-main-eligibility-card {
    padding: 35px 25px;
  }

  .analog-main-card-title {
    font-size: 28px;
  }

  .analog-mini-stats-wrap {
    flex-direction: column;
  }

  .analog-career-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .analog-career-card h5 {
    font-size: 24px;
  }

}

/* =====================================
   ANALOG BATCH SECTION
===================================== */

.analog-batch-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  position: relative;
  overflow: hidden;
}

/* MAIN CARD */
.analog-batch-main-card {
  background: linear-gradient(135deg, #002b52, #003b70);

  border-radius: 28px;

  padding: 45px 40px;

  height: 100%;

  position: relative;

  overflow: hidden;

  box-shadow: 0 20px 45px rgba(0, 43, 82, 0.12);
}

/* GLOW */
.analog-batch-main-card::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 50%;

  top: -80px;
  right: -80px;
}

/* TITLE */
.analog-batch-main-title {
  font-size: 40px;

  line-height: 1.25;

  font-weight: 700;

  color: #ffffff;

  margin-bottom: 24px;
}

/* DESC */
.analog-batch-main-desc {
  color: rgba(255, 255, 255, 0.82);

  line-height: 1.9;

  font-size: 16px;

  margin-bottom: 35px;
}

/* MINI WRAP */
.analog-batch-mini-wrap {
  display: flex;
  gap: 20px;

  margin-bottom: 35px;
}

/* MINI CARD */
.analog-batch-mini-card {
  flex: 1;

  background: rgba(255, 255, 255, 0.08);

  border-radius: 20px;

  padding: 24px 20px;

  text-align: center;

  transition: 0.35s ease;

  backdrop-filter: blur(8px);
}

/* HOVER */
.analog-batch-mini-card:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.12);
}

/* MINI TITLE */
.analog-batch-mini-card h5 {
  color: #ffb066;

  font-size: 28px;

  font-weight: 700;

  margin-bottom: 8px;
}

/* MINI TEXT */
.analog-batch-mini-card p {
  color: rgba(255, 255, 255, 0.75);

  margin-bottom: 0;

  font-size: 14px;
}

/* BOTTOM */
.analog-batch-bottom {
  color: rgba(255, 255, 255, 0.88);

  line-height: 1.9;

  font-weight: 500;
}

/* RIGHT CARDS */
.analog-batch-card {
  background: #ffffff;

  border-radius: 24px;

  padding: 35px 30px;

  height: 100%;

  min-height: 280px;

  transition: 0.4s ease;

  position: relative;

  overflow: hidden;

  border-top: 4px solid transparent;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

/* GLOW */
.analog-batch-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  background: rgba(255, 119, 34, 0.04);

  border-radius: 50%;

  top: -60px;
  right: -60px;

  transition: 0.4s ease;
}

/* HOVER */
.analog-batch-card:hover {
  transform: translateY(-8px);

  border-top: 4px solid #ff7722;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.analog-batch-card:hover::before {
  transform: scale(1.15);
}

/* ICON */
.analog-batch-icon {
  width: 78px;
  height: 78px;

  border-radius: 20px;

  background: #fff4ec;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;

  transition: 0.35s ease;
}

.analog-batch-icon i {
  font-size: 32px;
  color: #ff7722;
}

/* ICON HOVER */
.analog-batch-card:hover .analog-batch-icon {
  background: #ff7722;

  transform: rotate(6deg) scale(1.05);
}

.analog-batch-card:hover .analog-batch-icon i {
  color: #ffffff;
}

/* CARD TITLE */
.analog-batch-card h5 {
  font-size: 28px;

  line-height: 1.35;

  font-weight: 700;

  color: #003563;

  margin-bottom: 20px;
}

/* LIST */
.analog-batch-list {
  list-style: none;

  padding: 0;
  margin: 0;
}

.analog-batch-list li {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

  font-size: 16px;

  font-weight: 500;

  color: #5b6470;
}

.analog-batch-list li i {
  color: #ff7722;
}

/* DESC */
.analog-batch-card-desc {
  font-size: 15px;

  line-height: 1.9;

  color: #5b6470;
}

/* WIDE CARD */
.analog-batch-wide-card {
  background: linear-gradient(135deg, #ffffff, #f8fbff);

  border-radius: 24px;

  padding: 35px 32px;

  display: flex;
  align-items: center;

  gap: 24px;

  transition: 0.35s ease;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

/* HOVER */
.analog-batch-wide-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* ICON */
.analog-batch-wide-icon {
  min-width: 90px;
  width: 90px;
  height: 90px;

  border-radius: 24px;

  background: #fff4ec;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.35s ease;
}

.analog-batch-wide-icon i {
  font-size: 38px;
  color: #ff7722;
}

/* HOVER */
.analog-batch-wide-card:hover .analog-batch-wide-icon {
  background: #ff7722;

  transform: rotate(6deg) scale(1.05);
}

.analog-batch-wide-card:hover .analog-batch-wide-icon i {
  color: #ffffff;
}

/* TITLE */
.analog-batch-wide-card h4 {
  font-size: 30px;

  line-height: 1.3;

  font-weight: 700;

  color: #003563;

  margin-bottom: 14px;
}

/* TEXT */
.analog-batch-wide-card p {
  font-size: 16px;

  line-height: 1.9;

  color: #5b6470;

  margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 991px) {

  .analog-batch-main-title {
    font-size: 34px;
  }

}

@media (max-width: 768px) {

  .analog-batch-main-card {
    padding: 35px 25px;
  }

  .analog-batch-main-title {
    font-size: 28px;
  }

  .analog-batch-mini-wrap {
    flex-direction: column;
  }

  .analog-batch-card {
    min-height: auto;
  }

  .analog-batch-wide-card {
    flex-direction: column;
    text-align: center;
  }

  .analog-batch-wide-card h4 {
    font-size: 24px;
  }

}

/* =====================================
   ANALOG PRICING SECTION
===================================== */

.analog-pricing-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  position: relative;
  overflow: hidden;
}

/* WRAPPER */
.analog-pricing-wrapper {
  background: #ffffff;

  border-radius: 36px;

  overflow: hidden;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* LEFT SIDE */
.analog-pricing-left {
  background: linear-gradient(135deg, #002b52, #003b70);

  padding: 60px 50px;

  height: 100%;

  position: relative;

  overflow: hidden;
}

/* GLOW */
.analog-pricing-left::before {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 50%;

  top: -100px;
  right: -100px;
}

/* BADGE */
.analog-pricing-badge {
  display: inline-block;

  background: rgba(255, 255, 255, 0.12);

  color: #ffffff;

  padding: 10px 18px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 28px;

  backdrop-filter: blur(8px);
}

/* TITLE */
.analog-pricing-left h2 {
  font-size: 42px;

  line-height: 1.2;

  font-weight: 800;

  color: #ffffff;

  margin-bottom: 24px;
}

/* TEXT */
.analog-pricing-left p {
  color: rgba(255, 255, 255, 0.82);

  font-size: 16px;

  line-height: 1.9;

  margin-bottom: 35px;
}

/* PRICE BOX */
.analog-price-box {
  margin-bottom: 28px;
}

/* PRICE */
.analog-main-price {
  font-size: 74px;

  line-height: 1;

  font-weight: 800;

  color: #ffb066;

  margin-bottom: 10px;
}

/* LABEL */
.analog-price-box span {
  color: rgba(255, 255, 255, 0.8);

  font-size: 17px;

  font-weight: 500;
}

/* REGISTRATION STRIP */
.analog-registration-strip {
  background: rgba(255, 255, 255, 0.08);

  border-radius: 18px;

  padding: 18px 22px;

  margin-bottom: 35px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  backdrop-filter: blur(8px);
}

/* LABEL */
.analog-registration-label {
  color: rgba(255, 255, 255, 0.8);

  font-size: 15px;

  font-weight: 500;
}

/* AMOUNT */
.analog-registration-amount {
  color: #ffffff;

  font-size: 28px;

  font-weight: 700;
}

/* BUTTON */
.analog-pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #ff7722, #ff944d);

  color: #ffffff;

  padding: 16px 34px;

  border-radius: 14px;

  font-size: 16px;

  font-weight: 700;

  transition: 0.35s ease;

  text-decoration: none;

  box-shadow: 0 14px 35px rgba(255, 119, 34, 0.25);
}

/* HOVER */
.analog-pricing-btn:hover {
  color: #ffffff;

  transform: translateY(-4px);

  box-shadow: 0 18px 40px rgba(255, 119, 34, 0.35);
}

/* RIGHT SIDE */
.analog-pricing-right {
  padding: 60px 50px;
}

/* GRID */
.analog-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}

/* FEATURE ITEM */
.analog-feature-item {
  background: #f8fbff;

  border-radius: 24px;

  padding: 28px;

  transition: 0.35s ease;

  display: flex;
  gap: 20px;

  border: 1px solid rgba(0, 53, 99, 0.05);
}

/* HOVER */
.analog-feature-item:hover {
  transform: translateY(-6px);

  background: #fff4ec;

  border-color: rgba(255, 119, 34, 0.15);

  box-shadow: 0 15px 35px rgba(255, 119, 34, 0.08);
}

/* ICON */
.analog-feature-icon {
  min-width: 68px;

  width: 68px;
  height: 68px;

  border-radius: 18px;

  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.35s ease;
}

/* ICON I */
.analog-feature-icon i {
  font-size: 28px;

  color: #ff7722;
}

/* HOVER */
.analog-feature-item:hover .analog-feature-icon {
  background: #ff7722;

  transform: rotate(6deg);
}

.analog-feature-item:hover .analog-feature-icon i {
  color: #ffffff;
}

/* TITLE */
.analog-feature-item h5 {
  font-size: 22px;

  line-height: 1.35;

  font-weight: 700;

  color: #003563;

  margin-bottom: 12px;
}

/* TEXT */
.analog-feature-item p {
  font-size: 15px;

  line-height: 1.8;

  color: #5b6470;

  margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 991px) {

  .analog-pricing-left,
  .analog-pricing-right {
    padding: 45px 35px;
  }

  .analog-pricing-left h2 {
    font-size: 34px;
  }

  .analog-main-price {
    font-size: 58px;
  }

  .analog-feature-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .analog-pricing-left,
  .analog-pricing-right {
    padding: 35px 25px;
  }

  .analog-pricing-left h2 {
    font-size: 28px;
  }

  .analog-main-price {
    font-size: 48px;
  }

  .analog-registration-strip {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .analog-feature-item {
    flex-direction: column;
  }

}

/* =====================================
   ANALOG TAKEAWAYS SECTION
===================================== */

.analog-takeaways-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  position: relative;
  overflow: hidden;
}

/* MAIN WRAPPER */
.analog-takeaways-main {
  background: #ffffff;

  border-radius: 36px;

  padding: 50px;

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

  position: relative;

  overflow: hidden;
}

/* LEFT SIDE */
.analog-takeaways-left {
  background: linear-gradient(135deg, #002b52, #003b70);

  border-radius: 30px;

  padding: 45px 38px;

  height: 100%;

  position: relative;

  overflow: hidden;
}

/* GLOW */
.analog-takeaways-left::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 50%;

  top: -90px;
  right: -90px;
}

/* BADGE */
.analog-takeaways-badge {
  display: inline-block;

  background: rgba(255, 255, 255, 0.12);

  color: #ffffff;

  padding: 10px 18px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 28px;

  backdrop-filter: blur(8px);
}

/* TITLE */
.analog-takeaways-left h2 {
  font-size: 38px;

  line-height: 1.2;

  font-weight: 800;

  color: #ffffff;

  margin-bottom: 24px;
}

/* TEXT */
.analog-takeaways-left p {
  color: rgba(255, 255, 255, 0.82);

  font-size: 16px;

  line-height: 1.9;

  margin-bottom: 35px;
}

/* BUTTON */
.analog-takeaways-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #ff7722, #ff944d);

  color: #ffffff;

  padding: 16px 32px;

  border-radius: 14px;

  font-size: 16px;

  font-weight: 700;

  text-decoration: none;

  transition: 0.35s ease;

  box-shadow: 0 14px 35px rgba(255, 119, 34, 0.25);
}

/* HOVER */
.analog-takeaways-btn:hover {
  color: #ffffff;

  transform: translateY(-4px);

  box-shadow: 0 18px 40px rgba(255, 119, 34, 0.35);
}

/* RIGHT SIDE */
.analog-takeaways-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* BULLET ITEM */
.analog-takeaway-bullet {
  display: flex;
  align-items: center;

  gap: 20px;

  background: #f8fbff;

  padding: 22px 24px;

  border-radius: 18px;

  font-size: 17px;

  font-weight: 600;

  color: #003563;

  transition: 0.35s ease;

  border: 1px solid rgba(0, 53, 99, 0.05);
}

/* HOVER */
.analog-takeaway-bullet:hover {
  transform: translateX(8px);

  background: #fff4ec;

  border-color: rgba(255, 119, 34, 0.15);

  box-shadow: 0 12px 30px rgba(255, 119, 34, 0.08);
}

/* ICON */
.analog-bullet-icon {
  min-width: 52px;

  width: 52px;
  height: 52px;

  border-radius: 14px;

  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.35s ease;
}

/* ICON I */
.analog-bullet-icon i {
  color: #ff7722;

  font-size: 18px;
}

/* HOVER */
.analog-takeaway-bullet:hover .analog-bullet-icon {
  background: #ff7722;

  transform: rotate(8deg);
}

.analog-takeaway-bullet:hover .analog-bullet-icon i {
  color: #ffffff;
}

/* MOBILE */
@media (max-width: 991px) {

  .analog-takeaways-main {
    padding: 35px;
  }

  .analog-takeaways-left h2 {
    font-size: 32px;
  }

}

@media (max-width: 768px) {

  .analog-takeaways-main {
    padding: 24px;
  }

  .analog-takeaways-left {
    padding: 35px 25px;
  }

  .analog-takeaways-left h2 {
    font-size: 28px;
  }

  .analog-takeaway-bullet {
    padding: 18px 18px;

    font-size: 15px;

    align-items: flex-start;
  }

}

/* =====================================
   ANALOG CTA SECTION
===================================== */

.analog-cta-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* WRAPPER */
.analog-cta-wrapper {
  background: linear-gradient(135deg, #002b52, #003b70);

  border-radius: 36px;

  padding: 60px;

  display: grid;

  grid-template-columns: 1.3fr 420px;

  gap: 45px;

  align-items: center;

  position: relative;

  overflow: hidden;

  box-shadow: 0 25px 60px rgba(0, 43, 82, 0.18);
}

/* GLOW */
.analog-cta-wrapper::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  background: rgba(255, 255, 255, 0.04);

  border-radius: 50%;

  top: -180px;
  right: -180px;
}

/* BADGE */
.analog-cta-badge {
  display: inline-block;

  background: rgba(255, 255, 255, 0.12);

  color: #ffffff;

  padding: 10px 18px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 28px;

  backdrop-filter: blur(8px);
}

/* TITLE */
.analog-cta-content h2 {
  font-size: 52px;

  line-height: 1.15;

  font-weight: 800;

  color: #ffffff;

  margin-bottom: 24px;
}

/* TEXT */
.analog-cta-content p {
  color: rgba(255, 255, 255, 0.82);

  font-size: 17px;

  line-height: 1.9;

  margin-bottom: 35px;

  max-width: 760px;
}

/* POINTS */
.analog-cta-points {
  display: flex;
  flex-wrap: wrap;

  gap: 16px;
}

/* POINT */
.analog-cta-point {
  background: rgba(255, 255, 255, 0.08);

  padding: 14px 18px;

  border-radius: 14px;

  color: #ffffff;

  font-size: 15px;

  font-weight: 600;

  display: flex;
  align-items: center;

  gap: 10px;

  transition: 0.35s ease;
}

/* HOVER */
.analog-cta-point:hover {
  background: rgba(255, 255, 255, 0.14);

  transform: translateY(-4px);
}

/* ICON */
.analog-cta-point i {
  color: #ffb066;
}

/* RIGHT CARD */
.analog-cta-card {
  background: #ffffff;

  border-radius: 28px;

  padding: 40px 35px;

  position: relative;

  overflow: hidden;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* TOP */
.analog-cta-card-top {
  text-align: center;

  margin-bottom: 35px;
}

/* ICON */
.analog-cta-icon {
  width: 90px;
  height: 90px;

  border-radius: 24px;

  background: #fff4ec;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 24px;

  transition: 0.35s ease;
}

/* ICON I */
.analog-cta-icon i {
  font-size: 38px;

  color: #ff7722;
}

/* TITLE */
.analog-cta-card h3 {
  font-size: 32px;

  line-height: 1.25;

  font-weight: 800;

  color: #003563;

  margin-bottom: 16px;
}

/* TEXT */
.analog-cta-card p {
  font-size: 15px;

  line-height: 1.8;

  color: #5b6470;

  margin-bottom: 0;
}

/* BUTTON WRAP */
.analog-cta-buttons {
  display: flex;
  flex-direction: column;

  gap: 16px;
}

/* COMMON BTN */
.analog-register-btn,
.analog-seat-btn {
  width: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 20px;

  border-radius: 14px;

  font-size: 16px;

  font-weight: 700;

  text-decoration: none;

  transition: 0.35s ease;
}

/* PRIMARY */
.analog-register-btn {
  background: linear-gradient(135deg, #ff7722, #ff944d);

  color: #ffffff;

  box-shadow: 0 14px 35px rgba(255, 119, 34, 0.22);
}

/* HOVER */
.analog-register-btn:hover {
  color: #ffffff;

  transform: translateY(-4px);

  box-shadow: 0 18px 40px rgba(255, 119, 34, 0.35);
}

/* SECONDARY */
.analog-seat-btn {
  background: #f8fbff;

  color: #003563;

  border: 1px solid rgba(0, 53, 99, 0.08);
}

/* HOVER */
.analog-seat-btn:hover {
  background: #003563;

  color: #ffffff;

  transform: translateY(-4px);
}

/* MOBILE */
@media (max-width: 1199px) {

  .analog-cta-wrapper {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 991px) {

  .analog-cta-wrapper {
    padding: 45px 35px;
  }

  .analog-cta-content h2 {
    font-size: 40px;
  }

}

@media (max-width: 768px) {

  .analog-cta-wrapper {
    padding: 35px 24px;
  }

  .analog-cta-content h2 {
    font-size: 30px;
  }

  .analog-cta-content p {
    font-size: 15px;
  }

  .analog-cta-card {
    padding: 32px 24px;
  }

  .analog-cta-card h3 {
    font-size: 26px;
  }

}

/* =====================================
   WHY CHOOSE PINE SECTION
===================================== */

.analog-why-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  position: relative;
  overflow: hidden;
}

/* MAIN WRAPPER */
.analog-why-wrapper {
  background: #ffffff;

  border-radius: 36px;

  padding: 50px;

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

  position: relative;

  overflow: hidden;
}

/* LEFT SIDE */
.analog-why-left {
  background: linear-gradient(135deg, #002b52, #003b70);

  border-radius: 30px;

  padding: 45px 38px;

  height: 100%;

  position: relative;

  overflow: hidden;
}

/* GLOW */
.analog-why-left::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 50%;

  top: -90px;
  right: -90px;
}

/* BADGE */
.analog-why-badge {
  display: inline-block;

  background: rgba(255, 255, 255, 0.12);

  color: #ffffff;

  padding: 10px 18px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 28px;

  backdrop-filter: blur(8px);
}

/* TITLE */
.analog-why-left h2 {
  font-size: 40px;

  line-height: 1.2;

  font-weight: 800;

  color: #ffffff;

  margin-bottom: 24px;
}

/* TEXT */
.analog-why-left p {
  color: rgba(255, 255, 255, 0.82);

  font-size: 16px;

  line-height: 1.9;

  margin-bottom: 35px;
}

/* BUTTON */
.analog-why-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #ff7722, #ff944d);

  color: #ffffff;

  padding: 16px 32px;

  border-radius: 14px;

  font-size: 16px;

  font-weight: 700;

  text-decoration: none;

  transition: 0.35s ease;

  box-shadow: 0 14px 35px rgba(255, 119, 34, 0.25);
}

/* HOVER */
.analog-why-btn:hover {
  color: #ffffff;

  transform: translateY(-4px);

  box-shadow: 0 18px 40px rgba(255, 119, 34, 0.35);
}

/* POINTS WRAP */
.analog-why-points-wrap {
  display: flex;
  flex-direction: column;

  gap: 20px;
}

/* POINT */
.analog-why-point {
  display: flex;
  align-items: center;

  gap: 20px;

  background: #f8fbff;

  padding: 22px 24px;

  border-radius: 18px;

  font-size: 17px;

  font-weight: 600;

  color: #003563;

  transition: 0.35s ease;

  border: 1px solid rgba(0, 53, 99, 0.05);
}

/* HOVER */
.analog-why-point:hover {
  transform: translateX(8px);

  background: #fff4ec;

  border-color: rgba(255, 119, 34, 0.15);

  box-shadow: 0 12px 30px rgba(255, 119, 34, 0.08);
}

/* ICON */
.analog-why-icon {
  min-width: 52px;

  width: 52px;
  height: 52px;

  border-radius: 14px;

  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.35s ease;
}

/* ICON I */
.analog-why-icon i {
  color: #ff7722;

  font-size: 18px;
}

/* HOVER */
.analog-why-point:hover .analog-why-icon {
  background: #ff7722;

  transform: rotate(8deg);
}

.analog-why-point:hover .analog-why-icon i {
  color: #ffffff;
}

/* MOBILE */
@media (max-width: 991px) {

  .analog-why-wrapper {
    padding: 35px;
  }

  .analog-why-left h2 {
    font-size: 34px;
  }

}

@media (max-width: 768px) {

  .analog-why-wrapper {
    padding: 24px;
  }

  .analog-why-left {
    padding: 35px 25px;
  }

  .analog-why-left h2 {
    font-size: 28px;
  }

  .analog-why-point {
    padding: 18px 18px;

    font-size: 15px;

    align-items: flex-start;
  }

}

/* =====================================
   FINAL CTA SECTION
===================================== */

.analog-final-cta-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* MAIN WRAPPER */
.analog-final-cta-wrapper {
  position: relative;

  background: linear-gradient(135deg, #001f3d, #003563);

  border-radius: 40px;

  padding: 90px 60px;

  overflow: hidden;

  text-align: center;

  box-shadow: 0 30px 70px rgba(0, 31, 61, 0.18);
}

/* GLOW EFFECTS */
.analog-final-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(10px);

  opacity: 0.12;
}

.analog-final-glow-1 {
  width: 380px;
  height: 380px;

  background: #ff7722;

  top: -160px;
  left: -140px;
}

.analog-final-glow-2 {
  width: 320px;
  height: 320px;

  background: #ffffff;

  bottom: -140px;
  right: -120px;
}

/* CONTENT */
.analog-final-content {
  position: relative;
  z-index: 2;

  max-width: 920px;

  margin: 0 auto;
}

/* BADGE */
.analog-final-badge {
  display: inline-block;

  background: rgba(255, 255, 255, 0.12);

  color: #ffffff;

  padding: 12px 22px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 30px;

  backdrop-filter: blur(8px);

  letter-spacing: 0.5px;
}

/* TITLE */
.analog-final-content h1 {
  font-size: 68px;

  line-height: 1.08;

  font-weight: 800;

  color: #ffffff;

  margin-bottom: 26px;
}

/* SUBTITLE */
.analog-final-subtitle {
  font-size: 26px;

  font-weight: 700;

  color: #ffb066;

  margin-bottom: 24px;

  letter-spacing: 1px;
}

/* DESCRIPTION */
.analog-final-content p {
  font-size: 18px;

  line-height: 1.9;

  color: rgba(255, 255, 255, 0.82);

  margin-bottom: 32px;
}

/* HIGHLIGHT */
.analog-final-highlight {
  display: inline-block;

  background: rgba(255, 255, 255, 0.08);

  color: #ffffff;

  padding: 16px 24px;

  border-radius: 18px;

  font-size: 16px;

  font-weight: 600;

  margin-bottom: 40px;

  backdrop-filter: blur(8px);
}

/* BUTTON WRAP */
.analog-final-btns {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 20px;

  flex-wrap: wrap;
}

/* PRIMARY BTN */
.analog-final-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #ff7722, #ff944d);

  color: #ffffff;

  padding: 18px 36px;

  border-radius: 14px;

  font-size: 16px;

  font-weight: 700;

  text-decoration: none;

  transition: 0.35s ease;

  box-shadow: 0 16px 40px rgba(255, 119, 34, 0.28);
}

/* HOVER */
.analog-final-primary-btn:hover {
  color: #ffffff;

  transform: translateY(-5px);

  box-shadow: 0 22px 50px rgba(255, 119, 34, 0.38);
}

/* SECONDARY BTN */
.analog-final-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.08);

  color: #ffffff;

  padding: 18px 36px;

  border-radius: 14px;

  font-size: 16px;

  font-weight: 700;

  text-decoration: none;

  transition: 0.35s ease;

  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(8px);
}

/* HOVER */
.analog-final-secondary-btn:hover {
  background: #ffffff;

  color: #003563;

  transform: translateY(-5px);
}

/* MOBILE */
@media (max-width: 991px) {

  .analog-final-cta-wrapper {
    padding: 70px 40px;
  }

  .analog-final-content h1 {
    font-size: 52px;
  }

}

@media (max-width: 768px) {

  .analog-final-cta-wrapper {
    padding: 55px 24px;
    border-radius: 28px;
  }

  .analog-final-content h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .analog-final-subtitle {
    font-size: 20px;
  }

  .analog-final-content p {
    font-size: 15px;
  }

  .analog-final-highlight {
    font-size: 14px;
    line-height: 1.7;
  }

  .analog-final-btns {
    flex-direction: column;
  }

  .analog-final-primary-btn,
  .analog-final-secondary-btn {
    width: 100%;
  }

}