/* ===== Global Reset ===== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{
    text-decoration: none;
}
p{
    font-size:14px;
}
body {
  background: #212121 !important;
  font-family: "Poppins", sans-serif !important;
  overflow-x: hidden;
}

/* ===== Navbar ===== */
#navbarNavDropdown {
  display: none;
}

#navbarNavDropdown.show {
  display: block;
}
.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;
}
.nav-link:focus, .nav-link:hover{
    color:#ffa627 !important;
}
.nav-link .active{
    color:#ffa627 !important;
}

.signinup-btn {
   background: #ffa627;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
        font-size: 14px;
    box-shadow: 0px 0px 10px 0px #4e4e4e;
}
.c-detail-outer{
    background: #fff;
    margin: 10px 0px;
    padding: 10px;
    border-radius: 10px;
}
/* Click effect */
.signinup-btn:active {
  transform: scale(0.96);
}
/* ===== 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;
  padding-top:100px;
  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;
}

.btn-theme-yellow {
    background: #ffa627 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: 0.5s;
}
.btn-theme-black {
    background: #000 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: 0.5s;
}
.btn-theme-black:hover {
    background: #ffa627 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}
.btn-theme-yellow:hover {
    background: #000 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: 0.5s;
}
/* ===== 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: 300px;
  width: 100%;
  overflow: hidden;
}

/* ===== Responsive Tweaks ===== */
@media (max-width: 767px) {
  .banner {
    min-height: auto;
    padding: 120px 20px 40px;
    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;
}

/* 🔥 TOP RIGHT BLUR GRADIENT */



/* ===============================
   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 */
.trusted-by {
    background: #000;
}
.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: 80px;
  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: 0px 15px 15px;
}

.mc-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
}
.mc-card img{
  padding: 10px;
  border-radius: 24px;
}
.mc-card__author-img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.mc-card__category {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: #333;
}

.mc-card__title {
  margin: 0px 0 5px;
  font-size: 18px;
  font-weight: 700;
}

.mc-card__rating {
  font-size: 12px;
}
.mc-card__rating i{
    
  color: #ffa627;
}
.mc-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mc-card__price {
  color: #000;
  font-weight: 700;
}
.mc-card__price del{
    color:#999999;
    font-weight: 500;
}
.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;
}
/* FOOTER */

.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ffa627;
  font-size: 30px;
  float: left;
  margin-bottom:  8px;
}
.single-cta i {
    background: #fff;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-size: 20px;
}
.cta-text {
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 14px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ffa627;
}
.footer-widget-heading ol, ul{
    padding-left: 0px !important;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 100%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #ffa627;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ffa627;
    padding: 13px 20px;
    border: 1px solid #ffa627;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: #ffa627;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ffa627;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}


/*BREADCRUMB*/
.breadcrumb-outer{
    background-image: url('https://learning.vakilkaro.in/assets/images/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;
}
/* SIGN IN SIGN UP LOGIN PAGE */


.sing-in-up-outer .page {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  overflow: hidden;
}

.sing-in-up-outer .background-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
}

.sing-in-up-outer .shape-1 {
  width: 280px;
  height: 280px;
  top: 8%;
  left: 10%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.45), rgba(56, 189, 248, 0));
}

.sing-in-up-outer .shape-2 {
  width: 320px;
  height: 320px;
  bottom: 6%;
  right: 8%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4), rgba(168, 85, 247, 0));
}

.sing-in-up-outer .login-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 430px;
  padding: 32px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.sing-in-up-outer .login-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.48),
    0 0 30px rgba(59, 130, 246, 0.12);
}

.sing-in-up-outer .card-header {
  margin-bottom: 24px;
}

.sing-in-up-outer .card-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.28);
  color: #bfdbfe;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sing-in-up-outer .card-header h1 {
  margin: 0 0 10px 0;
  font-size: 2rem;
  line-height: 1.1;
}

.sing-in-up-outer .card-header p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.98rem;
  line-height: 1.6;
}

.sing-in-up-outer .login-form {
  display: grid;
  gap: 18px;
}

.sing-in-up-outer .input-group {
  display: grid;
  gap: 8px;
}

.sing-in-up-outer .input-group label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #e2e8f0;
}

.sing-in-up-outer .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.sing-in-up-outer .input-icon {
  position: absolute;
  left: 14px;
  font-size: 0.95rem;
  opacity: 0.8;
}

.sing-in-up-outer .input-wrapper input {
  width: 100%;
  padding: 15px 48px 15px 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
  font-size: 0.96rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.sing-in-up-outer .input-wrapper input::placeholder {
  color: #94a3b8;
}

.sing-in-up-outer .input-wrapper input:focus {
  border-color: rgba(96, 165, 250, 0.55);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.sing-in-up-outer .toggle-password {
  position: absolute;
  right: 10px;
  border: none;
  background: transparent;
  color: #ffa627;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 8px;
}

.sing-in-up-outer .toggle-password:hover {
  color: #dbeafe;
}

.sing-in-up-outer .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sing-in-up-outer .remember-me {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.92rem;
  cursor: pointer;
}

.sing-in-up-outer .remember-me input {
  accent-color: #60a5fa;
}

.sing-in-up-outer .forgot-link,
.sing-in-up-outer .card-footer a {
  color: #93c5fd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sing-in-up-outer .forgot-link:hover,
.sing-in-up-outer .card-footer a:hover {
  color: #dbeafe;
}

.sing-in-up-outer .submit-btn {
  margin-top: 4px;
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 15px 18px;
  background: #ffa627;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.sing-in-up-outer .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(59, 130, 246, 0.28);
  filter: brightness(1.06);
}

.sing-in-up-outer .card-footer {
  margin-top: 22px;
  text-align: center;
}

.sing-in-up-outer .card-footer p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.92rem;
}

@media (max-width: 520px) {
  .sing-in-up-outer .login-card {
    padding: 24px;
    border-radius: 20px;
  }

  .sing-in-up-outer .card-header h1 {
    font-size: 1.7rem;
  }

  .sing-in-up-outer .input-wrapper input {
    padding: 14px 46px 14px 40px;
  }

  .sing-in-up-outer .shape-1,
  .sing-in-up-outer.shape-2 {
    display: none;
  }
}
input.error {
  border-color: #f87171 !important;
}

input.success {
  border-color: #4ade80 !important;
}
.login-form i{
  color: #ffa627;
}

/* Validation styles */
input.error {
  border-color: #f87171 !important;
}

input.success {
  border-color: #4ade80 !important;
}
.error-text {
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block; /* Change to 'block' to ensure the error message is shown when needed */
}
/* COURSE DETAIL */
.course-detail-card{
  background-color: #e7e7e7;
  border-radius: 12px;
  padding: 10px;
}
.row.course-detail-card img {
    background: #212121;
    border-radius: 10px;
    height: 250px;
    object-fit: cover;
}
.course-detail-card h3{
  font-size: 24px;
  font-weight: 700;
}
.course-detail-card ul{
  list-style: none;
  padding: 0;
}
.course-detail-card ul li {
  margin-right: 30px;
    font-weight: 600;
    font-size: 11px;
}
.course-detail-card ul li i {
    color: #ffa627;
}
.instructor-name {
    font-weight: 500;
    font-size: 16px;
}
.instructor-experience {
    font-weight: 400;
    font-size: 14px;
}
.course-detail-card a {
    font-weight: 500;
}

.course-enroll-card {
  position: sticky;
  top: 90px;
  background: #383838;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #626262;
}

.course-enroll-card img {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
}
.course-enroll-card  .price {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.course-enroll-card .btn-enroll {
    background: #ffa627;
    color: #ffffff;
    font-weight: 600;
    width: 100%;
    padding: 10px 20px;
    border: none;
    border-radius: 40px;
    font-size: 14px;
}


.course-enroll-card  .feature {
  font-size: 14px;
  margin-bottom: 8px;
  color: #cbd5f5;
}

.card {
    max-width: 700px;
    background: #fff;
    padding: 25px;
    border-radius: 6px;
  }

  h2 {
    margin-bottom: 10px;
  }

  .sub-title {
    font-weight: bold;
    margin-bottom: 15px;
  }

  .content {
    color: #444;
    line-height: 1.6;
  }

  /* Hidden part */
  .more-text {
    display: none;
  }

  .show-more {
    color: #0066cc;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
  }
  .course-description-long {
    background: #383838;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #626262;}
    .course-description-long ul{
        list-style: none;
    }
    .course-description-long ul li{
        margin-bottom: 10px;
    }
   .detaillist ul li:before{
       content: '✔';
        background: #fff;
        color: #212121;
        border-radius: 100%;
        padding: 0px 5px;
        margin-right: 5px;
        font-size: 14px;
    }
    .course-detail-faq .accordion-body{
       background: #383838;
       color: #fff;
    }
 .course-detail-faq .accordion-button:not(.collapsed){
         background: #383838;
       color: #fff;
 }
.crouse-detail-price-outer {
    color: #fff;
}

.course-detail-price h4 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}
.course-detail-price p {
    margin: 0px;
    font-size: 12px;
    color: #999999;
}
.crouse-detail-price-outer h6 {
    color: #999999;
    margin: 0px;
    font-size:12px;
}
.c-detail-play a{
    text-decoration: none;
}
.c-detail-play i {
    background: #ffa627;
    color: #fff;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.c-detail-name {
    margin-left: 20px;
}
.c-detail-name h5, .c-detail-name p {
    margin: 0;
}
.c-detail-name p {
    font-size: 14px;
    font-weight: 500;
    color: #818181;
}
.c-detail-name h5 {
    font-weight: bold;
    font-size: 16px;
    text-transform: capitalize;
}
 /* PROFILE  */
     .profile-page-outer {
        margin-top: 80px;
    }
    .profile-sidebar ul{
        padding: 0;
        list-style: none;
    }
    .profile-sidebar ul li{
        margin-bottom: 10px;
        background: rgb(255 255 255 / 4%);
        border-radius: 8px;
        padding: 10px 15px;

    }
.profile-sidebar ul li.active a {
    color: #ffa627;
    display: block;
}
.profile-sidebar ul li a:hover {
    color: #ffa627;
}
.profile-sidebar ul li a {
    padding: 0px 5px;
    display: block;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.profile-details{
    color:#fff
}

.profile-card-row{
    background: rgb(255 255 255 / 4%);
    border-radius: 8px;
}
.profile-card{
    text-align: center;
    padding: 20px;
}
.profile-info{
    padding: 20px;
    border-left: 1px solid #6a6a6a;
}
.profile-info label{
    margin-top: 10px;
}
.profile-card span {
    color: #ffa627;
    background: #525252;
    padding: 5px 20px;
    border: 1px solid #6a6a6a;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.profile-page-outer .input-wrapper input, 
.profile-page-outer .input-wrapper textarea, 
.profile-page-outer .input-wrapper select{
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
  font-size: 0.96rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.profile-page-outer .input-wrapper input::placeholder,
.profile-page-outer .input-wrapper textarea::placeholder {
  color: #fff;
}
.profile-page-outer .input-wrapper textarea::placeholder {
  color: #fff;
}
/*COURSE CONTENT*/
.course-detail-faq .accordion-item {
    margin-bottom: 20px;
}
.accordion-body a{
    color: #ffa627;
    text-decoration: none;
}
.accordion-body a:hover{
    color: #ffa627;
    text-decoration: none;
}
.course-detail-faq .accordion-item .accordion-header .accordion-button{
    background:#fff;
    color:#000;
    font-weight:500;
    box-shadow: unset;
}
.course-detail-faq .accordion-item{
    border: none;
    background: transparent;
}
.course-detail-faq .accordion-body {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
    border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
}
.course-description-long {
    font-size: 14px;
}

/*Demo Play Button*/
.image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.image-container img {
  width: 100%;
  border-radius: 12px;
}

/* 🔴 Circle Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 70px;
  height: 70px;
  border-radius: 50%;
  
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 28px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  cursor: pointer;
  z-index: 2;
  
  animation: pulse 1.8s infinite;
}

/* 🔥 Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0,0,0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0,0,0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0,0,0, 0);
  }
}

/* Hover effect */
.play-btn:hover {
  background: #000;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
}

.modal-content {
  position: relative;
  margin: 5% auto;
  width: 80%;
}

.modal-content video {
  width: 100%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: -30px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
}
/*cOURSE FAQ*/



.course-faq-section .faq-item {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 15px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: 0.3s;
}

.course-faq-section .faq-item:hover {
  background: rgba(255,255,255,0.08);
}

.course-faq-section .faq-question {
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-faq-section .faq-answer {
  color: #aaa;
  font-size: 14px;
  margin-top: 10px;
  display: none;
}

.course-faq-section .faq-item.active .faq-answer {
  display: block;
}

.course-faq-section .icon {
  font-size: 20px;
  color: #aaa;
}
/*COURSE UNIT CHAPTER FAQ*/
      .course-unit {
          display: flex;
          align-items: center;
      }
      .accordion-button{
        background: #fff !important;
        padding: 10px;
        border-radius: 10px;
      }
      .accordion-item{
        margin: 10px 0px;
      }
       .accordion-header a{
        text-decoration: none;
       }
      .course-unit i{
        background: #ffa627;
        color: #fff;
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100%;
        margin-right: 20px;
      }
      .course-unit h2 {
          font-size: 18px;
          margin: 0;
          color: #000;
      }
      .course-unit p{
        font-size: 14px;
        color: #818181;
      }
      .chapter-accordion-body ul{
        list-style: none;
      }
      .chapter-accordion-body ul li a{
          display: flex;
          align-items: center;
          text-decoration: none;
          color: #000;
          margin-bottom: 10px;
      }
      .chapter-accordion-body ul li i{
        margin-right: 20px;
      }
      .chapter-accordion-body ul li h6 {
          margin: 0;
      }
      
    /* Media query for even smaller screens (e.g., mobile devices) */
    @media (max-width: 480px) {
        .row.course-detail-card img {
            object-fit: contain; /* Adjust image height for very small screens */
        }
        .instructor-info img{
            height: 300px;
        }
    }
    .instructor span{
        font-size:12px;
    }

    
    /*ABOUT Instructor MODAL*/

    .about-instructor-modal .modal-title{
        font-size: 15px;
        font-weight: 600;
    }
    .about-instructor-modal .instructor-info img{
           background: #212121;
        border-radius: 10px;
    }
    .about-instructor-modal .instructor-info h4{
        font-size: 18px;
        font-weight: 600;
    }
    .about-instructor-modal ul li{
        list-style:none;
        margin-bottom: 5px;        
        font-size:14px;
    }
    .about-instructor-modal ul li::before {
        content: '✔';
        background: #212121;
        color: #ffffff;
        border-radius: 100%;
        padding: 0px 5px;
        margin-right: 5px;
        font-size: 14px;
    }
    .about-instructor-modal  .modal-header .btn-close{
        color: #fff;
    }
    
    
    /* ================================
   Vakilkaro Premium Login Modal
================================ */

#loginModal .modal-dialog{
    max-width: 520px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

#loginModal .modal-content{
    background: linear-gradient(145deg,#0d1325,#111b36);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
    padding: 10px;
}

/* Glow Effect */
#loginModal .modal-content::before{
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(245, 166, 35, 0.18);
    border-radius: 50%;
    filter: blur(80px);
    top: -80px;
    left: -80px;
}

#loginModal .modal-content::after{
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(116, 72, 255, 0.20);
    border-radius: 50%;
    filter: blur(80px);
    bottom: -100px;
    right: -100px;
}

/* Header */
#loginModal .modal-header{
    border: none;
    padding: 30px 30px 10px;
    position: relative;
    z-index: 2;
}

#loginModal .modal-title{
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

/* Close Button */
#loginModal .btn-close{
    filter: invert(1);
    opacity: 0.8;
    transition: 0.3s;
}

#loginModal .btn-close:hover{
    transform: rotate(90deg);
    opacity: 1;
}

/* Body */
#loginModal .modal-body{
    padding: 10px 30px 35px;
    position: relative;
    z-index: 2;
}

#loginModal .modal-body p{
    color: #b8c0d4;
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Login Button */
#loginModal .btn-primary{
    width: 100%;
    border: none;
    border-radius: 18px;
    background: linear-gradient(90deg,#ffb52e,#f5a623);
    color: #000;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(245,166,35,0.25);
}

#loginModal .btn-primary:hover{
    transform: translateY(-2px);
    background: linear-gradient(90deg,#ffc14f,#f5a623);
    box-shadow: 0 15px 35px rgba(245,166,35,0.35);
}

/* Modal Backdrop Blur */
.modal-backdrop.show{
    backdrop-filter: blur(5px);
    background: rgba(0,0,0,0.65);
}

/* Responsive */
@media(max-width:576px){

    #loginModal .modal-dialog{
        margin: 15px;
    }

    #loginModal .modal-title{
        font-size: 28px;
    }

    #loginModal .modal-body{
        padding: 10px 20px 25px;
    }

    #loginModal .btn-primary{
        height: 56px;
        font-size: 18px;
    }
}
.enquiry-section {
    background: #000;
    position: relative;
    overflow: hidden;
}

.enquiry-content {
    padding-right: 30px;
}

.enquiry-badge {
    background: rgba(245, 197, 66, 0.15);
    color: #f5c542;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.enquiry-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.enquiry-title span {
    color: #f5c542;
}

.enquiry-description {
    font-size: 16px;
    color: #6c757d;
    margin-top: 15px;
    line-height: 1.8;
}

.enquiry-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.feature-item i {
    color: #f5c542;
    font-size: 18px;
}

.feature-item span {
    font-weight: 500;
    color: #fff;
}

.enquiry-form-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.enquiry-form-card h4 {
    font-weight: 700;
    color: #212121;
}

.enquiry-form-card label {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #212121;
}

.enquiry-form-card .form-control {
    height: 50px;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    box-shadow: none;
}

.enquiry-form-card textarea.form-control {
    height: auto;
}

.enquiry-form-card .form-control:focus {
    border-color: #f5c542;
    box-shadow: 0 0 0 0.15rem rgba(245, 197, 66, 0.2);
}

.enquiry-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 12px;
    background: #f5c542;
    color: #212121;
    font-weight: 700;
    transition: 0.3s ease;
}

.enquiry-btn:hover {
    background: #212121;
    color: #fff;
}

@media(max-width:991px) {
    .enquiry-title {
        font-size: 32px;
    }

    .enquiry-content {
        padding-right: 0;
    }
}

@media(max-width:576px) {
    .enquiry-form-card {
        padding: 25px;
    }

    .enquiry-title {
        font-size: 28px;
    }
}