/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #212121 !important;
  font-family: system-ui, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;overflow-x: hidden;
}

/* ===== Navbar ===== */
.navbar-brand img {
  width: 120px;
}

.navbar .nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.shown {
  color: #ffa627 !important;
}
/* ===== Glass Effect Navbar ===== */
.glass-nav {
  background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 15px;
}

/* ===== Dropdown Fix ===== */
.dropdown-menu {
  transition: all 0.3s ease;
}

/* Desktop Hover Dropdown */
@media (min-width: 768px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .dropdown > .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
  }
}

/* Submenu Fix */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* ===== Banner ===== */
.banner {
  min-height: 90vh;
  height: auto;
  display: flex;
  align-items: center;
}

.banner h1 {
  font-weight: 700;
  font-size: 30px;
}
.banner h1 span {
  color: #ffa627;
  text-decoration: underline;
}
/* ===== Buttons ===== */
.btn-banner {
  background: #ffa627;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
}

/* ===== Banner Service List ===== */
ul.bannerserlist {
  padding: 0;
}

.bannerserlist li {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 2rem;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-left: 6px solid #ffa627;
  max-width: 250px;
  width: 100%;
  overflow: hidden;
}

/* ===== Responsive Tweaks ===== */
@media (max-width: 767px) {
  .banner {
    min-height: auto;
    padding: 60px 20px;
    text-align: center;
  }

  .bannerserlist li {
    max-width: 100%;
  }
.parent-wrapper {
  text-align: -webkit-center;
  margin-top: 40px;
}
}
/* SECTION TITLE */
.section-title span{
  color: #ffa627;
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
}
.section-title h4{
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.section-title p{
  color: #c6c6c6 !important;
}
/* SLIDE */

/* Parent */
.parent-wrapper {
  width: 100%;
}

/* Stack container */
.card-stack {
  width: 320px;
  height: 320px;
  position: relative;
}

/* Card */
.course-card {
  position: absolute;
  border-radius: 20px;
  background: #fff;
  padding: 12px;
  transition: all 0.2s ease;
  cursor: grab;
}

/* Image */
.card-image img {
  width: 100%;
  border-radius: 16px;
}

.card-image {
  position: relative;
}

/* Wishlist */
.wishlist {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  border-radius: 50%;
  padding: 6px 8px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Content */
.card-content {
  padding: 10px 5px;
}

/* Instructor */
.instructor-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

/* Price */
.price {
  color: red;
  font-weight: bold;
}

/* Button */
.btn-view {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
}

/* Stack positions (LEFT STACK) */
.course-card:nth-child(1) {
  z-index: 3;
  transform: scale(1) translateX(0);
}
.course-card:nth-child(2) {
  z-index: 2;
  transform: scale(0.95) translateX(-15px);
  opacity: 0.8;
}
.course-card:nth-child(3) {
  z-index: 1;
  transform: scale(0.9) translateX(-30px);
  opacity: 0.6;
}

/* Swipe */
.swipe-right {
  transform: translateX(400px) rotate(20deg) !important;
  opacity: 0;
}
.swipe-left {
  transform: translateX(-400px) rotate(-20deg) !important;
  opacity: 0;
}

   /* BENEFITS SECTION */
.our-benefits {
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .benefit-card{
      margin-top: 20px !important;
    }
}

/* ===============================
   CARD DESIGN (GLASS EFFECT)
================================= */
.our-benefits .benefit-card {
    padding: 30px;
    border-radius: 16px;

    background: #fff;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);

    height: 100%;
    transition: all 0.4s ease;
}

/* HOVER EFFECT */
.our-benefits .benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8);
}

/* ===============================
   ICON
================================= */
.our-benefits .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background:#ffa627;
    color: #fff;
    font-size: 22px;
}

/* ===============================
   TEXT
================================= */
.our-benefits h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.our-benefits p {
    font-size: 14px;
    color: #3a3a3a;
    line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
    .our-benefits {
        margin-top: 40px;
    }

    .our-benefits::before {
        width: 250px;
        height: 250px;
    }

    .our-benefits::after {
        width: 200px;
        height: 200px;
    }
}
/* MILESTONE */
.milestone {
    background: #303030;
    border-radius: 0px 0px 0px 180px;
}
.stats-section {
    margin-top: 80px;
    position: relative;
}

/* GLASS CARD */
.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 20px;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 8px 25px rgba(0,0,0,0.5);

    transition: 0.4s ease;
    color: #fff;
}

/* HOVER */
.stat-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0,0,0,0.7);
}

/* ICON BASE */
.stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    color: #fff;
}

/* ICON COLORS (MATCH YOUR THEME) */
.stat-icon.purple {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.stat-icon.orange {
    background: linear-gradient(135deg, #ffa627, #ff7b00);
}

.stat-icon.blue {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.stat-icon.green {
    background: linear-gradient(135deg, #00d084, #00a86b);
}

/* TEXT */
.stat-card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffa627;
}

.stat-card p {
    margin: 0;
    font-size: 13px;
    color: #bbb;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .stat-card {
        margin-bottom: 15px;
    }
}

/* TRUSTED BY */
.trustedSwiper {
  overflow: hidden;
}

.trustedSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.trustedSwiper .swiper-slide {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trustedSwiper img {
  height: 40px;
  margin: 0 40px;
  opacity: 0.8;
  transition: 0.3s;
}

.trustedSwiper img:hover {
  opacity: 1;
}

/* COURSE CARD */
.mc-course-section .mc-card {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.3s;
}

.mc-course-section .mc-card:hover {
  transform: translateY(-5px);
}

.mc-card__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.mc-card__body {
  padding: 15px;
}

.mc-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
}

.mc-card__author-img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.mc-card__category {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.mc-card__title {
  margin: 10px 0 5px;
  font-size: 18px;
  font-weight: 600;
}

.mc-card__rating {
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
}

.mc-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mc-card__price {
  color: #ff0000;
  font-weight: 600;
}

.mc-card__btn {
  background: #000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.mc-card__btn:hover {
  background: #333;
}
/*AWARD WINNING */
.award-winning-course-management {
        padding: 50px 0;
        background-color: #f9f9f9;
    }

    .award-winning-course-management .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .award-winning-course-management h2 {
        font-size: 32px;
        font-weight: 600;
    }

    .award-winning-course-management ul {
        list-style: none;
        padding: 0;
    }

    .award-winning-course-management ul li {
        font-size: 18px;
        margin: 10px 0;
    }

    .check-icon {
        color: green;
        margin-right: 10px;
    }

    .trophy-icon img {
        width: 60px;
        height: 60px;
        position: absolute;
        bottom: 30px;
        right: 30px;
    }
    
   /*BREADCRUMB*/
   .breadcrumb-outer{
        background-image: url('../../breadcrumb.jpg');
        padding: 150px 0px 70px;
        background-repeat: no-repeat;
        background-size: cover;
   }
   .breadcrumb-outer h2{
        color: #ffa627;
        font-weight: 700;
   }
   .breadcrumb-outer a{
       color: #ffa627;
       text-decoration: none;
       font-weight: 500;
   }
   .breadcrumb-outer span{
       color: #fff;
       font-weight: 500;
   }
   