/********** Template CSS **********/
:root {
    --primary: #0b5cad;
    --secondary: #2eb135;
    --light: #F8F9FA;
    --dark: #063f84;
}

.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-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.brand-logo {
    width: 250px;
    height: auto;
    max-height: 72px;
    object-fit: contain;
}

.footer-logo {
    width: 230px;
    height: auto;
    object-fit: contain;
}

.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-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        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;
    text-align: start;
    background: rgba(3, 35, 91, 0.62);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

@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;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
}

.page-header {
    background: linear-gradient(rgba(3, 35, 91, .72), rgba(3, 35, 91, .72)), url(../img/monlink/hero-main-1536x812.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .65);
}

.facts-overlay h1 {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}


/*** Service ***/
/* General styles for the Services section */
.service-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}

/* Card hover effect */
.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Fixed image size */
.service-item img {
  width: 100%;
  height: 200px; /* Fixed height for all images */
  object-fit: cover; /* Ensure the images cover the space without stretching */
}

/* Text inside the service cards */
.service-text {
  padding: 20px;
}

.service-text h5 {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 15px;
}

.service-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Link style for "READ MORE" */
.service-text a {
  color: var(--secondary);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-text a:hover {
  color: var(--secondary);
}

/* Button Style */
.bannerbtn {
  background-color: var(--secondary);
  color: white;
  border: none;
  font-weight: bold;
  text-align: center;
  padding: 12px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.bannerbtn:hover {
  background-color: var(--secondary);
  color: white;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 767px) {
  .service-item {
    margin-bottom: 20px;
  }
  
  .service-text h5 {
    font-size: 1.1rem;
  }
  
  .service-text p {
    font-size: 0.9rem;
  }
}

/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(3, 35, 91, 0.78), rgba(11, 92, 173, 0.72)), url(../img/monlink/hero-training-736x449.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    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: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}


.topnavbar{
    background-color: var(--primary);
    color: white;
}

.bannerbtn{
    background-color: var(--secondary);
    border: none;
    color: white;
}

.form-color{
    background-color: white;
}



.bgimg{
    width: 100%;
    height: 100vh;
}



.colorblue{
    background-color: var(--primary);
    color:white ;
    color: var(--secondary);
}
.colorgreen{
    background-color: var(--secondary);
    color: white;
}

.greenborder{
    border-left-color: var(--secondary);
    border: 10px;
}

.text-color{ 
    color: var(--secondary);
}

.textcolorblue{
    color: var(--primary);
}

.border-color{
    border-left:2px solid var(--secondary);
}

.colorblue-footer{
    background-color: var(--dark);
    color: white;
}

.lastfootercolor{
    background-color: var(--secondary);
}





/* =========================
   WHY CHOOSE US – GRADIENT BG
========================= */

.dark-overlay {
  position: relative;
  padding: 100px 0;
  background:
    linear-gradient(
      135deg,
      rgba(3, 35, 91, 0.86),
      rgba(11, 92, 173, 0.78)
    ),
    url("../img/monlink/hero-main-1536x812.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Remove old overlay */
.dark-overlay .overlay {
  display: none;
}
.why-choose-us .section-tag {
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
}

.why-choose-us h2 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-choose-us .lead {
  color: #e7dfd8;
  font-size: 17px;
  line-height: 1.7;
}

.why-choose-us .why-card {
  background: rgba(255, 255, 255, 0.058);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 35px 25px;
  height: 100%;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-choose-us .why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.why-choose-us .why-card i {
  font-size: 42px;
  color: var(--secondary);
  margin-bottom: 18px;
  display: inline-block;
}


.why-choose-us .why-card h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-choose-us .why-card p {
  color: #e5ddd6;
  font-size: 15px;
  line-height: 1.6;
}


@media (max-width: 991px) {
  .dark-overlay {
    padding: 70px 0;
  }

  .why-choose-us h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .why-choose-us .why-card {
    padding: 28px 20px;
  }

  .why-choose-us .why-card i {
    font-size: 36px;
  }
}



/* General section styles */
.about.section {
  padding: 50px 0;
  background-color: #f8f8f8;
}

/* Section Heading */
.section-heading {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 20px;
}

/* Paragraph styling */
.lead {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Feature Cards */
.feature-box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: all 0.3s ease-in-out;
  text-align: center;
  text-align: center;
}

/* Hover effect on cards */
.feature-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
}

/* Icon Container */
.icon-container {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

/* Title of each card */
.feature-box h4 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
  font-weight: bold;
}

/* Card description */
.feature-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 767px) {
  .section-heading {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

  .feature-box h4 {
    font-size: 1.25rem;
  }
}





/* =========================
   ABOUT US SECTION
========================= */

.about-us {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-us .about-image img {
  width: 100%;
  height: 40rem;
  border-radius: 10px;
  object-fit: cover;
  

}

/* Right content */
.about-us .about-content {
  padding-left: 30px;
}

.about-us .section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-us h2 {
  font-size: 38px;
  font-weight: 700;
  color: #030024;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-us .about-text {
  font-size: 16px;
  line-height: 1.7;
  color: #161616;
  margin-bottom: 15px;
}

/* Feature list */
.about-us .about-features {
  margin-top: 30px;
}

.about-us .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.about-us .feature-item .icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background-color: rgba(46, 177, 53, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 22px;
  margin-right: 15px;
}

.about-us .feature-text h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

.about-us .feature-text p {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}




/* ===============================
   MONLINK SERVICES DETAILS SECTION
================================= */

.services-details-section {
  background: linear-gradient(to bottom, #f8fbff, #ffffff);
}

.section-header {
  max-width: 850px;
  margin: 0 auto;
}

.section-header .service-tag {
  display: inline-block;
  background: rgba(46, 177, 53, 0.12);
  color: var(--secondary);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
}

/* Main service card */
.service-detail-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 72, 180, 0.08);
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 90, 255, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 72, 180, 0.15);
}

/* Fixed image size */
.service-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-detail-card:hover .service-image img {
  transform: scale(1.08);
}

/* Content */
.service-content {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-intro {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Bullet list */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.service-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #444;
  font-size: 0.96rem;
  line-height: 1.6;
}

.service-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: bold;
  font-size: 15px;
}

/* Bottom area */
.service-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.service-badge {
  display: inline-block;
  background: rgba(11, 73, 193, 0.08);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Light green button */
.service-btn {
  background: var(--secondary);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-btn:hover {
  background: var(--secondary);
  color: #fff !important;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .service-image {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

  .service-content {
    padding: 22px 18px;
  }

  .service-content h3 {
    font-size: 1.4rem;
  }

  .service-image {
    height: 230px;
  }

  .service-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-btn {
    width: 100%;
    text-align: center;
  }
}



/* ===============================
   MONLINK CONTACT SECTION STYLING
================================= */

.contact-info p {
  font-size: 15px;
  color: #444;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  line-height: 1.7;
}

.contact-info i {
  color: var(--secondary);
  font-size: 18px;
  min-width: 24px;
}

/* Contact form wrapper */
.contact-form-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 28px;
  box-shadow: 0 15px 40px rgba(0, 72, 180, 0.08);
  border: 1px solid rgba(0, 89, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.contact-form-box::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  display: none;
}

.contact-form-box::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -40px;
  width: 160px;
  height: 160px;
  display: none;
}

/* Floating input fields */
.form-floating > .form-control,
.form-floating > .form-select {
  height: 60px;
  border-radius: 14px;
  border: 1px solid #e6edf7;
  background: #f8fbff !important;
  font-size: 15px;
  color: #222;
  padding-left: 18px;
  transition: all 0.3s ease;
  box-shadow: none !important;
}

.form-floating > textarea.form-control {
  height: 150px !important;
  border-radius: 16px;
  padding-top: 20px;
}

/* Focus styling */
.form-floating > .form-control:focus,
.form-floating > .form-select:focus,
.form-floating > textarea.form-control:focus {
  border-color: var(--primary);
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(11, 73, 193, 0.08) !important;
}

/* Labels */
.form-floating > label {
  color: #666;
  padding-left: 18px;
  font-size: 14px;
}
/* Contact button only */
.contact-btn {
  background: var(--secondary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.22);
}

.contact-btn:hover {
  background: var(--secondary) !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 122, 0, 0.28);
}

/* Left title styling */
.border-color {
  border-left: 5px solid var(--secondary) !important;
}

.text-color {
  color: var(--secondary) !important;
}

/* Section title */
.display-6 {
  color: var(--primary);
  font-weight: 800;
}

/* Map frame style */
.map-box {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 72, 180, 0.08);
  border: 1px solid rgba(0, 89, 255, 0.06);
  height: 100%;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-form-box {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .contact-form-box {
    padding: 25px 18px;
  }

  .display-6 {
    font-size: 1.9rem;
  }

  .contact-btn {
    width: 100%;
  }
}

/* Video Section Background */
.video-section {
    background: linear-gradient(135deg, var(--dark), var(--primary));
    color: #fff;
}

/* Heading Styling */
.video-section h1 {
    color: #fff;
    font-weight: 700;
}

.video-section h6 {
    letter-spacing: 2px;
    text-transform: uppercase;
}

.video-section p {
    color: #cbd5e1;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
}

/* Video Styling */
.video-wrapper video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    outline: none;
}

/* Optional Glow Border */
.video-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, #00ffcc, #00aaff, #00ffcc);
    -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .video-wrapper video {
        height: 280px;
    }
}

/* ===============================
   MONLINK MODERN EXPERIENCE LAYER
================================= */

body {
  font-family: "Poppins", "Roboto", sans-serif;
  color: #1b2430;
  background: #ffffff;
}

.navbar {
  box-shadow: 0 10px 30px rgba(3, 35, 91, 0.05);
}

.navbar .dropdown-menu {
  border-radius: 0 0 14px 14px;
  box-shadow: 0 20px 45px rgba(3, 35, 91, 0.12);
  padding: 12px;
}

.navbar .dropdown-item {
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 14px;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
  background: rgba(46, 177, 53, 0.12);
  color: var(--secondary);
}

.course-dropdown-menu {
  max-height: 460px;
  min-width: 320px;
  overflow-y: auto;
}

.carousel-item img {
  min-height: 620px;
  object-fit: cover;
}

.carousel-caption {
  background:
    radial-gradient(circle at 20% 20%, rgba(46, 177, 53, 0.24), transparent 28%),
    linear-gradient(110deg, rgba(3, 35, 91, 0.88), rgba(3, 35, 91, 0.54));
}

.carousel-caption h1 {
  max-width: 920px;
  font-weight: 800;
  line-height: 1.05;
}

.section-tag {
  display: inline-block;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ceo-message-section {
  background:
    linear-gradient(180deg, #ffffff, #f3f4f6);
  overflow: hidden;
}

.ceo-portrait-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  background: #d1d5db;
  box-shadow: 0 28px 70px rgba(31, 41, 55, 0.18);
}

.ceo-portrait-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  z-index: 2;
  pointer-events: none;
}

.ceo-portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
}

.ceo-nameplate {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  padding: 22px;
  border-radius: 18px;
  background: rgba(55, 65, 81, 0.84);
  backdrop-filter: blur(10px);
  color: #fff;
}

.ceo-nameplate span {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.ceo-nameplate h4 {
  color: #fff;
  margin: 6px 0 0;
}

.ceo-quote {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-left: 5px solid var(--secondary);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(3, 35, 91, 0.08);
}

.ceo-quote i {
  color: var(--secondary);
  font-size: 34px;
}

.ceo-quote p {
  margin: 0;
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
}

.process-section {
  background: #f6faff;
}

.process-card,
.promise-card,
.staff-help-card,
.staff-help-card,
.bundle-card,
.metric-card {
  height: 100%;
  border: 1px solid rgba(3, 35, 91, 0.08);
  border-radius: 18px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 18px 42px rgba(3, 35, 91, 0.07);
  transition: transform .35s ease, box-shadow .35s ease;
}

.process-card:hover,
.promise-card:hover,
.staff-help-card:hover,
.staff-help-card:hover,
.bundle-card:hover,
.metric-card:hover,
.detail-grid > div:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(3, 35, 91, 0.12);
}

.process-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(46, 177, 53, 0.14);
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 22px;
}

.process-card h4,
.promise-card h4,
.staff-help-card h4,
.staff-help-card h4,
.bundle-card h4 {
  color: var(--primary);
  font-weight: 800;
}

.solution-bundles-section {
  background: linear-gradient(180deg, #ffffff, #f6faff);
}

.bundle-card {
  position: relative;
  overflow: hidden;
}

.bundle-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -48px;
  top: -48px;
  border-radius: 50%;
  background: rgba(46, 177, 53, 0.1);
}

.bundle-card i {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(11, 92, 173, 0.1);
  color: var(--primary);
  font-size: 28px;
}

.bundle-card a {
  color: var(--secondary);
  font-weight: 800;
  text-decoration: none;
}

.project-highlights-section {
  background: #ffffff;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 230px);
  gap: 18px;
}

.highlight-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: 220px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 55px rgba(3, 35, 91, 0.14);
}

.highlight-card.large {
  grid-row: span 2;
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(3, 35, 91, 0.88));
}

.highlight-card > div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.highlight-card span {
  color: var(--secondary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.highlight-card h4 {
  color: #fff;
  font-weight: 800;
  margin: 8px 0 0;
}

.value-metrics-section {
  background: linear-gradient(135deg, var(--dark), var(--primary));
}

.metric-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.metric-card h3 {
  color: var(--secondary);
  font-size: 2rem;
  font-weight: 800;
}

.metric-card p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.home-faq-section {
  background: #f6faff;
}

.modern-faq .accordion-item {
  margin-bottom: 14px;
  border: 1px solid rgba(3, 35, 91, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(3, 35, 91, 0.06);
}

.modern-faq .accordion-button {
  color: var(--primary);
  font-weight: 800;
  box-shadow: none;
}

.modern-faq .accordion-button:not(.collapsed) {
  background: rgba(46, 177, 53, 0.1);
  color: var(--primary);
}

.industries-section {
  background:
    linear-gradient(135deg, rgba(3, 35, 91, 0.94), rgba(11, 92, 173, 0.9)),
    url("../img/monlink/hero-training-736x449.jpg") center/cover;
  color: #fff;
}

.industries-section h2,
.industries-section p {
  color: #fff;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.industry-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-weight: 700;
}

.industry-pill i {
  color: var(--secondary);
  font-size: 26px;
}

.staff-cta-section {
  background: #ffffff;
}

.staff-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(3, 35, 91, 0.94), rgba(11, 92, 173, 0.86)),
    url("../img/monlink/hero-main-1536x812.jpg") center/cover;
  color: #fff;
  box-shadow: 0 28px 70px rgba(3, 35, 91, 0.18);
}

.staff-cta h2,
.staff-cta p {
  color: #fff;
  margin-bottom: 8px;
}

.service-promise-section {
  background: #f6faff;
}

.promise-panel {
  height: 100%;
  padding: 34px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--dark));
}

.promise-panel h2,
.promise-panel p {
  color: #fff;
}

.promise-card i,
.staff-help-card i,
.staff-help-card i {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(46, 177, 53, 0.14);
  color: var(--secondary);
  font-size: 26px;
}

.service-hero {
  min-height: 540px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.service-hero .container {
  max-width: 980px;
}

.service-hero span,
.staff-login-hero span {
  display: inline-block;
  color: var(--secondary);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-hero h1,
.staff-login-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.04;
  max-width: 900px;
}

.service-hero p,
.staff-login-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  line-height: 1.8;
}

.service-detail-page h2 {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 18px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.detail-grid > div {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(3, 35, 91, 0.08);
  box-shadow: 0 16px 38px rgba(3, 35, 91, 0.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.detail-grid i {
  color: var(--secondary);
  font-size: 34px;
  margin-bottom: 14px;
}

.detail-grid h4 {
  color: var(--primary);
  font-weight: 800;
}

.service-side-card {
  position: sticky;
  top: 110px;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f6faff);
  border: 1px solid rgba(3, 35, 91, 0.08);
  box-shadow: 0 20px 55px rgba(3, 35, 91, 0.11);
}

.service-side-card h3 {
  color: var(--primary);
  font-weight: 800;
}

.detail-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--dark), var(--primary));
}

.detail-cta h2,
.detail-cta p {
  color: #fff;
}

.staff-login-hero,
.staff-login-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(46, 177, 53, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(3, 35, 91, 0.94), rgba(11, 92, 173, 0.86)),
    url("../img/monlink/hero-main-1536x812.jpg") center/cover;
}

.staff-login-hero span {
  display: inline-block;
  color: var(--secondary);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.staff-login-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.04;
}

.staff-login-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  line-height: 1.8;
}

.profile-hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 90px 0;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(3, 35, 91, 0.95), rgba(11, 92, 173, 0.78)),
    url("../img/monlink/hero-main-1536x812.jpg") center/cover;
}

.profile-hero h1 {
  max-width: 840px;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  font-weight: 800;
  line-height: 1.04;
}

.profile-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.8;
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.profile-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.profile-portrait {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  border-radius: 24px;
  background: #d1d5db;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.profile-portrait img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center top;
}

.profile-nameplate {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: 18px;
  color: #fff;
  background: rgba(3, 35, 91, 0.86);
  backdrop-filter: blur(10px);
}

.profile-nameplate span {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.profile-nameplate h2 {
  color: #fff;
  margin: 8px 0 0;
  font-size: 1.35rem;
  line-height: 1.35;
}

.profile-recognition {
  background: linear-gradient(180deg, #ffffff, #f6faff);
}

.recognition-card {
  height: 100%;
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(3, 35, 91, 0.08);
  box-shadow: 0 18px 42px rgba(3, 35, 91, 0.07);
  transition: transform .35s ease, box-shadow .35s ease;
}

.recognition-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(3, 35, 91, 0.12);
}

.recognition-card i {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(46, 177, 53, 0.14);
  color: var(--secondary);
  font-size: 28px;
}

.recognition-card h4 {
  color: var(--primary);
  font-weight: 800;
}

.profile-message {
  background: #fff;
}

.profile-message-card {
  height: 100%;
  padding: 36px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--dark), var(--primary));
  color: #fff;
  box-shadow: 0 24px 60px rgba(3, 35, 91, 0.18);
}

.profile-message-card i {
  color: var(--secondary);
  font-size: 46px;
}

.profile-message-card p {
  color: #fff;
  margin: 20px 0;
  font-size: 1.35rem;
  line-height: 1.65;
  font-weight: 700;
}

.profile-message-card h5 {
  color: var(--secondary);
  margin: 0;
}

.profile-focus-list {
  display: grid;
  gap: 14px;
}

.profile-focus-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f6faff;
  color: var(--primary);
  font-weight: 700;
}

.profile-focus-list i {
  color: var(--secondary);
  font-size: 20px;
  margin-top: 2px;
}

/* ===============================
   TRAINING REGISTRATION PAGE
================================= */

.training-page-body {
  background: #ffffff;
}

.training-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e6edf7;
  backdrop-filter: blur(12px);
}

.training-nav .container,
.training-footer .container {
  max-width: 1380px;
}

.training-nav .container {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.training-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #101828;
  text-decoration: none;
}

.training-brand:hover {
  color: #101828;
}

.training-brand-icon {
  position: relative;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  background: var(--primary);
  font-size: 27px;
}

.training-brand-icon small {
  position: absolute;
  right: -6px;
  bottom: -6px;
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary);
  border: 3px solid #fff;
  font-size: 14px;
}

.training-brand strong,
.training-brand em {
  display: block;
  line-height: 1.15;
}

.training-brand strong {
  font-size: 20px;
  font-weight: 800;
}

.training-brand em {
  color: #667085;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.training-nav nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.training-nav nav a {
  color: #475467;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

.training-nav-btn {
  padding: 13px 22px;
  border-radius: 12px;
  color: #fff !important;
  background: var(--primary);
  box-shadow: 0 10px 22px rgba(11, 109, 204, 0.22);
}

.training-hero {
  padding: 76px 0;
  color: #fff;
  background:
    linear-gradient(118deg, rgba(3, 35, 91, 0.88), rgba(11, 92, 173, 0.82)),
    url("../img/monlink/service-training-1536x1024.jpg") center/cover;
}

.training-hero .container,
.training-courses .container,
.training-register .container {
  max-width: 1380px;
}

.training-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 8px 17px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 800;
}

.training-hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.2rem, 4.8vw, 3.9rem);
  font-weight: 800;
  line-height: 1.08;
}

.training-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 20px 0 0;
}

.training-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.training-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 15px 29px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.training-btn:hover {
  transform: translateY(-2px);
}

.training-btn-green {
  color: #fff;
  background: #18b94d;
}

.training-btn-green:hover,
.training-btn-blue:hover {
  color: #fff;
}

.training-btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.training-btn-outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.training-btn-blue {
  color: #fff;
  background: var(--primary);
}

.training-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 640px;
  margin-top: 32px;
}

.training-stats div {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.training-stats strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.training-stats span {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  text-transform: uppercase;
}

.enrollment-card {
  position: relative;
  margin-left: auto;
  max-width: 560px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(3, 35, 91, 0.25);
  backdrop-filter: blur(12px);
}

.enrollment-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.enrollment-head > i {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--primary);
  background: #fff;
  font-size: 25px;
}

.enrollment-head h3,
.enrollment-head p {
  margin: 0;
}

.enrollment-head h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.enrollment-head p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.enrollment-card ul {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.enrollment-card li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 16px;
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  font-size: 17px;
  font-weight: 700;
}

.enrollment-card li i {
  color: #20c963;
  font-size: 20px;
}

.training-card-cta {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--primary);
  background: #fff;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.training-card-cta:hover {
  color: var(--primary);
}

.seat-badge {
  position: absolute;
  left: -30px;
  bottom: -30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  border-radius: 22px;
  color: #fff;
  background: #18b94d;
  box-shadow: 0 18px 38px rgba(3, 35, 91, 0.22);
  font-size: 17px;
  font-weight: 800;
}

.training-courses {
  padding: 86px 0 95px;
  background: #fff;
}

.compact-courses {
  background: #f6faff;
}

.training-section-head {
  max-width: 850px;
  margin-bottom: 48px;
}

.training-section-head span {
  display: inline-block;
  margin-bottom: 12px;
  color: #009f3f;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.training-section-head h2 {
  color: #040b19;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.training-section-head p {
  color: #475467;
  font-size: 1.15rem;
  line-height: 1.65;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.course-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 176px;
  padding: 24px 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #dce7f5;
  box-shadow: 0 12px 28px rgba(3, 35, 91, 0.07);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.course-card:hover,
.course-card.active {
  transform: translateY(-4px);
  border-color: rgba(46, 177, 53, 0.55);
  box-shadow: 0 18px 40px rgba(11, 109, 204, 0.13);
}

.course-card > i {
  display: inline-flex;
  width: 50px;
  height: 50px;
  min-width: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: var(--primary);
  background: #eaf4ff;
  font-size: 23px;
}

.course-card.active > i {
  color: #fff;
  background: var(--primary);
}

.course-card h3 {
  color: #050b16;
  font-size: 1.22rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.course-card p {
  color: #475467;
  margin: 0;
}

.course-desc {
  min-height: 72px;
  line-height: 1.55;
}

.course-meta {
  display: inline-flex;
  margin-top: 12px;
  color: var(--secondary);
  font-size: 0.88rem;
  font-weight: 800;
}

.training-register {
  padding: 90px 0;
  background: #f6faff;
}

.training-register h2 {
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.training-register p {
  color: #475467;
  font-size: 1.08rem;
  line-height: 1.75;
}

.register-note {
  display: flex;
  gap: 15px;
  margin-top: 26px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dce7f5;
  box-shadow: 0 12px 28px rgba(3, 35, 91, 0.06);
}

.register-note i {
  color: var(--secondary);
  font-size: 25px;
}

.register-note strong,
.register-note span {
  display: block;
}

.register-note strong {
  color: var(--primary);
}

.register-note span {
  color: #667085;
}

.training-form {
  padding: 34px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #dce7f5;
  box-shadow: 0 22px 55px rgba(3, 35, 91, 0.1);
}

.training-form label {
  display: block;
  margin-bottom: 8px;
  color: #344054;
  font-weight: 800;
}

.training-form input,
.training-form select,
.training-form textarea {
  width: 100%;
  border: 1px solid #dce7f5;
  border-radius: 14px;
  background: #f8fbff;
  color: #101828;
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.training-form input,
.training-form select {
  min-height: 56px;
}

.training-form textarea {
  resize: vertical;
}

.training-form input:focus,
.training-form select:focus,
.training-form textarea:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11, 109, 204, 0.1);
}

.training-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--primary);
  font-size: 17px;
  font-weight: 800;
}

.training-footer {
  padding: 26px 0;
  background: #fff;
  border-top: 1px solid #e6edf7;
}

.training-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.training-footer p,
.training-footer span {
  margin: 0;
  color: #475467;
}

@media (max-width: 991px) {
  .training-nav .container {
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .training-nav nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .training-hero {
    padding: 64px 0;
  }

  .enrollment-card {
    margin-left: 0;
  }

  .seat-badge {
    position: static;
    margin-top: 18px;
  }

  .course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .training-brand strong {
    font-size: 17px;
  }

  .training-brand em {
    font-size: 11px;
  }

  .training-hero h1 {
    font-size: 2.55rem;
  }

  .training-hero p {
    font-size: 1.05rem;
  }

  .training-stats,
  .course-grid {
    grid-template-columns: 1fr;
  }

  .training-btn {
    width: 100%;
  }

  .training-form {
    padding: 22px;
  }

  .training-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .carousel-item img {
    min-height: 520px;
  }

  .staff-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
  }

  .industry-grid,
  .detail-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .highlight-card.large {
    grid-row: auto;
  }

  .ceo-portrait-card,
  .ceo-portrait-card img {
    min-height: 430px;
  }
}

@media (max-width: 576px) {
  .brand-logo {
    width: 190px;
  }

  .carousel-caption h1 {
    font-size: 2.1rem;
  }

  .ceo-nameplate {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .service-hero,
  .staff-login-hero,
  .staff-login-hero {
    min-height: 520px;
  }

  .profile-hero {
    min-height: auto;
    padding: 70px 0;
  }

  .profile-portrait,
  .profile-portrait img {
    min-height: 460px;
  }
}
