/********** Template CSS **********/
:root {
    --primary: #F3BD00;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


.py-7 {
    padding-top: 3em;
    padding-bottom: 3rem;
}


.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    /* text-transform: uppercase; */
    outline: none;
    font-size:15px;
        font-family: "Muli", sans-serif;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color:#da231b;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, .75);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
      width: 2rem;
    height: 2rem;
    background-color: #E21B22;
    border: 5px solid #E21B22;
}

/* @media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
} */

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}

.fact{
    background: linear-gradient(rgba(6, 18, 58, 0.7), lab(50.34% 76.76 64.41 / 0.7)), url(../img/fact.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
/*** Facts ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}


/*** Courses ***/
.courses {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #da251d;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #da251d;
}

.copyright a {
    color: white;
}

.copyright a:hover {
    color:white;
}








.wa-float{
    position:fixed;
    bottom:20px;
    right:20px;
    display:flex;                /* label ⇢ circle */
    align-items:center;
    text-decoration:none;
    z-index:9999;
    transition:transform .3s ease;
}
.wa-float:hover{ transform:scale(1.06); }

/* ---------- round icon ---------- */
.wa-circle{
    width:54px;                  /* matches screenshot */
    height:54px;
    background:#25D366;          /* WhatsApp green */
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    box-shadow:0 4px 16px rgba(0,0,0,.25);
}

/* ---------- pill label ---------- */
.wa-label{
    background: #05c712;
    color:#fff;
    font-weight:600;
    font-size:15px;
    padding:10px 18px 10px 20px;
    border-radius:30px 0 0 30px; /* left pill, right flat */
    margin-right:15px;           /* tucks under circle */
    box-shadow:0 4px 16px rgba(0,0,0,.25);
    position:relative;
}

/* arrow that “glues” label to circle */
.wa-label::after{
    content:'';
    position:absolute;
    top:50%;
    right:-6px;                  /* overlaps circle */
    transform:translateY(-50%);
    width:0; height:0;
    border-top:6px solid transparent;
    border-bottom:6px solid transparent;
    border-left:6px solid #25D366;
}


.whatsapp-icon {
    width: 60px;
    height: auto;
    align-items: center;
    justify-content: center;
    display: flex
;
}


.responsive-logo {
  max-width: 250px;
  width: 100%;
  height: auto;
}

/* On screens smaller than 768px (like mobile), reduce size */
@media (max-width: 767.98px) {
  .responsive-logo {
    max-width: 175px;
  }
}


.section-title{
  font-weight:700;
  font-size:1.8rem;
  display:inline-block;
  margin-bottom:2rem;
  position:relative;
}
.section-title::after{
  content:"";
  width:60%;height:3px;
  background:#ffc107;          /* yellow underline  */
  position:absolute;left:0;bottom:-6px;
}

/* category pill --------------------------------------------------------- */
.category-card{
  /* background:#f7f9fc; */
  background:#fff;
  border:1px solid #e5e9f2;
  box-shadow:0 6px 24px rgba(0,0,0,.06);
  border-radius:.75rem;
  padding:1.25rem 1.5rem;
  display:flex;
  align-items:center;
  gap:.85rem;                  /* space between icon & text  */
  transition:all .25s ease;
}
.category-card i{
  color:#da251d;               /* Bootstrap primary blue      */
  flex:0 0 auto;               /* lock icon width             */
  font-size:20px;
}
.category-card:hover{
  background:#fff;
  box-shadow:0 6px 24px rgba(0,0,0,.06);
  transform:translateY(-4px);
}


.fw-semibold{
        font-size: 12px;

}



.ticker-wrapper li{
   color:black;
}


.align-self-center{
 color:black;
}





 .smart-title {
      background-color: #da251d;
      color: #fff;
      font-weight: bold;
      font-size: 18px;
      padding: 12px 16px;
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;
    }

    .ticker-wrapper {
      position: relative;
      height: 250px;
      overflow: hidden;
    }

    .ticker-list {
      display: flex;
      flex-direction: column;
      animation: scrollUp 12s linear infinite;
    }

    .ticker-list li {
      padding: 8px 10px;
      border-bottom: 1px solid #eee;
      white-space: nowrap;
    }

    @keyframes scrollUp {
      0% {
        transform: translateY(0);
      }
      100% {
        transform: translateY(-100%);
      }
    }

    .ticker-wrapper:hover .ticker-list {
      animation-play-state: paused;
    }

    .blog-date {
      font-size: 24px;
      font-weight: bold;
      color: #da251d;
    }

    .blog-month {
      font-size: 12px;
      text-transform: uppercase;
      color: #777;
    }

    .blog-item {
      border-bottom: 1px solid #ddd;
      padding: 10px 0;
      margin-top:-10px;
    }

    .view-all-btn {
      background-color: #da251d;
      color: #fff;
      border: none;
      font-size: 14px;
      padding: 6px 16px;
      border-radius: 7px;
    }


    .testimonials-wrap {
  padding: 40px 0;
      background-color: #da241c;
}
.heading-section {
  text-align: center;
}
.sub-heading {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  display: block;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.heading-section h2 {
  font-size: 28px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 15px;
    color: white;
}
.testimonial-box {
  display: block;
  position: relative;
  padding: 30px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .03);
  border-radius: 5px;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, .08); */
  box-shadow: 0 4px 10px #0000001a;
}
.user-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  min-width: 80px;
}
.carousel-testimonial .item {
  padding: 30px 10px;
}
.quote {
  position: absolute;
  top: -23px;
  color:#da241c;
  font-size: 27px;
}
.name {
  margin-bottom: 0;
  line-height: 14px;
  font-size: 17px;
  font-weight: 700;
  color:black;
}
.position {
  color: #adadad;
  font-size: 14px;
}
.carousel-testimonial .owl-nav {
  text-align: center;
}
.carousel-testimonial .owl-nav button.owl-next, 
.carousel-testimonial .owl-nav button.owl-prev {
  padding: 0 12px !important;
}
.carousel-testimonial .owl-nav button {
  outline: none;
  padding: 0;
}
.carousel-testimonial .owl-nav button.owl-next span, 
.carousel-testimonial .owl-nav button.owl-prev span {
  display: block;
  font-size: 40px;
  width: 25px;
  height: 25px;
  line-height: 16px;
}
.carousel-testimonial .owl-nav button.owl-next.disabled, 
.carousel-testimonial .owl-nav button.owl-prev.disabled {
  opacity: 0.5;
}
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background: none;
  border: none;
  font-size: 24px;
  color: #0a627b; /* Adjust as needed */
  margin: 0 10px;
}

.owl-nav button i {
  pointer-events: none;
}
.testimonial-box .user-img {
  margin-right: 15px; /* Adjust as needed (10px to 20px is good) */
}

/* Base Owl Carousel Styling Replacement */
.owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}
.owl-carousel .owl-item {
  float: left;
  user-select: none;
}
.owl-theme .owl-nav {
  text-align: center;
  margin-top: 20px;
}
.owl-theme .owl-nav [class*="owl-"] {
  color: #da241c;
  font-size: 16px;
  margin: 5px;
  padding: 5px 10px;
  background: #ffffff;
  display: inline-block;
  cursor: pointer;
  border-radius: 20%;
  border: 1px solid #da241c;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #ffffff;
  color: #da241c;
}

/* Optional: Hide default dots if you're not using them */
.owl-theme .owl-dots {
  display: none;
}


 .faq-section {
    padding: 60px 20px;
  }

  .faq-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #02a79e;
    margin-bottom: 40px;
  }

  .faq-image {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700&display=swap");
body {
    background: #fafafa;
}
.accordion {
    display: flex;
    flex-direction: column;
    font-family: "Sora", sans-serif;
    max-width: 991px;
    min-width: 320px;
    /* margin: 50px auto;
    padding: 0 50px; */
}
.accordion h1 {
    font-size: 32px;
    text-align: center;
}
.accordion-item {
    margin-top: 16px;
    border: 1px solid #fcfcfc;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.accordion-item .accordion-item-title {
    position: relative;
    margin: 0;
    display: flex;
    width: 100%;
       font-size: 17px;
    font-weight: 500;
    color: black;
    cursor: pointer;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 4px 20px;
    box-sizing: border-box;
    align-items: center;
    font-family: "Muli", sans-serif;
}
.accordion-item .accordion-item-desc {
    display: none;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    color: #444;
    border-top: 1px dashed #ddd;
    padding: 10px 20px 20px;
    box-sizing: border-box;
}
.accordion-item input[type="checkbox"] {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
    display: block;
    font-family: "Muli", sans-serif;
}
.accordion-item
    input[type="checkbox"]:checked
    ~ .accordion-item-title
    .icon:after {
    content: "-";
    font-size: 20px;
}
.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
    content: "+";
    font-size: 20px;
}
.accordion-item:first-child {
    margin-top: 0;
}
.accordion-item .icon {
    margin-left: 14px;
}

@media screen and (max-width: 767px) {
    .accordion {
        padding: 0 16px;
    }
    .accordion h1 {
        font-size: 22px;
    }
}


  .we {
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .we::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/bubble3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: -1;
  }


  .oks{
        /* background: linear-gradient(rgba(6, 18, 58, 0.7), lab(50.34% 76.76 64.41 / 0.7)), url(../img/fact.png); */
          background-image: url("../img/texture1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed; */
  }
  

  .sub-banner {
  position: relative;
  width: 100%;
  height: 300px;
  background: url('../img/subbanner.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
}

.sub-banner .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  top: 0;
  left: 0;
}

.sub-banner .container {
  position: relative;
  width: 90%;
  margin: auto;
}

.banner-content {
  color: #fff;
  z-index: 2;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 16px;
  letter-spacing: 1px;
}

/* 🔽 Responsive Design */

@media (max-width: 992px) {
  .sub-banner {
    height: 250px;
  }

  .banner-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .sub-banner {
    height: 220px;
    text-align: center;
    justify-content: center;
  }

  .banner-content h1 {
    font-size: 28px;
  }

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

@media (max-width: 480px) {
  .sub-banner {
    height: 180px;
  }

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

  .banner-content p {
    font-size: 12px;
  }
}


   /* modern header with gradient accent */
    .hero-section {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
    }

    .prestige-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #da231b;
      backdrop-filter: blur(2px);
      padding: 0.35rem 1.2rem;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.4px;
      color: #ffffff;
      margin-bottom: 1.2rem;
      border: 1px solid rgba(34, 139, 163, 0.2);
    }

    /* h1 {
      font-size: 3rem;
      font-weight: 800;
      background: linear-gradient(125deg, #0e4b5e 0%, #1f87a3 50%, #125f78 100%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
    } */

    .hero-tagline {
      font-size: 1.05rem;
      font-weight: 500;
      color: #386f83;
      background: #ffffffd9;
      display: inline-block;
      padding: 0.5rem 1.8rem;
      border-radius: 60px;
      backdrop-filter: blur(2px);
      box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    }

    /* refined card grid */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 2rem;
      margin: 2.5rem 0 2rem;
    }

    .professional-card {
      background: #ffffff;
      border-radius: 1.75rem;
      transition: all 0.25s ease;
      border: 1px solid #e3edf2;
      box-shadow: 0 8px 20px -6px rgba(0, 32, 54, 0.06);
      overflow: hidden;
    }

    .professional-card:hover {
      transform: translateY(-5px);
      border-color: #cde1ea;
      box-shadow: 0 20px 30px -12px rgba(19, 81, 102, 0.12);
    }

    .card-accent {
      height: 5px;
     background: linear-gradient(90deg, #da231b, #da231b, #da231b);
    }

    .card-header-pro {
      padding: 1.5rem 1.6rem 0.2rem 1.6rem;
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }

    .icon-circle {
      width: 48px;
      height: 48px;
      background: #eff6fa;
      border-radius: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
   color: #da231b;
    }

    .card-header-pro h2 {
      font-size: 1.45rem;
      font-weight: 700;
      color: #143e4e;
      letter-spacing: -0.3px;
    }

    .card-body {
      padding: 1rem 1.6rem 1.6rem 1.6rem;
    }

    .feature-list-smart {
      list-style: none;
      margin: 0.75rem 0;
    }

    .feature-list-smart li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0.6rem 0;
      font-weight: 500;
      font-size: 0.92rem;
      color: #1f556b;
      border-bottom: 1px solid #eff3f7;
    }

    .feature-list-smart li i {
      width: 20px;
      color: #000000;
      font-size: 0.85rem;
    }

    .tag-modern {
      background: #e9f2f7;
      color: #0e657f;
      border-radius: 50px;
      padding: 0.3rem 1rem;
      font-size: 0.7rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 0.8rem;
    }

    .insight-rows {
      display: flex;
      flex-wrap: wrap;
      gap: 1.8rem;
      margin: 2rem 0 1.8rem;
    }

    .insight-block {
      flex: 1;
      background: #ffffff;
      border-radius: 1.3rem;
      padding: 1.3rem 1.5rem;
      border: 1px solid #e4eef3;
      transition: all 0.2s;
      box-shadow: 0 3px 10px rgba(0,0,0,0.02);
    }

    .insight-block h3 {
      display: flex;
      gap: 12px;
      align-items: center;
      font-size: 1.2rem;
      margin-bottom: 0.6rem;
      font-weight: 700;
      color: #1a5d73;
    }

    /* premium quiz area */
    .quiz-premium-panel {
      background: #ffffff;
      border-radius: 1.8rem;
      margin: 2rem 0 2rem;
      border: 1px solid #e2edf3;
      box-shadow: 0 12px 28px -12px rgba(0, 32, 54, 0.08);
      overflow: hidden;
    }

    .quiz-header-premium {
      background: #fcfef9;
      padding: 1.3rem 1.8rem;
      border-bottom: 1px solid #e9f0f4;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .quiz-title {
      font-weight: 800;
      font-size: 1.4rem;
      color: #155f74;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .pill-exam {
      background: #e4f0f5;
      padding: 0.3rem 1rem;
      border-radius: 50px;
      font-size: 0.7rem;
      font-weight: 700;
      color: #1f718b;
    }

    .mcq-list {
      padding: 1.3rem 1.8rem 1.8rem;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .mcq-pro-card {
      background: #fefefe;
      border-radius: 1rem;
      border: 1px solid #e8f0f5;
      transition: 0.1s;
      padding: 1rem 1.2rem;
    }

    .mcq-question {
      font-weight: 700;
      margin-bottom: 0.75rem;
      font-size: 0.98rem;
      color: #134f64;
      display: flex;
      gap: 12px;
      align-items: baseline;
    }

    .options-pro {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-bottom: 0.8rem;
    }

    .option-pro {
      background: #f4fafd;
      padding: 0.45rem 1.2rem;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.12s linear;
      border: 1px solid transparent;
      color: #1b5e76;
    }

    .option-pro:hover {
      background: #e4f0f6;
      transform: translateY(-1px);
    }

    .option-pro.selected {
      background: #1e7a97;
      color: white;
      border-color: #0f607b;
    }

    .action-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 8px;
    }

    .explanation-pro {
      font-size: 0.75rem;
      color: #2f7a92;
      display: none;
      padding: 4px 0 0;
    }

    .btn-reveal-sm {
      background: #eef3f8;
      border: none;
      padding: 0.2rem 0.9rem;
      border-radius: 30px;
      font-weight: 600;
      font-size: 0.7rem;
      color: #146b84;
      cursor: pointer;
      transition: 0.1s;
    }

    .daily-panel {
      background: linear-gradient(115deg, #f0f7fa, #ffffff);
      border-radius: 1.5rem;
      padding: 1.4rem 1.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      border: 1px solid #dceaf0;
      margin-top: 1rem;
    }

    .btn-primary {
      background: #196f8a;
      color: white;
      padding: 0.6rem 1.4rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.8rem;
      border: none;
      cursor: pointer;
      transition: 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary:hover {
      background: #0f5871;
      transform: translateY(-2px);
    }



            .gk-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 36px;
            box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            transition: all 0.2s;
        }

        /* header */
        .gk-header {
            background: linear-gradient(115deg, #0a2f44 0%, #1c5a7a 100%);
            padding: 28px 32px;
            color: white;
        }

        .gk-header h1 {
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .gk-header h1 span {
            background: #ffb142;
            font-size: 0.9rem;
            padding: 5px 14px;
            border-radius: 60px;
            color: #1e2a3e;
            font-weight: 600;
        }

        .gk-header p {
            margin-top: 12px;
            opacity: 0.9;
            font-size: 0.95rem;
            border-left: 3px solid #ffb142;
            padding-left: 16px;
        }

        /* two column layout */
        .gk-grid {
            display: flex;
            flex-wrap: wrap;
        }

        /* SIDEBAR categories (clickable) */
        .categories-sidebar {
            background: #f8fafd;
            width: 270px;
            padding: 32px 20px;
            border-right: 1px solid #e2edf7;
        }

        .categories-sidebar h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0c4e6e;
            margin-bottom: 22px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 2px solid #dce7f2;
            padding-bottom: 12px;
        }

        .cat-list {
            list-style: none;
        }

        .cat-list li {
            margin-bottom: 12px;
        }

        .cat-btn {
            width: 100%;
            text-align: left;
            background: transparent;
            border: none;
            font-size: 1rem;
            font-weight: 500;
            padding: 10px 14px;
            border-radius: 28px;
            cursor: pointer;
            transition: 0.2s;
            color: #1f4a6e;
            font-family: inherit;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .cat-btn:hover {
            background: #e4edf6;
            transform: translateX(4px);
        }

        .cat-btn.active {
            background: #ffedd5;
            color: #b45309;
            font-weight: 600;
            border-left: 4px solid #f59e0b;
        }

        /* questions area */
        .questions-area {
            flex: 1;
            background: white;
            padding: 28px 32px;
        }

        .category-indicator {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            flex-wrap: wrap;
            margin-bottom: 20px;
            border-bottom: 2px solid #eef2fa;
            padding-bottom: 12px;
        }

        .category-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0a2f44;
            background: #fef6e0;
            display: inline-block;
            padding: 4px 20px;
            border-radius: 60px;
        }

        .question-count-badge {
            font-size: 0.8rem;
            background: #eef2ff;
            padding: 4px 14px;
            border-radius: 50px;
            color: #2c5282;
        }

        /* question card */
        .question-card {
            background: #ffffff;
            border-radius: 28px;
            margin-bottom: 28px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            border: 1px solid #eef2f8;
            transition: all 0.2s;
        }

        .question-number {
            background: #f5f9ff;
            padding: 12px 20px 4px 20px;
            font-weight: 700;
            font-size: 0.9rem;
            color: #1976b0;
            border-bottom: 1px solid #e9edf2;
        }

        .question-text {
            font-size: 1.08rem;
            font-weight: 600;
            color: #1f3b4c;
            padding: 16px 22px 8px 22px;
        }

        .options-list {
            padding: 6px 22px 12px 22px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .option-item {
            background: #fafcff;
            border-radius: 60px;
            padding: 6px 20px;
            font-size: 0.92rem;
            color: #2d4e6e;
            border: 1px solid #e0ecf9;
        }

        .answer-row {
            padding: 10px 22px 20px 22px;
            border-top: 1px solid #ecf3f9;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
        }

        .answer-value {
            background: #eef5ea;
            padding: 7px 20px;
            border-radius: 36px;
            font-weight: 600;
            color: #2b6e3c;
            font-size: 0.9rem;
        }

        .view-answer-btn {
            background: none;
            border: 1px solid #cbddee;
            padding: 6px 20px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            color: #2c5282;
            font-family: inherit;
        }

        .view-answer-btn:hover {
            background: #1e4a6e;
            color: white;
            border-color: #1e4a6e;
        }

        /* pagination */
        .pagination-wrapper {
            margin-top: 40px;
            padding-top: 18px;
            border-top: 1px solid #e2edf7;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .page-btn {
            background: #f1f5f9;
            border: none;
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: 0.2s;
            color: #1f4a6e;
        }

        .page-btn.active {
            background: #f59e0b;
            color: white;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }

        .page-btn:hover:not(.active) {
            background: #e6edf6;
        }

        .footer-note {
            background: #fafcfd;
            padding: 16px 28px;
            text-align: center;
            font-size: 0.75rem;
            color: #5b6e8c;
            border-top: 1px solid #eef2f8;
        }

        @media (max-width: 750px) {
            .categories-sidebar {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #e2e8f0;
                padding: 20px;
            }
            .questions-area {
                padding: 20px;
            }
            .cat-btn {
                padding: 8px 12px;
            }
            .options-list {
                flex-direction: column;
                gap: 8px;
            }
        }


        
        .math-container {
            max-width: 1100px;
            margin: 0 auto;
            background: white;
            border-radius: 32px;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
            overflow: hidden;
        }

        /* header */
        .math-header {
            background: linear-gradient(135deg, #1e3c4c, #235b6e);
            padding: 28px 32px;
            color: white;
        }

        .math-header h1 {
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .math-header h1 span {
            background: #f4b942;
            font-size: 0.85rem;
            padding: 5px 14px;
            border-radius: 60px;
            color: #1e2a3e;
            font-weight: 600;
        }

        .math-header p {
            margin-top: 12px;
            opacity: 0.85;
            font-size: 0.95rem;
            border-left: 3px solid #f4b942;
            padding-left: 16px;
        }

        /* pagination top */
        .pagination-top {
            background: #f9fbfd;
            padding: 14px 24px;
            border-bottom: 1px solid #e2ecf5;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .page-btn {
            background: #eff3f8;
            border: none;
            padding: 6px 14px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: 0.2s;
            color: #1f5777;
            font-family: inherit;
        }

        .page-btn.active {
            background: #f4b942;
            color: #1e3c2f;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }

        .page-btn:hover:not(.active) {
            background: #e2e9f0;
        }

        .nav-arrow {
            font-weight: 700;
            background: #e8edf3;
        }

        .page-jump {
            margin-left: 6px;
            font-size: 0.8rem;
            color: #3f6b8c;
        }

        /* main content */
        .questions-area {
            padding: 28px 32px;
            background: white;
        }

        .q-card {
            background: #ffffff;
            border-radius: 28px;
            margin-bottom: 32px;
            border: 1px solid #e2edf5;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            transition: 0.1s;
        }

        .q-header {
            background: #fafdff;
            padding: 16px 24px 8px 24px;
            border-bottom: 1px solid #ecf3fa;
        }

        .q-number {
            font-weight: 800;
            font-size: 1rem;
            color: #1f6e8c;
            background: #e6f2f9;
            display: inline-block;
            padding: 4px 14px;
            border-radius: 40px;
            margin-bottom: 10px;
        }

        .question-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1f3b4e;
            margin: 12px 0 6px 0;
            line-height: 1.4;
        }

        /* options grid */
        .options-grid {
            padding: 12px 24px 8px 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            align-items: center;
        }

        .option {
            background: #f8fafd;
            padding: 6px 20px;
            border-radius: 60px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #2c577a;
            border: 1px solid #dee9f2;
        }

        /* answer + explanation section */
        .answer-section {
            padding: 12px 24px 22px 24px;
            border-top: 1px solid #ecf3fa;
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            align-items: flex-start;
            justify-content: space-between;
        }

        .answer-block {
            background: #eef5ea;
            border-radius: 40px;
            padding: 8px 24px;
            font-weight: 700;
            color: #2c6e3c;
            font-size: 0.95rem;
        }

        .explanation-block {
            background: #fef8e7;
            border-radius: 24px;
            padding: 10px 18px;
            flex: 1;
            font-size: 0.9rem;
            color: #8a6e3d;
            border-left: 3px solid #f4b942;
            line-height: 1.45;
        }

        .math-detail {
            font-family: monospace;
            background: #fef4e0;
            padding: 6px 12px;
            border-radius: 20px;
            font-weight: 500;
        }

        /* footer pagination */
        .pagination-bottom {
            background: #f9fbfd;
            padding: 18px 24px;
            border-top: 1px solid #e2ecf5;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-note {
            background: #f4f8fc;
            padding: 14px 28px;
            text-align: center;
            font-size: 0.7rem;
            color: #6283a0;
            border-top: 1px solid #e5eef7;
        }

        @media (max-width: 700px) {
            .questions-area {
                padding: 20px;
            }
            .options-grid {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .answer-section {
                flex-direction: column;
            }
            .math-header h1 {
                font-size: 1.5rem;
            }
        }


        .float-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 55px;
    height: 55px;
    z-index: 999;
}

.float-whatsapp img {
    width: 100%;
    height: 100%;
}

.float-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    z-index: 999;
}

.float-call img {
    width: 80%;
    height: 80%;
    margin-left: 7px;
}

/* Optional hover effect */
.float-whatsapp:hover,
.float-call:hover {
    transform: scale(1.1);
    transition: 0.3s;
}


/* .navbar-toggler {
    border-color: red;
} */

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='red' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    margin-top: -30px;
}


.course-card {
  border-radius: 10px;
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.course-card img {
  height: 180px;
  object-fit: cover;
}


.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none; /* IMPORTANT */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 350px;
  border-radius: 10px;
}

.popup-box input,
.popup-box select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.popup-box button {
  width: 100%;
  padding: 10px;
  background: #e71e17;
  color: #fff;
  border: none;
}

.close-btn {
  float: right;
  cursor: pointer;
}



/* Section */
.uni-hero {
 background: linear-gradient(rgb(0 0 0 / 90%), rgb(0 0 0 / 90%)), url(../img/bank7.png);
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: #fff;
}

/* Container */
.uni-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Content */
.uni-content {
    flex: 1;
}

.uni-content h5 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #ff0000;
}

.uni-content h1 {
    font-size: 32px;
    margin: 10px 0;
}

.uni-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Buttons */
.uni-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.uni-btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.uni-btn-primary {
   background: #ff0000;
    color: #ffffff;
}

.uni-btn-primary:hover {
    background: #f1f1f1;
}

.uni-btn-outline {
     background: #ff0000;
    color: #ffffff;
}

.uni-btn-outline:hover {
    background: #fff;
    color: #ff0000;
}


.uni-btn-outlinee {
     background: #3fc350;
    color: #ffffff;
}

.uni-btn-outlinee:hover {
    background:#3fc350;
    color: #ffffff;
}

.uni-btn-outlineee {
    border: 1px solid #fff;
    color: #fff;
}

.uni-btn-outlineee:hover {
       border: 1px solid #fff;
    color: #fff;
}



/* Right Image */
.uni-image {
    flex: 1;
    text-align: center;
}

.uni-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .uni-container {
        flex-direction: column;
        text-align: center;
    }

    .uni-content h1 {
        font-size: 26px;
    }

    .uni-buttons {
        justify-content: center;
    }
}


/* Section */
.sca2-section {
  position: relative;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #f4f8fb, #eef3f7);
  overflow: hidden;
}

/* Background Graphics */
.sca2-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10,108,116,0.08) 2px, transparent 2px);
  background-size: 20px 20px;
  top: -100px;
  left: -100px;
  z-index: 0;
}

.sca2-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10,108,116,0.06) 2px, transparent 2px);
  background-size: 25px 25px;
  bottom: -100px;
  right: -100px;
  z-index: 0;
}

/* Container */
.sca2-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* Full width */
.sca2-full {
  grid-column: span 2;
}

/* Title */
.sca2-title {
  color: #000000;
  margin-bottom: 15px;
}

/* Text */
.sca2-text {
  color: #444;
  line-height: 1.7;
}

/* Box */
.sca2-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px #0000001a;
  transition: 0.3s;
}

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

/* Highlight box */
.sca2-highlight {
  background: linear-gradient(135deg, #000000, #000000);
  color: #fff;
}

/* List */
.sca2-box ul {
  padding-left: 18px;
}

.sca2-box li {
  margin-bottom: 10px;
}

/* Check list */
.sca2-check li {
  list-style: none;
  position: relative;
  padding-left: 25px;
}

.sca2-check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ff9d;
}

/* Curriculum grid */
.sca2-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .sca2-container {
    grid-template-columns: 1fr;
  }

  .sca2-full {
    grid-column: span 1;
  }

  .sca2-grid2 {
    grid-template-columns: 1fr;
  }
}


.sca2-check li {
  margin-bottom: 15px;
  line-height: 1.6;
}


/* Section */
.ssu-section {
  background: #f4f6f8;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

/* Container */
.ssu-container {
  max-width: 1150px;
  margin: auto;
}

/* Title */
.ssu-title {
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
}

/* Row (1 line layout) */
.ssu-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

/* Hide scrollbar (optional) */
.ssu-row::-webkit-scrollbar {
  display: none;
}

/* Card */
.ssu-card {
  min-width: 280px;
  max-width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  flex-shrink: 0;
  transition: 0.3s;
}

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

/* Header */
.ssu-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ssu-head img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.ssu-head h4 {
  margin: 0;
}

.ssu-head span {
  font-size: 13px;
  color: #777;
}

/* Stars */
.ssu-stars {
  color: #ffb400;
  margin: 10px 0;
}

/* Text */
.ssu-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .ssu-title {
    font-size: 24px;
  }
}



/* SECTION */
.fbdx-section {
  position: relative;
  background: #0b0f14;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

/* Background Graphics */
.fbdx-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,255,180,0.08) 2px, transparent 2px);
  background-size: 25px 25px;
  top: -100px;
  left: -100px;
}

.fbdx-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,255,180,0.05) 2px, transparent 2px);
  background-size: 20px 20px;
  bottom: -100px;
  right: -100px;
}

/* CONTAINER */
.fbdx-container {
  position: relative;
  z-index: 1;
  max-width: 1065px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.fbdx-left {
  flex: 1;
}

.fbdx-title {
  font-size: 38px;
  color: #00ffcc;
  margin-bottom: 25px;
}

/* LIST */
.fbdx-list {
  list-style: none;
  padding: 0;
}

.fbdx-list li {
  margin-bottom: 15px;
  color: #cfd8dc;
  font-size: 15px;
  padding-left: 30px;
  position: relative;
}

.fbdx-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ffcc;
}

/* RIGHT */
.fbdx-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* CARD */
.fbdx-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 15px;
  max-width: 530px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.fbdx-card:hover {
  transform: translateY(-5px);
  color:white;
}

/* TEXT */
.fbdx-sub {
  font-size: 14px;
  color: #ccc;
  margin: 10px 0;
}

.fbdx-demo {
  font-weight: bold;
  margin: 15px 0;
}

/* BUTTONS */
.fbdx-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fbdx-btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 25px;
  background: linear-gradient(45deg, #3dc24e, #3dc24e);
    color: #fffdfd;
  text-decoration: none;
  font-weight: 600;
}

.fbdx-btn-outline {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 25px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
}

/* NOTE */
.fbdx-note {
  font-size: 13px;
  margin-top: 15px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .fbdx-container {
    flex-direction: column;
    text-align: center;
  }

  .fbdx-title {
    font-size: 26px;
  }
}

.fbdx-buttons a:hover {
  color:rgb(255, 255, 255);
}


/* 2 Column Layout */
.sca2-curriculum {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-left: 0;
}

/* Remove default bullets */
.sca2-curriculum li {
  list-style: none;
  background: #f8f9fb;
  padding: 15px;
  border-radius: 8px;
  line-height: 1.6;
  transition: 0.3s;
  box-shadow: 0 4px 10px #0000001a;
}

/* Hover effect */
.sca2-curriculum li:hover {
  transform: translateY(-3px);
}

/* Title color */
.sca2-curriculum strong {
  color: #000000;
}

/* Responsive (Mobile = 1 column) */
@media (max-width: 768px) {
  .sca2-curriculum {
    grid-template-columns: 1fr;
  }
}



.isbtHeroSection{
    padding:40px 0;
    background:#f5f7fb;
}

.isbtMainWrap{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.isbtCarouselBox{
    position:relative;
    height:100%;
}

.isbtCarouselBox img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:18px 0 0 18px;
}

.isbtEnquiryCard{
    background:#ffffff;
    padding:35px 30px;
    height:100%;
}

.isbtHeading{
      font-size: 29px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    margin-top: -30px;
}

.isbtSubText{
    color:#666;
    margin-bottom:25px;
    font-size:15px;
}

.isbtInput{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
    padding:12px 16px;
    font-size:15px;
    transition:0.3s;
    box-shadow:none !important;
}

.isbtTextarea{
    border-radius:12px;
    border:1px solid #ddd;
    padding:14px 16px;
    resize:none;
    font-size:15px;
    transition:0.3s;
    box-shadow:none !important;
}

.isbtInput:focus,
.isbtTextarea:focus{
    border-color:#00b894;
}

.isbtBtn{
    width:100%;
    height:56px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#00c853,#00a651);
    color:#fff;
    font-size:18px;
    font-weight:700;
    transition:0.3s;
}

.isbtBtn:hover{
    transform:translateY(-2px);
    background:linear-gradient(135deg,#00a651,#009245);
}

.isbtCarouselBox .carousel-control-prev,
.isbtCarouselBox .carousel-control-next{
    width:45px;
    height:45px;
    background:rgba(0,0,0,0.45);
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
}

.isbtCarouselBox .carousel-control-prev{
    left:15px;
}

.isbtCarouselBox .carousel-control-next{
    right:15px;
}

.isbtCarouselBox .carousel-indicators [data-bs-target]{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#fff;
}

.isbtWhatsappFloat{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    z-index:999;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,0.2);
}

.isbtWhatsappFloat:hover{
    color:#fff;
    transform:scale(1.08);
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .isbtCarouselBox img{
        border-radius:18px 18px 0 0;
        height:320px;
    }

    .isbtHeading{
        font-size:32px;
    }

    .isbtEnquiryCard{
        padding:25px 20px;
    }
}

@media(max-width:576px){

    .isbtHeroSection{
        padding:20px 10px;
    }

    .isbtCarouselBox img{
        height:150px;
    }

    .isbtHeading{
        font-size:28px;
    }

    .isbtInput{
        height:50px;
    }

    .isbtBtn{
        height:52px;
        font-size:16px;
    }
}


@media (min-width: 992px) {
  .custom-desktop-mt {
    margin-top: 65px !important;
  }
}

/* 
 
.yt-sec-wrap {
    padding: 60px 20px;
    background: #0f0f0f;
    font-family: 'Segoe UI', sans-serif;
}

.yt-sec-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.yt-sec-title {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 10px;
}

.yt-sec-subtitle {
    color: #bbbbbb;
    font-size: 16px;
    margin-bottom: 40px;
}

 
.yt-video-box {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;  
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.yt-video-box iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
}

 
@media (max-width: 768px) {
    .yt-sec-title {
        font-size: 24px;
    }
} */


/* ===========================
   YouTube Gallery Section
=========================== */

.ytv-gallery-section{
    padding:60px 20px;
    background:#fff;
}

.ytv-gallery-container{
    max-width:1200px;
    margin:auto;
}

.ytv-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.ytv-gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.ytv-gallery-item iframe{
    width:100%;
    height:220px;
    border:none;
    display:block;
}

.ytv-gallery-btn{
    text-align:center;
    margin-top:40px;
}

.ytv-gallery-btn a{
    display:inline-block;
    background:#ff0000;
    color:#fff;
    text-decoration:none;
    padding:15px 40px;
    font-size:18px;
    font-weight:600;
    border-radius:50px;
    transition:.3s;
}

.ytv-gallery-btn a:hover{
    background:#cc0000;
    transform:translateY(-3px);
}

/* Tablet */
@media(max-width:992px){

.ytv-gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.ytv-gallery-item iframe{
    height:250px;
}

}

/* Mobile */
@media(max-width:576px){

.ytv-gallery-grid{
    grid-template-columns:1fr;
}

.ytv-gallery-item iframe{
    height:220px;
}

.ytv-gallery-btn a{
    width:100%;
    padding:15px;
}

}