
  /* Header */
  .main-header {
      background: white;
      padding: 12px 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      position: sticky;
      top: 0;
      z-index: 999;
  }

  /* Logo */
  .logo-img {
      height: 45px;
      margin-right: 10px;
  }

  .logo-text {
      font-weight: 700;
      font-size: 20px;
      background: linear-gradient(135deg, #007bff, #00c6ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  /* Menu */
  .nav-menu a {
      margin: 0 15px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      position: relative;
      transition: 0.3s;
  }

  /* Hover underline effect */
  .nav-menu a::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      left: 0;
      bottom: -5px;
      background: linear-gradient(135deg, #007bff, #00c6ff);
      transition: 0.3s;
  }

  .nav-menu a:hover::after {
      width: 100%;
  }

  /* CTA Button */
  .btn-header {
      background: linear-gradient(135deg, #007bff, #00c6ff);
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      font-weight: 500;
      transition: 0.3s;
      text-decoration: none;
  }

  .btn-header:hover {
      transform: scale(1.05);
  }


  /* Badge */
  .offer-badge {
      display: inline-block;
      background: linear-gradient(135deg, #ff416c, #ff4b2b);
      color: white;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 500;
  }

  /* Title */
  .form-title {
      font-size: 26px;
      font-weight: 700;
      margin: 10px 0;
  }

  .form-title span {
      color: #007bff;
  }

  /* Subtitle */
  .form-subtitle {
      font-size: 14px;
      color: #666;
  }

  /* Limited Seats */
  .limited-seat {
      margin-top: 8px;
      font-size: 13px;
      color: #ff4b2b;
      font-weight: 600;
      animation: blink 1.5s infinite;
  }

  /* Blink animation */
  @keyframes blink {
      0% {
          opacity: 1;
      }

      50% {
          opacity: 0.4;
      }

      100% {
          opacity: 1;
      }
  }

  body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #1d2b64, #f8cdda);
  }

  /* Full Height Section */
  .main-section {
      min-height: 85vh;
      padding: 40px 0;
      display: flex;
      align-items: center;
  }

  /* Equal Height Row */
  .full-height {
      min-height: 60vh;
  }

  /* LEFT SIDE */
  .left-box {
      background: rgba(255, 255, 255, 0.1);
      padding: 30px;
      border-radius: 20px;
      color: white;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .left-box h1 {
      font-size: 34px;
      font-weight: 700;
  }

  .left-box p {
      margin: 15px 0;
  }

  /* Features */
  .features div {
      margin-bottom: 10px;
      font-size: 15px;
  }

  .features i {
      color: #00eaff;
      margin-right: 8px;
  }

  /* Extra Info Cards */
  .info-box {
      margin-top: 20px;
  }

  .info-box div {
      background: rgba(255, 255, 255, 0.15);
      padding: 10px;
      border-radius: 10px;
      margin-bottom: 10px;
      font-size: 14px;
  }

  /* RIGHT FORM */
  .form-box {
      background: white;
      padding: 35px;
      border-radius: 20px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  /* Inputs */
  .form-control {
      border-radius: 10px;
      padding: 10px;
      font-size: 14px;
  }

  /* Button */
  .btn-submit {
      background: linear-gradient(135deg, #007bff, #00c6ff);
      border: none;
      padding: 12px;
      border-radius: 30px;
      color: white;
      font-weight: 600;
      transition: 0.3s;
  }

  .btn-submit:hover {
      transform: scale(1.05);
  }

  /* Responsive */
  @media(max-width:768px) {
      .left-box {
          margin-bottom: 20px;
          text-align: center;
      }
  }

  /* Why choose Us Section 
         Section */
  .why-section {
      /* background: #f8f9fc; */
      background: #f8fbff;
      padding: 80px 0;
  }

  /* Heading */
  .section-title {
      font-weight: 700;
      font-size: 32px;
  }

  .section-title span {
      color: #007bff;
  }

  .section-subtitle {
      color: #666;
      font-size: 15px;
  }

  /* Cards */
  .why-card {
      /* background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    height: 100%; */
      background: linear-gradient(135deg, #e6f0ff, #f0f9ff);
      padding: 25px;
      border-radius: 15px;
      text-align: center;
      transition: 0.4s;
      height: 100%;
      border: 1px solid #dbeafe;
  }

  /* Icon */
  .why-card .icon {
      /* font-size: 35px;
    margin-bottom: 15px; */
      font-size: 35px;
      margin-bottom: 15px;
      color: #2563eb;
  }

  /* Hover Effect */
  .why-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
      /* background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3); */
  }

  /* Title */
  .why-card h5 {
      /* font-weight: 600; */
      font-weight: 600;
      color: #1e3a8a;
  }

  /* Text */
  .why-card p {
      /* font-size: 14px;
    color: #555; */
      font-size: 14px;
      color: #475569;
  }

  /* Section */
  .success-section {
      background: #ffffff;
  }

  /* Timeline */
  .timeline {
      position: relative;
      margin: 0 auto;
      padding: 20px 0;
  }

  /* Vertical Line */
  .timeline::before {
      content: "";
      position: absolute;
      left: 50%;
      width: 3px;
      height: 100%;
      background: linear-gradient(#007bff, #00c6ff);
      transform: translateX(-50%);
  }

  /* Item */
  .timeline-item {
      position: relative;
      width: 50%;
      padding: 10px 20px;
  }

  /* Left */
  .timeline-item.left {
      left: 0;
      text-align: right;
  }

  /* Right */
  .timeline-item.right {
      left: 50%;
  }

  /* Center final */
  .timeline-item.center {
      width: 100%;
      text-align: center;
      left: 0;
  }

  /* Content Box */
  .timeline-item .content {
      background: #f8fbff;
      padding: 12px 18px;
      border-radius: 10px;
      display: inline-block;
      font-size: 14px;
      transition: 0.3s;
  }

  /* Highlight */
  .highlight {
      background: linear-gradient(135deg, #007bff, #00c6ff);
      color: white;
      font-weight: 600;
  }

  /* Dot */
  .timeline-item::before {
      content: "";
      position: absolute;
      top: 15px;
      width: 12px;
      height: 12px;
      background: #007bff;
      border-radius: 50%;
      z-index: 1;
  }

  /* Dot positioning */
  .timeline-item.left::before {
      right: -6px;
  }

  .timeline-item.right::before {
      left: -6px;
  }

  /* Hover */
  .timeline-item .content:hover {
      transform: scale(1.05);
  }

  /* Animation */
  .timeline-item {
      animation: fadeUp 0.6s ease forwards;
      opacity: 0;
  }

  .timeline-item:nth-child(1) {
      animation-delay: 0.1s;
  }

  .timeline-item:nth-child(2) {
      animation-delay: 0.2s;
  }

  .timeline-item:nth-child(3) {
      animation-delay: 0.3s;
  }

  .timeline-item:nth-child(4) {
      animation-delay: 0.4s;
  }

  .timeline-item:nth-child(5) {
      animation-delay: 0.5s;
  }

  .timeline-item:nth-child(6) {
      animation-delay: 0.6s;
  }

  .timeline-item:nth-child(7) {
      animation-delay: 0.7s;
  }

  @keyframes fadeUp {
      from {
          transform: translateY(20px);
          opacity: 0;
      }

      to {
          transform: translateY(0);
          opacity: 1;
      }
  }

  /* Responsive */
  @media(max-width:768px) {
      .timeline::before {
          left: 10px;
      }

      .timeline-item {
          width: 100%;
          padding-left: 30px;
          text-align: left !important;
      }

      .timeline-item.right {
          left: 0;
      }

      .timeline-item::before {
          left: 0;
      }
  }

  /* Timeline line */
  .timeline::before {
      background: linear-gradient(#007bff, #00c6ff);
  }

  /* Content box */
  .timeline-item .content {
      background: white;
      padding: 12px 18px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      transition: 0.3s;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  /* Icon circle */
  .timeline-item .icon {
      width: 35px;
      height: 35px;
      background: linear-gradient(135deg, #007bff, #00c6ff);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      animation: pulse 2s infinite;
  }

  /* Pulse animation */
  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
      }

      70% {
          box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
      }

      100% {
          box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
      }
  }

  /* Hover effect */
  .timeline-item .content:hover {
      transform: scale(1.05);
      box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
  }

  /* Highlight final */
  .timeline-item .highlight {
      background: linear-gradient(135deg, #007bff, #00c6ff);
      color: white;
  }

  .timeline-item .highlight .icon {
      background: white;
      color: #007bff;
  }

  /* Dots */
  .timeline-item::before {
      background: #00c6ff;
      box-shadow: 0 0 10px #00c6ff;
  }

  /* Entry animation */
  .timeline-item {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.6s ease forwards;
  }

  .timeline-item:nth-child(1) {
      animation-delay: 0.1s;
  }

  .timeline-item:nth-child(2) {
      animation-delay: 0.2s;
  }

  .timeline-item:nth-child(3) {
      animation-delay: 0.3s;
  }

  .timeline-item:nth-child(4) {
      animation-delay: 0.4s;
  }

  .timeline-item:nth-child(5) {
      animation-delay: 0.5s;
  }

  .timeline-item:nth-child(6) {
      animation-delay: 0.6s;
  }

  .timeline-item:nth-child(7) {
      animation-delay: 0.7s;
  }

  @keyframes fadeUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /*  Course Section */

  .course-section {
      background: #ffffff;
      padding: 80px 0;
  }

  /* Left Box */
  .course-left {
      display: flex;
  }

  /* Course Item */
  .course-card {
      background: radial-gradient(circle at top, #eef8ff 0%, #ffffff 45%);
      padding: 42px 34px;
      border-radius: 18px;
      text-align: center;
      height: 100%;
      width: 100%;
      position: relative;
      transition: 0.4s;
      border: 1px solid #eef2ff;
      box-shadow: 0 18px 45px rgba(0, 123, 255, 0.12);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      overflow: hidden;
  }

  .course-card-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  /* Top gradient border */
  .course-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 4px;
      width: 100%;
      border-radius: 18px 18px 0 0;
      background: linear-gradient(135deg, #007bff, #00c6ff);
  }

  .course-card::after {
      content: "";
      position: absolute;
      width: 150px;
      height: 150px;
      background: rgba(0, 198, 255, 0.14);
      border-radius: 50%;
      right: -60px;
      bottom: -70px;
   }

  /* Icon */
  .course-card .icon {
      font-size: 32px;
      background: linear-gradient(135deg, #eef6ff, #ffffff);
      color: #007bff;
      display: inline-block;
      padding: 14px;
      border-radius: 50%;
      margin-bottom: 14px;
      width: 70px;
      height: 70px;
      text-align: center;
      line-height: 42px;
      box-shadow: 0 12px 25px rgba(0, 123, 255, 0.15);
  }

  .course-label {
      background: #eaf6ff;
      color: #007bff !important;
      font-size: 12px !important;
      font-weight: 700;
      letter-spacing: 0;
      margin-bottom: 10px;
      min-height: auto !important;
      padding: 6px 14px;
      border-radius: 999px;
      text-transform: uppercase;
  }

  /* Title */
  .course-card h6 {
      font-weight: 700;
      margin-bottom: 10px;
      font-size: 28px;
      color: #0f172a;
  }

  /* Text */
  .course-card p {
      font-size: 15px;
      color: #666;
      min-height: auto;
      line-height: 1.6;
      max-width: 360px;
      margin-left: auto;
      margin-right: auto;
  }

  .course-highlights {
      display: flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin: 8px 0 6px;
  }

  .course-highlights span {
      background: #f4f9ff;
      color: #1e3a8a;
      border: 1px solid #dbeafe;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      padding: 6px 12px;
  }

  /* Button */
  .btn-enroll {
      margin-top: 18px;
      background: linear-gradient(135deg, #007bff, #00c6ff);
      color: white;
      border-radius: 25px;
      padding: 10px 26px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      transition: 0.3s;
      align-self: center;
      box-shadow: 0 10px 22px rgba(0, 123, 255, 0.25);
  }

  /* Hover Effect */
  .course-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
  }

  /* Button Hover */
  .course-card:hover .btn-enroll {
      transform: scale(1.05);
  }

  .course-item {
      background: white;
      padding: 15px 20px;
      border-radius: 12px;
      margin-bottom: 15px;
      cursor: pointer;
      transition: 0.3s;
      font-weight: 500;
      border: 1px solid #e3ecff;
  }

  /* Active */
  .course-item.active {
      background: linear-gradient(135deg, #007bff, #00c6ff);
      color: white;
  }

  /* Hover */
  .course-item:hover {
      transform: translateX(8px);
      background: #e6f0ff;
  }

  /* Right Box */
  .course-right {
      background: linear-gradient(135deg, #0f172a, #1e3a8a);
      padding: 35px;
      border-radius: 20px;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
  }

  .course-right::before {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      background: rgba(0, 198, 255, 0.3);
      filter: blur(100px);
      top: -50px;
      right: -50px;
  }

  .download-badge {
      background: rgba(255, 255, 255, 0.2);
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 13px;
      display: inline-block;
  }


  /* Title */
  .download-title {
      font-weight: 700;
      margin: 10px 0;
  }

  .download-title span {
      color: #00eaff;
  }

  /* Subtitle */
  .download-subtitle {
      font-size: 14px;
      color: #cbd5f5;
  }

  /* QR Container */
  .qr-container {
      background: white;
      padding: 15px;
      border-radius: 15px;
      display: inline-block;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      /* horizontal center */
      align-items: center;
      /* vertical center */
      width: 100%;
  }

  /* QR */

  .qr-box {
      background: white;
      padding: 15px;
      border-radius: 15px;
      display: inline-block;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .qr-img {
      width: 200px;
      height: 200px;
      /* object-fit: contain; */
  }

  /* .qr-box {
    background: white;
    color: black;
    padding: 40px;
    border-radius: 15px;
    display: inline-block;
    font-weight: 500;
} */

  /* QR Container */
  .qr-container {
      display: flex;
      justify-content: center;
  }

  /* Wrapper */
  .qr-wrapper {
      display: block;
      position: relative;
      width: 160px;
      height: 160px;
      background: white;
      padding: 10px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      margin: 0 auto;
  }

  /* QR Image */
  .qr-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.4s ease;
  }

  /* Zoom effect on hover */
  .qr-wrapper:hover .qr-img {
      transform: scale(1.1);
  }

  /* Scanner Line */
  .scan-line {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, transparent, #00eaff, transparent);
      animation: scan 2s linear infinite;
  }

  /* Animation */
  @keyframes scan {
      0% {
          top: 0%;
      }

      100% {
          top: 100%;
      }
  }

  /* Button */
  .btn-download {
      margin-top: 10px;
      background: linear-gradient(135deg, #00c6ff, #007bff);
      color: white;
      padding: 10px 25px;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
  }

  .btn-download:hover {
      transform: scale(1.05);
  }

  @media(max-width:768px) {
      .course-card {
          padding: 26px;
          text-align: center;
      }

      .course-card .icon,
      .btn-enroll {
          align-self: center;
      }
  }

  /* Trust Text */
  .small-text {
      font-size: 12px;
      color: #cbd5f5;
  }

  /* why our success ration hight ration section */
  /* Section */
  .success-section {
      background: #f8fbff;
      padding: 60px 0;
  }

  /* Flow container */
  .success-flow {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      position: relative;
  }

  /* Line */
  .success-flow::before {
      content: "";
      position: absolute;
      top: 40px;
      left: 5%;
      width: 90%;
      height: 2px;
      background: linear-gradient(90deg, #007bff, #00c6ff);
      z-index: 0;
  }

  /* Step */
  .step {
      background: white;
      padding: 15px;
      border-radius: 12px;
      text-align: center;
      width: 120px;
      position: relative;
      z-index: 1;
      transition: 0.3s;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }

  /* Icon */
  .step .icon {
      font-size: 20px;
      background: #e6f0ff;
      color: #007bff;
      padding: 10px;
      border-radius: 50%;
      display: inline-block;
      margin-bottom: 6px;
  }

  /* Text */
  .step p {
      font-size: 12px;
      margin: 0;
  }

  /* Hover */
  .step:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
  }

  /* Highlight final step */
  .step.highlight {
      background: linear-gradient(135deg, #007bff, #00c6ff);
      color: white;
  }

  .step.highlight .icon {
      background: white;
      color: #007bff;
  }

  /* Responsive */
  @media(max-width:768px) {
      .success-flow {
          flex-direction: column;
      }

      .success-flow::before {
          display: none;
      }

      .step {
          width: 100%;
      }
  }

  .success-flow::after {
      content: "";
      position: absolute;
      top: 39px;
      left: 5%;
      width: 10px;
      height: 10px;
      background: #00c6ff;
      border-radius: 50%;
      animation: moveDot 5s linear infinite;
      z-index: 2;
  }

  @keyframes moveDot {
      0% {
          left: 5%;
      }

      100% {
          left: 95%;
      }
  }

  .trust-text {
      font-size: 14px;
      color: #555;
  }

  /******************** Student Review ****************/

  /* Section */
  .review-section {
      background: linear-gradient(135deg, #f8fbff, #eef6ff);
  }

  /* Rating Box */
  .rating-box {
      background: white;
      padding: 20px;
      border-radius: 15px;
      display: inline-block;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .rating-box h1 {
      color: #007bff;
      font-weight: 700;
  }

  /* Review Card */
  .review-card {
      background: white;
      padding: 20px;
      border-radius: 15px;
      height: 100%;
      transition: 0.3s;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      position: relative;
  }

  /* Quote style */
  .review-card::before {
      content: "“";
      font-size: 40px;
      position: absolute;
      top: 10px;
      left: 15px;
      color: #007bff;
      opacity: 0.2;
  }

  /* Hover */
  .review-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
  }

  /* User */
  .review-user {
      margin-top: 15px;
      font-size: 14px;
  }

  /* Section Background */
  .review-section {
      background: linear-gradient(135deg, #007bff, #00c6ff);
      color: white;
      position: relative;
  }

  /* Rating */
  .rating-summary h1 {
      font-size: 50px;
      font-weight: 700;
  }

  /* Glass Card */
  .glass {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 20px;
      padding: 25px;
      backdrop-filter: blur(12px);
      transition: 0.4s;
      height: 100%;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  }

  /* Hover */
  .glass:hover {
      transform: translateY(-10px) scale(1.02);
      background: rgba(255, 255, 255, 0.25);
  }

  /* Top Section */
  .review-top {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
  }

  /* Avatar */
  .avatar {
      width: 45px;
      height: 45px;
      background: white;
      color: #007bff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin-right: 10px;
  }

  /* Text */
  .review-card p {
      font-size: 14px;
      margin: 10px 0;
  }

  /* Stars */
  .stars {
      color: gold;
      font-size: 14px;
  }

  /* Floating animation */
  .review-card {
      animation: float 4s ease-in-out infinite;
  }

  .review-card:nth-child(2) {
      animation-delay: 0.5s;
  }

  .review-card:nth-child(3) {
      animation-delay: 1s;
  }

  @keyframes float {
      0% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-8px);
      }

      100% {
          transform: translateY(0px);
      }
  }

  /* Section */
  .review-section {
      background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
      color: #333;
      overflow: hidden;
  }

  /* Rating */
  .rating-box h1 {
      font-size: 45px;
      font-weight: 700;
  }

  /* Slider */
  .slider {
      overflow: hidden;
      position: relative;
  }

  /* Track */
  .slide-track {
      display: flex;
      gap: 20px;
      width: calc(250px * 18);
      animation: scroll 20s linear infinite;
  }

  /* Animation */
  @keyframes scroll {
      0% {
          transform: translateX(0);
      }

      100% {
          transform: translateX(-50%);
      }
  }

  /* Card */
  .review-card {
      min-width: 250px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      padding: 20px;
      border-radius: 20px;
      transition: 0.3s;
  }

  /* Hover */
  .review-card:hover {
      transform: scale(1.05);
      background: rgba(255, 255, 255, 0.25);
  }

  /* Top */
  .review-top {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
  }

  /* Avatar */
  .avatar {
      width: 40px;
      height: 40px;
      background: white;
      color: #007bff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin-right: 10px;
  }

  /* Text */
  .review-card p {
      font-size: 13px;
  }

  /* Stars */
  .stars {
      color: gold;
      font-size: 13px;
  }

  /* Associate with comapny */

  /* Section */
  .company-section {
      background: linear-gradient(135deg, #ffffff, #f0f7ff);
      overflow: hidden;
  }

  .company-section .section-badge {
      display: inline-block;
      background: #eaf6ff;
      color: #007bff;
      border: 1px solid #dbeafe;
      border-radius: 999px;
      padding: 7px 15px;
      font-size: 13px;
      font-weight: 700;
  }

  .company-highlights {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 18px;
  }

  .company-highlights span {
      background: white;
      color: #1e3a8a;
      border: 1px solid #dbeafe;
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 13px;
      font-weight: 600;
      box-shadow: 0 8px 18px rgba(0, 123, 255, 0.08);
  }

  /* Slider */
  .company-slider {
      overflow: hidden;
      position: relative;
  }

  /* Track */
  .company-track {
      display: flex;
      gap: 40px;
      width: calc(200px * 20);
      animation: scrollCompany 20s linear infinite;
  }

  /* Animation */
  @keyframes scrollCompany {
      0% {
          transform: translateX(0);
      }

      100% {
          transform: translateX(-50%);
      }
  }

  /* Card */
  .company-card {
      width: 180px;
      height: 100px;
      background: #f8fbff;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.4s;
      /* filter: blur(2px) grayscale(100%); */
      filter: grayscale(100%);
      border: 1px solid #eef2ff;
  }

  /* Image */
  .company-card img {
      max-width: 120px;
      transition: 0.4s;
  }

  /* Hover Effect */
  .company-card:hover {
      filter: grayscale(0%);
      transform: scale(1.1);
      background: white;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /***** Placed student section ***/ 
  /* Section */
.placement-section {
    background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
}

/* Slider */
.placement-slider {
    position: relative;
    display: flex;
    align-items: center;
}

/* Track */
.slider-track {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
}

/* Card */
.placement-card {
    min-width: 250px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Image */
.student-img {
    width: 100%;
    height: 200px;
    /* border-radius: 50%; */
    object-fit: cover;
    margin-bottom: 10px;
}

/* Package */
.package {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #007bff;
}

/* Hover */
.placement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,123,255,0.2);
}

/* Arrows */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 2;
}

/* Left */
.prev {
    left: -20px;
}

/* Right */
.next {
    right: -20px;
}

/* Hide scrollbar */
.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/******************** Footer ****************/
.site-footer {
    background:
        radial-gradient(circle at 14% 12%, rgba(0, 198, 255, 0.32), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.42), transparent 30%),
        linear-gradient(135deg, #08111f, #102a63 55%, #005dbd);
    color: white;
    padding: 66px 0 24px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, transparent, #00eaff, transparent);
}

.footer-main,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.45fr 0.85fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.footer-brand,
.footer-links,
.footer-cta {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}

.footer-brand {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-logo {
    width: 86px;
    height: 86px;
    border-radius: 20px;
    object-fit: cover;
    background: white;
    padding: 7px;
    box-shadow: 0 14px 28px rgba(0, 198, 255, 0.22);
}

.footer-brand h3,
.footer-cta h5 {
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-brand h3 {
    font-size: 26px;
}

.footer-brand p,
.footer-cta p,
.footer-bottom p {
    color: #dbeafe;
    margin: 0;
    line-height: 1.7;
}

.footer-tags,
.footer-mini-info {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.footer-tags span,
.footer-mini-info span {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #e0f7ff;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 11px;
}

.footer-links h6 {
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-links a {
    color: #dbeafe;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 11px;
    transition: 0.3s;
}

.footer-links a::before {
    content: "✓";
    width: 20px;
    height: 20px;
    background: rgba(0, 234, 255, 0.14);
    color: #00eaff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex: 0 0 auto;
}

.footer-links a:hover {
    color: #00eaff;
    transform: translateX(6px);
}

.footer-badge {
    display: inline-block;
    background: rgba(0, 234, 255, 0.14);
    color: #e0f7ff;
    border: 1px solid rgba(0, 234, 255, 0.24);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-btn {
    background: linear-gradient(135deg, #00eaff, #007bff);
    color: white;
    border-radius: 30px;
    padding: 11px 26px;
    font-weight: 600;
    margin-top: 18px;
    box-shadow: 0 14px 28px rgba(0, 198, 255, 0.28);
}

.footer-btn:hover {
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    padding: 14px 18px;
}

.footer-bottom p:first-child {
    color: #ffffff;
    font-weight: 700;
}

@media(max-width:768px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        text-align: center;
        flex-direction: column;
    }

    .footer-links,
    .footer-cta {
        text-align: center;
    }

    .footer-links a,
    .footer-tags,
    .footer-mini-info {
        justify-content: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/******************** Registration Popup ****************/
body.popup-open {
    overflow: hidden;
}

.registration-popup {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.registration-popup.show {
    display: flex;
}

.registration-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(6px);
}

.registration-popup-box {
    position: relative;
    z-index: 1;
    width: min(100%, 480px);
    background: radial-gradient(circle at top, #eef8ff 0%, #ffffff 48%);
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
    animation: popupIn 0.28s ease;
    overflow: hidden;
}

.registration-popup-box::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -45px;
    bottom: -55px;
    background: rgba(0, 198, 255, 0.16);
    border-radius: 50%;
}

.registration-popup-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #eaf6ff;
    color: #0f172a;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: 0.3s;
}

.popup-close:hover {
    background: #007bff;
    color: white;
}

.popup-heading {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 22px;
}

.popup-badge {
    display: inline-block;
    background: #eaf6ff;
    color: #007bff;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.popup-heading h3 {
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 10px;
}

.popup-heading p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.popup-benefits {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.popup-benefits span {
    background: #f4f9ff;
    color: #1e3a8a;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 11px;
}

.popup-form,
#popupSuccess {
    position: relative;
    z-index: 1;
}

.popup-form .form-control {
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid #dbeafe;
}

.popup-form .form-control:focus {
    border-color: #00c6ff;
    box-shadow: 0 0 0 4px rgba(0, 198, 255, 0.14);
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media(max-width:576px) {
    .registration-popup-box {
        padding: 30px 20px 24px;
    }
}

/********************** Timer Popup ****************/ 
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

/* Popup Overlay */
.popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

/* Popup Box */
.popup-content{
    width:90%;
    max-width:600px;
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    position:relative;
    animation:zoomIn .4s ease;
    box-shadow:0 15px 40px rgba(0,0,0,0.3);
}

@keyframes zoomIn{
    from{
        transform:scale(.7);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/* Close Button */
.close-btn{
    position:absolute;
    right:15px;
    top:10px;
    font-size:30px;
    cursor:pointer;
    color:#555;
    font-weight:bold;
}

/* Badge */
.badge{
    display:inline-block;
    background:#ff3d3d;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:bold;
    margin-bottom:15px;
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.05);}
    100%{transform:scale(1);}
}

h2{
    color:#0f172a;
    margin-bottom:10px;
}

.highlight{
    color:#0066ff;
}

.batch-text{
    color:#666;
    margin-bottom:20px;
    font-size:17px;
}

.seats{
    background:#fff3cd;
    color:#856404;
    padding:10px;
    border-radius:10px;
    margin-bottom:20px;
    font-weight:bold;
}

/* Timer */
.timer{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.time-box{
    width:95px;
    height:95px;
    background:#0f172a;
    color:white;
    border-radius:15px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.time-box span{
    font-size:32px;
    font-weight:bold;
}

.time-box small{
    font-size:12px;
    text-transform:uppercase;
}

/* Button */
/* .btn{
    display:inline-block;
    background:#00c853;
    color:#fff;
    text-decoration:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
} */

/* .btn:hover{
    transform:translateY(-2px);
    background:#00b14f;
} */

@media(max-width:600px){
    .time-box{
        width:75px;
        height:75px;
    }

    .time-box span{
        font-size:24px;
    }

    h2{
        font-size:24px;
    }
}
