/* ===== Page width & equal left/right gutters ===== */
:root {
  --page-max-width: 1350px;
  --page-gutter-x: clamp(1.5rem, 5vw, 3rem);
  color-scheme: light;
  color: #111827;
  background: #f7f8fb;
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ===== Global motion: scroll reveal + hero entrance ===== */
@keyframes revealFadeUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .pd-hero .row>.col-lg-6 .pd-badge {
    animation: revealFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
  }

  /* ensure hero content sits above background glows */
  .pd-hero .pd-flex {
    position: relative;
    z-index: 1;
  }

  .pd-hero .row>.col-lg-6 .pd-title {
    animation: revealFadeUp 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  }

  .pd-hero .row>.col-lg-6 .pd-desc {
    animation: revealFadeUp 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
  }

  .pd-hero .row>.col-lg-6 .pd-buttons {
    animation: revealFadeUp 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
  }

  .pd-hero .pd-form-card {
    animation: revealFadeUp 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
  }

  .pd-hero .pd-feature:nth-child(1) {
    animation: revealFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
  }

  .pd-hero .pd-feature:nth-child(2) {
    animation: revealFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
  }

  .pd-hero .pd-feature:nth-child(3) {
    animation: revealFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.46s both;
  }

  .pd-hero .pd-feature:nth-child(4) {
    animation: revealFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
  }

  .pd-hero .pd-feature:nth-child(5) {
    animation: revealFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
  }
}

@media (prefers-reduced-motion: reduce) {

  .pd-hero .row>.col-lg-6 .pd-badge,
  .pd-hero .row>.col-lg-6 .pd-title,
  .pd-hero .row>.col-lg-6 .pd-desc,
  .pd-hero .row>.col-lg-6 .pd-buttons,
  .pd-hero .pd-form-card,
  .pd-hero .pd-feature {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.reveal-on-scroll {
  scroll-margin-top: 1.25rem;
}

html.js-motion .reveal-on-scroll {
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-motion .reveal-on-scroll:not(.is-inview) {
  opacity: 0;
  transform: translateY(2rem);
}

html.js-motion .reveal-on-scroll.is-inview {
  opacity: 1;
  transform: none;
}

/* Staggered children when section is in view */
@media (prefers-reduced-motion: no-preference) {
  html.js-motion .ap-glass-section.is-inview .ap-content>* {
    animation: revealFadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  html.js-motion .ap-glass-section.is-inview .ap-content>*:nth-child(1) {
    animation-delay: 0.06s;
  }

  html.js-motion .ap-glass-section.is-inview .ap-content>*:nth-child(2) {
    animation-delay: 0.12s;
  }

  html.js-motion .ap-glass-section.is-inview .ap-content>*:nth-child(3) {
    animation-delay: 0.18s;
  }

  html.js-motion .ap-glass-section.is-inview .ap-content>*:nth-child(4) {
    animation-delay: 0.24s;
  }

  html.js-motion .ap-glass-section.is-inview .ap-cards-wrap .glass-card {
    animation: revealFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  html.js-motion .ap-glass-section.is-inview .ap-cards-wrap .glass-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  html.js-motion .ap-glass-section.is-inview .ap-cards-wrap .glass-card:nth-child(2) {
    animation-delay: 0.16s;
  }

  html.js-motion .ap-glass-section.is-inview .ap-cards-wrap .glass-card:nth-child(3) {
    animation-delay: 0.22s;
  }

  html.js-motion .ap-glass-section.is-inview .ap-cards-wrap .glass-card:nth-child(4) {
    animation-delay: 0.28s;
  }

  html.js-motion .tech-section.is-inview .main-title {
    animation: revealFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
  }

  html.js-motion .tech-section.is-inview .tech-icons-row .tech-card {
    animation: revealFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  html.js-motion .tech-section.is-inview .tech-icons-row .tech-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  html.js-motion .tech-section.is-inview .tech-icons-row .tech-card:nth-child(2) {
    animation-delay: 0.13s;
  }

  html.js-motion .tech-section.is-inview .tech-icons-row .tech-card:nth-child(3) {
    animation-delay: 0.16s;
  }

  html.js-motion .tech-section.is-inview .tech-icons-row .tech-card:nth-child(4) {
    animation-delay: 0.19s;
  }

  html.js-motion .tech-section.is-inview .tech-icons-row .tech-card:nth-child(5) {
    animation-delay: 0.22s;
  }

  html.js-motion .tech-section.is-inview .tech-icons-row .tech-card:nth-child(6) {
    animation-delay: 0.25s;
  }

  html.js-motion .tech-section.is-inview .tech-icons-row .tech-card:nth-child(7) {
    animation-delay: 0.28s;
  }

  html.js-motion .tech-section.is-inview .tech-icons-row .tech-card:nth-child(8) {
    animation-delay: 0.31s;
  }

  html.js-motion .tech-section.is-inview .tech-icons-row .tech-card:nth-child(9) {
    animation-delay: 0.34s;
  }

  html.js-motion .tech-section.is-inview .tech-icons-row .tech-card:nth-child(10) {
    animation-delay: 0.37s;
  }

  html.js-motion .tech-section.is-inview .tech-icons-row .tech-card:nth-child(11) {
    animation-delay: 0.4s;
  }

  html.js-motion .info-section.is-inview .curriculum-wrapper>* {
    animation: revealFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  html.js-motion .info-section.is-inview .curriculum-wrapper>*:nth-child(1) {
    animation-delay: 0.05s;
  }

  html.js-motion .info-section.is-inview .curriculum-wrapper>*:nth-child(2) {
    animation-delay: 0.11s;
  }

  html.js-motion .info-section.is-inview .curriculum-wrapper>*:nth-child(3) {
    animation-delay: 0.17s;
  }

  html.js-motion .info-section.is-inview .career-wrapper>* {
    animation: revealFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  html.js-motion .info-section.is-inview .career-wrapper>*:nth-child(1) {
    animation-delay: 0.06s;
  }

  html.js-motion .info-section.is-inview .career-wrapper>*:nth-child(2) {
    animation-delay: 0.12s;
  }

  html.js-motion .info-section.is-inview .career-wrapper>*:nth-child(3) {
    animation-delay: 0.18s;
  }

  html.js-motion .info-section.is-inview .career-wrapper>*:nth-child(4) {
    animation-delay: 0.24s;
  }

  html.js-motion .info-section.is-inview .role-card {
    animation: revealFadeUp 0.58s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  html.js-motion .info-section.is-inview .role-card:nth-child(1) {
    animation-delay: 0.2s;
  }

  html.js-motion .info-section.is-inview .role-card:nth-child(2) {
    animation-delay: 0.26s;
  }

  html.js-motion .info-section.is-inview .role-card:nth-child(3) {
    animation-delay: 0.32s;
  }

  html.js-motion .info-section.is-inview .role-card:nth-child(4) {
    animation-delay: 0.38s;
  }

  html.js-motion .info-section.is-inview .role-card:nth-child(5) {
    animation-delay: 0.44s;
  }

  html.js-motion .live-projects.is-inview .lp-simple__header {
    animation: revealFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
  }

  html.js-motion .live-projects.is-inview .lp-card {
    animation: revealFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  html.js-motion .live-projects.is-inview .lp-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  html.js-motion .live-projects.is-inview .lp-card:nth-child(2) {
    animation-delay: 0.15s;
  }

  html.js-motion .live-projects.is-inview .lp-card:nth-child(3) {
    animation-delay: 0.2s;
  }

  html.js-motion .live-projects.is-inview .lp-card:nth-child(4) {
    animation-delay: 0.25s;
  }

  html.js-motion .live-projects.is-inview .lp-card:nth-child(5) {
    animation-delay: 0.3s;
  }

  html.js-motion .live-projects.is-inview .lp-card:nth-child(6) {
    animation-delay: 0.35s;
  }

  html.js-motion .why-icode.is-inview .icode-heading>* {
    animation: revealFadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  html.js-motion .why-icode.is-inview .icode-heading h2 {
    animation-delay: 0.06s;
  }

  html.js-motion .why-icode.is-inview .icode-heading p {
    animation-delay: 0.12s;
  }

  html.js-motion .why-icode.is-inview .icode-card {
    animation: revealFadeUp 0.62s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  html.js-motion .why-icode.is-inview .icode-card:nth-child(1) {
    animation-delay: 0.14s;
  }

  html.js-motion .why-icode.is-inview .icode-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  html.js-motion .why-icode.is-inview .icode-card:nth-child(3) {
    animation-delay: 0.26s;
  }

  html.js-motion .why-icode.is-inview .icode-card:nth-child(4) {
    animation-delay: 0.32s;
  }

  html.js-motion .icode-testimonials.is-inview .testi-header {
    animation: revealFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
  }

  html.js-motion .icode-testimonials.is-inview .testi-card {
    animation: revealFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  html.js-motion .icode-testimonials.is-inview .testi-card:nth-child(1) {
    animation-delay: 0.12s;
  }

  html.js-motion .icode-testimonials.is-inview .testi-card:nth-child(2) {
    animation-delay: 0.18s;
  }

  html.js-motion .icode-testimonials.is-inview .testi-card:nth-child(3) {
    animation-delay: 0.24s;
  }

  html.js-motion .icode-testimonials.is-inview .testi-card:nth-child(4) {
    animation-delay: 0.3s;
  }

  html.js-motion .cta-section.is-inview .cta-box {
    animation: revealFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
  }

  html.js-motion .cta-section.is-inview .cta-left>* {
    animation: revealFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  html.js-motion .cta-section.is-inview .cta-left h1 {
    animation-delay: 0.18s;
  }

  html.js-motion .cta-section.is-inview .cta-left p {
    animation-delay: 0.26s;
  }

  html.js-motion .cta-section.is-inview .cta-btn {
    animation-delay: 0.34s;
  }
}

.container {
  /* Full width layout with gutters - override Bootstrap */
  --bs-gutter-x: calc(var(--page-gutter-x) * 2);
  --bs-gutter-y: 0;
  width: 100% !important;
  max-width: var(--page-max-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--page-gutter-x) !important;
  padding-right: var(--page-gutter-x) !important;
}

/* Match hero horizontal gutters for every custom section that uses .page-container */
.page-container {
  width: 100% !important;
  max-width: var(--page-max-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--page-gutter-x) !important;
  padding-right: var(--page-gutter-x) !important;
  box-sizing: border-box;
}

/* Mobile spacing adjustments */
@media (max-width: 768px) {
  .page-container {
    padding-left: clamp(1rem, 4vw, 1.5rem) !important;
    padding-right: clamp(1rem, 4vw, 1.5rem) !important;
  }
}




/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

@keyframes floatCard {

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

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

@keyframes glowPulse {

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

  50% {
    opacity: 0.8;
    transform: scale(1.08);
  }
}

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

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

@keyframes borderGlow {

  0%,
  100% {
    border-color: rgba(123, 44, 255, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  }

  50% {
    border-color: rgba(123, 44, 255, 0.7);
    box-shadow: 0 25px 60px rgba(123, 44, 255, 0.25), 0 0 0 4px rgba(123, 44, 255, 0.08);
  }
}

@keyframes badgeBounce {

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

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

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

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

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

@keyframes floatCard {

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

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

@keyframes glowPulse {

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

  50% {
    opacity: 0.8;
    transform: scale(1.08);
  }
}

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

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

@keyframes borderGlow {

  0%,
  100% {
    border-color: rgba(123, 44, 255, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  }

  50% {
    border-color: rgba(123, 44, 255, 0.7);
    box-shadow: 0 25px 60px rgba(123, 44, 255, 0.25), 0 0 0 4px rgba(123, 44, 255, 0.08);
  }
}

@keyframes badgeBounce {

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

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

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

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

/* ===== HERO ===== */
.pd-hero {
  padding-top: 135px;
  margin-bottom: 50px;
  /* padding: 0px; */
  background: linear-gradient(135deg, #fff6e9 0%, #f3e9ff 45%, #7a2cff 100%);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

@media (max-width: 991px) {
  .pd-hero {
    /* margin-top: 80px; */
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .pd-hero {
    margin-top: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 30%, #f5e8ff 60%, #ffeef5 100%);
    overflow: visible !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .pd-hero * {
    visibility: visible !important;
    opacity: 1 !important;
  }

  .pd-flex {
    display: flex !important;
    visibility: visible !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .pd-left,
  .pd-right {
    width: 100% !important;
    max-width: 100% !important;
    visibility: visible !important;
  }

  .pd-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
}

/* ===== FLEX LAYOUT ===== */
.pd-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pd-left,
.pd-right {
  min-width: 0;
}

.pd-left {
  flex: 1;
  max-width: none;
}

.pd-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* ===== ANIMATED BACKGROUND GLOWS ===== */
.pd-hero::before,
.pd-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.pd-hero::before {
  width: 560px;
  height: 560px;
  bottom: -140px;
  left: -130px;
  background: none;
  animation: none;
  z-index: 0;
}

.pd-hero::after {
  width: 460px;
  height: 460px;
  top: -90px;
  right: -90px;
  background: none;
  animation: none;
  z-index: 0;
}

/* Mobile optimized glows */
@media (max-width: 768px) {
  .pd-hero::before {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -80px;
    background: none;
  }

  .pd-hero::after {
    width: 320px;
    height: 320px;
    top: -60px;
    right: -60px;
    background: none;
  }
}

@media (max-width: 768px) {
  .pd-hero::before {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px;
    background: none;
  }

  .pd-hero::after {
    width: 250px;
    height: 250px;
    top: -50px;
    right: -50px;
    background: none;
  }
}







/* ===== LEFT CONTENT — STAGGERED ENTRY ===== */
.pd-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid #111;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  background: #fff;
  cursor: default;
  opacity: 0;
  animation: fadeSlideRight 0.6s ease forwards 0.2s,
    badgeBounce 3s ease-in-out infinite 1.2s;
  transition: background 0.3s, box-shadow 0.3s;
}

.pd-badge:hover {
  background: #f3e9ff;
  box-shadow: 0 4px 16px rgba(123, 44, 255, 0.2);
}

.pd-title {
  font-size: 58px;
  font-weight: 300 !important;
  line-height: 1.15;
  color: #111;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideRight 0.7s ease forwards 0.4s;
}

.pd-gradient {
  background: linear-gradient(90deg, #5a5cff, #c46aff, #ff7a7a, #5a5cff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.pd-desc {
  font-size: 17px;
  color: #636363;
  max-width: none;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0;
  animation: fadeSlideRight 0.7s ease forwards 0.6s;
}

/* ===== BUTTONS ===== */
.pd-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideRight 0.7s ease forwards 0.8s;
}

.pd-buttons .btn {
  padding: 12px 0px;
  width: 215px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

/* Ripple shine on hover */
.pd-buttons .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.pd-buttons .btn:hover::after {
  left: 130%;
}

.pd-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.pd-buttons .btn:active {
  transform: translateY(0px) scale(0.97);
}

.btn-light {
  background: #fff;
  border: none;
  color: #000;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07); */
}

.btn-outline-dark {
  border: solid white 3px !important;
  color: #000;
  background: transparent;
}

.btn-outline-dark:hover {
  background: #000;
  color: #fff;
}

/* ===== FORM BOX ===== */
.pd-form-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 35px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  opacity: 0;
  animation:
    fadeSlideLeft 0.8s ease forwards 0.5s,
    floatCard 6s ease-in-out infinite 1.5s,
    borderGlow 4s ease-in-out infinite 2s;
  transition: box-shadow 0.3s;
}

.pd-form-box:hover {
  box-shadow: 0 35px 80px rgba(123, 44, 255, 0.22);
}

.pd-form-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

/* ===== FORM FIELDS ===== */
.pd-form-box label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

.pd-form-box input,
.pd-form-box select,
.pd-form-box textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1.5px solid #e0e0e0;
  margin-bottom: 18px;
  font-size: 14px;
  background: #f8f8f8;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  outline: none;
  color: #111;
}

.pd-form-box input:focus,
.pd-form-box select:focus,
.pd-form-box textarea:focus {
  border-color: #7a2cff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(123, 44, 255, 0.1);
  transform: translateY(-1px);
}

.pd-form-box input:focus+label,
.pd-form-box select:focus+label {
  color: #7a2cff;
}

/* ===== SUBMIT BUTTON ===== */
.pd-form-box button,
.pd-form-box input[type="submit"] {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  background: linear-gradient(90deg, #5a5cff, #c46aff, #ff7a7a);
  background-size: 200% auto;
  cursor: pointer;
  transition: background-position 0.4s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(90, 92, 255, 0.35);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.pd-form-box button::after,
.pd-form-box input[type="submit"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.pd-form-box button:hover::after,
.pd-form-box input[type="submit"]:hover::after {
  left: 130%;
}

.pd-form-box button:hover,
.pd-form-box input[type="submit"]:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(90, 92, 255, 0.45);
}

.pd-form-box button:active,
.pd-form-box input[type="submit"]:active {
  transform: scale(0.97) translateY(0);
}

/* ===== FEATURE BAR ===== */
.pd-feature-wrap {
  margin-top: 40px;
  position: relative;
  z-index: 3;
  opacity: 0;
  animation: featureBarSlide 0.8s ease forwards 1.1s;
}

.pd-features {
  background: transparent;
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
  box-shadow: none;
  border: none;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.pd-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  position: relative;
  transition: transform 0.25s ease;
  cursor: default;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 16px;
  box-shadow: none;
  justify-self: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  min-height: 120px;
}

.pd-feature:hover {
  transform: translateY(-4px);
  box-shadow: none;
  border: none;
  background: transparent;
}

@keyframes featureFloat {

  0%,
  100% {
    transform: translateY(-16px) scale(1.08) rotateX(2deg);
  }

  50% {
    transform: translateY(-18px) scale(1.1) rotateX(1deg);
  }
}

.pd-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(248, 250, 252, 0.3) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1),
    inset 0 2px 8px rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.pd-feature:hover .pd-feature-icon {
  transform: scale(1.1) translateY(-2px);
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.3);
}

@keyframes iconSpin {
  0% {
    transform: scale(1.3) rotate(-20deg) translateY(-8px);
  }

  25% {
    transform: scale(1.35) rotate(-25deg) translateY(-10px);
  }

  50% {
    transform: scale(1.4) rotate(-15deg) translateY(-6px);
  }

  75% {
    transform: scale(1.35) rotate(-10deg) translateY(-8px);
  }

  100% {
    transform: scale(1.3) rotate(-20deg) translateY(-8px);
  }
}

@keyframes iconGlow {

  0%,
  100% {
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3),
      inset 0 2px 12px rgba(255, 255, 255, 0.9);
    transform: scale(1.2) rotate(-15deg) translateY(-6px);
  }

  50% {
    box-shadow: 0 25px 50px rgba(79, 70, 229, 0.4),
      inset 0 2px 12px rgba(255, 255, 255, 0.95);
    transform: scale(1.25) rotate(-18deg) translateY(-8px);
  }
}

.pd-feature strong {
  display: block;
  font-size: 15px;
  color: #111;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pd-feature:hover strong {
  color: #4f46e5;
  transform: translateY(-1px);
}

.pd-feature span {
  color: #666;
  font-size: 13px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.pd-feature:hover span {
  color: #6366f1;
}

/* Stagger feature icon animation on load */
.pd-feature:nth-child(1) .pd-feature-icon {
  animation: fadeSlideUp 0.5s ease forwards 1.2s;
  opacity: 0;
}

.pd-feature:nth-child(2) .pd-feature-icon {
  animation: fadeSlideUp 0.5s ease forwards 1.35s;
  opacity: 0;
}

.pd-feature:nth-child(3) .pd-feature-icon {
  animation: fadeSlideUp 0.5s ease forwards 1.5s;
  opacity: 0;
}

.pd-feature:nth-child(4) .pd-feature-icon {
  animation: fadeSlideUp 0.5s ease forwards 1.65s;
  opacity: 0;
}

.pd-feature:nth-child(5) .pd-feature-icon {
  animation: fadeSlideUp 0.5s ease forwards 1.8s;
  opacity: 0;
}

/* Responsive grid for pd-features */
@media (max-width: 1024px) {
  .pd-features {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .pd-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

/* Desktop specific fixes for PD features */
@media (min-width: 1024px) {
  .pd-features {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(248, 250, 252, 0.08) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px;
    padding: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }

  .pd-feature {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    padding: 16px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .pd-features {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

/* Divider */
/* .pd-feature:not(:last-child)::after { */
.pd-feature:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 20px;
  height: 45px;
  width: 1px;
  /* background: linear-gradient(to bottom, transparent, #ccc 30%, #ccc 70%, transparent); */
  background: linear-gradient(to bottom, transparent, #707070 30%, #707070 70%, transparent);
}

.pd-feature:last-of-type::after {
  display: none;
}

.pd-feature strong {
  display: block;
  font-size: 15px;
  color: #111;
  font-weight: 600;
  transition: color 0.2s;
}

.pd-feature:hover strong {
  color: #5a5cff;
}

.pd-feature span {
  color: #666;
  font-size: 13px;
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .pd-flex {
    flex-direction: column;
    text-align: center;
  }

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

  .pd-left {
    max-width: 100%;
  }

  .pd-title {
    font-size: 40px;
  }

  .pd-hero {
    /* margin-top: 100px; */
    padding-bottom: 20px;
    position: relative;
  }

  .pd-form-box {
    margin-top: 40px;
    animation: fadeSlideUp 0.8s ease forwards 0.5s, floatCard 6s ease-in-out infinite 1.5s, borderGlow 4s ease-in-out infinite 2s;
  }

  .pd-feature {
    flex: 1 1 45%;
  }

  .pd-feature::after {
    display: none;
  }

  .pd-badge,
  .pd-title,
  .pd-desc,
  .pd-buttons {
    animation-name: fadeSlideUp;
    gap: 0px;
  }
}

@media (max-width: 768px) {
  .pd-title {
    font-size: 30px;
  }

  .pd-desc {
    font-size: 15px;
  }

  .pd-buttons {
    flex-direction: column;
  }

  .pd-feature {
    flex: 1 1 100%;
  }
}

/* ===== REDUCED MOTION RESPECT ===== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}









/* ============================================================
   GOOGLE FONTS + FONT AWESOME — add these in your <head>
   <link href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;600;700;800&family=DM+Sans:wght@400;500&display=swap" rel="stylesheet">
   <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">

   ICON SWAP — replace emojis in your HTML with:
   💻  →  <i class="fa-solid fa-code"></i>
   📁  →  <i class="fa-solid fa-folder-open"></i>
   🧠  →  <i class="fa-solid fa-brain"></i>
   📈  →  <i class="fa-solid fa-chart-line"></i>
   ============================================================ */

/* ── Keyframes ── */
@keyframes blob-drift {

  0%,
  100% {
    border-radius: 60% 40% 55% 45%/50% 60% 40% 50%;
    transform: scale(1) translate(0, 0);
  }

  33% {
    border-radius: 40% 60% 45% 55%/60% 40% 50% 45%;
    transform: scale(1.06) translate(-12px, 10px);
  }

  66% {
    border-radius: 55% 45% 60% 40%/45% 55% 45% 60%;
    transform: scale(0.97) translate(8px, -8px);
  }
}

@keyframes float-dot {

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

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

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

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

@keyframes badge-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(78, 84, 255, .30);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(78, 84, 255, 0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes fade-right {
  from {
    opacity: 0;
    transform: translateX(-26px);
  }

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

@keyframes card-pop {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.94);
  }

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

@keyframes check-bounce {
  0% {
    transform: scale(0) rotate(-20deg);
  }

  70% {
    transform: scale(1.25) rotate(5deg);
  }

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

@keyframes live-dot {

  0%,
  100% {
    transform: scale(.9);
    opacity: .7;
  }

  50% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes icon-wiggle {

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

  25% {
    transform: rotate(-10deg) scale(1.1);
  }

  75% {
    transform: rotate(10deg) scale(1.1);
  }
}

/* ── Section ── */
.ap-glass-section {
  padding: 80px 0;
  position: relative;
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

@media(max-width: 991px) {
  .ap-glass-section {
    padding: 60px 0;
  }
}

@media(max-width: 768px) {
  .ap-glass-section {
    padding: 40px 0;
    overflow: visible !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .ap-container {
    visibility: visible !important;
    opacity: 1 !important;
    padding-left: clamp(1rem, 4vw, 1.5rem) !important;
    padding-right: clamp(1rem, 4vw, 1.5rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .ap-left,
  .ap-right {
    visibility: visible !important;
    opacity: 1 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .ap-content * {
    visibility: visible !important;
    opacity: 1 !important;
  }

  .ap-cards-wrap {
    visibility: visible !important;
    opacity: 1 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .glass-card {
    visibility: visible !important;
    opacity: 1 !important;
    min-width: auto !important;
    max-width: 100% !important;
  }
}


/* Background decorative elements */
.ap-glass-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(78, 84, 255, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

@media(max-width: 768px) {
  .ap-glass-section::before {
    width: 600px;
    height: 600px;
    top: -30%;
    right: -15%;
  }
}

.ap-glass-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* ── Container ── */
.ap-container {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media(max-width: 1200px) {
  .ap-container {
    gap: 60px;
  }
}

@media(max-width: 991px) {
  .ap-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media(max-width: 768px) {
  .ap-container {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    max-width: 100%;
  }

  .ap-left,
  .ap-right {
    width: 100%;
    max-width: 100%;
  }
}

/* ── LEFT SIDE ── */
.ap-left {
  animation: fade-right 0.6s ease both;
}

@media(max-width: 991px) {
  .ap-left {
    max-width: 100%;
  }
}

.ap-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #4e54ff;
  background: linear-gradient(135deg, #eef2ff, #f3e8ff);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(78, 84, 255, 0.1);
}

.ap-badge::before {
  content: '✦';
  font-size: 10px;
}

.ap-title {
  /* font-family: 'Bricolage Grotesque', sans-serif; */
  font-size: 44px;
  font-weight: 500;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 24px;
}

@media(max-width: 991px) {
  .ap-title {
    font-size: 36px;
  }
}

@media(max-width: 768px) {
  .ap-title {
    font-size: 30px;
  }
}

.ap-slate {
  background: #636363;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ap-desc {
  font-size: 18px;
  color: #636363;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 560px;
}

/* Check list - Enhanced */
.ap-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  justify-items: stretch;
  align-items: center;
  justify-content: stretch;
}

@media(max-width: 768px) {
  .ap-list {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 16px;
    margin: 0 0 24px 0;
  }
}

/* Bottom tick points - single row, 4 columns */
.ap-list-bottom {
  margin: 60px 0 0;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .ap-list-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
    padding: 0 16px;
    box-sizing: border-box;
    margin-bottom: 40px;
  }

  .tech-section .main-title {
    margin-bottom: 0px !important;
  }
}


.ap-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #111111;
  font-weight: 500;
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 80px;
  height: 100%;
  text-align: left;
}

.ap-list li {
  will-change: transform;
}

.ap-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(78, 84, 200, 0.1) 50%,
      transparent 100%);
  transition: left 0.6s ease;
}

@media (hover: hover) {
  .ap-list li:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #4e54ff;
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 84, 200, 0.15);
  }

  .ap-list li:hover::before {
    left: 100%;
  }
}


.ap-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4e54ff, #8b5cf6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(78, 84, 200, 0.3);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .ap-check {
    width: 24px;
    height: 24px;
    font-size: 12px;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* ── RIGHT SIDE ── */
.ap-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width: 991px) {
  .ap-right {
    width: 100%;
  }
}

.ap-cards-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 560px;
}

@media(max-width: 1200px) {
  .ap-cards-wrap {
    gap: 16px;
    max-width: 500px;
  }
}

@media(max-width: 575px) {
  .ap-cards-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
  }
}

/* ── Card ── Enhanced Design */
.glass-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Animated background glow on hover */
.glass-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(78, 84, 255, 0.06) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 0;
}

.glass-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Top accent border - gradient like testimonials */
.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4e54ff, #8b5cf6, #f43f5e);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.glass-card:hover::after {
  opacity: 1;
}

/* Card hover animation */
.glass-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(203, 213, 225, 0.8);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-8px);
}

/* Icon animation */
.glass-card .pd-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  transition: all 0.3s ease;
}

/* Icon floating animation on hover */
@keyframes iconFloat {

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

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

.pd-feature:hover .pd-feature-icon {
  transform: scale(1.15) rotate(-8deg);
}

/* Card content animation */
.pd-feature .card-info {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.pd-feature:hover .card-info {
  transform: translateY(-4px);
}

@media(max-width: 575px) {
  .glass-card {
    padding: 24px 18px;
    gap: 10px;
    flex-direction: row;
    text-align: left;
  }

  .glass-card:hover {
    transform: translateX(8px) scale(1.01);
  }
}

/* ── Icon Box ── Enhanced */
.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.glass-card:hover .icon-box {
  transform: scale(1.1) rotate(-5deg);
}

@media(max-width: 575px) {
  .icon-box {
    width: 52px;
    height: 52px;
    font-size: 22px;
    border-radius: 12px;
  }
}

/* Theme colours - Enhanced with gradients */
.blue-theme {
  background: linear-gradient(135deg, #eef2ff, #dbeafe);
  color: #4f46e5;
}

.red-theme {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #dc2626;
}

.purple-theme {
  background: linear-gradient(135deg, #f3e8ff, #ede9fe);
  color: #7c3aed;
}

.green-theme {
  background: linear-gradient(135deg, #f0fdf4, #d1fae5);
  color: #059669;
}

/* ── Card Text ── */
.card-info {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media(max-width: 575px) {
  .card-info {
    align-items: flex-start;
  }
}

.card-info h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1e293b;
  margin: 0 0 8px;
  line-height: 1.35;
}

.card-info p {
  font-size: 13.5px;
  color: #636363;
  line-height: 1.55;
  margin: 0;
}

@media(max-width: 575px) {
  .card-info h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }

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





/*Technologies - Simple Best Layout*/
.tech-section {
  padding: 60px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Force tech section visibility on all devices */
.tech-section * {
  visibility: visible !important;
  opacity: 1 !important;
}

.tech-icons-row {
  visibility: visible !important;
  opacity: 1 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  min-height: 120px !important;
  position: relative !important;
  z-index: 10 !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
}

/* Force all tech cards to be visible */
.tech-card {
  visibility: visible !important;
  opacity: 1 !important;
  display: flex !important;
  flex-shrink: 0 !important;
  min-width: 70px !important;
  width: 70px !important;
  height: 85px !important;
  scroll-snap-align: start !important;
}

/* Force all img containers to show icons */
.img-container {
  visibility: visible !important;
  opacity: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  z-index: 20 !important;
}

/* Force all images to be visible */
.img-container img {
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
  position: relative !important;
  z-index: 25 !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  min-width: 20px !important;
  min-height: 20px !important;
}

/* Force all tech labels to be visible */
.tech-label {
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
  position: relative !important;
  z-index: 15 !important;
}

@media (max-width: 991px) {
  .tech-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .tech-section {
    padding: 40px 0;
  }
}


.tech-section .container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.tech-section .main-title {
  color: #4951C5;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: left;
  position: relative;
  display: block;
  padding-left: 20px;
}

.tech-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
  align-items: stretch;
  justify-content: space-between;
}

.tech-icons-row::-webkit-scrollbar {
  height: 6px;
}

.tech-icons-row::-webkit-scrollbar-thumb {
  background: #d4d4d8;
  border-radius: 999px;
}

.tech-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  width: 100%;
  min-width: 100px;
  max-width: none;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  flex: 1 1 auto;
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border-color: #4f46e5;
  background: #fafbff;
}

.img-container {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.img-container img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
}

.tech-card:hover .img-container {
  background: #ede9fe;
}

.tech-card:hover .img-container img {
  transform: scale(1.1);
}

.tech-label {
  font-size: 12px;
  color: #64748b;
  text-align: center;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.tech-card:hover .tech-label {
  color: #4f46e5;
  font-weight: 600;
}

@media (max-width: 900px) {
  .tech-icons-row {
    justify-content: flex-start;
    gap: clamp(6px, 1.5vw, 12px);
    padding: 4px 1px;
  }

  .tech-card {
    flex: 0 0 auto;
    width: 88px;
    max-width: 88px;
    height: 108px;
    padding: 8px 4px;
  }

  .img-container {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
  }
}

/* Desktop specific fixes for tech icons container */
@media (min-width: 992px) {
  .tech-icons-row {
    justify-content: space-between;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    overflow-x: auto;
  }

  .tech-card {
    width: 100%;
    max-width: none;
    min-width: 72px;
    height: 120px;
    flex: 1 1 auto;
    padding: 12px 8px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
    scroll-snap-align: start;
  }

  .img-container {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: 100%;
    max-height: 100%;
  }

  .tech-label {
    font-size: 11px;
    color: #444;
    text-align: center;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .tech-icons-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: clamp(8px, 2.5vw, 12px) !important;
    padding: clamp(12px, 3vw, 16px) !important;
    justify-content: center !important;
    overflow: visible !important;
    min-height: 160px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 5 !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .tech-card {
    grid-column: span 1 !important;
    width: 100% !important;
    max-width: none !important;
    height: 120px !important;
    padding: clamp(8px, 2vw, 12px) !important;
    flex: 0 0 auto !important;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 6 !important;
    scroll-snap-align: center !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    animation: techCardEntry 0.6s ease-out both !important;
  }

  .tech-card:nth-child(1) {
    animation-delay: 0.1s !important;
  }

  .tech-card:nth-child(2) {
    animation-delay: 0.2s !important;
  }

  .tech-card:nth-child(3) {
    animation-delay: 0.3s !important;
  }

  .tech-card:nth-child(4) {
    animation-delay: 0.4s !important;
  }

  .tech-card:nth-child(5) {
    animation-delay: 0.5s !important;
  }

  .tech-card:nth-child(6) {
    animation-delay: 0.6s !important;
  }

  .tech-card:nth-child(7) {
    animation-delay: 0.7s !important;
  }

  .tech-card:nth-child(8) {
    animation-delay: 0.8s !important;
  }

  .tech-card:nth-child(9) {
    animation-delay: 0.9s !important;
  }

  .tech-card:nth-child(10) {
    animation-delay: 1.0s !important;
  }

  .tech-card:nth-child(11) {
    animation-delay: 1.1s !important;
  }

  .tech-card:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
    background: linear-gradient(145deg, #ffffff 0%, #e0e7ff 100%) !important;
    border-color: #4f46e5 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  }

  .img-container {
    width: clamp(32px, 4vw, 40px) !important;
    height: clamp(32px, 4vw, 40px) !important;
    margin-bottom: clamp(8px, 2vw, 12px) !important;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    overflow: visible !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    animation: techContainerGlow 3s ease-in-out infinite !important;
  }

  .img-container img {
    width: clamp(24px, 3vw, 32px) !important;
    height: clamp(24px, 3vw, 32px) !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: contain !important;
    position: relative !important;
    z-index: 15 !important;
    max-width: 100% !important;
    max-height: 100% !important;
    overflow: visible !important;
    border: none !important;
    outline: none !important;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15)) !important;
    transition: transform 0.3s ease !important;
    animation: techIconPulse 2s ease-in-out infinite !important;
  }

  .tech-card:hover .img-container img {
    animation: techIconRotate 0.6s ease-in-out infinite !important;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25)) !important;
    transform: scale(1.1) !important;
  }

  .tech-label {
    font-size: clamp(9px, 2vw, 11px) !important;
    line-height: 1.3 !important;
    color: #1a1a1a !important;
    font-weight: 600 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    position: relative !important;
    z-index: 5 !important;
    text-align: center !important;
    letter-spacing: 0.5px !important;
  }
}

/*Technologies*/


/* Curriculum_Career */
* {
  box-sizing: border-box;
}

/* Small helper: section subtitle */
.sub-heading {
  margin: -18px 0 26px;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 520px;
}

body {
  margin: 0;

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: transparent;
  color: #111111;
  overflow-x: clip;
}

/* ================= WordPress compatibility ================= */
/*
  WordPress themes often apply their own body/background/margin styles.
  This stylesheet is intended for the custom course sections, so scope
  the heavy styling to those sections and avoid global resets.
*/
:where(.pd-hero, .tech-section, .info-section, .live-projects, .why-icode, .icode-testimonials, .cta-section) {
  font-family: inherit;
}

/* Prevent WordPress/editor conflicts with container widths/gutters */
:where(.pd-hero, .tech-section, .info-section, .live-projects, .why-icode, .icode-testimonials, .cta-section) .container,
:where(.pd-hero, .tech-section, .info-section, .live-projects, .why-icode, .icode-testimonials, .cta-section) .page-container {
  width: 100% !important;
  max-width: var(--page-max-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--page-gutter-x) !important;
  padding-right: var(--page-gutter-x) !important;
  box-sizing: border-box;
}


/* Section Layout */
.info-section {
  padding: 80px 0;
}

@media (max-width: 991px) {
  .info-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .info-section {
    padding: 40px 0;
    overflow: visible !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .unified-section {
    visibility: visible !important;
    opacity: 1 !important;
  }

  .unified-header,
  .unified-content,
  .unified-footer {
    visibility: visible !important;
    opacity: 1 !important;
  }
}


/* Make info section horizontal gutters match the rest of the page */
.info-section .container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding-left: var(--page-gutter-x);
  padding-right: var(--page-gutter-x);
  box-sizing: border-box;
}

.info-section .page-container {
  width: 100% !important;
  max-width: var(--page-max-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--page-gutter-x) !important;
  padding-right: var(--page-gutter-x) !important;
  box-sizing: border-box;
}

.info-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  width: 100%;
  /* gutters are handled by .info-section .container to match other sections */
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}


.curriculum-wrapper,
.career-wrapper {
  flex: 1 1 0;
  min-width: 320px;
  width: auto;
}

.curriculum-wrapper {
  display: flex;
  flex-direction: column;
}

.career-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.accordion-list {
  flex: 1;
}

/* Headings */
.top-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #4f46e5;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.main-heading {
  margin: 0 0 40px;
  font-size: clamp(2.4rem, 2.2vw, 3rem);
  line-height: 1.05;
  color: #111111;
}

.main-heading .gray-text {
  color: #6b7280;
  font-weight: 400;
}

/* Curriculum Card */
.accordion-list {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(15, 23, 42, 0.18);
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.accordion-item:last-child {
  border-bottom: 0;
}

.list-title,
.list-title-static {
  padding: 24px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #141619;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease;
}

.list-title {
  position: relative;
}

.list-title:focus {
  outline: 2px solid #4f46e5;
  outline-offset: -2px;
  z-index: 1;
}

.list-title:focus:not(:focus-visible) {
  outline: none;
}

.list-title:focus-visible {
  outline: 2px solid #4f46e5;
  outline-offset: -2px;
}

.list-title::after {
  content: '\25B6';
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: #4f46e5;
  font-size: 1rem;
  transition: transform 0.35s ease, color 0.35s ease;
}

.list-title.active {
  background: #f8fafc;
  color: #111827;
}

.list-title.active::after {
  content: '\25BC';
  transform: translateY(-50%);
}

.list-title-static {
  background: #ffffff;
  cursor: default;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #f3f4f6;
  padding: 0 32px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

/* When open (either legacy JS or native <details>) */
.accordion-content.open {
  display: block;
  max-height: 500px;
  padding: 30px 32px 36px;
}

/* WordPress/native details styling to match existing UI */
.wp-accordion {
  margin: 0;
}

.wp-accordion>summary {
  list-style: none;
}

.wp-accordion>summary::-webkit-details-marker {
  display: none;
}

/* Ensure summary behaves like the original clickable title */
.wp-accordion>summary {
  cursor: pointer;
}

/* Remove double borders/gaps caused by native details */
.accordion-item details.wp-accordion {
  padding: 0;
}


.curriculum-box {
  margin: 0;
}

.curriculum-box ul {
  padding-left: 24px;
  margin: 0;
  list-style: disc;
  color: #475569;
  font-size: 1rem;
  line-height: 1.9;
}

.curriculum-box li {
  margin-bottom: 14px;
}

/* Career Section */
.career-wrapper {
  display: flex;
  flex-direction: column;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.role-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.role-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.18);
}

.role-card img {
  height: 72px;
  width: auto;
}

.role-card span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

/* Simple Career Section - Best Design */
.career-simple {
  position: relative;
}

.simple-header {
  margin-bottom: 32px;
  flex-shrink: 0;
}

.career-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  flex: 1;
}

.role-simple-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.role-simple-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.role-simple-icon {
  width: 44px;
  height: 44px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.role-simple-card:hover .role-simple-icon {
  background: rgba(16, 185, 129, 0.12);
  transform: scale(1.05);
}

.role-simple-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.role-simple-content {
  flex: 1;
  min-width: 0;
}

.role-simple-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 3px;
  line-height: 1.3;
}

.role-simple-content p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.role-simple-card:hover .role-simple-content h4 {
  color: #10b981;
}

/* Simple & Best Footer Design */
.career-simple-footer {
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-top: 24px;
}

.footer-simple-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
}

.footer-simple-left h3 {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  margin-bottom: 16px;
}

.footer-simple-left .footer-subtext {
  color: #636363;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 28px;
  /* max-width: 480px; */
}

.cta-simple-button {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #8b5cf6 100%);
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform-style: preserve-3d;
}

.cta-simple-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%);
  transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.cta-simple-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-simple-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.14);
}

.footer-simple-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.career-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.career-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

.career-image img:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

/* Mobile Scroll Animations - Best Effects */
@media (max-width: 768px) {

  /* Base scroll animation classes */
  .scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Different animation types */
  .scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .scroll-animate-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .scroll-animate-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .scroll-animate-scale.visible {
    opacity: 1;
    transform: scale(1);
  }

  .scroll-animate-rotate {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .scroll-animate-rotate.visible {
    opacity: 1;
    transform: rotate(0) scale(1);
  }

  /* Apply animations to main containers */
  .pd-hero {
    animation: none;
  }

  .pd-form-box {
    animation: none;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .pd-form-box.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .pd-features {
    animation: none;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .pd-features.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .pd-feature {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .pd-feature.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .pd-feature:nth-child(1) {
    transition-delay: 0.1s;
  }

  .pd-feature:nth-child(2) {
    transition-delay: 0.2s;
  }

  .pd-feature:nth-child(3) {
    transition-delay: 0.3s;
  }

  .pd-feature:nth-child(4) {
    transition-delay: 0.4s;
  }

  .pd-feature:nth-child(5) {
    transition-delay: 0.5s;
  }

  .tech-section {
    animation: none;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .tech-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .tech-card {
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .tech-card.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }

  .tech-card:nth-child(1) {
    transition-delay: 0.1s;
  }

  .tech-card:nth-child(2) {
    transition-delay: 0.2s;
  }

  .tech-card:nth-child(3) {
    transition-delay: 0.3s;
  }

  .tech-card:nth-child(4) {
    transition-delay: 0.4s;
  }

  .unified-section {
    animation: none;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .unified-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .unified-header {
    animation: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .unified-header.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .content-part {
    animation: none;
    opacity: 0;
    transform: translateX(-30px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .content-part.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  .content-part:nth-child(2) {
    transform: translateX(30px) scale(0.9);
  }

  .content-part:nth-child(2).visible {
    transform: translateX(0) scale(1);
  }

  .learning-item {
    animation: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .learning-item.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .career-item {
    animation: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .career-item.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .career-simple-footer {
    animation: none;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .career-simple-footer.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .footer-simple-left {
    animation: none;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .footer-simple-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .footer-simple-right {
    animation: none;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .footer-simple-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .live-projects {
    animation: none;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .live-projects.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .lp-card {
    animation: none;
    opacity: 0;
    transform: translateY(30px) rotateY(10deg);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .lp-card.visible {
    opacity: 1;
    transform: translateY(0) rotateY(0);
  }

  .lp-card:nth-child(1) {
    transition-delay: 0.1s;
  }

  .lp-card:nth-child(2) {
    transition-delay: 0.2s;
  }

  .lp-card:nth-child(3) {
    transition-delay: 0.3s;
  }

  .lp-card:nth-child(4) {
    transition-delay: 0.4s;
  }
}

@media (max-width: 768px) {
  .footer-simple-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
    text-align: center;
  }

  .footer-simple-left h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    text-align: center;
  }

  .footer-simple-left .footer-subtext {
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
  }

  .cta-simple-button {
    padding: 14px 28px;
    font-size: 0.95rem;
    margin: 0 auto;
    justify-content: center;
    border-radius: 10px;
  }

  .cta-simple-button:hover {
    transform: translateY(-3px) scale(1.03);
  }

  .cta-simple-button:hover svg {
    transform: translateX(3px);
  }

  .career-image {
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .footer-simple-content {
    padding: 20px 16px;
    gap: 20px;
  }

  .footer-simple-left h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .footer-simple-left .footer-subtext {
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .cta-simple-button {
    padding: 12px 24px;
    font-size: 0.9rem;
    gap: 8px;
    border-radius: 8px;
    letter-spacing: 0.3px;
  }

  .cta-simple-button:hover {
    transform: translateY(-2px) scale(1.02);
  }

  .cta-simple-button:hover svg {
    transform: translateX(2px);
  }

  .career-image {
    max-width: 180px;
  }

  .career-simple-footer {
    margin-top: 20px;
    border-radius: 12px;
  }
}

/* Even More Simple & Clean Design */
.unified-section {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: var(--page-max-width);
  margin: 0 auto;
  position: relative;
}

.unified-section::before {
  display: none;
}

/* Minimal Header */
.unified-header {
  text-align: center;
  margin-bottom: 40px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.header-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 15px;
  transition: all 0.2s ease;
  font-size: inherit !important;
  padding: 10px 20px !important;
}

.badge:hover {
  background: #f1f5f9;
}

.badge-icon {
  font-size: 14px;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #4f46e5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.unified-title {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.2;
}

.unified-desc {
  font-size: 16px;
  color: #636363;
  font-weight: 400;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
}

/* Minimal Content */
.unified-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Content Parts - Minimal */
.content-part {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 24px;
  transition: all 0.2s ease;
}

.content-part:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.content-part::before {
  display: none;
}

.part-title {
  font-size: 20px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.3;
  padding-left: 12px;
}

/* Curriculum Part - Minimal */
.learning-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.learning-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.learning-item:hover {
  background: #f1f5f9;
  transform: translateX(2px);
}

.learning-item::before {
  display: none;
}

.step-number {
  width: 32px;
  height: 32px;
  background: #4f46e5;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.step-number::before {
  display: none;
}

.learning-item:hover .step-number {
  transform: scale(1.05);
}

.learning-info h4 {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 2px;
  line-height: 1.3;
}

.learning-info p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

/* Career Part - Minimal */
.career-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.career-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.career-item:hover {
  background: #f1f5f9;
  transform: translateX(2px);
}

.career-item::before {
  display: none;
}

.career-orb {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.career-orb::before {
  display: none;
}

.career-item:hover .career-orb {
  transform: scale(1.05);
}

.career-orb img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.career-info h4 {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 2px;
  line-height: 1.3;
}

.career-info p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

/* Enhanced Mobile Responsive Design with Animations */
@media (max-width: 1024px) {
  .unified-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .unified-header {
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out;
  }

  .unified-title {
    font-size: 1.8rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  .unified-desc {
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 0.4s both;
  }

  .header-badges {
    /* flex-direction: column; */
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
  }

  .badge {
    transform: scale(0.9);
    animation: scaleIn 0.4s ease-out 0.6s both;
  }

  .badge:hover {
    transform: scale(0.95);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
  }

  .unified-content {
    gap: 24px;
    animation: fadeIn 1.2s ease-out 0.8s both;
  }

  .content-part {
    padding: 20px;
    border-radius: 16px;
    animation: slideInLeft 0.6s ease-out both;
  }

  .content-part:nth-child(2) {
    animation: slideInRight 0.6s ease-out 0.2s both;
  }

  .content-part:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
  }

  .part-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
    animation: fadeInUp 0.5s ease-out 0.3s both;
  }

  .learning-item,
  .career-item {
    padding: 14px;
    gap: 14px;
    border-radius: 12px;
    animation: fadeInUp 0.5s ease-out both;
    transition: all 0.3s ease;
  }

  .learning-item:hover {
    background: #f8fafc;
    transform: translateX(6px) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .career-item:hover {
    background: #f8fafc;
    transform: translateX(6px) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    animation: rotateIn 0.6s ease-out 0.4s both;
  }

  .learning-item:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
  }

  .career-orb {
    width: 44px;
    height: 44px;
    animation: bounceIn 0.6s ease-out 0.4s both;
  }

  .career-item:hover .career-orb {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .career-orb img {
    width: 22px;
    height: 22px;
  }

  /* Footer Mobile Animations */
  .career-simple-footer {
    animation: slideInUp 0.8s ease-out 1s both;
  }

  .footer-simple-left {
    animation: fadeInLeft 0.6s ease-out 1.2s both;
  }

  .footer-simple-right {
    animation: fadeInRight 0.6s ease-out 1.4s both;
  }

  .career-image img {
    animation: zoomIn 0.6s ease-out 1.6s both;
    transition: all 0.3s ease;
  }

  .career-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
}

/* Mobile Animations Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.8);
  }

  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
  .unified-header {
    animation: fadeInUp 0.5s ease-out;
  }

  .content-part {
    animation: fadeInUp 0.6s ease-out both;
  }

  .content-part:nth-child(2) {
    animation-delay: 0.2s;
  }

  .learning-item,
  .career-item {
    animation: fadeInUp 0.4s ease-out both;
  }

  .career-simple-footer {
    animation: slideInUp 0.6s ease-out 0.4s both;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .unified-title {
    font-size: 1.6rem;
  }

  .unified-desc {
    font-size: 0.85rem;
  }

  .content-part {
    padding: 16px;
  }

  .part-title {
    font-size: 1rem;
  }

  .learning-item,
  .career-item {
    padding: 12px;
    gap: 12px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .career-orb {
    width: 40px;
    height: 40px;
  }

  .career-orb img {
    width: 20px;
    height: 20px;
  }

  .footer-simple-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .career-image {
    max-width: 200px;
  }

  /* Enhanced pd-features for small mobile */
  .pd-features {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: clamp(0.75rem, 3vw, 1rem) !important;
    border-radius: 0;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .pd-feature {
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(248, 250, 252, 0.15) 100%);
    border: 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .pd-feature-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .pd-feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
        transparent 0%,
        rgba(78, 84, 255, 0.1) 50%,
        transparent 100%);
    animation: iconShine 3s ease-in-out infinite;
  }

  .pd-feature-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(248, 250, 252, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 18px;
  }

  .pd-feature strong {
    font-size: 16px;
  }

  .pd-feature span {
    font-size: 14px;
  }
}

/* END ENHANCED MOBILE RESPONSIVE DESIGN */

/* END EVEN MORE SIMPLE DESIGN */
.career-footer {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 35px 70px rgba(15, 23, 42, 0.14);
}

.footer-text {
  flex: 1;
}

.footer-text h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #111827;
}

.footer-text .footer-subtext {
  margin: 16px 0 0;
  color: #6b7280;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.7;
}

.footer-graphic img {
  display: block;
  width: 145px;
  height: auto;
}

/* Responsive */
@media (max-width: 1100px) {
  .info-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .curriculum-wrapper,
  .career-wrapper {
    width: 100%;
  }

  .roles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .main-heading {
    font-size: 2.2rem;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .career-footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-graphic {
    margin-top: 20px;
  }
}

/* Curriculum_Career */

/* SIMPLE AND BEST DESIGN */
.info-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

/* Simple Layout Container */
.simple-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* Ensure both columns have equal height */
.curriculum-simple,
.career-simple {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Simple Headers */
.simple-header {
  margin-bottom: 40px;
  flex-shrink: 0;
}

.header-simple {
  display: flex;
  align-items: center;
  gap: 20px;
}

.simple-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.simple-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

/* Section Headers */
.top-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #4f46e5;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(79, 70, 229, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
}

.main-heading {
  margin: 0 0 16px;
  font-size: clamp(2rem, 2.2vw, 2.6rem);
  line-height: 1.1;
  color: #111827;
  font-weight: 800;
}

.main-heading .gray-text {
  color: #6b7280;
  font-weight: 600;
}

.sub-heading {
  color: #64748b;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* Enhanced Curriculum Section - Even Height */
.curriculum-enhanced {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.enhanced-header {
  margin-bottom: 32px;
  flex-shrink: 0;
}

.header-enhanced {
  display: flex;
  align-items: center;
  gap: 24px;
}

.enhanced-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.enhanced-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.enhanced-icon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.25);
}

.enhanced-icon:hover::before {
  opacity: 1;
}

/* Simple Curriculum Cards - Best Design */
.curriculum-simple-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  flex: 1;
}

.curriculum-simple-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.curriculum-simple-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(79, 70, 229, 0.2);
}

/* Simple Step Badge */
.step-simple {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
  transition: all 0.3s ease;
}

.curriculum-simple-card:hover .step-simple {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

/* Enhanced Card Content */
/* Premium Topic Items - World-Class Design */
.card-premium-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-header {
  margin-bottom: 24px;
  padding-right: 75px;
  flex-shrink: 0;
}

.card-topics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  flex: 1;
  align-content: space-between;
}

.topic-premium-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg,
      rgba(99, 102, 241, 0.08) 0%,
      rgba(139, 92, 246, 0.05) 50%,
      rgba(99, 102, 241, 0.08) 100%);
  border-radius: 30px 20px 30px 20px;
  transition: all 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
  border: 2px solid rgba(99, 102, 241, 0.15);
  position: relative;
  overflow: hidden;
  animation: premium-topic-float 8s ease-in-out infinite;
}

.topic-premium-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(99, 102, 241, 0.12) 0%,
      rgba(139, 92, 246, 0.08) 50%,
      rgba(99, 102, 241, 0.12) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 28px 18px 28px 18px;
  animation: premium-shimmer 6s ease-in-out infinite;
}

@keyframes premium-topic-float {

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

  25% {
    transform: translateY(-4px) rotate(2deg);
  }

  50% {
    transform: translateY(0) rotate(0deg);
  }

  75% {
    transform: translateY(-2px) rotate(-1deg);
  }
}

@keyframes premium-shimmer {

  0%,
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }

  50% {
    opacity: 0.5;
    transform: translateX(0);
  }
}

.topic-premium-item:hover {
  background: linear-gradient(135deg,
      rgba(99, 102, 241, 0.15) 0%,
      rgba(139, 92, 246, 0.12) 50%,
      rgba(99, 102, 241, 0.15) 100%);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateX(12px) translateY(-6px) scale(1.08);
  border-radius: 35px 25px 35px 25px;
}

.topic-premium-item:hover::before {
  opacity: 1;
}

.topic-premium-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: all 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
  z-index: 2;
}

.topic-emoji {
  font-size: 18px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
  border-radius: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: premium-icon-spin 10s linear infinite;
}

.icon-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%,
      rgba(99, 102, 241, 0.4) 0%,
      rgba(139, 92, 246, 0.3) 50%,
      rgba(99, 102, 241, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  animation: premium-icon-glow 4s ease-in-out infinite;
}

@keyframes premium-icon-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes premium-icon-glow {

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

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.topic-premium-item:hover .topic-premium-icon {
  transform: scale(1.2) rotate(15deg);
}

.topic-premium-item:hover .topic-emoji {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.25) 100%);
  transform: scale(1.1) rotate(10deg);
}

.topic-premium-item:hover .icon-glow {
  opacity: 1;
}

.topic-premium-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
  line-height: 1.4;
  transition: all 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
  position: relative;
  z-index: 1;
}

.topic-premium-item:hover span {
  color: #6366f1;
  font-weight: 600;
  transform: translateY(-3px);
}

/* Curriculum Card Content */
.curriculum-card__head {
  margin-bottom: 20px;
  padding-right: 60px;
}

.curriculum-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
  line-height: 1.3;
}

.curriculum-card__meta {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 0.02em;
}

.curriculum-card__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.curriculum-card__list li {
  position: relative;
  padding: 12px 0 12px 28px;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.curriculum-card__list li:last-child {
  border-bottom: none;
}

.curriculum-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.curriculum-card:hover .curriculum-card__list li::before {
  background: rgba(16, 185, 129, 0.2);
  transform: scale(1.1);
}

.curriculum-timeline {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.curriculum-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.curriculum-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: #6366f1;
}

.step-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.curriculum-card:hover .step-badge {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.curriculum-card__head {
  margin-bottom: 15px;
}

.curriculum-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.3;
}

.curriculum-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #f1f5f9;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.curriculum-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.curriculum-card__list li {
  position: relative;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.curriculum-card__list li:last-child {
  border-bottom: none;
}

.curriculum-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.curriculum-card:hover .curriculum-card__list li::before {
  transform: scale(1.1);
}

.curriculum-card__list li:hover {
  color: #1e293b;
  transform: translateX(3px);
}

/* Section headers styling */
.top-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #6366f1;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  padding: 8px 20px;
  border-radius: 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.main-heading {
  font-size: 36px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.2;
}

.gray-text {
  background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub-heading {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* New Layout Structure */
.curriculum-section {
  margin-bottom: 120px;
  position: relative;
  z-index: 2;
}

.career-section {
  position: relative;
  z-index: 2;
}

/* Fluid Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px 0 80px;
  position: relative;
}

.divider-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(99, 102, 241, 0.1) 15%,
      rgba(139, 92, 246, 0.2) 50%,
      rgba(244, 63, 94, 0.1) 85%,
      transparent 100%);
  position: relative;
  border-radius: 2px;
}

.divider-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  position: relative;
}

.divider-icon {
  font-size: 32px;
  animation: float-dot 6s ease-in-out infinite;
  filter: drop-shadow(0 6px 12px rgba(99, 102, 241, 0.3));
  transition: transform 0.3s ease;
}

.divider-content:hover .divider-icon {
  transform: scale(1.2) rotate(10deg);
}

.divider-text {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}

.divider-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 2px;
  opacity: 0.6;
}

/* Curriculum Section - Full Width */
.curriculum-section .curriculum-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 32px;
  padding: 50px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curriculum-section .curriculum-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

/* Revolutionary Footer */
.revolutionary-footer {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.06) 50%,
      rgba(255, 255, 255, 0.12) 100%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 35px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.5),
    inset 0 0 60px rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
}

.footer-hologram {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%,
      rgba(16, 185, 129, 0.15) 0%,
      rgba(5, 150, 105, 0.1) 40%,
      transparent 70%);
  animation: hologram-pulse 10s ease-in-out infinite;
  z-index: -1;
}

.footer-content-revolutionary {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 10;
  transform-style: preserve-3d;
}

.footer-left h3 {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.5s ease;
}

.footer-left .footer-subtext {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-button-revolutionary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  border: none;
  border-radius: 60px;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
  box-shadow:
    0 15px 40px rgba(99, 102, 241, 0.5),
    inset 0 0 30px rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform-style: preserve-3d;
  transform: translateZ(0px);
}

.button-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.button-particles::before,
.button-particles::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: all 0.6s ease;
}

.button-particles::before {
  top: 30%;
  left: 15%;
  animation: particle-3 2s ease-in-out infinite;
}

.button-particles::after {
  bottom: 30%;
  right: 15%;
  animation: particle-4 2s ease-in-out infinite 1s;
}

.cta-button-revolutionary:hover .button-particles::before,
.cta-button-revolutionary:hover .button-particles::after {
  opacity: 1;
}

.cta-button-revolutionary:hover {
  transform: translateY(-5px) translateZ(20px) scale(1.05);
  box-shadow:
    0 25px 60px rgba(99, 102, 241, 0.7),
    inset 0 0 40px rgba(255, 255, 255, 0.3);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  transform-style: preserve-3d;
}

.growth-hologram {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  animation: hologram-rotate 8s linear infinite;
}

.growth-stats-3d {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  width: 100%;
}

.stat-item-3d {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform-style: preserve-3d;
  transition: all 0.5s ease;
}

.stat-item-3d:hover {
  transform: translateZ(10px) scale(1.05);
  border-color: rgba(99, 102, 241, 0.3);
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #10b981;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.5s ease;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .compact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .curriculum-grid {
    gap: 12px;
  }

  .curriculum-card {
    padding: 25px;
    border-radius: 12px;
  }

  .step-badge {
    width: 40px;
    height: 40px;
    font-size: 14px;
    top: 16px;
    right: 16px;
  }

  .curriculum-card__title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .curriculum-card__meta {
    font-size: 11px;
    padding: 4px 12px;
  }

  .curriculum-card__list li {
    font-size: 14px;
    padding: 10px 0 10px 32px;
  }

  .curriculum-card__list li::before {
    width: 22px;
    height: 22px;
    font-size: 11px;
    top: 10px;
  }

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

  .sub-heading {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .section-divider {
    margin: 40px 0 30px;
  }

  .divider-content {
    padding: 0 20px;
  }

  .divider-icon {
    font-size: 24px;
  }

  .divider-text {
    font-size: 16px;
  }

  .career-section .career-wrapper {
    padding: 30px;
  }

  .career-section .roles-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
  }

  .career-section .role-card {
    padding: 24px 16px;
  }

  .career-section .career-footer {
    flex-direction: column;
    gap: 24px;
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .info-section {
    padding: 60px 0;
  }

  .info-section .curriculum-wrapper {
    padding: 20px;
  }

  .curriculum-timeline {
    gap: 16px;
  }

  .curriculum-card {
    padding: 16px;
  }

  .step-badge {
    width: 36px;
    height: 36px;
    font-size: 13px;
    top: 12px;
    right: 12px;
  }

  .curriculum-card__title {
    font-size: 16px;
  }

  .curriculum-card__meta {
    font-size: 10px;
    padding: 3px 10px;
  }

  .curriculum-card__list li {
    font-size: 13px;
    padding: 8px 0 8px 28px;
  }

  .curriculum-card__list li::before {
    width: 20px;
    height: 20px;
    font-size: 10px;
    top: 8px;
  }

  .main-heading {
    font-size: 24px;
  }

  .top-label {
    font-size: 11px;
    padding: 6px 16px;
  }

  .section-divider {
    margin: 30px 0 20px;
  }

  .divider-content {
    padding: 0 16px;
    gap: 12px;
  }

  .divider-icon {
    font-size: 20px;
  }

  .divider-text {
    font-size: 14px;
  }

  .career-section .career-wrapper {
    padding: 20px;
  }

  .career-section .roles-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .career-section .role-card {
    padding: 20px;
  }

  .career-section .role-card img {
    height: 60px;
  }

  .career-section .career-footer {
    padding: 24px;
  }

  .career-section .footer-text h3 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .info-section .curriculum-wrapper {
    padding: 24px;
    border-radius: 24px;
  }

  .curriculum-card {
    padding: 20px;
    border-radius: 16px;
  }

  .curriculum-card:hover {
    transform: translateY(-2px) scale(1.01);
  }

  .step-badge {
    width: 40px;
    height: 40px;
    font-size: 14px;
    top: 16px;
    right: 16px;
  }

  .curriculum-card__title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .curriculum-card__meta {
    font-size: 11px;
    padding: 4px 12px;
  }

  .curriculum-card__list li {
    font-size: 14px;
    padding: 10px 0 10px 32px;
  }

  .curriculum-card__list li::before {
    width: 22px;
    height: 22px;
    font-size: 11px;
    top: 10px;
  }

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

  .sub-heading {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .info-section {
    padding: 60px 0;
  }

  .info-section .curriculum-wrapper {
    padding: 20px;
  }

  .curriculum-timeline {
    gap: 16px;
  }

  .curriculum-card {
    padding: 16px;
  }

  .step-badge {
    width: 36px;
    height: 36px;
    font-size: 13px;
    top: 12px;
    right: 12px;
  }

  .curriculum-card__title {
    font-size: 16px;
  }

  .curriculum-card__meta {
    font-size: 10px;
    padding: 3px 10px;
  }

  .curriculum-card__list li {
    font-size: 13px;
    padding: 8px 0 8px 28px;
  }

  .curriculum-card__list li::before {
    width: 20px;
    height: 20px;
    font-size: 10px;
    top: 8px;
  }

  .main-heading {
    font-size: 24px;
  }

  .top-label {
    font-size: 11px;
    padding: 6px 16px;
  }
}

/* Live Projects */
html,
body {
  margin: 0;
  min-height: 100%;
}


body {
  background: #f7f8fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* Section — Live projects (simple / modern) */
.live-projects--simple {
  padding: 80px 0;
  background: #f8fafc;
}

@media (max-width: 991px) {
  .live-projects--simple {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .live-projects--simple {
    padding: 40px 0;
    overflow: visible !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .lp-simple__header,
  .lp-simple__grid {
    visibility: visible !important;
    opacity: 1 !important;
  }

  .lp-card {
    visibility: visible !important;
    opacity: 1 !important;
  }
}


.live-projects--simple .container {
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.lp-simple__header {
  max-width: 100%;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

.lp-simple__label {
  margin: 0 0 0.5rem;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #000;
}

.live-projects--simple h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #000;
}

.lp-simple__desc {
  margin: 0.85rem 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.lp-simple__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  width: 100%;
}

.lp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

@media (hover: hover) {
  .lp-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 12px 40px -12px rgba(15, 23, 42, 0.12);
    transform: translateY(-2px);
  }
}

.lp-card__media {
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
  overflow: hidden;
}

.lp-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.lp-card:hover .lp-card__media img {
  transform: scale(1.03);
}

.lp-card__body {
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lp-card__tag {
  align-self: flex-start;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4f46e5;
  background: #eef2ff;
  border-radius: 6px;
}

.lp-card__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #0f172a;
}

.lp-card__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #64748b;
}

@media (max-width: 900px) {
  .lp-simple__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .live-projects--simple {
    padding: 3rem 0 3.5rem;
  }

  .lp-simple__grid {
    grid-template-columns: 1fr;
  }
}

/* Live Projects */


/* Why Choose iCode - Enhanced Design */
.why-icode,
.why-icode *,
.why-icode *::before,
.why-icode *::after {
  box-sizing: border-box;
}

/* ===== SECTION ===== */
.why-icode {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .why-icode {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .why-icode {
    padding: 40px 0;
    overflow: visible !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .icode-heading,
  .icode-cards {
    visibility: visible !important;
    opacity: 1 !important;
  }

  .icode-card {
    visibility: visible !important;
    opacity: 1 !important;
  }

  .icode-icon {
    visibility: visible !important;
    opacity: 1 !important;
  }
}


.why-icode .container {
  max-width: var(--page-max-width);
  margin: 0 auto;
}

/* Subtle background pattern */
.why-icode::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(78, 84, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===== HEADING ===== */
.icode-heading {
  text-align: left;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  text-align: center !important;
  width: 100%;
}

.icode-heading h2 {
  /* font-family: 'Bricolage Grotesque', sans-serif; */
  font-size: 40px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.2;
}

.icode-heading p {
  /* max-width: 600px; */
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

/* ===== GRID ===== */
.icode-cards {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* ===== CARD ===== */
.icode-card {
  background: #f8fafc;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.icode-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  transition: height 0.3s ease;
}

.icode-card:hover::before {
  height: 100%;
}

.icode-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  border-color: #cbd5e1;
}

/* ===== TOP (ICON + TITLE) ===== */
.icode-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

/* ===== ICON ===== */
.icode-icon {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px;

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

  border-radius: 12px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.icode-card:hover .icode-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* ===== COLORS ===== */
.orange {
  background: linear-gradient(135deg, #ffe8dd, #fed7aa);
  color: #f97316;
}

.icode-card:nth-child(1)::before {
  background: #f97316;
}

.purple {
  background: linear-gradient(135deg, #f3e8ff, #ede9fe);
  color: #a855f7;
}

.icode-card:nth-child(2)::before {
  background: #a855f7;
}

.blue {
  background: linear-gradient(135deg, #e0e7ff, #dbeafe);
  color: #6366f1;
}

.icode-card:nth-child(3)::before {
  background: #6366f1;
}

.cyan {
  background: linear-gradient(135deg, #dcfce7, #d1fae5);
  color: #22c55e;
}

.icode-card:nth-child(4)::before {
  background: #22c55e;
}

/* ===== TITLE ===== */
.icode-top h3 {
  /* font-family: 'Bricolage Grotesque', sans-serif; */
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.4;
  flex: 1;
}

/* ===== TEXT ===== */
.icode-card p {
  margin: 0;
  font-size: 14px;
  color: #636363;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .icode-cards {
    gap: 20px;
  }

  .icode-card {
    padding: 28px 20px;
  }
}

@media (max-width: 1024px) {
  .icode-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .icode-heading {
    margin-bottom: 36px;
  }

  .icode-heading h2 {
    font-size: 32px;
  }

  .icode-heading p {
    font-size: 15px;
  }

  .icode-cards {
    gap: 16px;
  }

  .icode-card {
    padding: 24px 20px;
  }

  .icode-icon {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    font-size: 20px;
  }

  .icode-top h3 {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .icode-cards {
    grid-template-columns: 1fr !important;
  }

  .icode-heading h2 {
    font-size: 28px;
  }

  .why-icode {
    padding: 50px 0;
  }

  .icode-card {
    padding: 24px;
  }
}

/*Why Choose iCode*/


/* ===== Testimonials - Enhanced Design ===== */
.icode-testimonials,
.icode-testimonials *,
.icode-testimonials *::before,
.icode-testimonials *::after {
  box-sizing: border-box;
}

/* ===== SECTION ===== */
.icode-testimonials {
  background: #ffffff;
  color: #111;
  /* padding: 80px 0; */
  overflow: hidden;
}

@media (max-width: 991px) {
  .icode-testimonials {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .icode-testimonials {
    padding: 40px 0;
    overflow: visible !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .testi-header,
  .testi-slider,
  .testi-card {
    visibility: visible !important;
    opacity: 1 !important;
  }
}


.icode-testimonials .container {
  max-width: var(--page-max-width);
  margin: 0 auto;
}

/* Subtle background decoration */
.icode-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(78, 84, 255, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===== HEADER ===== */
.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.testi-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.2;
}

.testi-header p {
  color: #64748b;
  max-width: 500px;
  font-size: 16px;
  line-height: 1.7;
}

/* ===== NAV BUTTONS ===== */
.nav-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  width: 50%;
  justify-content: end;
}

.nav-btn {
  width: 48px;
  height: 48px;
  background: #f8fafc;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.nav-btn:hover:not(:disabled) {
  background: #1e293b;
  color: #fff;
  border-color: #1e293b;
  transform: scale(1.05);
}

/* ===== SLIDER ===== */
.testi-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
}

.testi-slider::-webkit-scrollbar {
  height: 6px;
}

.testi-slider::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.testi-slider::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.testi-slider::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ===== CARD ===== */
.testi-card {
  min-width: 340px;
  max-width: 380px;
  width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  color: #111;
  border-radius: 20px;
  padding: 28px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Top accent border */
.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4e54ff, #8b5cf6, #f43f5e);
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e1;
}

/* ===== QUOTE ICON ===== */
.testi-card .quote-icon {
  font-size: 32px;
  color: #4e54ff;
  opacity: 0.2;
  margin-bottom: 12px;
  line-height: 1;
}

/* ===== STARS ===== */
.stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

/* ===== TITLE ===== */
.testi-card h3 {
  /* font-family: 'Bricolage Grotesque', sans-serif; */
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* ===== TEXT ===== */
.testi-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ===== USER ===== */
.user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4e54ff, #8b5cf6);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.user-info {
  flex: 1;
}

.user strong {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  display: block;
}

.user span {
  font-size: 14px;
  color: #636363;
  display: block;
  margin-top: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .testi-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .testi-header h2 {
    font-size: 32px;
  }

  .testi-header p {
    max-width: 100%;
  }

  .nav-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  .testi-card {
    min-width: 300px;
    max-width: 320px;
    padding: 24px;
  }

  .nav-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/*Testimonials*/


.cta-section,
.cta-section *,
.cta-section *::before,
.cta-section *::after {
  box-sizing: border-box;
}

/* ===== SECTION ===== */
.cta-section {
  background: #ffffff;
  padding: 80px 0;
  font-family: Arial, sans-serif;
}

@media (max-width: 991px) {
  .cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 40px 0;
    overflow: visible !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .cta-box {
    visibility: visible !important;
    opacity: 1 !important;
  }

  .cta-left {
    visibility: visible !important;
    opacity: 1 !important;
  }
}


.cta-section .page-container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
  box-sizing: border-box;
  width: 100%;
}

/* ===== CTA BOX ===== */
.cta-box {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0;
  border-radius: 18px;
  padding: 60px;

  display: flex;
  align-items: center;

  /* 🔥 BACKGROUND IMAGE */
  background-image: url("https://icodelearning.com/wp-content/uploads/2026/05/cta.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  /* ensures full image visibility */

  /* subtle base color */
  background-color: #0b1120;

  position: relative;
  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ===== LIGHT OVERLAY (ONLY LEFT SIDE) ===== */
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;

  /* 🔥 soft gradient, NOT blocking image */
  background: linear-gradient(to right,
      rgba(11, 17, 32, 0.85) 0%,
      rgba(11, 17, 32, 0.65) 35%,
      rgba(11, 17, 32, 0.25) 60%,
      rgba(11, 17, 32, 0.05) 75%,
      rgba(11, 17, 32, 0) 90%);

  z-index: 1;
}

/* ===== CONTENT ===== */
.cta-left {
  position: relative;
  z-index: 2;
  max-width: var(--page-max-width);
  color: #ffffff;
}

/* ===== TITLE ===== */
.cta-left h1 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #ffffff;
}

/* ===== TEXT ===== */
.cta-left p {
  font-size: 16px;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ===== BUTTON ===== */
.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #111;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  background: #e5e7eb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cta-box {
    padding: 40px 25px;

    /* move image below for mobile */
    background-position: center bottom;
    background-size: cover;
  }

  .cta-left {
    max-width: 100%;
    text-align: left;
  }

  .cta-left h1 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-left h1 {
    font-size: 26px;
  }

  .cta-left p {
    font-size: 14px;
  }
}

/* ========================================
   GLOBAL MOBILE RESPONSIVE STYLES
   ======================================== */

/* Mobile entrance animations */
@keyframes premiumShimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

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

@keyframes premiumSlideIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
  }

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

@keyframes shimmerRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes iconShine {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }

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

  100% {
    transform: translateX(100%) translateY(100%);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

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

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

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

@keyframes mobileFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mobileScaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .pd-title {
    font-size: 48px;
  }

  .ap-title {
    font-size: 38px;
  }

  .main-heading {
    font-size: 2.5rem;
  }
}

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

  /* Hero Section */
  .pd-hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .pd-title {
    font-size: 36px;
    animation: mobileSlideUp 0.6s ease both;
  }

  .pd-desc {
    font-size: 16px;
    animation: mobileSlideUp 0.6s ease 0.1s both;
  }

  .pd-buttons {
    flex-direction: column;
    gap: 12px;
    animation: mobileSlideUp 0.6s ease 0.2s both;
  }

  .pd-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .pd-form-box {
    max-width: 100%;
    margin-top: 30px;
    animation: mobileScaleIn 0.6s ease 0.3s both;
  }

  .pd-features {
    flex-direction: column;
    gap: 20px;
    padding: 0;
    border-radius: 0;
    animation: mobileSlideUp 0.8s ease 0.4s both;
    background: transparent;
    box-shadow: none;
    border: none;
    position: relative;
    overflow: visible;
  }

  .pd-features::before {
    display: none;
  }

  .pd-feature {
    flex: 1 1 100%;
    min-width: auto;
    padding: 20px;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(248, 250, 252, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
    animation: premiumSlideIn 0.6s ease both;
    position: relative;
    overflow: hidden;
  }

  .pd-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5 0%, #6366f1 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .pd-feature::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(79, 70, 229, 0.05) 50%, transparent 70%);
    animation: shimmerRotate 4s ease-in-out infinite;
    pointer-events: none;
  }

  .pd-feature:hover {
    transform: translateY(-4px);
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .pd-feature:hover .pd-feature-icon {
    transform: rotate(-8deg) scale(1.15);
    background: linear-gradient(145deg, rgba(79, 70, 229, 0.15) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.2);
  }

  .pd-feature:hover strong {
    color: #4f46e5;
    transform: translateX(4px);
  }

  .pd-feature:hover span {
    color: #6366f1;
  }

  .pd-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(248, 250, 252, 0.3) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1),
      inset 0 2px 8px rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
  }

  .pd-feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
    animation: iconShine 3s ease-in-out infinite;
  }

  .pd-feature:hover .pd-feature-icon {
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(248, 250, 252, 0.4) 100%);
    transform: rotate(-12deg) scale(1.15);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15),
      inset 0 2px 12px rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
  }

  .pd-feature strong {
    font-size: 17px;
    color: #111827;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.3;
    /* display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden; */
  }

  .pd-feature:hover strong {
    color: #4f46e5;
  }

  .pd-feature span {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
  }

  .pd-feature:not(:last-child)::after {
    display: none;
  }

  /* Premium mobile feature animations */
  .pd-feature:nth-child(1) {
    animation-delay: 0.1s;
  }

  .pd-feature:nth-child(2) {
    animation-delay: 0.2s;
  }

  .pd-feature:nth-child(3) {
    animation-delay: 0.3s;
  }

  .pd-feature:nth-child(4) {
    animation-delay: 0.4s;
  }

  .pd-feature:nth-child(5) {
    animation-delay: 0.5s;
  }

  .pd-feature:nth-child(1) .pd-feature-icon {
    animation-delay: 0.15s;
  }

  .pd-feature:nth-child(2) .pd-feature-icon {
    animation-delay: 0.25s;
  }

  .pd-feature:nth-child(3) .pd-feature-icon {
    animation-delay: 0.35s;
  }

  .pd-feature:nth-child(4) .pd-feature-icon {
    animation-delay: 0.45s;
  }

  .pd-feature:nth-child(5) .pd-feature-icon {
    animation-delay: 0.55s;
  }

  /* About Program */
  .ap-glass-section {
    padding: 60px 0;
  }

  .ap-container {
    /* grid-template-columns: 1fr; */
    gap: 40px;
    display: block !important;
    width: 100%;
  }

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

  .ap-cards-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .glass-card {
    animation: mobileSlideUp 0.5s ease both;
  }

  /* Technologies */
  .tech-section {
    padding: 40px 0;
  }

  .main-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .tech-card {
    animation: mobileScaleIn 0.4s ease both;
  }

  /* Info Section */
  .info-section {
    padding: 60px 0 70px;
  }

  .info-grid {
    flex-direction: column;
    gap: 30px;
  }

  .main-heading {
    font-size: 2.2rem;
  }

  .accordion-list {
    animation: mobileSlideUp 0.5s ease both;
  }

  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .role-card {
    animation: mobileScaleIn 0.4s ease both;
  }

  /* Live Projects */
  .lp-simple__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-card {
    animation: mobileSlideUp 0.5s ease both;
  }

  /* Why iCode */
  .icode-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .icode-heading h2 {
    font-size: 28px;
  }

  .icode-card {
    animation: mobileSlideUp 0.5s ease both;
  }

  /* Testimonials */
  .testi-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .testi-header h2 {
    font-size: 26px;
  }

  .nav-buttons {
    width: 100%;
    justify-content: center;
  }

  .testi-card {
    animation: mobileSlideUp 0.5s ease both;
  }

  /* .pd-feature-content-sec {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  } */
}

/* Large phones and small tablets */
@media (max-width: 768px) {

  /* Global */
  :root {
    --page-gutter-x: clamp(1rem, 5vw, 1.5rem);
  }

  /* Curriculum/Career: prevent accordion/roles width issues on mobile */
  .info-grid {
    gap: 20px;
  }

  .curriculum-wrapper,
  .career-wrapper {
    min-width: 0;
  }

  .curriculum-wrapper {
    width: 100%;
  }

  .accordion-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .list-title,
  .list-title-static {
    padding-left: 20px;
    padding-right: 20px;
  }

  .roles-grid {
    gap: 16px;
  }

  /* Hero */
  .pd-hero {
    margin-top: 70px;
  }

  .pd-title {
    font-size: 30px;
    line-height: 1.2;
  }

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

  .pd-desc {
    font-size: 15px;
  }

  .pd-buttons .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* About */
  .ap-glass-section {
    padding: 50px 0;
  }

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

  .ap-desc {
    font-size: 14px;
  }

  .ap-cards-wrap {
    grid-template-columns: 1fr;
  }

  .glass-card {
    padding: 18px;
    animation: mobileSlideUp 0.5s ease both;
  }

  /* Technologies */
  .tech-section {
    padding: 35px 0;
  }

  .tech-card {
    min-width: 65px;
    height: 100px;
    padding: 8px 4px;
  }

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

  /* Info */
  .info-section {
    padding: 0px;
  }

  .main-heading {
    font-size: 2rem;
  }

  .list-title,
  .list-title-static {
    padding: 18px 24px;
    font-size: 0.9rem;
  }

  .accordion-content.open {
    padding: 24px 24px 28px;
  }

  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .role-card {
    padding: 20px 15px;
  }

  .role-card img {
    height: 50px;
  }

  .career-footer {
    padding: 24px 20px;
    flex-direction: column;
    text-align: center;
  }

  .footer-graphic img {
    width: 100px;
  }

  /* Live Projects */
  .live-projects--simple {
    padding: 3rem 0 3.5rem;
  }

  .lp-simple__grid {
    grid-template-columns: 1fr;
  }

  .lp-card__media {
    aspect-ratio: 16/9;
  }

  .lp-card {
    animation: mobileSlideUp 0.5s ease both;
  }

  /* Why iCode */
  .why-icode {
    padding: 50px 0;
  }

  .icode-cards {
    grid-template-columns: 1fr !important;
  }

  .icode-card {
    min-height: auto;
    padding: 20px;
  }

  .icode-heading h2 {
    font-size: 26px;
  }

  /* Testimonials */
  .icode-testimonials {
    padding: 10px 0;
  }

  .testi-card {
    min-width: 280px;
    max-width: 300px;
    padding: 18px;
  }

  .testi-card h3 {
    font-size: 15px;
  }

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

  .nav-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  /* CTA */
  .cta-section {
    padding: 50px 0;
  }

  .cta-box {
    padding: 40px 20px;
    background-position: center;
    background-size: cover;
  }

  .cta-left h1 {
    font-size: 24px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .testi-header {
    margin-bottom: 20px;
  }

  .card-info p {
    text-align: left;
  }

  .testi-slider {
    gap: 10px !important;
  }
}

/* Small phones */
@media (max-width: 576px) {

  /* Hero */
  .pd-hero {
    margin-top: 60px;
  }

  .pd-title {
    font-size: 26px;
    animation: mobileSlideUp 0.5s ease both;
  }

  /* Fix: ensure gradient text stays visible/animates deterministically on mobile */
  .pd-gradient {
    opacity: 1 !important;
    animation: shimmer-text 3.5s linear infinite !important;
    -webkit-text-fill-color: transparent;
    background-size: 220% auto;
  }

  .pd-desc {
    font-size: 14px;
    margin-bottom: 25px;
    animation: mobileSlideUp 0.5s ease 0.1s both;
  }

  .pd-buttons {
    gap: 5px;
    animation: mobileSlideUp 0.5s ease 0.2s both;
  }

  .pd-buttons .btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .pd-form-box {
    padding: 25px 20px;
    animation: mobileScaleIn 0.5s ease 0.3s both;
  }

  .pd-form-title {
    font-size: 22px;
  }

  .pd-features {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 15px;
    animation: mobileSlideUp 0.5s ease 0.4s both;
  }

  .pd-feature {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .pd-feature-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;

    /* Fix: stagger/opacity rules were leaving icons invisible on mobile */
    opacity: 1 !important;
    animation: none !important;
  }

  /* About */
  .ap-glass-section {
    padding: 40px 0;
  }

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

  .ap-badge {
    font-size: 10px;
    padding: 5px 12px;
  }

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

  .glass-card {
    animation: mobileSlideUp 0.4s ease both;
  }

  /* Technologies */
  .tech-card {
    min-width: 60px;
    height: 90px;
  }

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

  /* Curriculum/Career icons */
  .role-card img {
    height: 50px;
    width: 100%;
    max-width: 140px;
    object-fit: contain;
    object-position: center;
  }

  .footer-graphic img {
    width: 100px;
    height: auto;
    object-fit: contain;
    object-position: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Fix: curriculum accordion icon/triangle overlap on mobile */
  .accordion-list {
    position: relative;
  }

  .list-title {
    padding-right: 56px;
    /* give room for triangle */
  }

  .list-title::after {
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  /* Info */
  .main-heading {
    font-size: 1.8rem;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .role-card {
    padding: 18px;
    animation: mobileScaleIn 0.4s ease both;
  }

  /* Live Projects */
  .lp-simple__header h2 {
    font-size: 1.5rem;
  }

  .lp-card__body {
    padding: 1rem;
  }

  .lp-card__body h3 {
    font-size: 1rem;
  }

  .lp-card__body p {
    font-size: 0.85rem;
  }

  .lp-card {
    animation: mobileSlideUp 0.4s ease both;
  }

  /* Why iCode */
  .icode-heading h2 {
    font-size: 24px;
  }

  .icode-card {
    padding: 18px;
    animation: mobileSlideUp 0.4s ease both;
  }

  .icode-top h3 {
    font-size: 15px;
  }

  .icode-card p {
    font-size: 12.5px;
  }

  /* Testimonials */
  .testi-header h2 {
    font-size: 22px;
  }

  .testi-card {
    min-width: 260px;
    padding: 15px;
    animation: mobileSlideUp 0.4s ease both;
  }

  /* CTA */
  .cta-box {
    padding: 30px 15px;
    border-radius: 12px;
    animation: mobileScaleIn 0.5s ease both;
  }

  .cta-left h1 {
    font-size: 22px;
  }

  .cta-left p {
    font-size: 13px;
  }

  .cta-btn {
    font-size: 13px;
    padding: 12px;
  }
  .glass-card .icon-box{
    margin-bottom: 0px !important;
  }
/* .career, .learning{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  width: 180px;
}
   */
}



/* Extra small phones */
@media (max-width: 375px) {
  .pd-title {
    font-size: 22px;
  }

  .ap-title {
    font-size: 20px;
  }

  .main-heading {
    font-size: 1.6rem;
  }

  .tech-card {
    min-width: 55px;
    height: 80px;
  }

  .testi-card {
    min-width: 240px;
  }

  /* Ensure smooth animations on all elements */
  * {
    animation-duration: 0.3s !important;
  }
  .header-badges{
    flex-direction: column !important;
  }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .pd-hero {
    margin-top: 60px;
    padding-bottom: 30px;
  }

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

  .pd-flex {
    gap: 15px;
  }

  .ap-glass-section {
    padding: 40px 0;
  }

  .ap-container {
    gap: 30px;
  }

  /* Reduce animation complexity for landscape */
  .pd-title,
  .pd-desc,
  .pd-buttons,
  .pd-form-box,
  .pd-features {
    animation: mobileFadeIn 0.3s ease both !important;
  }
}

/* High density displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

  .glass-card,
  .pd-form-box,
  .role-card,
  .lp-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

  .pd-buttons .btn,
  .glass-card,
  .role-card,
  .lp-card,
  .nav-btn {
    min-height: 44px;
    min-width: 44px;
  }

  .accordion-item {
    min-height: 50px;
  }

  .list-title {
    min-height: 50px;
    display: flex;
    align-items: center;
  }
}

/* Print styles */
@media print {

  .pd-hero::before,
  .pd-hero::after,
  .ap-glass-section::before,
  .ap-glass-section::after {
    display: none;
  }

  .pd-form-box,
  .glass-card,
  .role-card,
  .lp-card,
  .testi-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .cta-box {
    background-image: none;
    background-color: #f5f5f5;
  }
}









/* CARDS */
.ap-cards-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* MOBILE */
@media(max-width: 768px) {
  .ap-glass-section {
    padding: 40px 0;
  }

  .ap-container {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    max-width: 100%;
  }

  .ap-left,
  .ap-right {
    max-width: 100%;
    width: 100%;
  }

  .ap-cards-wrap {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .ap-badge {
    font-size: 11px;
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .ap-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .ap-desc {
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 100%;
  }
}









/* CARDS */
.ap-cards-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* MOBILE */
@media(max-width: 768px) {
  .ap-glass-section {
    padding: 0;
  }

  .ap-container {
    grid-template-columns: 1fr;
    gap: 20px !important;
    width: 100%;
    max-width: 100%;
  }

  .ap-left,
  .ap-right {
    max-width: 100%;
    width: 100%;
  }

  .ap-cards-wrap {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .ap-badge {
    font-size: 11px;
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .ap-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .ap-desc {
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 100%;
  }
}



.ap-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.ap-left {
  flex: 1;
}

.ap-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.ap-cards-wrap {
  width: 100%;
  /* max-width: 520px; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width:768px) {

  .ap-container {
    flex-direction: column;
  }

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

  .ap-cards-wrap {
    grid-template-columns: 1fr;
  }

}




.unified-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.curriculum-part {
  flex: 1;
}

.career-part {
  flex: 1;
}

@media (max-width:768px) {

  .unified-content {
    flex-direction: column;
    gap: 20px;
  }

  .curriculum-part,
  .career-part {
    width: 100%;
  }

  .info-section .page-container {
    padding-bottom: 100px;
  }

}



.pd-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pd-left,
.pd-right {
  padding: 0;
  margin: 0;
}

.page-container {
  width: 100% !important;
  max-width: var(--page-max-width) !important;
  padding-left: var(--page-gutter-x) !important;
  padding-right: var(--page-gutter-x) !important;
  box-sizing: border-box;
}

.frm_button_submit.multi-color-btn::before {
  right: 30px !important;
}



/* dropdown wrapper */
#frm_field_10_container {
  position: relative;
}

/* remove default arrow */
#field_cesnp {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  padding-right: 45px !important;
}

/* custom SVG arrow */
#frm_field_10_container::after {
  content: "";

  position: absolute;
  top: 57px;
  right: 18px;

  width: 10px;
  height: 10px;

  transform: translateY(-50%);

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23222' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-size: contain;

  pointer-events: none;
}

.footer_popup_sub_sec #frm_field_10_container::after {
  display: none !important;
}

.pd-hero {
  margin-top: 0px !important;
}

.pd-feature-wrap {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.user-info br {
  display: none !important;
}


@media (min-width: 769px) and (max-width: 1024px) {

  .pd-hero {
    margin-bottom: 0px !important;
  }

  .ap-desc {
    max-width: 100% !important;
  }

  .ap-right {
    justify-content: center !important;
    width: 100%;
  }

  .ap-list-bottom {
    margin: 25px 0 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-section .main-title {
    padding-left: 0px !important;
  }

  .tech-icons-row {
    padding: 15px 1px;
  }

  .unified-content,
  .pd-flex,
  .ap-container {
    display: block !important;
  }

  .icode-testimonials,
  .why-icode,
  .cta-section {
    padding: 35px 0;
  }

  .testi-slider {
    gap: 15px !important;
  }

  .testi-header {
    margin-bottom: 20px !important;
  }

  .footer_sec {
    padding: 35px 15px 35px 15px !important;
  }

  .pd-form-box {
    margin-top: 10px !important;
  }

  .pd-hero {
    padding-top: 130px;
    padding-bottom: 40px;
  }

}

@media (min-width: 1025px) and (max-width: 1150px) {
  .glass-card {
    padding: 15px;
  }
}

@media(max-width: 1350px) {


  .icode-top h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .ap-list-bottom {
    gap: 20px;
  }

  .footer_sec {
    padding: 35px 15px 35px 15px !important;
  }

  .ap-container {
    gap: 25px !important;
  }
}


.career-simple-footer p:empty {
  display: none !important;
}

.ap-list-bottom p:empty, .pd-feature p:empty {
  display: none !important;
}

.pd-hero .frm_fields_container select {
  margin: 0px !important;
}


@media (min-width: 1025px) and (max-width: 1165px) {
  
     .pd-feature strong{
      font-size: 13px !important;
     }
     
.pd-features{
  padding: 15px !important;
}

}

@media (min-width: 992px) and (max-width: 1024px) {

.pd-features{
  gap: 0px !important;
}

}

@media  (min-width: 577px) and (max-width: 991px){

  .pd-left .pd-buttons{
    margin-left: 15% !important;
  }
  .pd-left .pd-buttons .btn{
    width: 80% !important;
  }
  .cta-left .cta-btn{
    width: 70% !important;
    text-align: center !important;
}
.pd-form-box{
  margin-top: 15px !important;
}
}


@media  (min-width: 1024px) and (max-width: 1200px){

.pd-features{
  display: grid !important;
   grid-template-columns: repeat(3, 1fr) !important;
}

}

@media  (min-width: 1201px) and (max-width: 1500px){

.pd-feature:not(:last-of-type)::after{
  right: 10px !important;
}

}

@media  (min-width: 901px) and (max-width: 1105px){

  .tech-card{
  max-width: 70px !important;
  margin-bottom: 10px !important;
}

}







.start-you-jny-btn{
  color: white !important;
}

.start-you-jny-btn:hover{
  color: white !important;
}

#whatsappBtn {
  position: fixed;
  right: 14px;
  bottom: 74px;
  width: 64px;
  height: 64px;
  z-index: 999 !important;
}


