* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f9f9f9;
}



/* TOP BAR */
.top-bar {
    background-color: white;
    color: #140101;
    font-size: 18px;
    height: 60px;
}


.top-bar .container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 15px;
    display: flex;
    justify-content: space-between;
    align-items: cente000r;
}

.top-bar .right span {
    margin-left: 10px;
}


/* ===== TOP INFO BAR ===== */
.top-bar {
    background: #ff8c1a;
    /* bright orange like image */
    color: #ffffff;
    font-size: 17px;
    padding-top: 8px;
}

.top-bar .container {
    max-width: 1250px;
    margin: auto;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar .left,
.top-bar .right {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar i {
    margin-right: 6px;
    color: #ffffff;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .top-bar {
        font-size: 13px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .top-bar .left,
    .top-bar .right {
        justify-content: center;
    }
}

/* ===== NAVBAR ===== */

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #f8f9fa;
    /* clean light background */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ===== CONTAINER ===== */
.nav-wrapper {
    max-width: 1250px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== LOGO ===== */
.logo img {
    height: 85px;
    /* bigger logo */
    width: auto;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.logo img:hover {
    transform: scale(1.07);
    filter: drop-shadow(0 6px 14px rgba(255, 140, 26, 0.35));
}


nav a {
    text-decoration: none;
    color: #4b5563;
    /* dark grey */
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

/* ===== UNDERLINE EFFECT ===== */
nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: #ff8c1a;
    /* brand orange */
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #ff8c1a;
}

/* ===== LOGIN / SIGNUP BUTTON ===== */

.nav-auth {
    display: flex;
    align-items: center;
}

.btn-auth {
    padding: 10px 24px;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #ff8c1a, #f59e0b);
    box-shadow: 0 6px 18px rgba(255, 140, 26, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 140, 26, 0.5);
    background: linear-gradient(135deg, #f59e0b, #ff8c1a);
}

/* ===== MOBILE MENU ICON ===== */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #4b5563;
    cursor: pointer;
}

/* ===== MOBILE OVERLAY ===== */
.mc-overlay {
    position: fixed;
    inset: 0;
    background: #ff8c1a;
    display: none;
    z-index: 9999;
}

.mc-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.mc-overlay-content a {
    display: block;
    padding: 14px;
    font-size: 22px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mc-overlay-content a:hover {
    color: #fff3e0;
    transform: scale(1.08);
}

.mc-close {
    position: absolute;
    top: -70px;
    right: 0;
    font-size: 44px;
    color: #ffffff;
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    nav {
        display: none;
    }

    .nav-auth {
        display: none;
        /* hide button on mobile */
    }

    .menu-toggle {
        display: block;
    }

    .logo img {
        height: 75px;
    }
}



/* ================== CAROUSEL ================== */

.hero-section {
    width: 100%;
    height: 36vw;
    overflow: hidden;
    
    
}

.hero-section .img{
    width: 100%;
    height: 100%;
    background-image: url('../images/long-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width:543px) {
    .hero-section{
        height: 50vw;
    }
    .hero-section .img {
            background-image: url('../images/short-banner.png');
        }
}

.carousel-item {
    position: relative;
    height: 70vh;
    min-height: 500px;
}

/* Image fit */
.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Dark overlay */
.carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.45));
    z-index: 1;
}

/* ================== CAPTION ================== */

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
}

.home-page-pic{
    width: 90vw;
    height: 45vw;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width:1000px) {
    .home-page-pic {
        width: 90vw;
        height: 65vw;
        margin: auto;
        border-radius: 15px;
        overflow: hidden;   
    }
}


/* ================== ANIMATED TEXT ================== */


.animated-text {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 6px;
    text-transform: uppercase;
    /* white-space: nowrap; */
}


/* Letter animation */
.animated-text span {
    display: inline-block;
    opacity: 0;
    transform: translateX(-40px);
    animation: slideLetter 0.6s ease forwards;
}



@keyframes slideLetter {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}




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





@media (max-width: 992px) {
    .carousel-item {
        height: 60vh;
    }
}

@media (max-width: 768px) {
    .animated-text {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .animated-text {
        font-size: 1.7rem;
        letter-spacing: 2px;
    }
}


/* RESPONSIVE */
@media (max-width: 992px) {
    nav {
        width: 100%;
        background: #fff;
        flex-direction: column;
        display: none;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}





/* ================= AES COURSE SECTION ================= */



/* ===============================
   AES COURSE SECTION
================================ */

.aes-course-section {
    background: #fff9e6;
    padding: 60px 0;
    font-family: "Segoe UI", sans-serif;
}

.aes-course-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}


/* ===============================
   IMAGES
================================ */

.aes-course-images {
    position: relative;
    flex: 1;
}

/* Large Image (Static) */
.aes-img-large img {
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Small Image (Animated) */
.aes-img-small {
    position: absolute;
    bottom: -100px;
    right: -30px;
    width: 55%;
    animation: floatImage 4s ease-in-out infinite;
}

.aes-img-small img {
    width: 70%;
    border-radius: 12px;
    border: 6px solid #fff9e6;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}


/* ===============================
   FLOATING ANIMATION
================================ */

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ===============================
   CONTENT
================================ */

.aes-course-content {
    flex: 1;
    padding: 30px;
    text-align: start;
}

.aes-subtitle {
    color: #c48b00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aes-title {
    font-size: 32px;
    margin: 10px 0 20px;
}



.aes-course-points li {
    margin-bottom: 8px;
}

.aes-course-btn {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .aes-course-container {
        flex-direction: column;
        text-align: center;
    }


    .aes-img-small {
        position: relative;
        bottom: 0;
        right: 0;
        width: 75%;
        margin: -40px auto 0;
        animation: floatImage 3.5s ease-in-out infinite;
    }
}


/* ================= CONTENT ================= */


.aes-subtitle {
    display: inline-block;
    color: #d97706;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aes-title {
    font-size: 2.6rem;
    color: #1f2937;
    margin-bottom: 20px;
}

.aes-text {
    color: #374151;
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.aes-course-points {
    margin: 20px 0 30px;
    padding-left: 20px;
    text-align: start;
}

.aes-course-points li {
    color: #374151;
    margin-bottom: 10px;
    list-style: disc;
}

/* ================= BUTTON ================= */

.aes-course-btn {
    display: inline-block;
    background: #f59e0b;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.aes-course-btn:hover {
    background: #d97706;
}

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

@media (max-width: 992px) {
    .aes-course-container {
        flex-direction: column;
    }

    .aes-img-small {
        position: static;
        width: 70%;
        margin: 20px auto 0;
    }

    .aes-title {
        font-size: 2.1rem;
    }
}


/* Section */
.aes-courses-section {
    background: linear-gradient(180deg, #f8fbff, #eef6ff);
    padding: 60px 16px;
    font-family: 'Segoe UI', sans-serif;
}

/* Container */
.aes-container {
    max-width: 1200px;
    margin: auto;
}

/* ===== MODULE BADGE ===== */
.aes-course-card {
    position: relative;
}

.aes-module-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0, 0.35);
    z-index: 2;
}

/* Headings */
.aes-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #243a5e;
    margin-bottom: 8px;
}

.aes-section-subtitle {
    text-align: center;
    font-size: 15px;
    color: #555;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}


/* Grid */
.aes-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 320px);
    gap: 20px;
    justify-content: center;
}


/* Card */
.aes-course-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Added fixed width */
    transition: all 0.3s ease;
}



.aes-course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}


/* Image */
.aes-course-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 14px;
}


/* Title */
.aes-course-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2d3d;
    margin-bottom: 10px;
}

/* Description */
.aes-course-card p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

/* ===============================
   AUTHOR / AVATAR FIX
================================ */

.aes-card-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

/* Visible Circular Avatar */
.aes-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b8ce6, #6c63ff);
    color: #111010;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(108, 99, 255, 0.25);
}

/* Author Name */
.aes-user-name {
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

/* Button */
.aes-btn {
    margin-top: 12px;
    margin-left: 50px;
    padding: 7px 12px;
    width: 250px;
    /* reduced */
    text-align: center;
    background: linear-gradient(135deg, #ff9800, #f77851);
    color: #fff;
    font-size: 13.5px;
    /* reduced */
    font-weight: 600;
    border-radius: 8px;
    /* slightly tighter */
    text-decoration: none;
    transition: all 0.3s ease;
}



.aes-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.35);
}


/* Pastel Theme */
.pastel-yellow {
    background: #fff7e6;
}

/* Responsive */
@media (max-width: 992px) {
    .aes-course-card img {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .aes-section-title {
        font-size: 24px;
    }

    .aes-section-subtitle {
        font-size: 14px;
    }

    .aes-course-card img {
        height: 140px;
    }
}

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

/* Tablet */
@media (max-width: 992px) {
    .aes-course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .aes-course-grid {
        grid-template-columns: 1fr;
    }
}

/* volunteer Section */
.aes-volunteer-section {
    position: relative;
    background: linear-gradient(120deg, #fffdf8, #f4fff8);
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

/* Soft wave effect */
.aes-volunteer-section::before,
.aes-volunteer-section::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.3;
    z-index: 0;
}

.aes-volunteer-section::before {
    background: #ffe0b2;
    top: -200px;
    left: -200px;
}

.aes-volunteer-section::after {
    background: #c8f7dc;
    bottom: -200px;
    right: -200px;
}

/* Container */
.aes-volunteer-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* Left Content */
.aes-volunteer-content {
    flex: 1;
    min-width: 280px;
}

.aes-volunteer-tag {
    display: inline-block;
    color: #ff7a00;
    font-weight: 600;
    margin-bottom: 12px;
}

.aes-volunteer-content h2 {
    font-size: 36px;
    color: #1e4e7a;
    margin-bottom: 20px;
    font-weight: 700;
}


.aes-volunteer-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 520px;
}

/* Button */
.aes-volunteer-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 13px 32px;
    background: linear-gradient(135deg, #1fa92e, #138a24);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.aes-volunteer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Right Image */
.aes-volunteer-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.aes-volunteer-image img {
    max-width: 100%;
    height: auto;
}

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

    .aes-volunteer-content h2 {
        font-size: 28px;
    }

    .aes-volunteer-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

/*last--section-- hero--*/
/* Root section – attaches to previous section */
#aesAttachedImageHero {
    width: 100%;
    margin: 0;
    padding: 90px 20px;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.85)),
        url("../images/flag.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: "Segoe UI", sans-serif;
}

/* Overlay wrapper */
#aesAttachedImageHero .aesAttachedImageHeroOverlay {
    width: 100%;
}

/* Content */
#aesAttachedImageHero .aesAttachedImageHeroContent {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* Title */
#aesAttachedImageHero .aesAttachedImageHeroTitle {
    margin: 0 0 18px 0;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
}

/* Highlight */
#aesAttachedImageHero .aesAttachedImageHeroHighlight {
    color: #2ecc71;
    display: inline-block;
}

/* Text */
#aesAttachedImageHero .aesAttachedImageHeroText {
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #e6e6e6;
}

/* Responsive */
@media (max-width: 992px) {
    #aesAttachedImageHero .aesAttachedImageHeroTitle {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    #aesAttachedImageHero {
        padding: 65px 18px;
    }

    #aesAttachedImageHero .aesAttachedImageHeroTitle {
        font-size: 30px;
    }

    #aesAttachedImageHero .aesAttachedImageHeroText {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    #aesAttachedImageHero .aesAttachedImageHeroTitle {
        font-size: 24px;
    }
}

/* ================= FOOTER BASE ================= */
.mp-footer {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

/* ================= FOOTER GRID ================= */
.mp-footer-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* ================= FOOTER COLUMNS ================= */
.mp-footer-col p {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.7;
}

.mp-footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.mp-footer-desc {
    margin-top: 10px;
}

/* ================= HEADINGS ================= */
.mp-footer-heading {
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
}

.mp-footer-heading::after {
    content: '';
    width: 45px;
    height: 3px;
    background: #f9c74f;
    display: block;
    margin-top: 6px;
    border-radius: 6px;
}

/* ================= LINKS ================= */
.mp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mp-footer-links li {
    margin-bottom: 10px;
}

.mp-footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.3s ease;
}

.mp-footer-links a:hover {
    color: #f9c74f;
    padding-left: 6px;
}

/* ================= SOCIAL ICONS ================= */
.mp-footer-social {
    margin-top: 15px;
}

.mp-footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: #f9c74f;
    color: #000;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.mp-footer-social a:hover {
    transform: translateY(-5px);
    background: #ffffff;
}

/* ================= BOTTOM BAR ================= */
.mp-footer-bottom {
    background: #4f676e;
    padding: 20px 10px;
}

.mp-footer-bottom-wrap {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

/* ================= DESIGNED BY ================= */
.mp-designed span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 6px;
}




.mp-designed img {
    height: 34px;
}

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

/* Tablets */
@media (max-width: 992px) {
    .mp-footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .mp-footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mp-footer-social {
        justify-content: center;
    }

    .mp-footer-bottom-wrap {
        flex-direction: column;
        text-align: center;
    }

    .mp-designed span {
        justify-content: center;
    }
}

/* ============================= */
/* AES LMS ABOUT – SAFE SCOPED */
/* ============================= */

#aesAboutLMS {
    background: #fffef8;
    padding: 60px 20px;
}

#aesAboutLMS .aes-container {
    max-width: 1200px;
    margin: auto;
}

/* HERO */
#aesAboutLMS .aes-hero {
    background: linear-gradient(135deg, #fff3cc, #e8f6ff);
    border-radius: 18px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 60px;
}

#aesAboutLMS h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2b2b2b;
}

#aesAboutLMS h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

#aesAboutLMS p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* SECTIONS */
#aesAboutLMS .aes-section {
    margin-bottom: 70px;
}

/* CARDS */
#aesAboutLMS .aes-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

#aesAboutLMS .aes-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
}

#aesAboutLMS .aes-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    background: #f5fbff;
}

#aesAboutLMS .aes-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #004d7a;
}


#aesAboutLMS .aes-card span {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    display: block;
    margin-bottom: 12px;
}

/* HIGHLIGHT */
#aesAboutLMS .aes-highlight {
    background: #fff4d9;
    border-radius: 16px;
    padding: 45px;
    margin-bottom: 70px;
}

/* LIST */
#aesAboutLMS .aes-list {
    padding-left: 22px;
}

#aesAboutLMS .aes-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* FOOT NOTE */
#aesAboutLMS .aes-footer-note {
    text-align: center;
    font-weight: 500;
    margin-top: 80px;
}



/* RESPONSIVE */
@media (max-width: 768px) {
    #aesAboutLMS h1 {
        font-size: 28px;
    }
}

/*-----------Testimonial section---------------------*/
/* ================================
   BASE SECTION
================================ */
.bc-testimonial-section {
    padding: 70px 20px;
    background: linear-gradient(180deg, #f8fbff, #eef6ff);
    font-family: "Segoe UI", sans-serif;
}

.bc-testimonial-section * {
    box-sizing: border-box;
}

.bc-ts-container {
    max-width: 1200px;
    margin: auto;
}

/* ================================
   HEADER
================================ */
.bc-ts-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.bc-ts-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
}

.bc-ts-header h2 span {
    color: #dc9026;
}

.bc-ts-subtitle {
    margin-top: 6px;
    font-size: 15px;
    color: #64748b;
    max-width: 520px;
}

/* ================================
   NAV
================================ */
.bc-ts-nav {
    display: flex;
    gap: 10px;
}

.bc-ts-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #dc9026;
    color: #fff;
    border: none;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.bc-ts-btn:hover {
    background: #ae6f26;
}

/* ================================
   SLIDER
================================ */
.bc-ts-slider-wrapper {
    overflow: hidden;
}

.bc-ts-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

/* ================================
   CARD
================================ */
.bc-ts-card {
    min-width: 330px;
    background: #fff;
    padding: 26px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ================================
   COURSE TAGS
================================ */
.bc-course-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.bc-course-tag.eq {
    background: #fee2e2;
    color: #991b1b;
}

.bc-course-tag.safety {
    background: #fff7ed;
    color: #9a3412;
}

.bc-course-tag.dr {
    background: #ecfeff;
    color: #155e75;
}

.bc-course-tag.school {
    background: #ecfdf5;
    color: #065f46;
}

.bc-course-tag.response {
    background: #eef2ff;
    color: #3730a3;
}

/* ================================
   PROFILE
================================ */
.bc-ts-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.bc-ts-profile img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #dc2626;
}

.bc-ts-profile h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.bc-ts-profile span {
    font-size: 13px;
    color: #64748b;
}

/* ================================
   TEXT
================================ */
.bc-ts-text {
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .bc-ts-card {
        min-width: 260px;
    }

    .bc-ts-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .bc-ts-card {
        min-width: 100%;
    }
}

.example-section {
    width: 800px;
    margin: 60px auto;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Tabs */
.example-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    background: #f7f7f7;
}

.example-tab {
    flex: 1;
    padding: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #333;
    transition: 0.3s ease;
}

.example-tab:hover {
    background: #ececec;
}

/* Active Tab */
.example-tab.active {
    background: #fff;
    color: #ff4d00;
    border-bottom: 3px solid #ff4d00;
}

/* Content */
.example-content {
    padding: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* Hide Panes */
.example-pane {
    display: none;
}

.example-pane.active {
    display: block;
}


/* Grid — 4 cols like screenshot */
.cc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1100px) {
    .cc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Card — clean white, subtle border like screenshot */
.cc-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
    position: relative;
}

.cc-card:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Thumbnail */
.cc-thumb {
    width: 100%;
    height: 165px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    position: relative;
    background: #f0f0f0;
    flex-shrink: 0;
}

.cc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cc-card:hover .cc-thumb img {
    transform: scale(1.04);
}

.cc-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ccc;
    background: #f7f7f7;
}

/* Hover overlay */
.cc-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.25s ease;
    text-decoration: none;
}

.cc-card:hover .cc-hover-overlay {
    background: rgba(0, 0, 0, 0.48);
    opacity: 1;
}

.cc-hover-btn {
    background: #ff9800;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    transform: translateY(6px);
    transition: transform 0.25s ease;
}

.cc-card:hover .cc-hover-btn {
    transform: translateY(0);
}

/* Body */
.cc-body {
    padding: 13px 14px 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Author */
.cc-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.cc-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #7c6fd4;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cc-name {
    font-size: 13px;
    font-weight: 500;
    color: #555;
}

/* Title */
.cc-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #111;
    line-height: 1.45;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cc-link {
    color: inherit;
    text-decoration: none;
}

.cc-link:hover {
    color: #ff9800;
}

/* Meta */
.cc-meta {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    margin-bottom: 5px;
}

.cc-meta i {
    color: #ff9800;
    font-size: 12px;
}

/* Date */
.cc-date {
    font-size: 12px;
    color: #aaa;
}

/* Hidden by search */
.cc-card.cc-hidden {
    display: none;
}

/* Nudge */
.cc-nudge {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
    background: #fffbf2;
    border: 1.5px solid #ffe0a0;
    border-radius: 10px;
    padding: 18px 24px;
}

.cc-nudge-btn {
    margin-left: auto;
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(255, 152, 0, 0.3);
    transition: all 0.2s ease;
}

.cc-nudge-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 152, 0, 0.4);
    color: #fff;
}

/* ===== USER DROPDOWN ===== */
.user-dropdown {
    position: relative;
}

/* Button */
.user-btn {
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    color: #fff;
    border: none;

    width: 50px;
    height: 50px;
    border-radius: 50%;

    font-weight: 700;
    font-size: 14px;
    cursor: pointer;

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

    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.35);
    transition: all 0.25s ease;
}

.user-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.45);
}

/* Avatar */
.user-avatar {
    background: #fff;
    color: #ff9800;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Dropdown menu */
.user-menu {
    position: absolute;
    right: 0;
    top: 130%;
    background: #ffffff;
    min-width: 200px;
    border-radius: 14px;
    padding: 8px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    display: none;
    z-index: 999;

    /* animation */
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    transition: all 0.25s ease;
}

/* Show dropdown */
.user-dropdown.active .user-menu {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Dropdown items */
.user-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

/* Hover effect */
.user-menu a:hover {
    background: #fff3e0;
    color: #ff9800;
}

/* Icons */
.user-menu a i {
    color: #ff9800;
    font-size: 15px;
}

.profile_name {
    font-size: 26px;
    /* balanced, not too large */
    font-weight: 700;
    padding-left: 20px;
    margin: 0 0 6px;
    color: #b14f28;
    /* deep slate */
    letter-spacing: 0.5px;
    text-transform: capitalize;
    font-family: "Segoe UI", sans-serif;
    position: relative;
}

/* Divider (optional) */
.user-menu hr {
    margin: 6px 0;
    border: none;
    height: 1px;
    background: #f1f1f1;
}

/* ── Course Cards ── */
.cc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media(max-width:1100px) {
    .cc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:768px) {
    .cc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.cc-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: box-shadow .22s, transform .22s;
    position: relative;
}

.cc-card:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, .1);
    transform: translateY(-3px);
}

.cc-thumb {
    width: 100%;
    height: 165px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    position: relative;
    background: #f0f0f0;
    flex-shrink: 0;
}

.cc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.cc-card:hover .cc-thumb img {
    transform: scale(1.04);
}

.cc-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ccc;
    background: #f7f7f7;
}

.cc-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .25s;
    text-decoration: none;
}

.cc-card:hover .cc-hover-overlay {
    background: rgba(0, 0, 0, .48);
    opacity: 1;
}

.cc-hover-btn {
    background: #ff9800;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    transform: translateY(6px);
    transition: transform .25s;
}

.cc-card:hover .cc-hover-btn {
    transform: translateY(0);
}

.cc-body {
    padding: 13px 14px 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cc-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.cc-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #7c6fd4;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cc-name {
    font-size: 13px;
    font-weight: 500;
    color: #555;
}

.cc-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #111;
    line-height: 1.45;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cc-link {
    color: inherit;
    text-decoration: none;
}

.cc-link:hover {
    color: #ff9800;
}

.cc-meta {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    margin-bottom: 5px;
}

.cc-meta i {
    color: #ff9800;
    font-size: 12px;
}

.cc-date {
    font-size: 12px;
    color: #aaa;
}

.cc-card.cc-hidden {
    display: none;
}

.cc-nudge {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
    background: #fffbf2;
    border: 1.5px solid #ffe0a0;
    border-radius: 10px;
    padding: 18px 24px;
}

.cc-nudge-btn {
    margin-left: auto;
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 152, 0, .3);
    transition: all .2s;
}

.cc-nudge-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 152, 0, .4);
}

.aes-topbar{
    background: orange;
}

/* ══════════════════════════════════
   MODAL BASE
══════════════════════════════════ */
.am-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 20, .65);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: amFadeIn .25s ease;
}

.am-overlay.open {
    display: flex;
}

@keyframes amFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes amSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.am-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 820px;
    display: grid;
    grid-template-columns: 300px 1fr;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .25);
    position: relative;
    animation: amSlideUp .3s ease;
    max-height: 90vh;
}

.am-modal-signup {
    max-width: 880px;
}

/* Close */
.am-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background .2s;
    line-height: 1;
}

.am-close:hover {
    background: rgba(255, 255, 255, .3);
}

/* ── Left panel ── */
.am-panel-left {
    background: linear-gradient(160deg, #ff9800 0%, #e65c00 100%);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.am-panel-left::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    top: -60px;
    right: -60px;
}

.am-panel-left::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    bottom: -40px;
    left: -40px;
}

.am-brand-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 24px;
}

.am-panel-left h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px;
    color: #fff;
}

.am-panel-left p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

.am-dots {
    display: flex;
    gap: 8px;
    margin-top: 36px;
}

.am-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
}

.am-dot.active {
    width: 22px;
    border-radius: 10px;
    background: #fff;
}

/* Signup left extras */
.am-panel-signup {
    justify-content: space-between;
    padding: 40px 28px;
}

.am-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
}

.am-step {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.am-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, .3);
    transition: all .3s;
    flex-shrink: 0;
}

.am-step.active .am-step-circle {
    background: #fff;
    color: #ff9800;
    border-color: #fff;
}

.am-step.done .am-step-circle {
    background: rgba(255, 255, 255, .9);
    color: #ff9800;
    border-color: #fff;
}

.am-step span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
}

.am-step.active span {
    color: #fff;
}

.am-step-line {
    width: 2px;
    height: 22px;
    background: rgba(255, 255, 255, .25);
    margin-left: 15px;
}

/* ── Right panel ── */
.am-panel-right {
    padding: 40px 38px;
    overflow-y: auto;
    max-height: 90vh;
}

.am-form-header {
    margin-bottom: 26px;
}

.am-form-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0 0 6px;
}

.am-form-header p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Fields */
.am-field {
    margin-bottom: 16px;
}

.am-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.am-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
    overflow: hidden;
    transition: border .2s, box-shadow .2s;
}

.am-input-wrap:focus-within {
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, .12);
    background: #fff;
}

.am-input-wrap>i {
    padding: 0 12px;
    color: #bbb;
    font-size: 14px;
    flex-shrink: 0;
    pointer-events: none;
}

.am-input-wrap input {
    flex: 1;
    padding: 12px 8px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #111;
    background: transparent;
}

.am-input-wrap input::placeholder {
    color: #bbb;
}

.am-eye {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 12px;
    color: #bbb;
    font-size: 13px;
}

.am-eye:hover {
    color: #ff9800;
}

/* Phone field */
.am-phone-wrap {
    overflow: visible;
    padding-left: 0;
}

.am-country-code {
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 8px 12px 12px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    border-right: 1.5px solid #e5e7eb;
    flex-shrink: 0;
}

.am-phone-wrap input {
    padding-left: 10px;
}

/* Password strength */
.am-pwd-strength {
    height: 4px;
    border-radius: 4px;
    background: #eee;
    margin-top: 8px;
    overflow: hidden;
}

#pwdStrengthFill {
    height: 100%;
    width: 0;
    border-radius: 4px;
    transition: width .4s, background .4s;
}

/* Submit */
.am-submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #ff9800, #e65c00);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(255, 152, 0, .3);
    transition: all .25s;
}

.am-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 152, 0, .4);
}

.am-submit-btn:active {
    transform: translateY(0);
}

/* Divider */
.am-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.am-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #eee;
}

.am-divider span {
    background: #fff;
    padding: 0 14px;
    font-size: 12px;
    color: #bbb;
    position: relative;
}

/* Switch */
.am-switch {
    text-align: center;
    font-size: 13px;
    color: #888;
}

.am-switch-link {
    background: none;
    border: none;
    cursor: pointer;
    color: #ff9800;
    font-weight: 700;
    font-size: 13px;
    padding: 0;
}

.am-switch-link:hover {
    text-decoration: underline;
}

/* Error */
.am-error-msg {
    background: #fff5f5;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    margin-top: 12px;
}

/* Back btn */
.am-back-btn {
    width: 100%;
    margin-top: 12px;
    padding: 11px;
    background: none;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #666;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s;
}

.am-back-btn:hover {
    border-color: #ff9800;
    color: #ff9800;
}

/* ── OTP ── */
.am-otp-wrap {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 28px 0 20px;
}

.am-otp-box {
    width: 52px;
    height: 60px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    outline: none;
    transition: border .2s, box-shadow .2s, transform .15s;
    background: #fafafa;
}

.am-otp-box:focus {
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, .15);
    background: #fff;
    transform: scale(1.06);
}

.am-otp-box.filled {
    border-color: #ff9800;
    background: #fff9f0;
}

.am-otp-box.error {
    border-color: #ef4444;
    animation: amShake .4s ease;
}

@keyframes amShake {

    0%,
    100% {
        transform: translateX(0)
    }

    20% {
        transform: translateX(-6px)
    }

    40% {
        transform: translateX(6px)
    }

    60% {
        transform: translateX(-4px)
    }

    80% {
        transform: translateX(4px)
    }
}

.am-otp-timer {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.am-resend-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #ff9800;
    font-weight: 700;
    font-size: 13px;
    text-decoration: underline;
}

/* ── Success ── */
.am-success-wrap {
    text-align: center;
    padding: 20px 0;
}

.am-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin: 0 auto 24px;
    box-shadow: 0 12px 32px rgba(34, 197, 94, .3);
    animation: amPopIn .5s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes amPopIn {
    from {
        transform: scale(0);
        opacity: 0
    }

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

.am-success-wrap h3 {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.am-success-wrap p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.am-success-info {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 13px;
    color: #166534;
    margin-top: 18px;
    text-align: left;
    line-height: 1.6;
}

/* Responsive */
@media(max-width:640px) {
    .am-modal {
        grid-template-columns: 1fr;
    }

    .am-panel-left {
        display: none;
    }

    .am-panel-right {
        padding: 28px 22px;
    }

    .am-otp-box {
        width: 42px;
        height: 52px;
        font-size: 18px;
    }
}

.aes-contact {
    background: #fffdf2;
    padding: 80px 15px;
    font-family: 'Segoe UI', sans-serif;
}

/* Section Card */
.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Headings */
.contact-title {
    font-weight: 800;
    color: #1f2937;
}

.contact-subtitle {
    color: #555;
    font-size: 15px;
}

/* Info Box */
.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-box i {
    font-size: 22px;
    color: #e63946;
    margin-top: 4px;
}

.info-box h6 {
    margin: 0;
    font-weight: 600;
}

.info-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* Form */
.contact-form .form-control {
    border-radius: 12px;
    padding: 12px;
}

.contact-form textarea {
    resize: none;
}

.contact-btn {
    background: #e63946;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    transition: .3s;
}

.contact-btn:hover {
    background: #c62828;
}

/* Highlight Box */
.highlight-box {
    background: #f9fafb;
    border-left: 5px solid #e63946;
    padding: 20px;
    border-radius: 12px;
    font-size: 14px;
    color: #444;
}

/* Responsive */
@media(max-width:768px) {
    .contact-card {
        padding: 25px;
    }
}


* ══════════════════════════════════ TOP BAR ══════════════════════════════════ */ .aes-topbar {
    background: #ff8c1a;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

.aes-topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.aes-topbar-left {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .92);
}

.aes-topbar-left i {
    font-size: 12px;
}

.aes-topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.aes-topbar-right a {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}

.aes-topbar-right a:hover {
    color: #fff;
}

@media(max-width:768px) {
    .aes-topbar-left {
        display: none;
    }

    .aes-topbar-right {
        gap: 12px;
        font-size: 12px;
    }
}

/* ══════════════════════════════════
        NAVBAR
     ══════════════════════════════════ */
.aes-nav {
    position: sticky;
    top: 0;
    z-index: 9000;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
    transition: box-shadow .3s;
}

.aes-nav.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
}

.aes-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Logo */
.aes-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.aes-logo img {
    height: 52px;
    width: auto;
    transition: transform .3s;
}

.aes-logo img:hover {
    transform: scale(1.04);
}

/* Nav links */
.aes-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.aes-link {
    padding: 7px 13px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    text-decoration: none;
    position: relative;
    transition: color .2s, background .2s;
    white-space: nowrap;
}


/* Auth area */
.aes-auth {
    margin-left: auto;
    flex-shrink: 0;
}

/* Login button */
.aes-login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #ff8c1a, #e67300);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 140, 26, .35);
    transition: all .25s;
    white-space: nowrap;
}

.aes-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 140, 26, .45);
}

/* ── Profile button ── */
.aes-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    border-radius: 50px;
    border: 1.5px solid #f0f0f0;
    cursor: pointer;
    position: relative;
    transition: all .25s;
    background: #fff;
}

.aes-profile:hover {
    border-color: #ff8c1a;
    background: #fff9f2;
    box-shadow: 0 4px 16px rgba(255, 140, 26, .15);
}

.aes-profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c1a, #e67300);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(255, 140, 26, .3);
}

.aes-profile-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.aes-profile-name {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.aes-profile-role {
    font-size: 11px;
    color: #ff8c1a;
    font-weight: 600;
}

.aes-profile-caret {
    font-size: 11px;
    color: #aaa;
    transition: transform .25s;
}

.aes-profile.open .aes-profile-caret {
    transform: rotate(180deg);
}

/* ── Dropdown menu ── */
.aes-profile-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: -56px;
    width: 260px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .14);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
    z-index: 1000;
}

.aes-profile.open .aes-profile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.aes-menu-header {
    padding: 16px 16px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fff9f2, #fff5eb);
}

.aes-menu-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c1a, #e67300);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 140, 26, .3);
}

.aes-menu-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

.aes-menu-email {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

.aes-menu-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 4px 0;
}

.aes-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    text-decoration: none;
    transition: background .2s;
    cursor: pointer;
}

.aes-menu-item:hover {
    background: #fafafa;
}

.aes-menu-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.aes-icon-dash {
    background: #eff6ff;
    color: #3b82f6;
}

.aes-icon-profile {
    background: #f0fdf4;
    color: #22c55e;
}

.aes-icon-courses {
    background: #fff7ed;
    color: #f97316;
}

.aes-icon-logout {
    background: #fef2f2;
    color: #ef4444;
}

.aes-menu-item-label {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.aes-menu-item-sub {
    font-size: 11px;
    color: #aaa;
    margin-top: 1px;
}

.aes-menu-logout:hover {
    background: #fff5f5;
}

.aes-menu-logout .aes-menu-item-label {
    color: #ef4444;
}

/* ══════════════════════════════════
        HAMBURGER
     ══════════════════════════════════ */
.aes-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    flex-shrink: 0;
}

.aes-burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #333;
    border-radius: 4px;
    transition: all .3s ease;
}

.aes-burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.aes-burger.open span:nth-child(2) {
    opacity: 0;
}

.aes-burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════
        MOBILE DRAWER
     ══════════════════════════════════ */
.aes-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: #fff;
    z-index: 99999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.aes-drawer.open {
    right: 0;
}

.aes-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.aes-drawer-close {
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.aes-drawer-close:hover {
    background: #ffe5cc;
    color: #ff8c1a;
}

.aes-drawer-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fff9f2, #fff5eb);
    border-bottom: 1px solid #f0f0f0;
}

.aes-drawer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c1a, #e67300);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 140, 26, .3);
}

.aes-drawer-links {
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.aes-drawer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: background .2s, color .2s;
}

.aes-drawer-links a i {
    width: 18px;
    text-align: center;
    color: #ff8c1a;
    font-size: 14px;
}

.aes-drawer-links a:hover {
    background: #fff5eb;
    color: #ff8c1a;
}

.aes-drawer-sep {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

.aes-drawer-logout {
    color: #ef4444 !important;
}

.aes-drawer-logout i {
    color: #ef4444 !important;
}

.aes-drawer-logout:hover {
    background: #fff5f5 !important;
}

.aes-drawer-login-btn {
    margin: 12px 20px;
    padding: 13px;
    background: linear-gradient(135deg, #ff8c1a, #e67300);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(255, 140, 26, .35);
    transition: all .25s;
}

.aes-drawer-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 140, 26, .45);
}

/* Overlay */
.aes-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 99998;
    display: none;
    backdrop-filter: blur(2px);
}

.aes-drawer-overlay.open {
    display: block;
}

/* ══════════════════════════════════
        RESPONSIVE
     ══════════════════════════════════ */
@media(max-width:1024px) {
    .aes-links {
        gap: 0;
    }

    .aes-link {
        padding: 7px 10px;
        font-size: 13px;
    }
}

@media(max-width:900px) {
    .aes-links {
        display: none;
    }

    .aes-burger {
        display: flex;
    }

    .aes-profile-info {
        display: none;
    }

    .aes-profile-caret {
        display: none;
    }

    .aes-profile {
        padding: 4px;
        border: none;
        background: none;
    }

    .aes-profile:hover {
        background: #fff5eb;
        border-radius: 50%;
    }

    .aes-profile-avatar {
        width: 40px;
        height: 40px;
    }
}

@media(max-width:480px) {
    .aes-nav-inner {
        padding: 0 14px;
        gap: 12px;
    }

    .aes-logo img {
        height: 44px;
    }
}

* ── Course Cards ── */ .cc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media(max-width:1100px) {
    .cc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:768px) {
    .cc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.cc-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: box-shadow .22s, transform .22s;
    position: relative;
}

.cc-card:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, .1);
    transform: translateY(-3px);
}

.cc-thumb {
    width: 100%;
    height: 165px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    position: relative;
    background: #f0f0f0;
    flex-shrink: 0;
}

.cc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.cc-card:hover .cc-thumb img {
    transform: scale(1.04);
}

.cc-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ccc;
    background: #f7f7f7;
}

.cc-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .25s;
    text-decoration: none;
}

.cc-card:hover .cc-hover-overlay {
    background: rgba(0, 0, 0, .48);
    opacity: 1;
}

.cc-hover-btn {
    background: #ff9800;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    transform: translateY(6px);
    transition: transform .25s;
}

.cc-card:hover .cc-hover-btn {
    transform: translateY(0);
}

.cc-body {
    padding: 13px 14px 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cc-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.cc-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #7c6fd4;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cc-name {
    font-size: 13px;
    font-weight: 500;
    color: #555;
}

.cc-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #111;
    line-height: 1.45;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cc-link {
    color: inherit;
    text-decoration: none;
}

.cc-link:hover {
    color: #ff9800;
}

.cc-meta {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    margin-bottom: 5px;
}

.cc-meta i {
    color: #ff9800;
    font-size: 12px;
}

.cc-date {
    font-size: 12px;
    color: #aaa;
}

.cc-card.cc-hidden {
    display: none;
}

.cc-nudge {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
    background: #fffbf2;
    border: 1.5px solid #ffe0a0;
    border-radius: 10px;
    padding: 18px 24px;
}

.cc-nudge-btn {
    margin-left: auto;
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 152, 0, .3);
    transition: all .2s;
}

.cc-nudge-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 152, 0, .4);
}

/* ══════════════════════════════════
                           MODAL BASE
                        ══════════════════════════════════ */
.am-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 20, .65);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: amFadeIn .25s ease;
}

.am-overlay.open {
    display: flex;
}

@keyframes amFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes amSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.am-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 820px;
    display: grid;
    grid-template-columns: 300px 1fr;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .25);
    position: relative;
    animation: amSlideUp .3s ease;
    max-height: 90vh;
}

.am-modal-signup {
    max-width: 880px;
}

/* Close */
.am-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background .2s;
    line-height: 1;
}

.am-close:hover {
    background: rgba(255, 255, 255, .3);
}

/* ── Left panel ── */
.am-panel-left {
    background: linear-gradient(160deg, #ff9800 0%, #e65c00 100%);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.am-panel-left::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    top: -60px;
    right: -60px;
}

.am-panel-left::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    bottom: -40px;
    left: -40px;
}

.am-brand-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 24px;
}

.am-panel-left h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px;
    color: #fff;
}

.am-panel-left p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

.am-dots {
    display: flex;
    gap: 8px;
    margin-top: 36px;
}

.am-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
}

.am-dot.active {
    width: 22px;
    border-radius: 10px;
    background: #fff;
}

/* Signup left extras */
.am-panel-signup {
    justify-content: space-between;
    padding: 40px 28px;
}

.am-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
}

.am-step {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.am-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, .3);
    transition: all .3s;
    flex-shrink: 0;
}

.am-step.active .am-step-circle {
    background: #fff;
    color: #ff9800;
    border-color: #fff;
}

.am-step.done .am-step-circle {
    background: rgba(255, 255, 255, .9);
    color: #ff9800;
    border-color: #fff;
}

.am-step span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
}

.am-step.active span {
    color: #fff;
}

.am-step-line {
    width: 2px;
    height: 22px;
    background: rgba(255, 255, 255, .25);
    margin-left: 15px;
}

/* ── Right panel ── */
.am-panel-right {
    padding: 40px 38px;
    overflow-y: auto;
    max-height: 90vh;
}

.am-form-header {
    margin-bottom: 26px;
}

.am-form-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0 0 6px;
}

.am-form-header p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Fields */
.am-field {
    margin-bottom: 16px;
}

.am-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.am-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
    overflow: hidden;
    transition: border .2s, box-shadow .2s;
}

.am-input-wrap:focus-within {
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, .12);
    background: #fff;
}

.am-input-wrap>i {
    padding: 0 12px;
    color: #bbb;
    font-size: 14px;
    flex-shrink: 0;
    pointer-events: none;
}

.am-input-wrap input {
    flex: 1;
    padding: 12px 8px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #111;
    background: transparent;
}

.am-input-wrap input::placeholder {
    color: #bbb;
}

.am-eye {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 12px;
    color: #bbb;
    font-size: 13px;
}

.am-eye:hover {
    color: #ff9800;
}

/* Phone field */
.am-phone-wrap {
    overflow: visible;
    padding-left: 0;
}

.am-country-code {
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 8px 12px 12px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    border-right: 1.5px solid #e5e7eb;
    flex-shrink: 0;
}

.am-phone-wrap input {
    padding-left: 10px;
}

/* Password strength */
.am-pwd-strength {
    height: 4px;
    border-radius: 4px;
    background: #eee;
    margin-top: 8px;
    overflow: hidden;
}

#pwdStrengthFill {
    height: 100%;
    width: 0;
    border-radius: 4px;
    transition: width .4s, background .4s;
}

/* Submit */
.am-submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #ff9800, #e65c00);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(255, 152, 0, .3);
    transition: all .25s;
}

.am-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 152, 0, .4);
}

.am-submit-btn:active {
    transform: translateY(0);
}

/* Divider */
.am-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.am-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #eee;
}

.am-divider span {
    background: #fff;
    padding: 0 14px;
    font-size: 12px;
    color: #bbb;
    position: relative;
}

/* Switch */
.am-switch {
    text-align: center;
    font-size: 13px;
    color: #888;
}

.am-switch-link {
    background: none;
    border: none;
    cursor: pointer;
    color: #ff9800;
    font-weight: 700;
    font-size: 13px;
    padding: 0;
}

.am-switch-link:hover {
    text-decoration: underline;
}

/* Error */
.am-error-msg {
    background: #fff5f5;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    margin-top: 12px;
}

/* Back btn */
.am-back-btn {
    width: 100%;
    margin-top: 12px;
    padding: 11px;
    background: none;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #666;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s;
}

.am-back-btn:hover {
    border-color: #ff9800;
    color: #ff9800;
}

/* ── OTP ── */
.am-otp-wrap {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 28px 0 20px;
}

.am-otp-box {
    width: 52px;
    height: 60px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    outline: none;
    transition: border .2s, box-shadow .2s, transform .15s;
    background: #fafafa;
}

.am-otp-box:focus {
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, .15);
    background: #fff;
    transform: scale(1.06);
}

.am-otp-box.filled {
    border-color: #ff9800;
    background: #fff9f0;
}

.am-otp-box.error {
    border-color: #ef4444;
    animation: amShake .4s ease;
}

@keyframes amShake {

    0%,
    100% {
        transform: translateX(0)
    }

    20% {
        transform: translateX(-6px)
    }

    40% {
        transform: translateX(6px)
    }

    60% {
        transform: translateX(-4px)
    }

    80% {
        transform: translateX(4px)
    }
}

.am-otp-timer {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.am-resend-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #ff9800;
    font-weight: 700;
    font-size: 13px;
    text-decoration: underline;
}

/* ── Success ── */
.am-success-wrap {
    text-align: center;
    padding: 20px 0;
}

.am-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin: 0 auto 24px;
    box-shadow: 0 12px 32px rgba(34, 197, 94, .3);
    animation: amPopIn .5s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes amPopIn {
    from {
        transform: scale(0);
        opacity: 0
    }

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

.am-success-wrap h3 {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.am-success-wrap p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.am-success-info {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 13px;
    color: #166534;
    margin-top: 18px;
    text-align: left;
    line-height: 1.6;
}

/* Responsive */
@media(max-width:640px) {
    .am-modal {
        grid-template-columns: 1fr;
    }

    .am-panel-left {
        display: none;
    }

    .am-panel-right {
        padding: 28px 22px;
    }

    .am-otp-box {
        width: 42px;
        height: 52px;
        font-size: 18px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --primary: #e85d04;
    --primary-dark: #c44d00;
    --accent: #f48c06;
    --dark: #0d0d0d;
    --surface: #fff9e6;;
    --card-bg: #ffffff;
    --text: #1a1a1a;
    --muted: #6b6b6b;
    --border: #ececec;
}


body {
    font-family: 'DM Sans', sans-serif;
    background: var(--surface);
    color: var(--text);
}


/* ── COURSE GRID SECTION ── */
.courses-section {
    padding: 64px 24px 80px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.section-title span {
    color: var(--primary);
}

.search-filters{
    display: flex;
    gap: 20px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 10px 18px 10px 40px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    width: 260px;
    background: #fff;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    color: var(--text);
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

.search-box i {
    position: absolute;
    left: 14px;
    color: #bbb;
    font-size: 13px;
}

.filter-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100px;
}



.filter-box select {
    padding: 10px 18px 10px 40px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    width: 260px;
    background: #fff;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    color: var(--text);
}

.filter-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

.filter-box i {
    position: absolute;
    left: 14px;
    color: #bbb;
    font-size: 13px;
}

/* ── COURSE CARD ── */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.course-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.card-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-card:hover .card-thumb img {
    transform: scale(1.06);
}

.card-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f48c06, #e85d04);
}

.card-thumb-placeholder i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.5);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-percentage-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: #159b15;
    color: #fff;
}

.badge-free {
    background: #22c55e;
    color: #fff;
}

.badge-paid {
    background: var(--primary);
    color: #fff;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    text-decoration: none;
}

.course-card:hover .card-overlay {
    opacity: 1;
}

.overlay-btn {
    padding: 10px 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.overlay-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    color: #fff;
}

.card-body {
    padding: 20px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.card-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.card-author {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-title a {
    color: inherit;
    text-decoration: none;
}

.card-title a:hover {
    color: var(--primary);
}

.card-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 14px;
}

.card-stats i {
    color: var(--accent);
}

.card-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
}


.price-original {
    font-size: 13px;
    color: #bbb;
    text-decoration: line-through;
}

.price-free {
    font-size: 1.1rem;
    font-weight: 700;
    color: #22c55e;
}

.enroll-btn {
    padding: 8px 18px;
    background: var(--dark);
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.enroll-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ── UNLOCK NUDGE ── */
.unlock-nudge {
    margin-top: 48px;
    background: linear-gradient(135deg, #fff8f0, #fff3e0);
    border: 1.5px solid #ffe0b2;
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.unlock-nudge-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.unlock-nudge-text p {
    font-size: 13px;
    color: var(--muted);
}

.nudge-btn {
    margin-left: auto;
    padding: 10px 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.nudge-btn:hover {
    background: var(--primary-dark);
}

/* ── EMPTY STATE ── */
.empty-state {
    display: block;
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--muted);
}

.empty-state .message{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 1.5rem;
}

.empty-state .message i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    color: #ddd;
}

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box input {
        width: 100%;
    }
}

.aes-help {
    background: #fffdf2;
    padding: 80px 15px;
    font-family: 'Segoe UI', sans-serif;
}

/* Hero */
.help-hero {
    background: linear-gradient(rgb(253 186 87 / 80%), rgba(255, 204, 128, 0.9));
    color: #000000;
    border-radius: 22px;
    padding: 60px 30px;
    text-align: center;
    margin-bottom: 60px;
}

.help-hero h1 {
    color: white;
    font-weight: 800;
    text-shadow: 0 3px 6px rgba(0, 0, 0, .35);
}

.help-hero p {
    max-width: 850px;
    margin: 15px auto 0;
    font-size: 16px;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .25);
}

/* Card */
.help-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* Section Titles */
.section-title {
    font-weight: 800;
    color: #111827;
}

.section-sub {
    color: #374151;
    font-size: 15.5px;
    line-height: 1.7;
}

/* Help Options */
.help-option {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.help-option i {
    font-size: 26px;
    color: #ff9800;
}

.help-option h6 {
    margin: 0;
    font-weight: 700;
}

.help-option p {
    margin: 4px 0 0;
    font-size: 14.5px;
    color: #374151;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    display: none;
    font-size: 14.5px;
    margin-top: 8px;
    color: #374151;
}

/* CTA */
.help-cta {
    background: #f9fafb;
    border-left: 6px solid #ff9800;
    padding: 25px;
    border-radius: 16px;
}

/* Buttons */
.help-btn {
    background: #ff9800;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    transition: .3s;
    text-decoration: none;
}

.help-btn:hover {
    background: #e68900;
}

/* Responsive */
@media(max-width:768px) {
    .help-hero {
        padding: 40px 20px;
    } }