body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(1000px 600px at 80% -10%, rgba(14,165,233,0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(76,175,80,0.08), transparent 60%),
    #ffffff;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden; 
}

.hero {
  max-width: calc(100vw - 40px); 
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 24px;
  isolation: isolate;
  margin: 20px;
  box-sizing: border-box;
}

.hero::after{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 300px at 10% 0%, rgba(14,165,233,.08),transparent 60%);
  z-index:0; pointer-events:none;
}

.parallax{position:absolute; inset:0; z-index:0; pointer-events:none;}
.layer{position:absolute; border-radius:999px; filter: blur(0.3px); opacity:.5; transition: transform .2s ease;}
.layer.l1{width:240px; height:240px; top:-60px; right:5%; background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.25), rgba(14,165,233,.05));}
.layer.l2{width:320px; height:320px; bottom:-80px; left:0; background: radial-gradient(circle at 70% 70%, rgba(76,175,80,.22), rgba(76,175,80,.05));}
.layer.l3{width:180px; height:180px; top:30%; left:75%; background: radial-gradient(circle at 50% 50%, rgba(0,0,0,.04), transparent 60%);}

h1 {
  font-size: 56px;
  margin: 0 0 15px; 
  line-height: 1.15;
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #111;
}

.batch-info { 
  font-size: 20px;
  color: #333;
  margin-top: 0;
  margin-bottom: 30px; 
}

.eligibility-info,
.access-info {
  font-size: 18px;
  color: #333;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.subtitle {
  font-size: 20px;
  color: #4a4a8f;
  margin-bottom: 50px;
}

.features, 
.stats,
.benefits-grid,
.struggles,
.days-grid {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px auto;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
  justify-items: center;
}

.feature {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  padding: 15px 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
  color: #1a1a4b;
}

.feature.rating {
  background: white;
  color: #1a1a4b;
}

.feature.placement-guarantee {
  background: white;
  color: #1a1a4b;
}

.feature .stars {
  color: #FFC107;
  margin-right: 5px;
}

.feature .checkmark {
  width: 24px;
  height: 24px;
  fill: #4CAF50;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat {
  padding: 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100px;
  width: 100%;
  max-width: 280px;
  box-sizing: border-box;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat .number {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
  color: #1a1a4b;
  line-height: 1.4;
}

.stat .label {
  font-size: 16px;
  color: #4a4a8f;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 40px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  width: calc(100% - 40px);
  max-width: 500px;
  box-sizing: border-box;
}

.price {
  font-size: 28px;
}

.price .original {
  text-decoration: line-through;
  opacity: 0.5;
  margin-right: 15px;
}

.price .discounted {
  color: #4CAF50;
  font-weight: bold;
}

.register-btn {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  border: none;
  padding: 18px 50px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
  text-decoration: none;
  display: inline-block;
}

.register-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(76, 175, 80, 0.4);
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 75, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  gap: 15px;
  flex-wrap: wrap;
  box-sizing: border-box;
  max-width: 100vw;
  max-height: 100vh;
}

.fixed-cta .timer-container {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.fixed-cta #timer {
  font-size: 18px;
  margin: 0;
  color: white;
  text-shadow: none;
}

.fixed-cta .price {
  font-size: 22px;
  font-weight: bold;
  white-space: nowrap;
}

.fixed-cta .price .discounted {
  color: white;
  font-weight: bold;
}

.fixed-cta .price .original {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 15px;
  color: white;
}

.fixed-cta .register-btn {
  background: white;
  color: #1a1a4b;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.fixed-cta .register-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.student-card .company-info {
  margin: 10px 0;
  font-size: 16px;
  color: #555;
}

.money-back-sticker {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 120px;
  height: 120px;
  z-index: 10;
}

.money-back-sticker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mentor-image {
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
}

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

.mentor-description {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a8f;
  margin: 20px 0;
  text-align: left;
}

@media (max-width: 1200px) {
  .hero {
    margin: 10px;
    padding: 40px 15px;
  }

  h1 {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .mentor-image {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .hero {
    margin: 10px;
    padding: 40px 10px;
    max-width: calc(100vw - 20px);
  }

  .features,
  .stats,
  .benefits-grid,
  .struggles,
  .days-grid {
    padding-left: 10px;
    padding-right: 10px;
  }

  .features {
    grid-template-columns: 1fr;
    padding: 0 10px;
    width: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feature {
    font-size: 16px;
    padding: 12px 15px;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    margin-bottom: 10px;
  }

  
  .features .feature:nth-child(1) { 
    order: 1;
  }
  .features .feature:nth-child(2) { 
    order: 2;
  }
  .features .feature.rating { 
    order: 3;
  }
  .features .feature.placement-guarantee { 
    order: 4; 
  }

  .money-back-sticker {
    order: 5; 
    position: relative;
    top: auto;
    right: auto;
    margin: 20px 0;
  }
  @media (max-width: 600px) {
    .money-back-sticker {
      display: none;
    }
  }

  h1 {
    font-size: 36px;
  }

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

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

  .cta {
    width: calc(100% - 30px);
    padding: 30px 20px;
  }

  .price {
    font-size: 24px;
  }

  .register-btn {
    padding: 15px 40px;
    font-size: 18px;
  }

  .stats {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 0 10px;
    width: calc(100% - 20px);
  }

  .stat {
    padding: 15px;
    min-height: 90px;
    margin: 0 auto;
  }

  .eligibility-info,
  .access-info {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .fixed-cta {
    padding: 8px;
    gap: 8px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
  }

  .fixed-cta .timer-container {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
  }

  .fixed-cta #timer {
    font-size: 14px;
    margin: 0;
  }

  .fixed-cta .price {
    grid-column: 2;
    grid-row: 1;
    font-size: 16px;
    text-align: right;
    white-space: nowrap;
  }

  .fixed-cta .register-btn {
    grid-column: 2;
    grid-row: 2;
    padding: 8px 15px;
    font-size: 14px;
    margin: 0;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .hero {
    margin: 5px;
    padding: 30px 5px;
    max-width: calc(100vw - 10px);
  }

  h1 {
    font-size: 32px;
  }

  .feature {
    font-size: 14px;
    padding: 10px;
  }

  .cta {
    width: 90%;
    padding: 20px 15px;
  }

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

  .stats {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 10px;
    width: calc(100% - 20px);
    margin: 0 auto 40px;
  }

  .stat {
    padding: 12px;
    min-height: 80px;
    margin: 0 auto;
  }

  .fixed-cta {
    padding: 6px;
    gap: 4px;
  }

  .fixed-cta .timer-container {
    font-size: 12px;
  }

  .fixed-cta #timer {
    font-size: 12px;
  }

  .fixed-cta .price {
    font-size: 14px;
  }

  .fixed-cta .register-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .eligibility-info,
  .access-info {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .testimonials h2:not(.mobile-testimonial-title) {
    display: none;
  }

  .mobile-testimonial-title {
    display: block;
    text-align: center;
    font-size: 28px;
    color: #1a1a4b;
    margin-bottom: 20px;
  }
}

@media(min-width:500px){
  .mobile-testimonial-title{
    display:none
  }
}

@media (max-width: 320px) {
  .mentor-image {
    display: none;
  }
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.nav-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 2;
}

.prev-button,
.next-button {
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.prev-button:hover,
.next-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.prev-button svg,
.next-button svg {
  width: 24px;
  height: 24px;
  fill: #1a1a4b;
}

@media (max-width: 768px) {
  .mobile-frame {
    width: 240px;
    height: 480px;
  }

  .testimonials h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .mobile-frame {
    width: 200px;
    height: 400px;
  }

  .prev-button,
  .next-button {
    width: 40px;
    height: 40px;
  }

  .prev-button svg,
  .next-button svg {
    width: 20px;
    height: 20px;
  }
}

.get-certified {
  width: 100%;
  padding: 60px 20px;
  background: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.get-certified h2 {
  font-size: 42px;
  color: #1a1a4b;
  margin-bottom: 20px;
}

.get-certified p {
  font-size: 20px;
  color: #4a4a8f;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.certificate-container {
  perspective: 2000px;
  margin: 60px auto;
  max-width: 800px;
  transform-style: preserve-3d;
}

.certificate-frame {
  width: 100%;
  height: 600px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.certificate-frame.rotated {
  transform: rotateY(-30deg) rotateX(5deg) rotateZ(-2deg);
}

.certificate-frame.flat {
  transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) translateZ(0px);
}

.certificate-frame:hover {
  transform: rotateY(-25deg) rotateX(3deg) rotateZ(-1deg) translateZ(20px);
}

.certificate-shadow {
  position: absolute;
  width: 80%;
  height: 30px;
  background: rgba(0,0,0,0.2);
  bottom: -40px;
  left: 10%;
  border-radius: 50%;
  filter: blur(20px);
  transform: rotateX(90deg) translateZ(-20px);
  z-index: -1;
}

.certificate-frame-border {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 10px solid #333;
  border-radius: 20px;
  transform-style: preserve-3d;
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  background-color: #333;
}

.certificate-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  border-radius: 15px;
  backface-visibility: hidden;
  transform: rotateY(180deg);
}

.certificate-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 15px 35px rgba(0,0,0,0.2),
    0 5px 15px rgba(0,0,0,0.05),
    inset 0 0 0 1px rgba(255,255,255, 0.3);
  overflow: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.certificate-glass::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: rotate(30deg);
  pointer-events: none;
}

.certificate-content {
  position: relative;
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
  z-index: 1;
}

.certificate-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transform: translateZ(10px);
}

.certificate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255,255,255,0.1) 0%,
    rgba(255,255,255,0.3) 50%,
    rgba(255,255,255,0.1) 100%
  );
  border-radius: 15px;
  transform: translateZ(20px);
  pointer-events: none;
}

.shine-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: translateZ(30px);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.certificate-frame:hover .shine-effect {
  opacity: 1;
  animation: shine 1.5s infinite alternate;
}

.certificate-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.8);
  transform: translateZ(25px);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.corner-tl { top: 15px; left: 15px; }
.corner-tr { top: 15px; right: 15px; }
.corner-bl { bottom: 15px; left: 15px; }
.corner-br { bottom: 15px; right: 15px; }

.floating-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(40px);
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
  opacity: 0.5;
  animation: rotateEmblem 10s infinite linear;
}

.award-icon {
  width: 60px;
  height: 60px;
  fill: rgba(255,255,255,0.8);
}

@keyframes rotateEmblem {
  from { transform: translate(-50%, -50%) translateZ(40px) rotate(0deg); }
  to { transform: translate(-50%, -50%) translateZ(40px) rotate(360deg); }
}

@keyframes shine {
  0% { background-position: -300% center; }
  100% { background-position: 300% center; }
}

.pulse-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease !important;
  background: linear-gradient(45deg, #4CAF50, #45a049) !important;
}

.pulse-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-100%);
  animation: shine 2s infinite;
}

.pulse-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3) !important;
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  20% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lightning-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.lock-icon, .arrow-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.glowing {
  animation: glow 2s infinite;
  background: linear-gradient(45deg, #3a6ea5, #2980b9) !important;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(41, 128, 185, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(41, 128, 185, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(41, 128, 185, 0.5);
  }
}

.hurry-text {
  font-weight: 600;
  color: #ff4d4d;
  animation: pulse 2s infinite;
}

@media (max-width: 768px) {
  .fixed-cta {
    padding: 12px;
  }
  
  .fixed-cta .register-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
  
  .lightning-icon, .lock-icon, .arrow-icon {
    width: 16px;
    height: 16px;
  }
  
  .hurry-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .fixed-cta {
    padding: 8px;
  }
  
  .fixed-cta .register-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .lightning-icon, .lock-icon, .arrow-icon {
    width: 14px;
    height: 14px;
  }
  
  .hurry-text {
    font-size: 12px;
  }
}

.eligibility-info-new {
  line-height: 1.4;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #222;
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid #ececec;
  border-radius: 10px;
  background: #fafafa;
}

@media (max-width: 768px) {
  h1 { font-size: 34px; }
  .eligibility-info-new { font-size: 15px; padding: 8px 12px; }
}