html, body{
    overflow-x:hidden;
    width:100%;
}

* {
    max-width:100%;
    box-sizing:border-box;
}
.container,
.container-fluid,
.row{
    margin-left:0 !important;
    margin-right:0 !important;
    padding-left:12px;
    padding-right:12px;
}
.hero-section{
    overflow:hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

.custom-navbar {
  background: rgba(0, 60, 40, 0.85);
  backdrop-filter: blur(12px);
}

.navbar-brand,
.nav-link {
  color: #fff !important;
}

.hero-section {
  position: relative;
  background: linear-gradient(135deg, #003c28, #006b45, #111);
  overflow: hidden;
}

.animated-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.35), transparent 70%);
  top: -150px;
  right: -150px;
  animation: floatBg 6s infinite alternate ease-in-out;
}

@keyframes floatBg {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(60px) scale(1.15);
  }
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero-title span {
  color: #ffc107;
}

.hero-text {
  font-size: 1.2rem;
  margin-top: 20px;
  max-width: 650px;
}

.hero-buttons .btn {
  border-radius: 40px;
  padding: 12px 28px;
}

.trust-box {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.trust-box div {
  background: rgba(255,255,255,0.15);
  padding: 12px 18px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
}

.hero-card {
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 35px;
  border-radius: 25px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.hero-card h3 {
  color: #ffc107;
}

.hero-card ul {
  padding-left: 20px;
  margin: 20px 0;
}

.section-title {
  font-weight: 800;
  color: #004b32;
}

.feature-card {
  padding: 35px;
  border-radius: 25px;
  text-align: center;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.feature-card i {
  font-size: 45px;
  color: #007a4d;
  margin-bottom: 20px;
}

.course-section {
  background: #f3fff9;
}

.course-section h2 {
  font-weight: 800;
  color: #004b32;
}

.course-list p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.price-card {
  background: linear-gradient(135deg, #004b32, #008f5c);
  color: #fff;
  padding: 45px;
  border-radius: 30px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.enquiry-section {
  background: linear-gradient(135deg, #ffffff, #eafff5);
}

.form-box {
  background: #fff;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.form-control {
  padding: 13px;
  border-radius: 12px;
}

.footer {
  background: #003c28;
  color: #fff;
  text-align: center;
  padding: 25px;
}

@media(max-width: 768px) {
  .hero-section {
    padding-top: 90px;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 12px;
  }

  .trust-box {
    flex-direction: column;
  }

  .hero-card {
    margin-top: 35px;
  }
}

.ugtrb-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, #14532d, #062515 55%, #020b06);
  color: #fff;
}

.ugtrb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,215,0,.08), rgba(0,0,0,.3)),
    url("https://images.unsplash.com/photo-1519682337058-a94d519337bc?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  opacity: .22;
}

.particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(#ffd700 1px, transparent 1px),
    radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 60px 60px, 100px 100px;
  animation: particlesMove 18s linear infinite;
  opacity: .35;
}

@keyframes particlesMove {
  from { transform: translateY(0); }
  to { transform: translateY(-120px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 15px;
}

.batch-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #102414;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 25px rgba(255,215,0,.45);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  background: linear-gradient(135deg, #fff, #ffe680, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #e7f8ec;
  max-width: 760px;
  margin: 22px 0;
}

.countdown-box {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.countdown-box div {
  width: 92px;
  padding: 14px 10px;
  text-align: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,215,0,.35);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.countdown-box span {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffd700;
}

.countdown-box small {
  color: #fff;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 13px 22px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-enroll {
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #102414;
}

.btn-demo {
  background: transparent;
  color: #fff;
  border: 1px solid #ffd700 !important;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
}

.literature-card {
  max-width: 380px;
  margin: auto;
  padding: 45px 25px;
  border-radius: 30px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,215,0,.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  animation: floatCard 4s ease-in-out infinite;
}

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

.book-icon {
  font-size: 5rem;
}

.literature-card h3 {
  color: #ffd700;
  font-weight: 900;
}

.literature-card p {
  color: #e7f8ec;
}

@media (max-width: 768px) {
  .ugtrb-hero .row {
    min-height: auto !important;
  }

  .hero-content {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 30px;
  }

  .countdown-box,
  .hero-buttons {
    justify-content: center;
  }

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

  .literature-card {
    margin-bottom: 50px;
  }
}
.course-highlights {
  background: linear-gradient(180deg, #f8fff9, #ffffff);
  position: relative;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #14532d, #0f3d22);
  color: #ffd700;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 14px;
}

.course-highlights h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #10391f;
}

.course-highlights p {
  color: #555;
  font-size: 1.05rem;
}

.highlight-card {
  height: 100%;
  min-height: 165px;
  padding: 28px 18px;
  border-radius: 24px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(20, 83, 45, 0.12);
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,83,45,.08), rgba(255,215,0,.15));
  opacity: 0;
  transition: .35s ease;
}

.highlight-card i {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #14532d, #0f3d22);
  color: #ffd700;
  font-size: 1.8rem;
  border-radius: 20px;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(20,83,45,.25);
}

.highlight-card h5 {
  position: relative;
  z-index: 1;
  color: #102414;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
}

.highlight-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,215,0,.55);
  box-shadow: 0 25px 55px rgba(20,83,45,.18);
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-card:hover i {
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #102414;
}

@media (max-width: 576px) {
  .highlight-card {
    min-height: 145px;
    padding: 22px 12px;
    border-radius: 18px;
  }

  .highlight-card i {
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }

  .highlight-card h5 {
    font-size: .9rem;
  }
}
.course-highlights {
  background:
    radial-gradient(circle at top left, rgba(255,215,0,.08), transparent 30%),
    linear-gradient(180deg, #f7fff9, #ffffff);
  padding: 100px 0;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #14532d, #0b2d1a);
  color: #ffd700;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: .5px;
  box-shadow: 0 10px 30px rgba(20,83,45,.18);
}

.course-highlights h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #062515;
  margin-top: 18px;
}

.course-highlights p {
  color: #5f5f5f;
  font-size: 1.08rem;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 28px;
  padding: 38px 24px;
  text-align: center;
  transition: .4s ease;
  height: 100%;
  border: 1px solid rgba(20,83,45,.08);
  box-shadow:
    0 10px 40px rgba(0,0,0,.06),
    0 2px 10px rgba(0,0,0,.03);
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
    rgba(20,83,45,.05),
    rgba(255,215,0,.12));
  opacity: 0;
  transition: .4s;
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 25px 70px rgba(20,83,45,.18);
}

.highlight-card i {
  position: relative;
  z-index: 2;
  width: 85px;
  height: 85px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background: linear-gradient(135deg, #14532d, #0b2d1a);
  color: #ffd700;
  font-size: 2.2rem;
  margin-bottom: 22px;
  transition: .4s ease;
  box-shadow: 0 12px 30px rgba(20,83,45,.22);
}

.highlight-card:hover i {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #062515;
}

.highlight-card h5 {
  position: relative;
  z-index: 2;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.45;
  color: #062515;
  margin: 0;
}

@media(max-width:768px){

  .course-highlights {
    padding: 70px 0;
  }

  .highlight-card {
    padding: 28px 16px;
    border-radius: 22px;
  }

  .highlight-card i {
    width: 68px;
    height: 68px;
    font-size: 1.8rem;
    border-radius: 22px;
  }

  .highlight-card h5 {
    font-size: .98rem;
  }
}
.demo-video-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top right, rgba(255, 215, 0, .12), transparent 30%),
    linear-gradient(135deg, #062515, #0f3d22);
  color: #fff;
}

.demo-video-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-top: 18px;
}

.demo-video-section p {
  color: #d9fbe3;
  font-size: 1.08rem;
}

.demo-video-section .section-badge {
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #062515;
}

.video-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,215,0,.25);
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
  transition: .4s ease;
  height: 100%;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 90px rgba(0,0,0,.45);
}

.video-card iframe {
  border: 0;
}

.video-content {
  padding: 22px;
}

.video-content h4,
.video-content h5 {
  color: #ffd700;
  font-weight: 800;
  margin-bottom: 8px;
}

.video-content p {
  margin: 0;
  color: #e7f8ec;
}

.demo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #062515;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(255,215,0,.25);
  transition: .3s ease;
}

.demo-cta:hover {
  transform: translateY(-4px);
  color: #062515;
}

@media(max-width:768px) {
  .demo-video-section {
    padding: 70px 0;
  }

  .video-card {
    border-radius: 22px;
  }

  .video-content {
    padding: 18px;
  }
}
.shorts-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 430px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: #000;
}

.shorts-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-video {
  height: auto !important;
}

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

@media(max-width:768px) {
  .shorts-wrapper {
    max-height: 380px;
  }
}
.google-review-section{
    padding:80px 0;
    background:
    radial-gradient(circle at top left, rgba(255,215,0,.08), transparent 30%),
    linear-gradient(135deg,#062515,#0f3d22);
}

.review-box{
    width:100%;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,215,0,.25);
    border-radius:32px;
    padding:45px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    backdrop-filter:blur(14px);
    box-shadow:0 25px 70px rgba(0,0,0,.35);
}

.review-left{
    display:flex;
    align-items:center;
    gap:24px;
}

.google-icon{
    min-width:95px;
    width:95px;
    height:95px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.google-icon i{
    font-size:3.5rem;
    background:linear-gradient(
      45deg,
      #4285F4,
      #EA4335,
      #FBBC05,
      #34A853
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.review-text h2{
    color:#ffd700;
    font-size:clamp(2rem,4vw,3.2rem);
    font-weight:900;
    margin-bottom:8px;
}

.review-text p{
    color:#ecfff2;
    font-size:1.08rem;
    margin:0;
}

.google-review-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-decoration:none;
    background:linear-gradient(135deg,#ffd700,#b8860b);
    color:#062515 !important;
    padding:16px 30px;
    border-radius:60px;
    font-weight:800;
    transition:.3s ease;
    box-shadow:0 15px 40px rgba(255,215,0,.25);
    white-space:nowrap;
}

.google-review-btn:hover{
    transform:translateY(-4px);
    color:#062515 !important;
}

.google-review-btn i{
    font-size:1.2rem;
}

@media(max-width:768px){

    .review-box{
        flex-direction:column;
        text-align:center;
        padding:35px 22px;
    }

    .review-left{
        flex-direction:column;
    }

    .google-review-btn{
        width:100%;
    }

}
.faq-section{
    padding:100px 0;
    background:
    radial-gradient(circle at top right, rgba(255,215,0,.08), transparent 30%),
    linear-gradient(180deg,#f7fff9,#ffffff);
}

.faq-section h2{
    font-size:clamp(2rem,5vw,3.5rem);
    font-weight:900;
    color:#062515;
    margin-top:18px;
}

.faq-section p{
    color:#5f5f5f;
    font-size:1.08rem;
}

.faq-wrapper{
    max-width:950px;
    margin:auto;
}

.custom-accordion .accordion-item{
    border:none;
    margin-bottom:20px;
    border-radius:24px !important;
    overflow:hidden;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.custom-accordion .accordion-button{
    background:#fff;
    color:#062515;
    font-weight:800;
    font-size:1.08rem;
    padding:24px 28px;
    box-shadow:none !important;
}

.custom-accordion .accordion-button:not(.collapsed){
    background:linear-gradient(135deg,#14532d,#0b2d1a);
    color:#ffd700;
}

.custom-accordion .accordion-button::after{
    filter:brightness(0) saturate(100%);
}

.custom-accordion .accordion-body{
    padding:24px 28px;
    color:#444;
    font-size:1rem;
    line-height:1.8;
    background:#fff;
}

@media(max-width:768px){

    .faq-section{
        padding:70px 0;
    }

    .custom-accordion .accordion-button{
        font-size:1rem;
        padding:20px;
    }

    .custom-accordion .accordion-body{
        padding:20px;
    }

}
.floating-whatsapp{
    position:fixed;
    right:22px;
    bottom:95px;
    width:68px;
    height:68px;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:2rem;
    z-index:99999;
    box-shadow:
      0 10px 35px rgba(37,211,102,.45);
    animation:pulseWhatsapp 2s infinite;
    transition:.3s ease;
}

.floating-whatsapp:hover{
    transform:scale(1.08);
    color:#fff;
}

@keyframes pulseWhatsapp{

    0%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,.65);
    }

    70%{
        box-shadow:
        0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,0);
    }

}

@media(max-width:768px){

    .floating-whatsapp{
        width:62px;
        height:62px;
        font-size:1.8rem;
        right:16px;
        bottom:90px;
    }

}
.ad-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    backdrop-filter:blur(6px);

    opacity:0;
    visibility:hidden;
    transition:.4s ease;
}

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

.ad-popup-box{
    position:relative;
    max-width:900px;
    width:100%;
    animation:popupZoom .5s ease;
}

.popup-image{
    width:100%;
    border-radius:24px;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
}

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

    width:58px;
    height:58px;

    border:none;
    border-radius:50%;

    background:#ffd700;
    color:#062515;

    font-size:2rem;
    font-weight:900;

    cursor:pointer;
    z-index:999999;

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

    box-shadow:0 15px 35px rgba(0,0,0,.35);

    transition:.3s ease;
}
.ad-popup-box{
    position:relative;
    overflow:visible;
}
.popup-close:hover{
    transform:rotate(90deg) scale(1.08);
    transition:.3s ease;
}
@media(max-width:768px){

    .popup-close{
        top:-16px;
        right:-16px;

        width:52px;
        height:52px;

        font-size:1.8rem;
    }

}
@keyframes popupZoom{
    from{
        transform:scale(.7);
        opacity:0;
    }

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

@media(max-width:768px){

    .ad-popup-box{
        max-width:420px;
    }

    .popup-close{
        width:46px;
        height:46px;
        font-size:1.7rem;
    }
}
/* OFFLINE ENROLL BUTTON */

.offline-enroll-wrap{
    width:100%;
    text-align:center;
    margin-top:20px;
    margin-bottom:25px;
    padding:0 15px;
}

.offline-enroll-btn{
    display:inline-block;
    background:linear-gradient(135deg,#0f9d58,#0b7d46);
    color:#fff;
    font-size:22px;
    font-weight:700;
    text-decoration:none;
    padding:18px 40px;
    border-radius:60px;
    box-shadow:0 10px 25px rgba(15,157,88,0.35);
    transition:all 0.3s ease;
    animation:pulseGlow 2s infinite;
    letter-spacing:0.5px;
}

.offline-enroll-btn:hover{
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 14px 30px rgba(15,157,88,0.45);
    color:#fff;
}

@keyframes pulseGlow{
    0%{
        box-shadow:0 0 0 0 rgba(15,157,88,0.5);
    }
    70%{
        box-shadow:0 0 0 18px rgba(15,157,88,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(15,157,88,0);
    }
}

/* MOBILE */

@media(max-width:768px){

    .offline-enroll-btn{
        width:100%;
        font-size:18px;
        padding:16px 20px;
    }

}/* OFFLINE BATCH BUTTON */

.offline-enroll-section{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:-30px;
    margin-bottom:40px;
    position:relative;
    z-index:99;
}

.offline-enroll-btn{
    background:linear-gradient(135deg,#ffcc00,#ffb300) !important;
    color:#000 !important;
    font-size:24px !important;
    font-weight:800 !important;
    text-decoration:none !important;
    padding:18px 45px !important;
    border-radius:60px !important;
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    gap:10px;
    box-shadow:0 10px 30px rgba(255,193,7,0.45);
    transition:all 0.3s ease;
    animation:pulseButton 2s infinite;
    border:none !important;
}

.offline-enroll-btn:hover{
    transform:translateY(-4px) scale(1.03);
    color:#000 !important;
}

@keyframes pulseButton{
    0%{
        box-shadow:0 0 0 0 rgba(255,193,7,0.6);
    }
    70%{
        box-shadow:0 0 0 18px rgba(255,193,7,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(255,193,7,0);
    }
}

/* MOBILE */

@media(max-width:768px){

    .offline-enroll-section{
        padding:0 15px;
        margin-top:-20px;
    }

    .offline-enroll-btn{
        width:100%;
        font-size:18px !important;
        text-align:center;
        padding:16px 20px !important;
    }

}
.batch-mode-section{
  padding:60px 15px;
  background:#f7fff9;
  text-align:center;
}

.mode-title{
  font-size:36px;
  font-weight:800;
  color:#063b25;
}

.mode-subtitle{
  font-size:18px;
  color:#555;
  margin-bottom:35px;
}

.mode-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
  max-width:1000px;
  margin:auto;
}

.mode-card{
  background:#fff;
  padding:35px 25px;
  border-radius:22px;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  transition:0.3s;
}

.mode-card:hover{
  transform:translateY(-8px);
}

.mode-icon{
  font-size:48px;
  margin-bottom:15px;
}

.mode-card h3{
  font-size:28px;
  font-weight:800;
  margin-bottom:20px;
}

.mode-card ul{
  list-style:none;
  padding:0;
  margin:0 0 25px;
}

.mode-card ul li{
  font-size:17px;
  margin:10px 0;
}

.mode-btn{
  display:inline-block;
  border:none;
  text-decoration:none;
  padding:15px 30px;
  border-radius:50px;
  font-size:17px;
  font-weight:800;
  cursor:pointer;
}

.online-btn{
  background:#0d6efd;
  color:#fff;
}

.offline-btn,
.final-enroll-btn{
  background:linear-gradient(135deg,#ffcc00,#ffb300);
  color:#000;
}

.offline-popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.65);
  z-index:9999;
  align-items:center;
  justify-content:center;
  padding:15px;
}

.offline-popup-box{
  background:#fff;
  width:100%;
  max-width:760px;
  border-radius:24px;
  padding:35px 25px;
  position:relative;
  text-align:center;
  animation:popupZoom .3s ease;
}

.small-box{
  max-width:430px;
}

.popup-close{
  position:absolute;
  top:-18px;
  right:-10px;
  width:42px;
  height:42px;
  border-radius:50%;
  border:none;
  background:#e60000;
  color:#fff;
  font-size:28px;
  font-weight:bold;
  cursor:pointer;
  z-index:10000;
}

.popup-date{
  font-size:20px;
  font-weight:800;
  color:#0f9d58;
}

.popup-time{
  font-size:17px;
  font-weight:600;
}

.offline-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin:25px 0;
  text-align:left;
}

.offline-features div{
  background:#f1fff6;
  padding:13px;
  border-radius:12px;
  font-weight:600;
}

.seat-alert{
  background:#fff3cd;
  color:#7a4d00;
  padding:14px;
  border-radius:14px;
  font-size:20px;
  font-weight:800;
  margin-bottom:20px;
}

.final-enroll-btn{
  border:none;
  padding:16px 35px;
  border-radius:50px;
  font-size:18px;
  font-weight:800;
  cursor:pointer;
  animation:pulseButton 2s infinite;
}

.small-box input{
  width:100%;
  padding:14px;
  margin:10px 0;
  border:1px solid #ddd;
  border-radius:12px;
  font-size:16px;
}

@keyframes popupZoom{
  from{transform:scale(.85);opacity:0;}
  to{transform:scale(1);opacity:1;}
}

@keyframes pulseButton{
  0%{box-shadow:0 0 0 0 rgba(255,193,7,.6);}
  70%{box-shadow:0 0 0 16px rgba(255,193,7,0);}
  100%{box-shadow:0 0 0 0 rgba(255,193,7,0);}
}

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

  .mode-title{
    font-size:28px;
  }

  .offline-popup-box{
    max-height:90vh;
    overflow-y:auto;
  }

  .offline-features{
    grid-template-columns:1fr;
  }

  .popup-close{
    top:8px;
    right:8px;
  }
}
.otp-btn{
  width:100%;
  padding:14px;
  margin:8px 0 12px;
  border:none;
  border-radius:12px;
  background:#063b25;
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

.verified-tick{
  background:#e9fff1;
  color:#087b32;
  padding:12px;
  border-radius:12px;
  font-weight:800;
  margin-bottom:12px;
}

.otp-btn{
    background:#063b25;
    color:#fff;
    border:none;
    padding:14px 18px;
    border-radius:12px;
    font-weight:800;
    cursor:pointer;
    white-space:nowrap;
}

.verified-tick{
    background:#e9fff1;
    color:#087b32;
    padding:12px;
    border-radius:12px;
    font-weight:800;
    margin-top:10px;
    margin-bottom:15px;
}
.phone-row{
  display:flex !important;
  gap:12px;
  width:100%;
  align-items:center;
}

.phone-row input{
  flex:1 !important;
  width:auto !important;
  min-width:0;
  height:66px;
}

.phone-row .otp-btn{
  width:auto !important;
  min-width:170px;
  height:66px;
  padding:0 20px !important;
  border-radius:14px;
}

@media(max-width:600px){
  .phone-row{
    flex-direction:column;
  }

  .phone-row input,
  .phone-row .otp-btn{
    width:100% !important;
  }
}
.cta-buttons{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.main-btn{
    background:linear-gradient(135deg,#16a34a,#15803d);
    color:#fff;
    text-decoration:none;
    padding:16px 20px;
    border-radius:14px;
    text-align:center;
    font-size:24px;
    font-weight:700;
    transition:0.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
}

.main-btn:hover{
    transform:translateY(-3px);
    background:linear-gradient(135deg,#22c55e,#166534);
    color:#fff;
}

.syllabus-btn{
    background:#fff;
    color:#064e3b;
    text-decoration:none;
    padding:16px 22px;
    border-radius:14px;
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    border:3px solid #facc15;
    transition:0.3s ease;
    width:fit-content;
    min-width:280px;
    box-shadow:0 8px 20px rgba(0,0,0,0.18);
}

.syllabus-btn:hover{
    background:#facc15;
    color:#111827;
    transform:translateY(-3px) scale(1.02);
}

.syllabus-btn .icon{
    font-size:26px;
}
.smartwork-section{
    padding:80px 0;
    background:#f7faf8;
}

.smartwork-box{
    background:linear-gradient(135deg,#063b25,#0f5132);
    border-radius:35px;
    padding:60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    overflow:hidden;
    position:relative;
}

.smartwork-content{
    flex:1;
    color:#fff;
    z-index:2;
}

.smartwork-badge{
    display:inline-block;
    background:#ffffff20;
    padding:10px 18px;
    border-radius:40px;
    font-weight:700;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
}

.smartwork-content h2{
    font-size:48px;
    font-weight:900;
    line-height:1.2;
    margin-bottom:20px;
}

.smartwork-content p{
    font-size:18px;
    opacity:0.92;
    line-height:1.8;
    max-width:700px;
}

.smartwork-points{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin:30px 0;
}

.smartwork-points span{
    background:#ffffff15;
    padding:12px 18px;
    border-radius:14px;
    font-weight:700;
}

.smartwork-btn{
    display:inline-block;
    background:#ffc107;
    color:#000;
    text-decoration:none;
    padding:18px 34px;
    border-radius:60px;
    font-size:20px;
    font-weight:900;
    transition:0.3s ease;
    box-shadow:0 10px 30px rgba(255,193,7,0.35);
}

.smartwork-btn:hover{
    transform:translateY(-5px) scale(1.03);
    color:#000;
}

.smartwork-image{
    flex:0.8;
    position:relative;
    min-height:300px;
}

.smart-circle{
    width:280px;
    height:280px;
    background:radial-gradient(circle,#ffc107,#ff9800);
    border-radius:50%;
    position:absolute;
    right:20px;
    top:10px;
    opacity:0.9;
    animation:floatCircle 5s ease-in-out infinite;
}

.floating-card{
    position:absolute;
    background:#fff;
    padding:18px 24px;
    border-radius:20px;
    font-weight:800;
    color:#063b25;
    box-shadow:0 15px 40px rgba(0,0,0,0.2);
    top:30px;
    left:20px;
    z-index:2;
    animation:floatCard 4s ease-in-out infinite;
}

.floating-card.second{
    top:170px;
    left:120px;
    animation-delay:1.5s;
}

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

@keyframes floatCircle{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(15px);}
}

@media(max-width:991px){

    .smartwork-box{
        flex-direction:column;
        text-align:center;
        padding:40px 25px;
    }

    .smartwork-content h2{
        font-size:34px;
    }

    .smartwork-points{
        justify-content:center;
    }

    .smartwork-image{
        min-height:260px;
        width:100%;
    }

    .smart-circle{
        position:relative;
        margin:auto;
        right:auto;
    }

    .floating-card{
        left:20px;
    }
}
.smart-preview-circle{
    width:320px;
    height:320px;
    border-radius:50%;
    overflow:hidden;
    position:absolute;
    right:20px;
    top:0;
    background:#ffc107;
    box-shadow:
      0 20px 60px rgba(0,0,0,0.3),
      0 0 40px rgba(255,193,7,0.5);

    animation:floatCircle 5s ease-in-out infinite;
}

.smart-slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease;
}

.smart-slide.active{
    opacity:1;
}

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