/* * ===== HEADER CSS ===== */ */

.technology-card-front a {
    color: #fa9805;
    text-decoration: none;
}

a {
    color: blue;
    text-decoration: underline;
}

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    padding: 3px 10px;
    position: fixed;
    width: 100%;
    top: 0;
    border-radius: 0px 0px 50px 50px;
    border-bottom: 4px solid #fa9805;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 100px;
    margin-right: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

/* Updated Active Link Styling */
.nav-links li a {
    text-decoration: none;
    color: #001a33;
    font-weight: 600;
    margin-right: 12px;
    font-size: 15px;
    padding: 4px 0;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
}

.nav-links li a.active {
    color: #fa9805;
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fa9805;
    animation: underline 0.3s ease-out;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fa9805;
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

@keyframes underline {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Responsive Auth Buttons Container */
.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Desktop Auth Buttons */
.desktop-auth {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

/* Mobile Auth Buttons */
.mobile-auth {
    display: none;
}

/* Responsive Button Styles */
.login-btn {
    background-color: #002936;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.login-btn.register {
    background-color: #fa9805;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color:white;
}

.login-btn.register:hover {
    background-color: #fa9805;
}

/* Mobile Menu Auth Buttons */
.mobile-auth-buttons {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.mobile-auth-btn {
    background-color: #001a33;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
}

.mobile-auth-btn.register {
    background-color: #3498db;
}

.mobile-auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hamburger Styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger div {
    width: 27px;
    height: 3px;
    background-color: #2c3e50;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    padding-top: 120px !important;
    width: 280px;
    height: 100%;
    background-color: #ffffff;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    padding: 90px 25px 30px;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    left: 0;
}

.mobile-links {
    list-style: none;
}

.mobile-links li {
    margin-bottom: 20px;
}

.mobile-links li a {
    text-decoration: none;
    color: #34495e;
    font-size: 18px;
    font-weight: 600;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.mobile-links li a:hover {
    background-color: #f8f9fa;
    color: #3498db;
    transform: translateX(5px);
}

/* Hamburger Animation */
.hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Scrolled Header */
.header-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Mobile active link */
.mobile-links li a.active {
    color: #fa9805;
    font-weight: 600;
    background: rgba(13, 95, 249, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    display: block;
}

/* ===== DROPDOWN SUBMENU STYLES ===== */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(13, 95, 249, 0.15);
    min-width: 280px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, top 0.25s ease;
    z-index: 9999;
    border-top: 3px solid #fa9805;
}

.dropdown-menu-custom::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fa9805;
}

.has-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.dropdown-menu-custom li {
    margin: 0;
    padding: 0;
}

.dropdown-menu-custom li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    color: #333 !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu-custom li a i {
    font-size: 18px;
    color: #fa9805;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.dropdown-menu-custom li a:hover {
    background: #f0f7ff;
    color: #fa9805 !important;
    padding-left: 26px;
}

.dropdown-menu-custom li a:hover i {
    color: #fa9805;
}

.dropdown-menu-custom li:not(:last-child) a {
    border-bottom: 1px solid #f0f0f0;
}

/* ===== MOBILE DROPDOWN STYLES ===== */
.mobile-has-dropdown .mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-has-dropdown.open .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #f0f7ff;
    border-radius: 8px;
}

.mobile-has-dropdown.open .mobile-dropdown-list {
    max-height: 860px;
    margin-top: 6px;
    margin-bottom: 6px;
}

.mobile-dropdown-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 14px;
    color: #333 !important;
    border-bottom: 1px solid #e0ecff;
    text-decoration: none;
}

.mobile-dropdown-list li a i {
    font-size: 17px;
    color: #fa9805;
}

.mobile-dropdown-list li:last-child a {
    border-bottom: none;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1228px) {
    .login-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (min-width: 1025px) {
    .mobile-nav,
    .mobile-overlay {
        display: none !important;
    }
}

@media (min-width: 1024px) and (max-width: 1136px) {
    .nav-links li a {
        margin-right: 0 !important;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .nav-links li a {
        font-size: 11px;
    }
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    header {
        background-color: #ffffff;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
        padding: 3px 25px;
    }
    .header-container {
        justify-content: space-between !important;
    }
    .hamburger {
        display: block;
    }
    .desktop-auth {
        display: none;
    }
    .mobile-auth {
        display: block;
    }
    .mobile-auth-buttons {
        display: flex;
    }
}

@media (max-width: 480px) {
    .mobile-auth-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

@media (max-width: 1321px) and (min-width: 1199px) {
    .nav-links li a {
        margin-right: 0px;
        font-size: 14px;
    }
}

/* ========================================
   TRAINERS SHOWCASE SECTION
   DESKTOP / DEFAULT
======================================== */

.trainers-showcase-section {
    padding: 30px 60px;
}

.trainers-showcase-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 70px;
}


/* ========================================
   LEFT SIDE CONTENT
======================================== */

.trainers-showcase-content {
    position: relative;
    z-index: 2;
}

.trainers-small-title {
    display: inline-block;
    margin-bottom: 14px;

    color: #fa9805;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.trainers-showcase-content h1 {
    margin: 0 0 18px;

    color: #111111;

    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
}

.trainers-showcase-content h2 {
    margin: 0;

    color: #fa9805;

    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
}

.content-divider {
    width: 65px;
    height: 4px;

    margin: 25px 0 32px;

    background: #fa9805;
    border-radius: 10px;
}

.trainers-content-text p {
    margin: 0 0 18px;

    color: #555555;
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
}

.trainers-content-text p:last-child {
    margin-bottom: 0;
}


/* ========================================
   RIGHT SIDE IMAGE
======================================== */

.trainers-image-wrapper {
    position: relative;

    min-height: 580px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.trainers-image-shape {
    position: absolute;

    width: 88%;
    height: 88%;

    top: 0;
    right: 0;

    background: #fa9805;

    border-radius: 35px;

    z-index: 1;
}

.trainers-main-image {
    position: relative;

    z-index: 2;

    width: 90%;
    height: 520px;

    margin-top: 45px;
    margin-right: 35px;

    object-fit: cover;

    border-radius: 30px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}


/* ========================================
   LARGE LAPTOP
   1200px - 1400px
======================================== */

@media (max-width: 1200px) {

    .trainers-showcase-section {
        padding: 30px 45px;
    }

    .trainers-showcase-container {
        gap: 50px;
    }

    .trainers-showcase-content h1 {
        font-size: 38px;
    }

    .trainers-showcase-content h2 {
        font-size: 21px;
    }

    .trainers-content-text p {
        font-size: 15.5px;
        line-height: 1.75;
    }

    .trainers-image-wrapper {
        min-height: 520px;
    }

    .trainers-main-image {
        height: 470px;
    }
}


/* ========================================
   LAPTOP / SMALL DESKTOP
   992px - 1100px
======================================== */

@media (max-width: 1100px) {

    .trainers-showcase-section {
        padding: 40px 35px;
        margin-top: 50px;
    }

    .trainers-showcase-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 40px;
    }

    .trainers-showcase-content h1 {
        font-size: 34px;
        line-height: 1.3;
    }

    .trainers-showcase-content h2 {
        font-size: 19px;
    }

    .content-divider {
        margin: 22px 0 28px;
    }

    .trainers-content-text p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .trainers-image-wrapper {
        min-height: 470px;
    }

    .trainers-image-shape {
        border-radius: 30px;
    }

    .trainers-main-image {
        width: 90%;
        height: 430px;

        margin-top: 35px;
        margin-right: 25px;

        border-radius: 25px;
    }
}


/* ========================================
   TABLET
   768px - 991px
======================================== */

@media (max-width: 991px) {

    .trainers-showcase-section {
        padding: 60px 30px;
        margin-top: 40px;
    }

    .trainers-showcase-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    /* Content */

    .trainers-showcase-content {
        max-width: 800px;
        margin: 0 auto;

        text-align: left;
    }

    .trainers-showcase-content h1 {
        font-size: 36px;
    }

    .trainers-showcase-content h2 {
        font-size: 20px;
    }

    .trainers-content-text p {
        font-size: 16px;
        line-height: 1.8;
    }

    /* Image */

    .trainers-image-wrapper {
        width: 100%;
        max-width: 650px;

        min-height: 500px;

        margin: 0 auto;

        justify-content: center;
    }

    .trainers-image-shape {
        width: 88%;
        height: 88%;

        right: 2%;
    }

    .trainers-main-image {
        width: 88%;
        height: 450px;

        margin-top: 35px;
        margin-right: 0;

        border-radius: 28px;
    }
}


/* ========================================
   MOBILE
   576px - 767px
======================================== */

@media (max-width: 767px) {

    .trainers-showcase-section {
        padding: 50px 20px;
        margin-top: 30px;
    }

    .trainers-showcase-container {
        gap: 40px;
    }

    /* Content */

    .trainers-small-title {
        margin-bottom: 12px;

        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .trainers-showcase-content h1 {
        font-size: 29px;
        line-height: 1.3;

        margin-bottom: 15px;
    }

    .trainers-showcase-content h2 {
        font-size: 18px;
        line-height: 1.5;
    }

    .content-divider {
        width: 55px;
        height: 3px;

        margin: 20px 0 25px;
    }

    .trainers-content-text p {
        font-size: 15px;
        line-height: 1.75;

        margin-bottom: 18px;
    }

    /* Image */

    .trainers-image-wrapper {
        min-height: 390px;
    }

    .trainers-image-shape {
        width: 88%;
        height: 88%;

        border-radius: 25px;
    }

    .trainers-main-image {
        width: 86%;
        height: 340px;

        margin-top: 30px;
        margin-right: 15px;

        border-radius: 22px;
    }
}


/* ========================================
   SMALL MOBILE
   481px - 575px
======================================== */

@media (max-width: 575px) {

    .trainers-showcase-section {
        padding: 45px 18px;
        margin-top: 25px;
    }

    .trainers-showcase-container {
        gap: 35px;
    }

    .trainers-showcase-content h1 {
        font-size: 27px;
    }

    .trainers-showcase-content h2 {
        font-size: 17px;
    }

    .trainers-content-text p {
        font-size: 15px;
    }

    .trainers-image-wrapper {
        min-height: 350px;
    }

    .trainers-main-image {
        height: 310px;
    }
}


/* ========================================
   EXTRA SMALL MOBILE
   480px AND BELOW
======================================== */

@media (max-width: 480px) {

    .trainers-showcase-section {
        padding: 40px 15px;
        margin-top: 20px;
    }

    .trainers-showcase-container {
        gap: 30px;
    }

    .trainers-small-title {
        font-size: 11px;
        letter-spacing: 1.3px;
    }

    .trainers-showcase-content h1 {
        font-size: 25px;
        line-height: 1.3;
    }

    .trainers-showcase-content h2 {
        font-size: 16.5px;
        line-height: 1.5;
    }

    .content-divider {
        width: 50px;
        height: 3px;

        margin: 18px 0 22px;
    }

    .trainers-content-text p {
        font-size: 14.5px;
        line-height: 1.75;

        margin-bottom: 17px;
    }

    /* Image */

    .trainers-image-wrapper {
        min-height: 320px;
    }

    .trainers-image-shape {
        width: 88%;
        height: 88%;

        border-radius: 20px;
    }

    .trainers-main-image {
        width: 86%;
        height: 280px;

        margin-top: 25px;
        margin-right: 10px;

        border-radius: 18px;
    }
}


/* trainers */

/* ========================================
   TRAINER PROFILES SECTION
======================================== */

.trainer-profiles-section {
    width: 100%;
    padding: 80px 60px;

    background-color: #dae2eb;

    overflow: hidden;
}

.trainer-profiles-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}


/* ========================================
   SECTION INTRO
======================================== */

.trainer-profiles-intro {
    max-width: 950px;
    margin: 0 auto 60px;

    text-align: center;
}

.trainer-profiles-intro h2 {
    margin: 0 0 20px;

    color: #111111;

    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.trainer-profiles-intro p {
    margin: 0 0 18px;

    color: #555555;
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
}

.trainer-profiles-intro h3 {
    margin: 30px 0 20px;

    color: #111111;

    font-size: 20px;
    font-weight: 600;
}


/* ========================================
   INTRO INFORMATION LIST
======================================== */

.trainer-information-list {
    max-width: 800px;

    margin: 0 auto 25px;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;

    list-style: none;

    text-align: left;
}

.trainer-information-list li {
    position: relative;

    padding-left: 25px;

    color: #555555;

    font-size: 15px;
    line-height: 1.7;
}

.trainer-information-list li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: #fa9805;

    font-weight: 700;
}


/* ========================================
   TRAINER PROFILE CARD
======================================== */

.trainer-profile-card {
    margin-bottom: 50px;
    padding: 45px;

    background-color: #ffffff;

    border-radius: 25px;

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.trainer-profile-card:last-child {
    margin-bottom: 0;
}


/* ========================================
   TRAINER IMAGE + CONTENT
======================================== */

.trainer-profile-grid {
    display: grid;

    grid-template-columns: 380px 1fr;

    gap: 55px;

    align-items: center;
}


/* ========================================
   TRAINER IMAGE
======================================== */

.trainer-image-column {
    width: 100%;
}

.trainer-image-box {
    position: relative;

    width: 100%;
    height: 440px;

    overflow: hidden;

    background-color: #f1f3f5;

    border-radius: 22px;
}

.trainer-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.trainer-profile-card:hover .trainer-image {
    transform: scale(1.03);
}


/* Image Label */

.trainer-image-label {
    position: absolute;

    left: 20px;
    bottom: 20px;

    padding: 10px 17px;

    background-color: #fa9805;
    color: #ffffff;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 600;
}


/* ========================================
   TRAINER CONTENT
======================================== */

.trainer-content-column h3 {
    margin: 0 0 25px;

    color: #111111;

    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.trainer-content-column p {
    margin: 0 0 18px;

    color: #555555;
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
}


/* ========================================
   BASIC TRAINER DETAILS
======================================== */

.trainer-basic-details {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px 20px;

    margin-bottom: 28px;
}

.trainer-basic-details p {
    margin: 0;

    padding: 12px 15px;

    background-color: #f6f8fa;
    border: 1px solid #fa9805;
    border-left: 3px solid #fa9805;

    border-radius: 6px;

    font-size: 14px;
}

.trainer-basic-details strong {
    color: #111111;
}


/* ========================================
   INNER SECTIONS
======================================== */

.trainer-section-block {
    margin-top: 38px;
}

.trainer-section-block h4 {
    margin: 0 0 18px;

    color: #111111;

    font-size: 21px;
    font-weight: 700;
}

.trainer-section-block p {
    margin: 0;

    color: #555555;

    font-size: 16px;
    line-height: 1.8;
}


/* ========================================
   EXPERTISE LIST
======================================== */

.trainer-expertise-list {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.trainer-expertise-list li {
    padding: 13px 15px;

    background-color:#dae2eb;

    border-radius: 7px;

    color: #444444;

    font-size: 14px;
    line-height: 1.5;
}

.trainer-expertise-list li::before {
    content: "✓";

    margin-right: 8px;

    color: #fa9805;

    font-weight: 700;
}


/* ========================================
   STUDENT SUPPORT LIST
======================================== */

.trainer-support-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px 20px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.trainer-support-list li {
    position: relative;

    padding: 13px 15px 13px 38px;

    background-color:#dae2eb;

    border-radius: 7px;

    color: #444444;

    font-size: 14px;
    line-height: 1.6;
}

.trainer-support-list li::before {
    content: "✓";

    position: absolute;

    left: 15px;
    top: 13px;

    color: #fa9805;

    font-weight: 700;
}


/* ========================================
   COURSE LINK
======================================== */

.trainer-course-link {
    display: inline-block;

    margin-top: 32px;
    padding: 13px 24px;

    background-color: #fa9805;
    color: #ffffff;

    border-radius: 7px;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.trainer-course-link:hover {
    background-color: #111111;
    color: #ffffff;

    transform: translateY(-2px);
}


/* ========================================
   LARGE LAPTOP
   1200px AND BELOW
======================================== */

@media (max-width: 1200px) {

    .trainer-profiles-section {
        padding: 70px 45px;
    }

    .trainer-profile-card {
        padding: 40px;
    }

    .trainer-profile-grid {
        grid-template-columns: 320px 1fr;
        gap: 40px;
    }

    .trainer-image-box {
        height: 400px;
    }

    .trainer-content-column h3 {
        font-size: 27px;
    }

    .trainer-expertise-list {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ========================================
   TABLET
   991px AND BELOW
======================================== */

@media (max-width: 991px) {

    .trainer-profiles-section {
        padding: 60px 30px;
    }

    .trainer-profiles-container {
        width: 100%;
    }

    .trainer-profiles-intro {
        margin-bottom: 45px;
    }

    .trainer-profiles-intro h2 {
        font-size: 34px;
    }

    .trainer-profile-card {
        padding: 32px;
        margin-bottom: 40px;
    }

    .trainer-profile-grid {
        grid-template-columns: 280px 1fr;
        gap: 30px;
    }

    .trainer-image-box {
        height: 360px;
    }

    .trainer-content-column h3 {
        font-size: 25px;
    }

    .trainer-basic-details {
        grid-template-columns: 1fr;
    }

    .trainer-expertise-list {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ========================================
   MOBILE
   767px AND BELOW
======================================== */

@media (max-width: 767px) {

    .trainer-profiles-section {
        padding: 50px 20px;
    }

    .trainer-profiles-intro {
        text-align: left;
        margin-bottom: 35px;
    }

    .trainer-profiles-intro h2 {
        font-size: 29px;
        line-height: 1.3;
    }

    .trainer-profiles-intro p {
        font-size: 15px;
        line-height: 1.75;
    }

    .trainer-profiles-intro h3 {
        font-size: 19px;
    }

    .trainer-information-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    /* Profile Card */

    .trainer-profile-card {
        padding: 25px 20px;
        border-radius: 18px;
        margin-bottom: 30px;
    }

    /* Image */

    .trainer-profile-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trainer-image-box {
        height: 360px;
        border-radius: 18px;
    }

    /* Content */

    .trainer-content-column h3 {
        font-size: 24px;
        line-height: 1.35;
        margin-bottom: 20px;
    }

    .trainer-content-column p {
        font-size: 15px;
        line-height: 1.75;
    }

    .trainer-basic-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .trainer-basic-details p {
        font-size: 14px;
    }

    /* Inner Sections */

    .trainer-section-block {
        margin-top: 30px;
    }

    .trainer-section-block h4 {
        font-size: 19px;
    }

    .trainer-section-block p {
        font-size: 15px;
        line-height: 1.75;
    }

    /* Expertise */

    .trainer-expertise-list {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    /* Student Support */

    .trainer-support-list {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .trainer-course-link {
        width: 100%;
        text-align: center;
    }
}


/* ========================================
   SMALL MOBILE
   480px AND BELOW
======================================== */

@media (max-width: 480px) {

    .trainer-profiles-section {
        padding: 40px 15px;
    }

    .trainer-profiles-intro h2 {
        font-size: 25px;
    }

    .trainer-profiles-intro p {
        font-size: 14.5px;
    }

    .trainer-profiles-intro h3 {
        font-size: 18px;
    }

    .trainer-profile-card {
        padding: 20px 16px;
    }

    .trainer-image-box {
        height: 300px;
    }

    .trainer-content-column h3 {
        font-size: 22px;
    }

    .trainer-content-column p {
        font-size: 14.5px;
    }

    .trainer-section-block h4 {
        font-size: 18px;
    }

    .trainer-section-block p {
        font-size: 14.5px;
    }

    .trainer-expertise-list li,
    .trainer-support-list li {
        font-size: 14px;
    }

    .trainer-image-label {
        left: 15px;
        bottom: 15px;

        padding: 8px 13px;

        font-size: 12px;
    }
}




/* ========================================
   TRAINING EXPERTS SECTION
======================================== */

.training-experts-section {
    width: 100%;
    padding: 90px 60px;

    background-color: #ffffff;

    overflow: hidden;
}

.training-experts-container {
    width: 92%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 80px;
}


/* ========================================
   LEFT CONTENT
======================================== */

.training-experts-content {
    max-width: 720px;
}

.training-experts-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #fa9805;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.training-experts-content h2 {
    margin: 0;

    color: #111111;

    font-size: 40px;
    font-weight: 700;

    line-height: 1.3;
}

.training-experts-divider {
    width: 65px;
    height: 4px;

    margin: 25px 0 32px;

    background-color: #fa9805;

    border-radius: 10px;
}

.training-experts-content p {
    margin: 0 0 20px;
    text-align: justify;
    color: #555555;

    font-size: 16px;
    line-height: 1.85;
}

.training-experts-content p:last-child {
    margin-bottom: 0;
}


/* ========================================
   RIGHT BENEFITS PANEL
======================================== */

.training-experts-benefits {
    padding: 40px;

    background-color:#fffbf4;

    border-radius: 22px;

    border-top: 5px solid #fa9805;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.benefits-heading h3 {
    margin: 0 0 28px;

    color: #111111;

    font-size: 23px;
    font-weight: 700;

    line-height: 1.4;
}


/* ========================================
   BENEFITS LIST
======================================== */

.training-benefits-list {
    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 15px;
}

.training-benefits-list li {
    display: flex;
    align-items: center;

    gap: 16px;

    padding: 15px;

    background-color:#dae2eb;

    border-radius: 10px;

    transition: all 0.3s ease;
}

.training-benefits-list li:hover {
    transform: translateX(5px);

    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.07);
}

.benefit-number {
    flex-shrink: 0;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #fa9805;

    color: #ffffff;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 700;
}

.training-benefits-list strong {
    color: #444444;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.5;
}


/* ========================================
   LARGE LAPTOP
   1200px AND BELOW
======================================== */

@media (max-width: 1200px) {

    .training-experts-section {
        padding: 75px 45px;
    }

    .training-experts-container {
        gap: 55px;
    }

    .training-experts-content h2 {
        font-size: 36px;
    }

    .training-experts-benefits {
        padding: 35px;
    }
}


/* ========================================
   TABLET
   991px AND BELOW
======================================== */

@media (max-width: 991px) {

    .training-experts-section {
        padding: 65px 30px;
    }

    .training-experts-container {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .training-experts-content {
        max-width: 850px;
    }

    .training-experts-content h2 {
        font-size: 34px;
    }

    .training-experts-benefits {
        max-width: 850px;

        width: 100%;

        margin: 0 auto;
    }
}


/* ========================================
   MOBILE
   767px AND BELOW
======================================== */

@media (max-width: 767px) {

    .training-experts-section {
        padding: 50px 20px;
    }

    .training-experts-container {
        gap: 35px;
    }

    .training-experts-content {
        max-width: 100%;
    }

    .training-experts-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .training-experts-content h2 {
        font-size: 28px;
        line-height: 1.35;
    }

    .training-experts-divider {
        width: 55px;
        height: 3px;

        margin: 20px 0 25px;
    }

    .training-experts-content p {
        font-size: 15px;

        line-height: 1.75;

        margin-bottom: 18px;
    }

    .training-experts-benefits {
        padding: 25px 20px;

        border-radius: 18px;
    }

    .benefits-heading h3 {
        font-size: 20px;

        margin-bottom: 22px;
    }

    .training-benefits-list {
        gap: 10px;
    }

    .training-benefits-list li {
        padding: 13px;

        gap: 12px;
    }

    .benefit-number {
        width: 34px;
        height: 34px;

        font-size: 11px;
    }

    .training-benefits-list strong {
        font-size: 14px;
    }
}


/* ========================================
   SMALL MOBILE
   480px AND BELOW
======================================== */

@media (max-width: 480px) {

    .training-experts-section {
        padding: 40px 15px;
    }

    .training-experts-content h2 {
        font-size: 25px;
    }

    .training-experts-content p {
        font-size: 14.5px;
        line-height: 1.75;
    }

    .training-experts-benefits {
        padding: 22px 15px;
    }

    .benefits-heading h3 {
        font-size: 18px;
    }

    .training-benefits-list li {
        padding: 12px 10px;
    }

    .benefit-number {
        width: 32px;
        height: 32px;
    }

    .training-benefits-list strong {
        font-size: 13.5px;
    }
}


/* ========================================
   TRAINER TEACHING SECTION
======================================== */

.trainer-teaching-section {
    width: 100%;
    padding: 85px 60px;
    background-color: #dae2eb;
    overflow: hidden;
    box-sizing: border-box;
}

.trainer-teaching-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}


/* ========================================
   SECTION HEADER
======================================== */

.trainer-teaching-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.trainer-teaching-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #fa9805;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.trainer-teaching-header h2 {
    margin: 0;
    color: #111111;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.trainer-teaching-divider {
    width: 65px;
    height: 4px;
    margin: 23px auto 28px;
    background-color: #fa9805;
    border-radius: 10px;
}

.trainer-teaching-header p {
    margin: 0;
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
}


/* ========================================
   TEACHING METHODS GRID
======================================== */

.trainer-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}


/* ========================================
   METHOD CARD
======================================== */

.trainer-method-card {
    position: relative;
    min-width: 0;
    padding: 32px 28px;
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.trainer-method-card:hover {
    transform: translateY(-7px);
    border-color: #fa9805;
}


/* ========================================
   ICON
======================================== */

.trainer-method-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #fa9805;
    border-radius: 14px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;

    box-shadow: 0 8px 18px rgba(250, 152, 5, 0.20);
}

.trainer-method-icon span {
    line-height: 1;
}


/* ========================================
   CARD CONTENT
======================================== */

.trainer-method-content h3 {
    margin: 0 0 15px;
    color: #111111;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.trainer-method-content p {
    margin: 0;
    color: #555555;
    font-size: 15px;
    line-height: 1.8;

    /* Prevent large spaces between words */
    text-align: left;
}


/* ========================================
   LARGE LAPTOP
   1200px AND BELOW
======================================== */

@media (max-width: 1200px) {

    .trainer-teaching-section {
        padding: 75px 45px;
    }

    .trainer-methods-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .trainer-method-card {
        padding: 28px 24px;
    }

    .trainer-method-content h3 {
        font-size: 19px;
    }

    .trainer-method-content p {
        font-size: 14.5px;
    }
}


/* ========================================
   TABLET
   991px AND BELOW
======================================== */

@media (max-width: 991px) {

    .trainer-teaching-section {
        padding: 65px 30px;
    }

    .trainer-teaching-container {
        width: 100%;
    }

    .trainer-teaching-header {
        margin-bottom: 45px;
    }

    .trainer-teaching-header h2 {
        font-size: 34px;
    }

    .trainer-methods-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .trainer-method-card {
        padding: 28px 25px;
    }

    .trainer-method-content p {
        text-align: left;
    }
}


/* ========================================
   MOBILE
   767px AND BELOW
======================================== */

@media (max-width: 767px) {

    .trainer-teaching-section {
        padding: 50px 20px;
    }

    .trainer-teaching-container {
        width: 100%;
    }

    .trainer-teaching-header {
        margin-bottom: 35px;
        text-align: left;
    }

    .trainer-teaching-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .trainer-teaching-header h2 {
        font-size: 28px;
        line-height: 1.35;
    }

    .trainer-teaching-divider {
        width: 55px;
        height: 3px;
        margin: 20px 0 25px;
    }

    .trainer-teaching-header p {
        font-size: 15px;
        line-height: 1.75;
    }


    /* One card per row */

    .trainer-methods-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        width: 100%;
    }

    .trainer-method-card {
        width: 100%;
        min-width: 0;
        padding: 25px 22px;
        border-radius: 16px;
    }

    .trainer-method-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
        border-radius: 12px;
        font-size: 22px;
    }

    .trainer-method-content h3 {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .trainer-method-content p {
        font-size: 14.5px;
        line-height: 1.75;
        text-align: left;
        word-spacing: normal;
    }
}


/* ========================================
   SMALL MOBILE
   480px AND BELOW
======================================== */

@media (max-width: 480px) {

    .trainer-teaching-section {
        padding: 40px 15px;
    }

    .trainer-teaching-header h2 {
        font-size: 25px;
    }

    .trainer-teaching-header p {
        font-size: 14.5px;
    }

    .trainer-method-card {
        padding: 22px 18px;
    }

    .trainer-method-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
        font-size: 20px;
    }

    .trainer-method-content h3 {
        font-size: 18px;
    }

    .trainer-method-content p {
        font-size: 14px;
        line-height: 1.7;
        text-align: left;
    }
}


/* flip card */
/* ========================================
   TECHNOLOGY EXPERTISE SECTION
======================================== */

.technology-expertise-section {
    width: 100%;
    padding: 80px 60px;
    background-color: #ffffff;
}

.technology-expertise-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}


/* ========================================
   SECTION HEADER
======================================== */

.technology-expertise-header {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

.technology-expertise-label {
    display: inline-block;
    margin-bottom: 12px;

    color: #fa9805;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.technology-expertise-header h2 {
    margin: 0;

    color: #111111;

    font-size: 38px;
    font-weight: 700;

    line-height: 1.3;
}

.technology-expertise-divider {
    width: 60px;
    height: 4px;

    margin: 20px auto 0;

    background-color: #fa9805;

    border-radius: 10px;
}


/* ========================================
   CARDS GRID
======================================== */

.technology-cards-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}


/* ========================================
   CARD WRAPPER
======================================== */

.technology-card-wrapper {
    height: 365px;

    perspective: 1200px;

    cursor: pointer;
}


/* ========================================
   CARD
======================================== */

.technology-card {
    position: relative;

    width: 100%;
    height: 100%;

    transform-style: preserve-3d;

    transition:
        transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}


/*
   FLIP ON HOVER
*/

.technology-card-wrapper:hover .technology-card {
    transform: rotateY(180deg);
}


/* ========================================
   CARD FACES
======================================== */

.technology-card-front,
.technology-card-back {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    box-sizing: border-box;

    border-radius: 18px;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    overflow: hidden;
}


/* ========================================
   FRONT
======================================== */

.technology-card-front {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 28px;

    text-align: center;

    background-color:#dae2eb;

    border: 1px solid #e7e7e7;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.04);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* ========================================
   ORANGE TOP LINE
======================================== */

.technology-card-front::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background-color: #fa9805;
}


/* ========================================
   LOGO
======================================== */

.technology-logo {

    width: 72px;
    height: 72px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #fa9805;

    border: 1px solid rgba(250, 152, 5, 0.20);

    border-radius: 18px;

    color:#ffffff;

    font-size: 29px;
    font-weight: 800;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* ========================================
   FRONT TITLE
======================================== */

.technology-card-front h3 {

    margin: 0 0 12px;

    color: #151515;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.3;
}


/* ========================================
   FRONT DESCRIPTION
======================================== */

.technology-card-front p {

    max-width: 350px;

    margin: 0;
 text-align: justify;
    color: #666666;

    font-size: 14px;

    line-height: 1.7;
}


/* ========================================
   HOVER HINT
======================================== */

.technology-hover-hint {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: 18px;

    color: #fa9805;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.7px;

    text-transform: uppercase;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.technology-hover-hint span {
    font-size: 16px;
}


/* ========================================
   FRONT HOVER EFFECT
======================================== */

.technology-card-wrapper:hover .technology-card-front {

    border-color: rgba(250, 152, 5, 0.45);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 10px 30px rgba(250, 152, 5, 0.08);
}

.technology-card-wrapper:hover .technology-logo {

    transform: translateY(-4px) scale(1.04);

    box-shadow:
        0 8px 20px rgba(250, 152, 5, 0.12);
}

.technology-card-wrapper:hover .technology-hover-hint {

    gap: 11px;

    color: #111111;
}


/* ========================================
   BACK
======================================== */

.technology-card-back {

    transform: rotateY(180deg);

    padding: 27px;

    background-color: #171717;

    border: 1px solid #292929;

    color: #ffffff;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.14);
}


/* ========================================
   BACK ORANGE LINE
======================================== */

.technology-card-back::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background-color: #fa9805;
}


/* ========================================
   BACK HEADER
======================================== */

.technology-back-title {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}

.technology-mini-logo {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #fa9805;

    color: #ffffff;

    border-radius: 10px;

    font-size: 17px;
    font-weight: 800;
}

.technology-back-title h3 {

    margin: 0;

    color: #ffffff;

    font-size: 19px;
    font-weight: 700;

    line-height: 1.3;
}


/* ========================================
   LEARNING TITLE
======================================== */

.learning-title {

    margin: 0 0 12px;

    color: #bdbdbd;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.5;
}


/* ========================================
   LEARNING LIST
======================================== */

.technology-list {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 6px 12px;

    margin: 0 0 18px;
    padding: 0;

    list-style: none;
}

.technology-list li {

    position: relative;

    padding-left: 15px;

    color: #eeeeee;

    font-size: 12px;

    line-height: 1.5;
}

.technology-list li::before {

    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: #fa9805;

    font-weight: 700;
}


/* ========================================
   COURSE BUTTON
======================================== */

.technology-course-link {

    display: inline-flex;

    align-items: center;

    width: fit-content;

    padding: 9px 14px;

    background-color: #fa9805;

    color: #ffffff;

    border-radius: 5px;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.technology-course-link:hover {

    background-color: #ffffff;

    color: #fa9805;

    transform: translateX(3px);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {

    .technology-expertise-section {
        padding: 70px 30px;
    }

    .technology-expertise-container {
        width: 100%;
    }

    .technology-expertise-header {
        margin-bottom: 40px;
    }

    .technology-expertise-header h2 {
        font-size: 34px;
    }

    .technology-cards-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }

    .technology-card-wrapper {
        height: 365px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .technology-expertise-section {
        padding: 55px 20px;
    }

    .technology-expertise-header {

        margin-bottom: 35px;

        text-align: left;
    }

    .technology-expertise-label {
        font-size: 11px;
    }

    .technology-expertise-header h2 {
        font-size: 28px;
    }

    .technology-expertise-divider {

        width: 55px;

        margin: 18px 0 0;
    }

    .technology-cards-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .technology-card-wrapper {

        height: 370px;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .technology-expertise-section {
        padding: 45px 15px;
    }

    .technology-expertise-header h2 {
        font-size: 25px;
    }

    .technology-card-wrapper {
        height: 380px;
    }

    .technology-card-front,
    .technology-card-back {
        border-radius: 16px;
    }

    .technology-card-front {
        padding: 23px 18px;
    }

    .technology-logo {

        width: 65px;
        height: 65px;

        margin-bottom: 17px;

        border-radius: 16px;

        font-size: 26px;
    }

    .technology-card-front h3 {
        font-size: 19px;
    }

    .technology-card-front p {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .technology-card-back {
        padding: 23px 18px;
    }

    .technology-back-title h3 {
        font-size: 18px;
    }

    .technology-list li {
        font-size: 11.5px;
    }
}



/* ========================================
   COMMON SECTION SETTINGS
======================================== */

.learning-support-section,
.training-environment-section {
    width: 100%;
    box-sizing: border-box;
}

.learning-support-container,
.training-environment-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-eyebrow {
    display: inline-block;

    margin-bottom: 13px;

    color: #fa9805;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ========================================
   STUDENT LEARNING SUPPORT
======================================== */

.learning-support-section {
    padding: 85px 60px;

    background:#dae2eb;
}


/* HEADER */

.learning-support-header {
    max-width: 850px;

    margin: 0 auto 50px;

    text-align: center;
}

.learning-support-header h2 {
    margin: 0 0 18px;

    color: #111111;

    font-size: 38px;
    font-weight: 700;

    line-height: 1.3;
}

.learning-support-header p {
    margin: 0;

    color: #5f5f5f;

    font-size: 15.5px;

    line-height: 1.8;
}


/* ========================================
   SUPPORT CARDS
======================================== */

.support-cards {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


/* CARD */

.support-card {

    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    border-radius: 16px;

    box-shadow:
        0 7px 20px rgba(0, 0, 0, 0.035);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* ORANGE SIDE ACCENT */

.support-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 22px;

    width: 3px;
    height: 45px;

    background: #fa9805;

    border-radius: 0 5px 5px 0;
}


/* CARD HOVER */

.support-card:hover {

    transform: translateY(-5px);

    border-color: rgba(250, 152, 5, 0.35);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.07);
}


/* ========================================
   SUPPORT ICON
======================================== */

.support-icon {

    width: 54px;
    height: 54px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff5e6;

    border: 1px solid rgba(250, 152, 5, 0.18);

    border-radius: 14px;

    color: #fa9805;

    font-size: 20px;

    transition:
        transform 0.35s ease,
        background-color 0.35s ease;
}

.support-card:hover .support-icon {

    transform: translateY(-3px);

    background: #fa9805;

    color: #ffffff;
}


/* ========================================
   SUPPORT CONTENT
======================================== */

.support-card-content h3 {

    margin: 0 0 9px;

    color: #171717;

    font-size: 19px;
    font-weight: 700;

    line-height: 1.4;
}

.support-card-content p {

    margin: 0;
 text-align: justify;
    color: #666666;

    font-size: 14px;

    line-height: 1.75;
}


/* ========================================
   PRACTICAL TRAINING ENVIRONMENT
======================================== */

.training-environment-section {

    padding: 90px 60px;

    background:#ffffff;
}

.training-environment-container {

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 75px;
}


/* ========================================
   LEFT CONTENT
======================================== */

.training-environment-content {

    position: relative;

    z-index: 2;
}

.training-environment-content h2 {

    max-width: 650px;

    margin: 0;

    color: #111111;

    font-size: 39px;
    font-weight: 700;

    line-height: 1.3;
}


/* ACCENT LINE */

.section-accent-line {

    width: 60px;
    height: 4px;

    margin: 22px 0 25px;

    background: #fa9805;

    border-radius: 10px;
}


.training-environment-content > p {

    margin: 0 0 18px;
     text-align: justify;
    color: #4f555b;

    font-size: 15px;

    line-height: 1.8;
}


/* ========================================
   TRAINING LIST
======================================== */

.training-list {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin: 28px 0;
}

.training-list-item {

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 12px 13px;

    background:#fffcf6;

    border: 1px solid #fa9805;

    border-radius: 9px;

    color: #333333;

    font-size: 13px;

    line-height: 1.5;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.training-list-item:hover {

    background: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.05);
}


/* LIST ICON */

.training-list-icon {

    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fa9805;

    color: #ffffff;

    border-radius: 8px;

    font-size: 13px;
}


/* ========================================
   CLOSING TEXT
======================================== */

.training-closing-text {

    position: relative;

    margin-top: 24px !important;

    padding-left: 17px;
}

.training-closing-text::before {

    content: "";

    position: absolute;

    left: 0;
    top: 4px;

    width: 3px;
    height: calc(100% - 8px);

    background: #fa9805;

    border-radius: 5px;
}


/* ========================================
   RIGHT IMAGE
======================================== */

.training-environment-image {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* ORANGE BACK SHAPE */

.image-accent-shape {

    position: absolute;

    top: 18px;
    right: 5px;

    width: 88%;
    height: 90%;

    background: #fa9805;

    border-radius: 24px;
}


/* IMAGE FRAME */

.image-frame {

    position: relative;

    z-index: 2;

    width: 88%;
    height: 455px;

    margin-right: 35px;

    overflow: hidden;

    background: #ffffff;

    border: 7px solid #ffffff;

    border-radius: 24px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.13);
}

.image-frame img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.training-environment-image:hover .image-frame img {

    transform: scale(1.04);
}


/* ========================================
   IMAGE CAPTION
======================================== */

.image-caption {

    position: absolute;

    z-index: 3;

    left: 0;
    bottom: 18px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 11px 16px;

    background: #ffffff;

    color: #333333;

    border-radius: 8px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.10);

    font-size: 12px;
    font-weight: 600;
}

.image-caption i {

    color: #fa9805;

    font-size: 14px;
}


/* ========================================
   LAPTOP
======================================== */

@media (max-width: 1200px) {

    .learning-support-section,
    .training-environment-section {

        padding-left: 40px;
        padding-right: 40px;
    }

    .training-environment-container {

        gap: 50px;
    }

    .training-environment-content h2 {

        font-size: 34px;
    }

    .image-frame {

        height: 410px;
    }

    .training-environment-image {

        min-height: 450px;
    }
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {

    .learning-support-section,
    .training-environment-section {

        padding: 70px 30px;
    }

    .learning-support-container,
    .training-environment-container {

        width: 100%;
    }


    /* SUPPORT */

    .learning-support-header {

        margin-bottom: 40px;
    }

    .learning-support-header h2 {

        font-size: 33px;
    }


    /* ENVIRONMENT */

    .training-environment-container {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .training-environment-content {

        max-width: 800px;

        margin: 0 auto;
    }

    .training-environment-image {

        width: 100%;

        max-width: 650px;

        min-height: 460px;

        margin: 0 auto;
    }

    .image-frame {

        width: 88%;

        height: 430px;
    }

    .image-accent-shape {

        width: 85%;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .learning-support-section,
    .training-environment-section {

        padding: 55px 20px;
    }


    /* HEADER */

    .learning-support-header {

        text-align: left;

        margin-bottom: 32px;
    }

    .learning-support-header h2 {

        font-size: 28px;

        line-height: 1.35;
    }

    .learning-support-header p {

        font-size: 14.5px;

        line-height: 1.75;
    }


    /* SUPPORT CARDS */

    .support-cards {

        grid-template-columns: 1fr;

        gap: 16px;
    }

    .support-card {

        padding: 22px;

        gap: 15px;
    }

    .support-icon {

        width: 48px;
        height: 48px;

        border-radius: 12px;

        font-size: 18px;
    }

    .support-card-content h3 {

        font-size: 17px;
    }

    .support-card-content p {

        font-size: 13.5px;

        line-height: 1.7;
    }


    /* ENVIRONMENT */

    .training-environment-content h2 {

        font-size: 28px;
    }

    .training-environment-content > p {

        font-size: 14px;

        line-height: 1.75;
    }


    /* LIST */

    .training-list {

        grid-template-columns: 1fr;

        gap: 9px;

        margin: 23px 0;
    }

    .training-list-item {

        font-size: 13px;
    }


    /* IMAGE */

    .training-environment-image {

        min-height: 370px;
    }

    .image-frame {

        width: 88%;

        height: 350px;

        margin-right: 20px;

        border-width: 5px;

        border-radius: 18px;
    }

    .image-accent-shape {

        top: 12px;
        right: 0;

        height: 88%;

        border-radius: 18px;
    }

    .image-caption {

        left: 0;
        bottom: 10px;

        padding: 9px 12px;

        font-size: 11px;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .learning-support-section,
    .training-environment-section {

        padding: 45px 15px;
    }

    .section-eyebrow {

        font-size: 10px;

        letter-spacing: 1.6px;
    }


    .learning-support-header h2,
    .training-environment-content h2 {

        font-size: 25px;
    }


    .support-card {

        padding: 19px;

        gap: 13px;
    }

    .support-icon {

        width: 43px;
        height: 43px;

        font-size: 16px;
    }

    .support-card-content h3 {

        font-size: 16px;
    }

    .support-card-content p {

        font-size: 13px;
    }


    .training-list-item {

        padding: 10px;

        font-size: 12px;
    }

    .training-list-icon {

        width: 29px;
        height: 29px;

        font-size: 11px;
    }


    .training-environment-image {

        min-height: 320px;
    }

    .image-frame {

        height: 300px;

        margin-right: 14px;
    }

    .image-caption {

        font-size: 10px;

        padding: 8px 10px;
    }
}


/* find the right trainer */
/* ========================================
   TRAINER CTA SECTION
======================================== */

.trainer-cta-section {

    position: relative;

    width: 100%;

    padding: 85px 60px;

    background-color:#dae2eb;

    box-sizing: border-box;

    overflow: hidden;
}


.trainer-cta-container {

    position: relative;

    width: 92%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 65px 70px;

    background-color:#fff9ef;

    border: 1px solid #eeeeee;

    border-radius: 24px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.055);

    box-sizing: border-box;

    overflow: hidden;
}


/* ========================================
   ORANGE TOP ACCENT
======================================== */

.trainer-cta-container::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background-color: #fa9805;
}


/* ========================================
   DECORATIVE CIRCLES
======================================== */

.trainer-cta-decoration {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 0;
}


.trainer-cta-decoration-one {

    width: 190px;
    height: 190px;

    top: -105px;
    right: -65px;

    border: 35px solid rgba(250, 152, 5, 0.07);
}


.trainer-cta-decoration-two {

    width: 110px;
    height: 110px;

    bottom: -65px;
    left: -45px;

    border: 25px solid rgba(250, 152, 5, 0.06);
}


/* ========================================
   CTA CONTENT
======================================== */

.trainer-cta-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}


/* ========================================
   EYEBROW
======================================== */

.trainer-cta-eyebrow {

    display: inline-block;

    margin-bottom: 14px;

    color: #fa9805;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* ========================================
   HEADING
======================================== */

.trainer-cta-content h2 {

    margin: 0;

    color: #111111;

    font-size: 40px;

    font-weight: 700;

    line-height: 1.3;
}


/* ========================================
   ACCENT LINE
======================================== */

.trainer-cta-line {

    width: 65px;

    height: 4px;

    margin: 22px auto 25px;

    background-color: #fa9805;

    border-radius: 10px;
}


/* ========================================
   PARAGRAPHS
======================================== */

.trainer-cta-content p {

    max-width: 820px;

    margin: 0 auto 16px;

    color: #5d5d5d;

    font-size: 15px;

    line-height: 1.8;
}


.trainer-cta-content p:last-of-type {

    margin-bottom: 0;
}


/* ========================================
   CTA BUTTONS
======================================== */

.trainer-cta-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}


/* ========================================
   COMMON BUTTON
======================================== */

.trainer-cta-btn {

    min-height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 22px;

    border-radius: 8px;

    box-sizing: border-box;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* ========================================
   PRIMARY BUTTON
======================================== */

.trainer-cta-primary {

    background-color: #fa9805;

    border: 1px solid #fa9805;

    color: #ffffff;

    box-shadow:
        0 7px 18px rgba(250, 152, 5, 0.20);
}


.trainer-cta-primary:hover {

    background-color: #e88900;

    border-color: #e88900;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 24px rgba(250, 152, 5, 0.27);
}


/* ========================================
   SECONDARY BUTTON
======================================== */

.trainer-cta-secondary {

    background-color: #111111;

    border: 1px solid #111111;

    color: #ffffff;
}


.trainer-cta-secondary:hover {

    background-color: #fa9805;

    border-color: #fa9805;

    color: #ffffff;

    transform: translateY(-3px);
}


/* ========================================
   OUTLINE BUTTON
======================================== */

.trainer-cta-outline {

    background-color: #ffffff;

    border: 1px solid #d8d8d8;

    color: #333333;
}


.trainer-cta-outline:hover {

    background-color: #fff5e6;

    border-color: #fa9805;

    color: #fa9805;

    transform: translateY(-3px);
}


/* ========================================
   LAPTOP
======================================== */

@media (max-width: 1200px) {

    .trainer-cta-section {

        padding: 75px 40px;
    }

    .trainer-cta-container {

        padding: 60px 55px;
    }

    .trainer-cta-content h2 {

        font-size: 36px;
    }
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {

    .trainer-cta-section {

        padding: 70px 30px;
    }

    .trainer-cta-container {

        width: 100%;

        padding: 55px 40px;

        border-radius: 20px;
    }

    .trainer-cta-content h2 {

        font-size: 33px;
    }

    .trainer-cta-content p {

        font-size: 14.5px;
    }

    .trainer-cta-buttons {

        gap: 10px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .trainer-cta-section {

        padding: 55px 20px;
    }

    .trainer-cta-container {

        padding: 45px 24px;

        border-radius: 18px;
    }


    .trainer-cta-eyebrow {

        font-size: 10px;

        letter-spacing: 1.6px;
    }


    .trainer-cta-content h2 {

        font-size: 28px;

        line-height: 1.35;
    }


    .trainer-cta-line {

        width: 55px;

        margin: 18px auto 21px;
    }


    .trainer-cta-content p {

        font-size: 14px;

        line-height: 1.75;
    }


    /* BUTTONS */

    .trainer-cta-buttons {

        flex-direction: column;

        align-items: stretch;

        width: 100%;

        margin-top: 27px;
    }


    .trainer-cta-btn {

        width: 100%;

        min-height: 47px;

        padding: 0 15px;

        font-size: 13px;
    }


    /* DECORATIONS */

    .trainer-cta-decoration-one {

        width: 130px;
        height: 130px;

        top: -75px;
        right: -50px;

        border-width: 25px;
    }


    .trainer-cta-decoration-two {

        width: 80px;
        height: 80px;

        bottom: -50px;
        left: -35px;

        border-width: 18px;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .trainer-cta-section {

        padding: 45px 15px;
    }

    .trainer-cta-container {

        padding: 40px 18px;

        border-radius: 16px;
    }


    .trainer-cta-content h2 {

        font-size: 25px;
    }


    .trainer-cta-content p {

        font-size: 13.5px;
    }


    .trainer-cta-buttons {

        margin-top: 24px;
    }


    .trainer-cta-btn {

        min-height: 45px;

        font-size: 12px;

        border-radius: 7px;
    }
}


/* FAQ Section - White Background with Smooth Animations */
.faq-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

.faq-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #eef2f7;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #fa9805;
}

.faq-item.active {
    border-color: #fa9805;
    box-shadow: 0 4px 20px rgba(250, 152, 5, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #0a0e27;
    text-align: left;
    transition: all 0.3s ease;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question span {
    color: #fa9805;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #fa9805;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    font-style: normal;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease,
                padding 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 25px 0 25px;
    transform: translateY(-10px);
    transition: transform 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer-inner {
    padding: 0 25px 25px 25px;
    transform: translateY(0);
}

.faq-answer-inner p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
    animation: fadeInContent 0.5s ease;
}

.faq-answer-inner strong {
    color: #0a0e27;
    font-weight: 700;
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .faq-section {
        padding: 60px 30px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer-inner p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .faq-header {
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
        gap: 12px;
    }
    
    .faq-icon {
        font-size: 20px;
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 18px 18px 18px;
    }
    
    .faq-answer-inner p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 14px 15px;
        gap: 10px;
    }
    
    .faq-icon {
        font-size: 18px;
        width: 28px;
        height: 28px;
        line-height: 28px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 15px 15px 15px;
    }
    
    .faq-answer-inner p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .faq-question {
        font-size: 13px;
        padding: 12px 12px;
    }
    
    .faq-icon {
        font-size: 16px;
        width: 24px;
        height: 24px;
        line-height: 24px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 12px 12px 12px;
    }
    
    .faq-answer-inner p {
        font-size: 12px;
        line-height: 1.6;
    }
}