* {
    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;
}

/* ===== GLOBAL RESET ===== */
* {
    box-sizing: border-box;
}

/* ===== 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 ===== */
/* ===== RESET ===== */
* {
    box-sizing: border-box;
}

/* ===== 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));
}

/* ===== DESKTOP MENU ===== */
nav {
    display: flex;
    gap: 30px;
}

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 ================== */

.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%;
}


/* ================== 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 {
        position: absolute;
        top: 120px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        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;
}

.aes-subtitle {
    color: #c48b00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aes-title {
    font-size: 32px;
    margin: 10px 0 20px;
}

.aes-text {
    margin-bottom: 15px;
    line-height: 1.7;
}

.aes-course-points {
    padding-left: 18px;
    margin-bottom: 25px;
}

.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-course-images {
        margin-bottom: 80px;
    }

    .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-course-content {
    flex: 1;
}

.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;
}

.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(3, 1fr);
  gap: 26px;
}

/* 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%;
  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;
}

/* 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;
  padding: 90px 20px;
  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%;
  }
}



