 :root {
      --blue: #0a66c2;
      --yellow: #ffd24d;
      --red: #d33b3b;
      --max-width: 1200px;
      font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    }

    * {
      box-sizing: border-box
    }

    body {
      margin: 0;
      background: #f8fafc;
      color: #0b1220;
      line-height: 1.4
    }

    a {
      color: inherit
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0px 15px;
    }

    .conntainer-fluid {
      width: 100%;
      padding: 0px 15px;
    }

    /* header */
    header {
      background: white;
      position: sticky;
      top: 0;
      z-index: 80;
      border-bottom: 1px solid rgba(11, 18, 32, 0.06)
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 0
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .logo .mark {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--yellow);
      display: grid;
      place-items: center;
      font-weight: 800
    }

    .logo h1 {
      font-size: 16px;
      margin: 0;
      letter-spacing: 0.6px
    }

    nav ul {
      display: flex;
      gap: 14px;
      list-style: none;
      margin: 0;
      padding: 0
    }

    nav a {
      color: #0b1220;
      text-decoration: none;
      font-weight: 600;
      transition: .5s ease-in-out;
    }

    nav a:hover {
      color: var(--yellow);
    }

    .cta-primary {
      background: var(--blue);
      color: white;
      padding: 10px 14px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 700
    }

    .hamburger {
      display: none;
      border: 0;
      background: none
    }

    .mobile-nav {
      display: none
    }

    /* --- Banner slider (kept from previous) --- */
    .hero-banner {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin: 0;
    }

    .hero-viewport {
      position: relative;
      width: 100%;
      height: 56vh;
      min-height: 360px;
      max-height: 720px;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 700ms ease;
      background-size: cover;
      background-position: center;
      will-change: opacity;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.55) 60%);
      pointer-events: none;
    }

    .hero-content {
      position: absolute;
      left: 6%;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      max-width: 46%;
      color: white;
      text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    }

    .hero-content h1 {
      margin: 0;
      font-size: 38px;
      line-height: 1.02;
      font-weight: 800;
      color: #fff
    }

    .hero-content p {
      margin: 12px 0 18px;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.95)
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap
    }

    .hero-cta {
      background: var(--yellow);
      color: #0b1220;
      padding: 12px 18px;
      border-radius: 10px;
      font-weight: 800;
      text-decoration: none
    }

    .hero-cta.secondary {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.18);
      color: white
    }

    .slider-controls {
      position: absolute;
      right: 2%;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      display: flex;
      gap: 10px;
      flex-direction: column
    }

    .ctrl-btn {
      background: rgba(0, 0, 0, 0.5);
      border: 0;
      color: white;
      padding: 10px 12px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 700
    }

    .dots {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 14px;
      display: flex;
      gap: 8px;
      z-index: 3
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      border: 0
    }

    .dot.active {
      background: var(--yellow)
    }

    /* Gallery slider styles (three partition) */
    .gallery-slider {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-top: 10px;
      background: transparent;
      padding: 12px 0;
    }

    .gallery-viewport {
      overflow: hidden;
      width: 100%;
    }

    .gallery-track {
      display: flex;
      transition: transform 420ms cubic-bezier(.22, .9, .35, 1);
      will-change: transform;
    }

    .gallery-slide {
      flex: 0 0 auto;
      padding: 8px;
    }

    .gallery-slide img {
      display: block;
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 8px 18px rgba(11, 18, 30, 0.06);
    }

    .gallery-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      z-index: 4;
      pointer-events: none;
    }

    .gallery-prev,
    .gallery-next {
      pointer-events: auto;
      position: absolute;
      background: rgba(0, 0, 0, 0.45);
      color: white;
      border: 0;
      padding: 10px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 700;
    }

    .gallery-prev {
      left: 6px
    }

    .gallery-next {
      right: 6px
    }

    .gallery-dots {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-top: 10px
    }

    .gallery-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: #e2e8f0;
      border: 0;
      cursor: pointer
    }

    .gallery-dot.active {
      background: var(--blue)
    }

    /* responsive rules for number of visible slides */
    /* we'll calculate widths in JS but provide sensible defaults */
    @media(min-width:1000px) {
      .gallery-slide {
        width: calc(100% / 3);
      }

      /* 3 items */
    }

    @media(min-width:700px) and (max-width:999px) {
      .gallery-slide {
        width: calc(100% / 2);
      }

      /* 2 items */
    }

    @media(max-width:699px) {
      .gallery-slide {
        width: 100%;
      }

      /* 1 item */
      .gallery-slide img {
        height: 180px
      }

      .gallery-prev,
      .gallery-next {
        padding: 8px
      }
    }

    /* rest */
    section {
      padding: 28px 0
    }

    h3 {
      color: var(--red);
      margin: 0 0 10px;
      font-size: 20px;
      text-align: left;
    }

    .cards {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 18px;
    }

    .card {
      min-width: 320px;
      max-width: 340px;
      transition: transform 0.4s, opacity 0.4s;
    }

    form {
      display: grid;
      gap: 10px;
      background: white;
      padding: 18px;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(12, 20, 30, 0.06)
    }

    label {
      font-weight: 600;
      font-size: 13px
    }

    input,
    select,
    textarea {
      padding: 10px;
      border: 1px solid #dbe7f5;
      border-radius: 8px;
      width: 100%;
      font-family: inherit
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px
    }

    .btn {
      background: var(--blue);
      color: white;
      padding: 12px;
      border-radius: 10px;
      border: 0;
      font-weight: 700
    }

    footer {
      padding: 20px 0;
      color: #4b5563
    }

    @media(max-width:991px) {
      nav ul {
        display: none
      }

      .hamburger {
        display: block
      }
      .hero-content {
        max-width: 70%
      }

      .hero-content h1 {
        font-size: 26px
      }
    }

    @media(max-width:767px) {
      nav ul {
        display: none
      }

      .hamburger {
        display: block
      }

      .hero-content {
        position: relative;
        transform: none;
        left: 0;
        top: 0;
        padding: 18px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36));
        max-width: 100%
      }
    }

    @media (max-width: 768px) {
      .container {
        padding: 0px 16px;
      }

      .nav {
        padding: 8px 0;
      }

      .hero-content {
        max-width: 100%;
      }

      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
      }

      /* Make footer stack vertically */
      footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
    }

    /* Extra small phones */
    @media (max-width: 480px) {
      .hero-viewport {
        height: 60vh;
        min-height: 120px;
      }

      .hero-content h1 {
        font-size: 22px;
      }

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

      .btn {
        width: 100%;
        text-align: center;
      }
    }

    @media (max-width: 600px) {
      .form-row {
        grid-template-columns: 1fr;
      }
    }

    @media screen and (max-width: 767px) {
      .cards {
        display: block;
      }

      .cards .card {
        width: 100%;
        margin-bottom: 15px;
        height: 290px;
      }
    }

    video {
      width: 100%
    }
    
    .video_sec {
      text-align: center;
    }

    .video-responsive {
      position: relative;
      width: 100%;
      max-width: 700px;
      margin: 0 auto;
    }

    .video-responsive iframe,
    .video_sec iframe,
    .video_sec video {
      width: 100% !important;
      max-width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      display: block;
      border: none;
      border-radius: 12px;
    }

    @media (max-width: 640px) {
      .video_sec {
        padding-left: 0;
        padding-right: 0;
      }
    } 
    .video-sec:hover img{
        transform: scale(1.03);
        transition: transform 0.4s;
    }

    .work-full {
      display: flex;
    }

    .work-full .work-left {
      width: 48%;
      padding-right: 15px
    }

    .work-full .work-left img {
      width: 100%;
    }

    .work-full .work-right {
      width: 48%;
      padding-left: 15px
    }

    .work-full .work-right img {
      width: 100%
    }

    @media screen and (max-width: 767px) {

      .work-full {
        display: block;
      }

      .work-full .work-left {
        width: 100%;
        padding-right: 0px
      }

      .work-full .work-right {
        width: 100%;
        padding-left: 0px
      }

      .work-full .work-right img {
        width: 100%
      }
    }

    /* Why Choose Us Section */
    .why-choose-us-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .why-item {
      background: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(12, 20, 30, 0.06);
      text-align: center;
      transition: transform 0.18s;
    }

     .why-item:hover {
      transform: translateY(-6px) !important;
      box-shadow: 0 12px 32px rgba(12, 20, 30, 0.10);
    }

    .why-icon {
      font-size: 40px;
      color: var(--yellow);
      margin-bottom: 12px;
    }

    .why-item h4 {
      font-size: 18px;
      margin: 10px 0;
      color: var(--blue);
    }

    .why-item p {
      font-size: 14px;
      color: #64748b;
    }

    /* Section styles for alternating background */
    .section {
      padding: 28px 0;
    }

    .section.bg-light {
      background-color: #f9fafb;
    }

    .section.bg-dark {
      background-color: #ffffff;
    }

    /* Section Styling */
    .section {
      padding: 40px 0;
    }

    .bg-light {
      background-image: url('images/background-light.jpg');
      background-size: cover;
      background-position: center;
    }

    .bg-dark {
      background-image: url('images/background-dark.jpg');
      background-size: cover;
      background-position: center;
    }

    /* Courses Section specific styles */
    .courses-grid {
      display: flex;
      gap: 40px;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    .courses-info {
      flex: 1 1 320px;
      max-width: 400px;
    }

    .courses-info h3 {
      font-size: 28px;
      color: var(--red);
      margin-bottom: 12px;
    }

    .courses-info p {
      font-size: 16px;
      color: #334155;
      margin-bottom: 18px;
    }

    .courses-img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(12, 20, 30, 0.06);
      margin-top: 10px;
    }

    .courses-cards {
      flex: 2 1 480px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    @media (max-width: 900px) {
      .courses-grid {
        flex-direction: column;
      }

      .courses-cards {
        grid-template-columns: 1fr;
      }
    }

    /* Course Card Design */
    .course-card {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 6px 20px rgba(12, 20, 30, 0.06);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-width: 0;
      transition: transform 0.18s;
    }

    .course-card:hover {
      transform: translateY(-6px) !important;
      box-shadow: 0 12px 32px rgba(12, 20, 30, 0.10);
    }

    .course-icon-bg {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 28px 0 18px 0;
    }

    .course-icon-bg i {
      font-size: 38px;
      color: #fff;
    }

    .course-content {
      padding: 18px 18px 22px 18px;
      text-align: center;
    }

    .course-content h4 {
      margin: 0 0 8px 0;
      font-size: 18px;
      color: var(--blue);
      font-weight: 700;
    }

    .course-content p {
      margin: 0;
      color: #64748b;
      font-size: 15px;
    }


    /* 3D Gallery Slider Styles */
    .slider-wrapper {
      width: 100%;
      overflow: hidden;
      position: relative;
      perspective: 1200px;
      padding: 30px;
    }

    .cards {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 18px;
    }

    .card {
      width: 100%;
      height: 410px;
      border-radius: 20px;
      overflow: hidden;
      background: white;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      transform-origin: center;
      transition: transform 0.6s ease, box-shadow 0.6s ease;
      backface-visibility: hidden;
      min-width: 560px;
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    /* ================= LIVE INTERVIEWS FINAL ================= */

    /* NAVBAR LINK */
    .nav-live {
      color: var(--red) !important;
      font-weight: 700;
    }

    /* OVERLAY */
    .live-popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 999;
    }

    /* FULL SCREEN POPUP */
    .live-popup {
      position: fixed;
      inset: 0;
      background: #fff;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(.22,.9,.35,1);
      z-index: 1000;
      display: flex;
      flex-direction: column;
    }

    /* OPEN */
    .live-popup.open {
      transform: translateX(0);
    }
    .live-popup-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    /* HEADER */
    .live-popup-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 20px;
      border-bottom: 1px solid #e5e7eb;
    }

    .live-popup-header h3 {
      margin: 0;
      color: var(--red);
    }

    .live-popup-header button {
      font-size: 32px;
      background: none;
      border: none;
      cursor: pointer;
    }

    /* CONTENT */
    .live-popup-content {
      flex: 1;
      overflow-y: auto;
      padding: 16px;
    }

    /* GRID */
    .live-popup-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    /* IMAGE */
    .live-popup-grid img {
      width: 95%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* MOBILE */
    @media (max-width: 640px) {
      .live-popup-grid {
        grid-template-columns: 1fr;
      }
    }

    .card.middle {
      transform: scale(1.15) translateY(3px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
      height: 300px;
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(17, 17, 17, 0.9);
      color: #fff;
      border: none;
      padding: 12px 16px;
      cursor: pointer;
      border-radius: 8px;
      font-size: 18px;
      z-index: 10;
    }

    #prev {
      left: 10px;
    }

    #next {
      right: 10px;
    }

    /* Transform adjustments for the first and third images */
    .card.left,
    .card.right {
      opacity: 0.8;
      z-index: 1;
      transform: scale(0.8) translateX(50px);
    }

    .card.left {
      transform: scale(0.8) translateX(-80px);
    }

    .card.right {
      transform: scale(0.8) translateX(80px);
    }

    .card.active {
      transform: scale(1.15) translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
      height: 300px;
    }

    @media (max-width: 700px) {
      .card {
        width: 90%;
        min-width: 500px;
      }
    }

    /* Additions for WhatsApp and Call buttons */
    .floating-btn {
      position: fixed;
      right: 20px;
      z-index: 9999;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 28px;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
      transition: box-shadow 0.2s, transform 0.2s;
      cursor: pointer;
      text-decoration: none;
      background-color: red;
      bottom: -20px;
    }

    .whatsapp-btn {
      background: #25d366;
      bottom: 92px;
    }

    .call-btn {
      background: #0a66c2;
      bottom: 28px;
    }

    .floating-btn:hover {
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
      transform: scale(1.08);
      text-decoration: none;
      color: #fff;
    }

    @media screen and (max-width: 767px) {
      .courses-info h3 {
        font-size: 18px;
      }

      .section {
        padding: 15px 0px;
      }
    }

     .video_sec:hover video{
      transform: translateY(0px);
      box-shadow: 0 12px 32px rgba(12, 20, 30, 0.10);
      transition: .5s ease-in-out;
     }
    .video_sec:hover video{
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(12, 20, 30, 0.10);
    }

    .work-full {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .work-item {
      width: calc(50% - 20px);
      /* two per row */
    }

    .work-item img {
      width: 100%;
      display: block;
      border-radius: 8px;
    }

    @media (max-width: 640px) {
      .page-loader {
        padding: 12px;
      }

      .page-loader::after {
        bottom: 12%;
        font-size: 13px;
      }

      .loader-spinner {
        width: 82px;
        height: 82px;
      }
    }
    .page-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.18), rgba(15, 23, 42, 0.9));
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.page-loader.active {
  display: flex;
}

.page-loader::after {
  content: "Loading Please wait…";
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  color: #f8fafc;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.loader-spinner {
  width: 108px;
  height: 108px;
  position: relative;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.28));
}

.spinner-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  animation: spin 1s ease-in-out infinite;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.spinner-ring:nth-child(2) {
  inset: 12px;
  border-top-color: var(--yellow);
  animation-duration: 1.2s;
  animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
  inset: 24px;
  border-top-color: rgba(255, 255, 255, 0.75);
  animation-duration: 1.4s;
  opacity: 0.65;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Enroll Section Styles */
.enroll-container {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.enroll-left {
  flex: 1 1 400px;
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 40px 40px 32px;
}

.enroll-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.enroll-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.enroll-slide.active {
  opacity: 1;
  z-index: 1;
}

.enroll-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.enroll-left-content {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 70%;
}

.enroll-left-content h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.enroll-left-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  margin: 0;
}

.enroll-right {
  flex: 1 1 400px;
  min-width: 300px;
}

.enroll-form {
  display: grid;
  gap: 20px;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(12, 20, 30, 0.06);
}

.enroll-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.enroll-form label {
  font-weight: 600;
  font-size: 14px;
  color: #0b1220;
}

.enroll-form input {
  padding: 12px;
  border: 1px solid #dbe7f5;
  border-radius: 8px;
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.enroll-form input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
}

.enroll-form input.error {
  border-color: var(--red);
}

.enroll-form .error-message {
  color: var(--red);
  font-size: 12px;
  display: none;
}

.enroll-form .error-message.show {
  display: block;
}


.enroll-submit-btn {
  background: var(--blue);
  color: white;
  padding: 14px 24px;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}

.enroll-submit-btn:hover:not(:disabled) {
  background: #0859a3;
  transform: translateY(-2px);
}

.enroll-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Toaster Notification */
.toaster {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #10b981;
  color: white;
  padding: 16px 24px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  font-weight: 600;
  font-size: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  max-width: 350px;
}

.toaster.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Responsive Styles for Enroll Section */
@media (max-width: 900px) {
  .enroll-container {
    flex-direction: column;
  }

  .enroll-left {
    min-height: 300px;
  }

  .enroll-left-content h2 {
    font-size: 28px;
  }

  .enroll-left-content p {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .enroll-form {
    padding: 24px;
  }

  .enroll-left {
    min-height: 250px;
    padding: 24px;
  }

  .enroll-left-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .enroll-left-content p {
    font-size: 15px;
  }

  .toaster {
    right: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    bottom: 80px;
  }
}