/********** Template CSS **********/
:root {
    --primary: #F3BD00;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.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 {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar-brand {
    padding-left: 10px;
}
.logo-img {
    height: 60px;
    margin-right: 12px;
}
.navbar .navbar-brand,
.navbar a.btn {
    height: 70px
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.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: transparent;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {

    #header-carousel,
    #header-carousel .carousel-inner,
    #header-carousel .carousel-item {
        height: auto !important;
    }

    #header-carousel .carousel-item img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

}


.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;
}


/*** 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;
}


/*** Contact ***/
.contact-form .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*** 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;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #092139;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}
    .logo-img {
        height: 35px;
        width: 30px;
      }
  
  .logo-text {
    font-size: 18px;
    font-weight: 600;
    margin-left: 8px;
    white-space: nowrap;
  }
  
  .navbar-brand {
    height: 30px;
  }
  /* Mobile slider fix */
@media (max-width: 768px) {

    #header-carousel,
    #header-carousel .carousel-inner,
    #header-carousel .carousel-item {
        height: auto !important;
    }

    #header-carousel .carousel-item img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

}
/* MOBILE FIX FINAL */

html, body {
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 10px;
  padding-right: 10px;
}

.container-fluid {
  padding-left: 10px;
  padding-right: 10px;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

img {
  max-width: 100%;
  height: auto;
}
.mmct-character {
    position: static;
    left: 10px;
    bottom: 0;
    z-index: 10;
    background: transparent;
}

.mmct-character img {
    width: 120px !important;
    max-width: none !important;
    height: auto;
}

.bg-primary {
    position: relative;
    overflow: hidden;
}
.steering-btn img {
    width: 80px;
}

.mmct-character img {
    width: 80px;
}

.steering-btn img {
    width: 80px;
    display: block;
}
.mmct-btn {
    background: #ffc107;
    color: #000;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.mmct-btn:hover {
    background: #000;
    color: #fff;
}
.mmct-enquiry {
    position: relative;
}
.mmct-enquiry p {
    font-size: 14px;
    color: #000;
    max-width: 160px;
}
.steering-btn {
    width: 90px;
    height: 90px;
  background: rgba(255,255,255,0.4);
backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
line-height: 1.2;
padding: 0;
    text-decoration: none;
    font-weight: bold;
    color: #000;
    margin-top: 10px;
    position: absolute;
left: 65%;
top: 47%;
transform: translate(-50%, -50%);
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

#steering-btn {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

#steering-btn {
    animation: pulse 1.2s infinite;
    transition: 0.3s;
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.6));
}

#steering-btn:active {
    transform: scale(0.9);
}

@keyframes logoFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0px); }
}

.navbar-brand img {
    animation: logoFloat 3s ease-in-out infinite;
    transition: 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.08);
}
@keyframes logoFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0px); }
}

.navbar-brand img {
    animation: logoFloat 3s ease-in-out infinite;
    transition: 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.08);
}
.logo-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #1f2d3d;
}

.logo-text sup {
    font-size: 9px;
}

/* Logo animation (premium subtle) */
@keyframes logoFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0px); }
}
/* Fix mobile menu spacing */
@media (max-width: 991.98px) {
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar .navbar-nav .nav-link {
        padding: 8px 0;
    }
}
.navbar-brand img {
    animation: logoFloat 3s ease-in-out infinite;
    transition: 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.08);
}

/* Navbar spacing */
.navbar {
    padding-top: 8px;
    padding-bottom: 8px;
}
.logo-img {
    height: 60px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

.logo-text sup {
    font-size: 10px;
}

/* smooth premium animation */
@keyframes logoFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
    100% { transform: translateY(0px); }
}

.logo-img {
    animation: logoFloat 3s ease-in-out infinite;
}
@media (max-width: 576px) {
    .logo-img {
        height: 50px;
    }

    .logo-text {
        font-size: 12px;
    }
}
.program-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.program-card:hover {
    transform: translateY(-6px);
}

.program-card h4 {
    font-size: 28px;
    color: #ffc107;
    margin-bottom: 8px;
}

.program-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.program-card .tag {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.program-card ul {
    text-align: left;
    padding-left: 18px;
}

.program-card ul li {
    margin-bottom: 6px;
}

.program-card .outcome {
    margin-top: 12px;
    font-weight: 600;
}

.program-card.highlight {
    border: 2px solid #ffc107;
    transform: scale(1.05);
}

.program-card .btn {
    border-radius: 30px;
}
.program-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-card ul {
    flex-grow: 1;
}

.program-card.highlight {
    transform: scale(1.05);
    z-index: 2;
}

.for-whom {
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
}

.for-list {
    padding-left: 18px;
    font-size: 13px;
    margin-bottom: 10px;
}
.program-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card.highlight {
    border: 2px solid #ffc107;
    transform: scale(1.05);
    z-index: 2;
}

.program-card h4 {
    color: #ffc107;
    font-weight: 700;
}

.program-card h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.tag {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.section-title {
    font-weight: 600;
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 5px;
    color: #555;
    text-transform: uppercase;
}

.program-card ul {
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 13px;
}

.outcome {
    font-size: 13px;
    margin-top: auto;
    font-weight: 500;
}
/* MMCT Steering Wheel Menu */

.mmct-wheel {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 20px auto;
}

/* center */
.wheel-center {
    position: absolute;
    width: 90px;
    height: 90px;
    background: #ffc107;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-center img {
    width: 60px;
}

/* menu items */
.wheel-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #1f2d3d;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
}

/* positions */
.item1 { top: -10px; left: 50%; transform: translateX(-50%); }

.item2 { top: 25%; right: -10px; }
.item3 { bottom: 25%; right: -10px; }

.item4 { bottom: -10px; left: 50%; transform: translateX(-50%); }

.item5 { bottom: 25%; left: -10px; }
.item6 { top: 25%; left: -10px; }
/* hover */
.wheel-item:hover {
    background: #ffc107;
    color: #000;
    transform: scale(1.1);
}
.steering-hub {
    width: 110px;
    height: 110px;
    background: #1e2b3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 12px rgba(0,0,0,0.6);
}

.steering-hub img {
    width: 70px;
}
.steering-hub {
    width: 110px;
    height: 110px;
    background: #1e2b3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 12px rgba(0,0,0,0.6);
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
}

.steering-hub span {
    font-size: 14px;
}
.mmct-wheel {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 40px auto;
}


.mmct-wheel {
    position: relative;
}

/* Horizontal line (left ↔ right) */
.mmct-wheel::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 10px;
    background: #1e2b3a;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    border-radius: 10px;
}

/* Vertical line (center ↓ programs) */
.mmct-wheel::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 130px;
    background: #1e2b3a;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 1;
    border-radius: 10px;
}
.wheel-item {
    position: relative;
    z-index: 2;
}

.wheel-center {
    position: relative;
    z-index: 2;
}
.mmct-wheel {
    position: relative;
    width: 100%;
    height: 350px;
    margin: 40px auto;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.steering-hub {
    width: 90px;
    height: 90px;
    background: #1f2d3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    position: relative;
}

.wheel-item {
    position: absolute;
    color: #1f2d3d;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;

}

/* Positions */
.item1 { top: -20px; left: 50%; transform: translateX(-50%); }

.item2 { top: 25%; right: -20px; }
.item3 { bottom: 25%; right: -20px; }

.item4 { bottom: -20px; left: 50%; transform: translateX(-50%); }

.item5 { bottom: 25%; left: -20px; }
.item6 { top: 25%; left: -20px; }
/* ===== MMCT Steering Circle ===== */
.mmct-wheel::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 12px solid #1e2b3a;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent; /* IMPORTANT */
}
.mmct-wheel {
    overflow: visible;
}
/* RESET MMCT WHEEL TO NORMAL */
.mmct-wheel .wheel-item {
    width: 90px !important;
    height: 90px !important;
    background: #1f2d3d !important;
    border-radius: 50% !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
}
.mmct-wheel {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 30px auto;
  border: 14px solid #243447;
  border-radius: 50%;
}

/* Center hub */
.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.steering-hub {
  width: 70px;
  height: 70px;
  background: #243447;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

/* SPOKES */
.spoke {
  position: absolute;
  width: 12px;
  height: 90px;
  background: #243447;
  top: 50%;
  left: 50%;
  transform-origin: top center;
  border-radius: 6px;
}

/* Bottom */
.spoke-bottom {
  transform: translate(-50%, 0) rotate(180deg);
}

/* Left */
.spoke-left {
  transform: translate(-50%, 0) rotate(225deg);
}

/* Right */
.spoke-right {
  transform: translate(-50%, 0) rotate(135deg);
}
/* Base wheel */
.mmct-wheel {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 30px auto;
  border: 14px solid #243447;
  border-radius: 50%;
}

/* Menu items */
.wheel-item {
  position: absolute;
  width: 90px;
  height: 90px;
  background: #243447;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
}

/* TOP */
.item1 {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* RIGHT */
.item3 {
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}

/* BOTTOM */
.item4 {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* LEFT */
.item6 {
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}
/* TOP */
.item1 {
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

/* TOP RIGHT */
.item2 {
  top: 30px;
  right: -20px;
}

/* RIGHT */
.item3 {
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
}

/* BOTTOM */
.item4 {
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

/* BOTTOM LEFT */
.item5 {
  bottom: 30px;
  left: -20px;
}

/* LEFT */
.item6 {
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}
/* WHEEL BASE */
.mmct-wheel {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 50px auto;
  border: 14px solid #243447;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* CENTER */
.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.steering-hub {
  width: 75px;
  height: 75px;
  background: #243447;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

/* SPOKES */
.spoke {
  position: absolute;
  width: 12px;
  height: 110px;
  background: #243447;
  top: 50%;
  left: 50%;
  transform-origin: top center;
  border-radius: 6px;
}

.spoke-bottom {
  transform: translate(-50%, 0) rotate(180deg);
}

.spoke-left {
  transform: translate(-50%, 0) rotate(225deg);
}

.spoke-right {
  transform: translate(-50%, 0) rotate(135deg);
}

/* MENU ITEMS */
.wheel-item {
  position: absolute;
  width: 95px;
  height: 95px;
  background: #243447;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  z-index: 2;
  transition: 0.3s;
}

/* HOVER EFFECT (premium feel) */
.wheel-item:hover {
  background: #f4b400;
  color: #000;
  transform: scale(1.08);
}

/* POSITIONS */

/* TOP */
.item1 {
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

/* TOP RIGHT */
.item2 {
  top: 20px;
  right: -70px;
}

/* RIGHT */
.item3 {
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
}

/* BOTTOM */
.item4 {
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}

/* BOTTOM LEFT */
.item5 {
  bottom: 20px;
  left: -70px;
}

/* LEFT */
.item6 {
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
}
.navbar-nav {
  overflow: visible !important;
}
.mmct-wheel {
  position: relative;
  width: 260px;   /* reduce size */
  height: 260px;
  margin: 20px auto;
  border-radius: 50%;
  overflow: visible;
}
.navbar-nav {
  width: 100% !important;
  justify-content: center;
}
.logo-img {
  width: 80px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-divider {
    border-bottom: 1px solid #e5e5e5;
    margin: 30px 0;
}

.section-divider-yellow {
    width: 60px;
    height: 3px;
    background: #f2b705;
    margin: 25px 0;
    border-radius: 2px;
}

.cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.mmct-character {
    width: 125px;
}

.mmct-steering {
    width: 85px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.mmct-steering:hover {
    transform: scale(1.1);
}
.mmct-character {
    width: 125px;
    margin-top: 10px;   /* 🔥 push slightly down */
}

.mmct-steering {
    width: 85px;
    margin-top: 20px;   /* 🔥 bring slightly down */
}
/* ✅ MMCT CTA TEXT FIX */
.mmct-cta p strong {
    font-size: 18px;
    color: #333;
}

.mmct-cta p {
    font-size: 15px;
    color: #777;
}

.mmct-cta p span {
    color: #f2b705;
    font-weight: 500;
}
/* 🔥 Section divider line */
.section-divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin: 30px 0;
}

/* 🔥 small brand accent line */
.section-divider-yellow {
    width: 60px;
    height: 3px;
    background: #f2b705;
    margin: 12px auto 30px;
    border-radius: 2px;
}
/* 🔥 MENU CHARACTER SECTION */

.menu-guide {
    text-align: center;
    padding: 30px 20px;
}

.menu-character {
    width: 100px;
    margin-bottom: 10px;
}

.menu-guide p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.menu-guide strong {
    color: #000;
}
.mmct-box {
    border: 2px solid #f4b400;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
    background: #fff;
}

.mmct-box h3 {
    font-weight: 700;
}

.mmct-box h5 {
    font-weight: 700;
    margin-top: 20px;
}

.mmct-box p {
    font-weight: 500;
}

.mmct-sub {
    font-weight: 600;
    margin-bottom: 15px;
}

.mmct-img {
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
}
.mmct-cta {
  margin-top: 20px !important;
}
/* CTA Layout */
.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Character */
.mmct-character {
  width: 140px;
  max-width: 100%;
}

/* Steering */
.mmct-steering {
  width: 120px;
  max-width: 100%;
  display: inline-block;   
  cursor: pointer;
  animation: pulse 1.5s infinite;
}

/* Animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Instruction text */
.tap-instruction {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Button */
.primary-btn {
  display: inline-block;
  background: #f4b400;
  color: #000;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 15px;
}
.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Keep side-by-side even on mobile */
@media (max-width: 768px) {
  .cta-row {
    flex-direction: row;
  }
}

.mmct-character {
  width: 130px;
  max-width: 100%;
}

.mmct-steering {
  width: 140px;
  max-width: 100%;
  cursor: pointer;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.tap-instruction {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.primary-btn {
  display: inline-block;
  background: #f4b400;
  color: #000;
  padding: 14px 24px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 20px;
}
/* STEP 2: Character + Wheel alignment */

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .cta-row {
    flex-direction: row; /* keep side-by-side */
    justify-content: center;
  }

  .mmct-character {
    width: 120px;
    height: auto;
  }

  .mmct-steering {
    width: 90px;
    height: auto;
  }
}
.mmct-table th {
  background: #f4c400;
  color: #000;
  text-align: center;
}

.mmct-table td {
  text-align: center;
  vertical-align: middle;
}

.mmct-table tr.highlight {
  background: #fff3c4;
  font-weight: bold;
}

.mmct-table tr:hover {
  background: #fff8e1;
}

.mmct-table .disabled {
  background: #f5f5f5;
  color: #888;
  font-style: italic;
}
.pricing-box {
  background: #ffffff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border-top: 4px solid #f4c400;
}

@media (min-width: 768px) {
  .pricing-wrapper {
    display: flex;
    gap: 20px;
  }

  .pricing-box {
    width: 50%;
  }
}
/* Table styling */
.mmct-table th {
  background: #f4c400;
  color: #000;
  text-align: center;
}

.mmct-table td {
  text-align: center;
  vertical-align: middle;
}

/* Highlight main row */
.mmct-table tr.highlight {
  background: #fff3c4;
  font-weight: bold;
}

/* Hover effect */
.mmct-table tr:hover {
  background: #fff8e1;
}

/* Disabled row */
.mmct-table .disabled {
  background: #f5f5f5;
  color: #888;
  font-style: italic;
}

/* Wrapper spacing */
.pricing-wrapper {
  margin-top: 20px;
}

/* Pricing box (card) */
.pricing-box {
  background: #ffffff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border-top: 4px solid #f4c400;
  transition: 0.3s ease;
}

/* Hover lift effect */
.pricing-box:hover {
  transform: translateY(-4px);
}

/* Title inside box */
.pricing-box h4 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #0f2a44;
}

/* Desktop layout (2 columns) */
@media (min-width: 768px) {
  .pricing-wrapper {
    display: flex;
    gap: 20px;
  }

  .pricing-box {
    width: 50%;
  }
}
/* Fix table overflow on mobile */
.table-responsive {
  overflow-x: auto;
}

/* Make table slightly smaller on mobile */
@media (max-width: 576px) {

  .mmct-table th,
  .mmct-table td {
    font-size: 13px;
    padding: 8px;
  }

  .pricing-box {
    padding: 15px;
  }

  .pricing-box h4 {
    font-size: 18px;
  }
}
/* Smooth horizontal scroll */
.table-responsive {
  overflow-x: auto;
}

/* Make table fit better on mobile */
@media (max-width: 576px) {

  .mmct-table {
    min-width: 500px; /* prevents breaking */
  }

  .mmct-table th,
  .mmct-table td {
    font-size: 12px;
    padding: 8px;
  }

  .pricing-box {
    padding: 15px;
  }

  .pricing-box h4 {
    font-size: 18px;
  }
}
/* Menu container spacing */
.mobile-menu {
  padding: 20px;
}

/* Menu items */
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  margin-bottom: 10px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #0f2a44;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Hover effect */
.mobile-menu a:hover {
  background: #fff8e1;
  transform: translateX(5px);
}

/* Active menu (HOME) */
.mobile-menu a.active {
  background: #f4c400;
  color: #000;
  font-weight: 600;
}

/* Add subtle divider */
.mobile-menu a:not(:last-child) {
  border-bottom: 1px solid #eee;
}

/* Book button */
.mobile-menu .menu-cta {
  margin-top: 20px;
  display: block;
  text-align: center;
  background: #f4c400;
  color: #000;
  padding: 16px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Hover CTA */
.mobile-menu .menu-cta:hover {
  background: #e0ad00;
}
/* Mobile menu styling */
.mobile-menu .nav-link {
  display: block;
  padding: 14px 16px;
  margin-bottom: 8px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #0f2a44;
  transition: 0.3s ease;
}

/* Hover */
.mobile-menu .nav-link:hover {
  background: #fff8e1;
  transform: translateX(5px);
}

/* Active (Home) */
.mobile-menu .nav-link.active {
  background: #f4c400;
  color: #000;
  font-weight: 600;
}

/* CTA button */
.mobile-menu .menu-cta {
  margin-top: 15px;
  text-align: center;
  background: #f4c400;
  color: #000 !important;
  border-radius: 12px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* CTA hover */
.mobile-menu .menu-cta:hover {
  background: #e0ad00;
}
.mobile-menu .nav-link.active {
  background: #f4c400 !important;
  color: #000 !important;   /* 👈 THIS FIX */
  font-weight: 700;
}
.mobile-menu .nav-link {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.carousel-caption h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.carousel-caption p {
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
}
/* FIX NAVBAR DROPDOWN ISSUE */
.navbar {
  position: fixed;
  z-index: 9999;
  width: 100%;
}

.navbar-collapse {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
}
/* FINAL NAVBAR CLICK FIX */
.navbar {
  position: fixed !important;
  z-index: 99999 !important;
}

.navbar-collapse {
  z-index: 99999 !important;
  position: relative;
}

.container-fluid,
.container {
  position: relative;
  z-index: 1;
}