/* --------------------------- Variables --------------------------- */
:root {
  --color-primary: rgba(5, 249, 255, 1);
  --transition: 0.4s;
  --font-family: "Inter", sans-serif;
}



body {
  font-family: "Assistant", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* --------------------------- Header --------------------------- */
.base-template {
    background: #10224a;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header {
  display: flex;
  align-items: center;
  min-height: 82px;
  position: relative;
}

.header__logo {
  max-width: 90px;
}

.header__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  height: 84px;
}

.header__navigation-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
/* Mobile specific */
@media (min-width: 768px) {
  .header__navigation {
    display: flex !;
    flex-direction: row;
    background: transparent;
  }

  .header__list {
    display: flex;
    flex-direction: row;
  }

  .header__list-item {
    border-bottom: none;
  }

  .submenu-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    max-height: none;
    display: none;
    z-index: 999;
  }

  .header__list-item.has-submenu:hover > .submenu-wrapper {
    display: block;
  }
}
.header__list-item {
  display: flex;
  padding: 29px 0px 43px;
  margin-bottom: -20px;
  gap: 27px;
  font-size: 16px;
}

.header__list-item > a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
}

.header__list-item > a svg path {
  transition: var(--transition);
}
.header__burger i {
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 13px;
    transition: var(--transition);
}.header__burger {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    width: 24px;
    margin-left: auto;
    cursor: pointer;
}
.header__list-item .submenu-wrapper {
    position: absolute;
    width: 100%;
    top: 99%;
    left: 0;
    /* border-radius: 33px; */
    padding: 30px 30px 50px 30px;
    background-color: rgba(25, 27, 36, 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
}
.header__buttons-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: max-content;
  padding: 6px 20px;
  border-radius: 100px;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  transition: var(--transition);
}

/* --------------------------- Submenu --------------------------- */
.submenu-list__title {
  width: max-content;
  margin-bottom: 25px;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(160, 161, 165, 1);
}

.submenu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 295px;
  padding-left: 0;
}

.submenu-list__item {
  display: flex;
  padding-right: 100px;
  margin-right: -100px;
  cursor: pointer;
}

.submenu-list__item-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 6px 16px 6px 6px;
  gap: 16px;
  border-radius: 14px;
  transition: var(--transition);
}

.submenu-list__item-wrapper > svg {
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.submenu-content {
  position: absolute;
  left: 332px;
  top: 28px;
  max-width: calc(100% - 365px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  width: 100%;
}
.submenu-content__title {
    color: white;
    margin-bottom: 20px;
}
.submenu-list__item.has-submenu.active .submenu-content {
  opacity: 1;
  visibility: visible;
}

.submenu-list__item.has-submenu.active .submenu-list__item-wrapper {
  background-color: rgba(255, 255, 255, 0.04);
}

.submenu-list__item.has-submenu.active .submenu-list__item-wrapper > svg {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* --------------------------- Search Box --------------------------- */
.header-search {
  max-width: 260px;
  width: 100%;
}

.search-box {
  position: relative;
  width: 100%;
}

.search-box input {
      width: 100%;
    padding: 8px 40px 8px 15px;
    border-radius: 30px;
    border: 1px solid white;
    background: white;
    color: black !important;
    outline: none;
    font-size: 14px;
    transition: 0.3s;

}

.search-box input::placeholder {
  color: black;
}

.search-box input:focus {
  border-color: white;
}

.search-box button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 16px;
  color: #10224a !important;
  cursor: pointer;
}

/* --------------------------- Footer --------------------------- */
.footer {
  background: rgb(19 40 79);
  padding: 60px 0 20px;
  color: #cfd3dc;
  font-family: 'Poppins', sans-serif;
}

.footer-logo {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.footer-title:after {
    content: "";
    width: 100%;
    height: 2px;
    background: rgb(243 106 30);
    position: absolute;
    left: 0;
    bottom: -5px;
    border-radius: 2px;
}
.footer-logo img {
  width: 195px;
}

.footer-about {
  color: #a8b0c2;
  line-height: 1.6;
  font-size: 14px;
  margin-top: -100px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: #cfd3dc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: rgb(243 106 30);
  padding-left: 6px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #1f2739;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 14px;
  color: #a8b0c2;
}

/* --------------------------- Hero Section --------------------------- */
.home_section-hero {
  background: url('../images/home_banner.jpg') center/cover no-repeat;
  width: 100%;
  height: 550px;
  display: flex;
  align-items: center;
  position: relative;
}

.home_section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
}

.home_section-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.home_section-title {
  font-size: 46px;
  font-weight: 700;
  color: #10224a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.home_section-subtext {
  font-size: 15px;
  color: #444;
  margin-bottom: 25px;
}

.home_section-btn-blue {
    background: #10224a;
    border: none;
    padding: 12px 22px;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    margin-right: 10px;
}
.footer-social {
  perspective: 800px; /* 3D depth effect ke liye */
}

.footer-social a {
  display: inline-block;
  margin-right: 14px;
  color: #00C896;
  font-size: 22px;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  text-shadow: 0 2px 4px rgba(0, 200, 150, 0.4);
  position: relative;
}

.footer-social a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(-5px);
  opacity: 0.5;
  filter: blur(2px);
  transition: all 0.4s ease;
}

.footer-social a:hover {
  color: #fff;
  transform: translateY(-6px) rotateX(15deg) rotateY(10deg) scale(1.15);
  text-shadow: 0 8px 15px rgba(0, 200, 150, 0.6);
}

.footer-social a:hover::after {
  opacity: 0.3;
  transform: translateZ(-15px);
}

.footer-social h5 {
  font-size: 16px;
  color: #D8E6FF;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.home_section-btn-green {
  background: #f68633;
  border: none;
  padding: 12px 22px;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
}

.home_section-image img {
  width: 100%;
  border-radius: 6px;
}
/* Responsive text & layout */
@media (max-width: 992px) {
  .home_section-hero {
    height: auto;
    padding: 60px 0;
  }
  .home_section-title { font-size: 30px; }
}

@media (max-width: 768px) {
  .home_section-title { font-size: 26px; }
  .home_section-content { text-align: center; }
  .home_section-btn-blue, .home_section-btn-green { width: 100%; margin-bottom: 10px; }
}

/* main section */
.chooseus-section {
    padding: 60px 0;
    background: #434f8214;
}

/* left card */
.chooseus-card {
  background: #F8FBFF;
  border: 2px solid #10224A80;
  border-radius: 12px;
  padding: 25px;
}

.chooseus-card-title {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
  color: #10224a;
}

.chooseus-badge-text {
  color: #F36B21;
  font-weight: 600;
  font-size: 14px;
}

.chooseus-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}

.chooseus-check {
  background: #F37A1E30;
  color: #F7691F;
  padding: 6px 6px;
  border-radius: 50%;
  font-size: 14px;
}

/* icons circular */
.chooseus-icon-box {
  text-align: center;
  margin-bottom: 25px;
}

.chooseus-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  margin: 0 auto 10px;
  border: 3px solid #10224A;
  color: #F68633;
  background: #F3F9FF;
}

.chooseus-icon-green {
  color: #2EBE5C;
  border-color: #2EBE5C;
  background: #E8FFF1;
}

.chooseus-icon-text {
  font-size: 14px;
  font-weight: 600;
}

/* buttons */
.chooseus-btn-blue {
  background: #10224A;
  border: none;
  padding: 13px 25px;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}

.chooseus-btn-outline {
  border: 2px solid #f68633;
  padding: 12px 22px;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: #f68633;
}

/* bottom text */
.chooseus-happy {
  margin-top: 12px;
  font-weight: 500;
  font-size: 14px;
}

.chooseus-smile {
  color: #2C77F4;
  margin-right: 5px;
}

/* Main wrapper */
.stats-section {
    padding: 6px 14px;
    background: #10224a;
    margin-top: -56px;
    z-index: 99;
    position: relative;
}

/* Stat box */
.stats-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* icon container */
.stats-icon-wrap {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* icon emoji size */
.stats-icon {
  font-size: 26px;
  font-weight: 600;
}

/* text styles */
.stats-title {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.stats-value {
  font-size: 25px;
  color: #f68633;
  font-weight: 700;
  margin: 0;
}

/* BG colors same as sample */
.stats-green { background: #E6FFF0; color: #22B85B; }
.stats-yellow { background: #FFF5D9; color: #E9A321; }
.stats-purple { background: #F2EFFF; color: #7347ED; }
.stats-red { background: #FFE9E5; color: #FF6A33; }

/* first box card bg */
.stats-highlight {
  background: #E9FFF3;
  padding: 18px 25px;
  border-radius: 12px;
}

/* spacing */
.stats-col { padding: 10px; }

.courses-title{
  font-weight:600;
  color:#3e3e3e;
  font-size:16px;
}

.ChooseUs-tabs .nav-link{
  color: #10224a;
  font-weight:600;
  border:none;
  font-size:14px;
}
.ChooseUs-tabs .nav-link.active{
  border-bottom:3px solid #f26022;
  color: #f26022;
}

.courses-filter{
  font-weight:500;
  cursor:pointer;
  font-size:14px;
}
.courses-filter.active{
  color:#6c63ff;
  font-weight:700;
}

a {
    text-decoration: none;
}

.courses-card{
    background:#fff;
    border-radius:12px;
    box-shadow:0 8px 16px rgba(0,0,0,0.1);
    height:100%;
    position:relative;
}
.courses-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}
.corucess {
    padding: 15px 11px;
}
.courses-name{
  font-size:14px;
  font-weight:600;
  margin-top:10px;
}
.courses-author{
  font-size:13px;
  margin:6px 0;
  color:#666;
}
.courses-author img{
  width:22px;
  height:22px;
  border-radius:50%;
  margin-right:6px;
}

.courses-info span{
  font-size:12px;
  color:#666;
  margin-right:10px;
}

.status-icon{
    position:absolute;
    top:12px;
    right:12px;
    width:18px;
    height:18px;
    border-radius:50%;
}
.status-ongoing{background:#ffc107;}
.status-completed{background:#4CAF50;}
.status-draft{background:#6c757d;}

.Course_Details-banner-wrap{
    position:relative;
    width:100%;
    height:380px;
    overflow:hidden;
}
.Course_Details-banner{
    width:100%;
    height:100%;
    object-fit:cover;
}
.Course_Details-overlay{
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.45);
}
.Course_Details-banner-content{
    position:absolute;
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    width:100%;
    padding:0 20px;
}
.Course_Details-banner-title{
    font-size:40px;
    font-weight:700;
}
.Course_Details-banner-sub{
    font-size:18px;
    margin-top:10px;
    opacity:.9;
}
.Course_Details-banner-btn{
    margin-top:18px;
    background:#6c63ff;
    padding:12px 28px;
    border:none;
    color:#fff;
    border-radius:10px;
    font-weight:600;
    font-size:16px;
}

/* Boxes */
.Course_Details-box{
  background:#fff;
  padding:22px;
  border-radius:14px;
  box-shadow:0 6px 14px rgba(0,0,0,0.1);
}
.Course_Details-title{
  font-weight:700;
  font-size:26px;
}
.Course_Details-author-img{
  width:40px;
  height:40px;
  border-radius:50%;
  margin-right:10px;
}
.Course_Details-meta span{
  font-size:14px;
  margin-right:18px;
  color:#555;
}
.Course_Details-btn{
  background:#6c63ff;
  color:#fff;
  padding:12px 20px;
  border-radius:10px;
  font-weight:600;
  border:none;
  font-size:16px;
}
.Course_Details-section-head{
  font-weight:700;
  font-size:20px;
  margin-bottom:10px;
}
ul.Course_Details-learn-list li{
  margin-bottom:8px;
  font-size:15px;
}

.Course_Details-class-item{
  padding:14px;
  border-radius:10px;
  background:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
  margin-bottom:12px;
  font-size:14px;
}
.Course_Details-class-item .badge{
  font-size:12px;
}

.liveclass-section h3 {
  font-weight: 700;
  font-size:18px;
}


.liveclass-viewall {
  font-weight: 600;
  text-decoration: none;
  color: #007bff;
  font-size: 14px;
}

.liveclass-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.liveclass-card:hover {
  box-shadow: rgba(0,0,0,0.1) 0px 4px 16px;
  transform: translateY(-4px);
}

.liveclass-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.liveclass-live-badge {
  position: absolute;
  background: red;
  color: #fff;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 4px;
  margin: 5px;
  font-weight: 600;
}

.liveclass-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 8px;
}

.liveclass-teacher {
  font-size: 13px;
  margin: 0;
}

.liveclass-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 6px;
}

.topcat-section h3 {
  font-weight: 700;
  font-size: 18px;
}

.topcat-card {
  text-align: center;
  background: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: .3s;
  cursor: pointer;
  color: #0f2046;
}

.topcat-card:hover {
  box-shadow: rgba(16, 34, 74, 0.68) 0px 4px 16px;
  transform: translateY(-4px);
}

.topcat-icon {
  font-size: 32px;
  margin-bottom: 10px;
  color: #F68633;
}

.topcat-card h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.topcat-card p {
  font-size: 14px;
  margin: 0;
  color: #343434;
  font-weight: 600;
}

.student-review-section {
  background: #f7faff;
}

.review-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid #e6e9f0;
  transition: .3s;
}

.review-card:hover {
  box-shadow: rgba(16, 34, 74, 0.68) 0px 4px 14px;
  transform: translateY(-4px);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}

.review-course {
  font-size: 13px;
  color: #6c757d;
}

.review-text {
  font-size: 14px;
  color: #444;
  min-height: 60px;
    text-align: center;
}

.review-rating {
  font-size: 17px;
  color: #ffb400;
  margin-top: 6px;
}

.mentors-section {
  background: #ffffff;
}

.mentor-card {
  text-align: center;
  background: #fff;
  padding: 20px 12px;
  border-radius: 14px;
  border: 1px solid #e6e9f0;
  transition: .3s;
}

.mentor-card:hover {
  box-shadow: rgba(0,0,0,0.08) 0px 4px 14px;
  transform: translateY(-4px);
}

.mentor-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
}

.mentor-name {
  font-weight: 600;
  margin-top: 12px;
  font-size: 16px;
}

.mentor-subject {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 5px;
}

.mentor-badge {
  display: inline-block;
  background: #eef6ff;
  color: #007bff;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

.mentor-card {
  background: #ffffff;
  border-radius: 16px;
  transition: 0.3s;
  border: 1px solid #eee;
}

.mentor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 15px 35px rgba(0,0,0,0.09);
}

.mentor-img {
  width: 130px;
  height: 130px;
  border-radius: 100%;
  object-fit: cover;
  border: 4px solid #f1f1f1;
  transition: 0.3s;
}

.mentor-social i {
  margin: 0 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.mentor-social i:hover {
  opacity: 0.6;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(16, 34, 74, 0.39);
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  object-fit: cover;
  border: 3px solid #eee;
}

.rating {
  font-size: 14px;
  color: #f4b400;
}

.stats-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.stats-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.09);
}

.stats-icon {
  font-size: 32px;
  color: #F68633; /* your theme primary can change */
}

.stats-card h2 {
  font-size: 32px;
}

.app-section {
  background: linear-gradient(135deg, #062155, #10224a, #254fa0);
  padding: 70px 0;
  margin: 60px 0;
}

.app-mockup {
  width: 85%;
  max-width: 380px;
  animation: float 3s ease-in-out infinite;
  border-radius: 10px;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* HERO SECTION */
.Why_Learners_hero{
  position:relative;
  background: linear-gradient(120deg,#10224a,#F48224);
  color:#fff;
  padding:140px 25px;
  text-align:center;
  overflow:hidden;
}
.Why_Learners_hero h1{font-size:52px;font-weight:700;}
.Why_Learners_hero p{font-size:18px;opacity:.95;margin-top:10px;}
.Why_Learners_shape{
  position:absolute;border-radius:50%;filter:blur(50px);opacity:.5;
}
.Why_Learners_s1{width:200px;height:200px;background:#F67A24;top:-50px;left:-50px;}
.Why_Learners_s2{width:250px;height:250px;background:#10224a;bottom:-60px;right:-60px;}
.Why_Learners_s3{width:150px;height:150px;background:#2d568000;top:30%;right:10%;}

/* BUTTON */
.Why_Learners_btn{
 background: #fff;
  color: #10224a;
  font-weight: 700;
  padding: 12px 35px;
  border-radius: 40px;
  font-size: 17px;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
  transition: .3s;
}
.Why_Learners_btn:hover{
 transform:translateY(-5px) scale(1.05);
 box-shadow:0 12px 30px rgba(0,0,0,.20);
}

/* STATS */
.Why_Learners_stat_box{
 background:#10224a;border-radius:18px;padding:25px;text-align:center;
 box-shadow:0 10px 30px rgba(0,0,0,.07);transition:.3s;
}
.Why_Learners_stat_box:hover{
 transform:translateY(-8px);
 box-shadow:0 15px 45px rgba(0,0,0,.1);
}
.Why_Learners_stat_box h2{color:#f68633;font-size:40px;font-weight:700;}
.Why_Learners_stat_box p{margin:0;font-size:18px;font-weight:bolder;color: #fff;}

/* FEATURE CARDS */
.Why_Learners_card{
 background:rgba(255,255,255,0.8);backdrop-filter:blur(15px);
 border:1px solid rgba(255,255,255,.4);
 border-radius:20px;padding:30px;height:100%;
 transition:.3s;box-shadow:0 8px 25px rgba(0,0,0,.08);
}
.Why_Learners_card:hover{
 transform:translateY(-10px);box-shadow:0 20px 45px rgba(16, 34, 74, 0.58);
}
.Why_Learners_card i{
 font-size:42px;color:#F68633;margin-bottom:12px;
 transition:.2s;
}
.Why_Learners_card:hover i{
 transform:scale(1.12);
 text-shadow:0 0 18px rgba(245, 133, 50, 0.62);
}

/* VIDEO SECTION */
.Why_Learners_video{
 border-radius:16px;box-shadow:0 12px 35px rgba(0,0,0,.15);
}

/* TESTIMONIAL */
.Why_Learners_test{
 padding:25px;border-radius:18px;background:#fff;
 box-shadow:0 10px 30px rgba(0,0,0,.08);
 border-left:7px solid #2ECC71;
}

/* CTA */
.Why_Learners_cta{
 background:linear-gradient(120deg,#10224a,#F48224);
 padding:70px 10px;border-radius:22px;text-align:center;color:#fff;
 box-shadow:0 15px 40px rgba(0,0,0,.15);
}
.Why_Learners_cta h2{font-size:36px;font-weight:700;}
.app-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.play-btn { color: #0b3fad; }
.apple-btn { color: #000; }

.app-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}
.faq-step-icon {
  font-size: 30px;
  background: #10224a;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  transition: 0.3s;
  color: #fff;
  cursor: pointer;
}

.faq-step-icon:hover {
  background: #F68633;
  color: #fff;
  transform: translateY(-4px);
}

.accordion-button {
  font-weight: 600;
  padding: 14px;
  font-size: 15px;
}

.accordion-button:not(.collapsed) {
  background: #10224a;
  color: #fff;
}

.blog-card {
  transition: 0.35s;
}
.blog-card:hover {
  transform: translateY(-6px);
}
.blog-img img {
  transition: 0.5s;
}
.blog-card:hover img {
  transform: scale(1.07);
}
/* Hero */
.blog-hero {
  background: linear-gradient(#00000080,#00000080), url("https://picsum.photos/1920/700?random=7");
  height: 380px;
  background-size: cover;
  background-position: center;
}
.blog-hero h1 {
  font-size: 42px;
}

/* Blog Detail Styling */
.blog-detail img {
  border-radius: 10px;
}
.blog-detail h2, h3 {
  font-weight: 700;
  font-size: 22px;
}
.blog-detail p {
  font-size: 17px;
}

/* Sidebar */
.sidebar-box {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  margin-bottom: 25px;
}

/* Author Box */
.author-box img {
  width: 80px; 
  height: 80px;
  border-radius: 50%;
}

/* Comments */
.comment-box {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Contact Info */
.contact-info {
  display: inline-block;
  width: 100%;
 
  margin-bottom: 10px;
}
.contact-info-icon {
 
  flex-shrink: 0;
  height: 100px;
  margin-right: 20px;
  width: 100px;
}
.contact-info-item {
  background: white;
  padding: 30px 15px;
      height: 210px;
      display: flex;
  align-items: center;
  transition: all .5s ease-out;

}

.contact-info-item:hover  {
   background: #f68633;
  box-shadow: 0 10px 15px -8px #00000052;
  color: #fff !important;
}

.contact-info-item:hover * {
  color: #fff !important;
}

.contact-page-sec .contact-page-form h2 {
  color: #071c34;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
}  
.contact-page-form.contact-form input {
  margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
  height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
}
.contact-info-icon i {
  font-size: 48px;
  color: #2bbc8e;
}
.contact-info-text p {
  margin-bottom: 0px;
}
.contact-info-text h2 {
  color: black;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}


.contact-info-text span {
  color: black;
  font-size: 16px;
  display: inline-block;
  width: 100%;
    text-align: justify;
}



.contact-page-form input {
  background: #f9f9f9;
  border: 1px solid #f9f9f9;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 4px;
}

.contact-page-form .message-input {
  display: inline-block;
  width: 100%;
  padding-left: 0;
}

.single-input-field textarea {
  background: #f9f9f9;
  border: 1px solid #f9f9f9;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 4px;
}

.single-input-fieldsbtn input[type="submit"] {
  background: #103d88;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover {
  background: #071c34;
  transition: all 0.4s ease-in-out 0s;
  border-color: #071c34;
}
.single-input-field h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}

.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.contact-page-map {
  margin-top: 36px;
}

.contact-page-form form {
  padding: 20px 15px 0;
}

section.contact-page-sec {
  padding: 40px 0px;
}

/* Top Search */
.courcs_fillter-top {
  background: #fff;
  padding: 14px;
  border-bottom: 1px solid #e3e3e3;
  display: flex;
  gap: 15px;
  align-items: center;
}

.courcs_fillter-search {
  flex: 1;
  border: 1px solid #ddd;
  padding: 9px 14px;
  border-radius: 50px;
  outline: none;
  transition: 0.2s;
}

.courcs_fillter-search:focus {
  border-color: #ff4b4b;
  box-shadow: 0 0 8px rgba(255,75,75,0.25);
}

/* Filter Sidebar */
.courcs_fillter-sidebar {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
  height: 100%;
}

.courcs_fillter-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.courcs_fillter-check label {
  font-size: 14px;
  color: #444;
  cursor: pointer;
}

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

.courcs_fillter-check input {
  width: 16px;
  height: 16px;
  accent-color: #103d88;
}

/* Card Container */
.Test_Series_card_container {
  background: linear-gradient(135deg, #e0d6ff, #fff);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
  position: relative;
}

/* Top Section */
.Test_Series_card_container .top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.Test_Series_card_container .top-section img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.Test_Series_card_container .top-section .users {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.Test_Series_card_container .top-section .users i {
  color: #ffcc00;
  margin-right: 5px;
}

/* Title */
.Test_Series_card_container h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}

/* Subtitle */
.Test_Series_card_container .subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

/* Language Section */
.Test_Series_card_container .languages {
    font-size: 13px;
    color: #1a73e8;
    margin-bottom: 15px;
}

/* Test Details */
.Test_Series_card_container ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.Test_Series_card_container ul li {
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
}

.Test_Series_card_container ul li span {
    color: #1a73e8;
    font-weight: 600;
}

/* View More */
.Test_Series_card_container .more-tests {
    font-size: 13px;
    color: #00c853;
    cursor: pointer;
    margin-bottom: 15px;
}

/* Button */
.Test_Series_card_container .view-btn {
    display: block;
    width: 100%;
    background: #0d2876;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.Test_Series_card_container .view-btn:hover {
    background: #0077b6;
}

/* Hero Section */
.home_section-hero2 {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: #fff;
    overflow: hidden;
}

/* Overlay for better readability */
.home_section-hero2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.home_section-hero2 .container {
    position: relative;
    z-index: 2;
}

/* Left Content */
.home_section-content2 {
    max-width: 78%;
    margin: 0 auto;
    text-align: center;
}

.home_section-title2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 48px;
}

.home_section-subtext2 {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 27px;
}

/* Buttons */
.home_section-btn-blue2,
.home_section-btn-green2 {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-right: 15px;
    transition: 0.3s;
}

.home_section-btn-blue2 {
    background: #00c0ff;
    color: #fff;
}

.home_section-btn-blue2:hover {
    background: #0077b6;
}

.home_section-btn-green2 {
    background: #00c853;
    color: #fff;
}

.home_section-btn-green2:hover {
    background: #00701a;
}

/* Right Image */
.home_section-image2 {
    max-width: 100%;
    position: relative;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1250px;
}

/* Jos Home Hero */
.jos_home-hero {
    background: linear-gradient(135deg, #f5f9ff 0%, #e0f7fa 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.jos_home-hero .hero-content small {
    display: block;
    font-size: 14px;
    color: #f36c20;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jos_home-hero .hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #10224a;
    line-height: 58px;
}

.jos_home-hero .hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    line-height: 28px;
}

.jos_home-btn {
    background: linear-gradient(45deg, #f46722, #10224a);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgb(16, 34, 74);
}

.jos_home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(16, 34, 74);
}

/* Hero Image */
.jos_home-hero-img {
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.jos_home-hero-img img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.jos_home-hero-img img:hover {
    transform: scale(1.05);
}

.jos_home-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.jos_home-badge i {
    color: #ffb700;
    font-size: 19px;
}

/* Features Section */
.jos_home-features {
    padding: 60px 0;
    background-color: #f5f9ff;
}

.jos_home-features h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 32px;
    color: #10224a;
    position: relative;
}



.jos_home-feature-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    color: #10224a;
  font-weight: bold;
}

.jos_home-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 35px rgba(0,0,0,0.12);
}

.jos_home-feature-item i {
    font-size: 28px;
    color: #f0703b;
    margin-right: 20px;
    min-width: 35px;
    text-align: center;
}
.jos_home-view-btn {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.jos_home-view-btn a {
    background: #10224a;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgb(16, 34, 74);
}

.jos_home-view-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(56,176,0,0.4);
}

/* How It Works Section */
.school-erp-how-it-works {
    background-color: #e0f7fa;
    padding: 60px 0;
}

.school-erp-section-title {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    color: #10224a;
    position: relative;
}



.school-erp-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    padding: 30px 20px;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* content spreads evenly */
    flex: 1 1 300px; /* responsive width, min 300px */
    min-height: 280px; /* fixed minimum height */
}
.submenu-list__item-icon i {
    color: white;
}
a.submenu-list__item-link {
    color: white;
}
.Courses {
    background: #22242d;
    padding: 7px 21px;
    border-radius: 10px;
}
.school-erp-card-title {
   font-weight: 700;
  color: #10224a;
  font-size: 20px;
}

.school-erp-card-text {
    color: #555;
    line-height: 26px;
    font-size: 16px;
}

.school-erp-icon {
      font-size: 40px;
  color: #f5611cd4;
}

.school-erp-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 40px rgba(0,0,0,0.12);
}

/* Call to Action Section */
.school-erp-cta {
    background: #10224a;
    color: #fff;
    padding: 80px 20px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.school-erp-cta-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 15px;
}

.school-erp-cta-text {
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 26px;
}

.school-erp-cta-btn {
    display: inline-block;
    background-color: #fff;
    color: #10224a;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.school-erp-cta-btn:hover {
    background-color: #f4751f;
  color: white;
}
 .class12-section {
      padding: 40px 0;
      overflow: hidden;
    }

    .class12-heading {
      font-size: 42px;
      font-weight: 700;
      color: #0a2540;
      line-height: 1.2;
    }

    .class12-description {
      font-size: 16px;
      color: #6c757d;
      margin-top: 15px;
      margin-bottom: 30px;
      max-width: 550px;
    }

    .class12-stats {
      margin-top: 40px;
    }

    .class12-stat h3 {
      font-size: 36px;
      color: #0a2540;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .class12-stat p {
      font-size: 14px;
      color: #6c757d;
      margin: 0;
    }

    .class12-btn-primary {
      background-color: #0056ff;
      color: #fff;
      border: none;
      border-radius: 25px;
      padding: 10px 25px;
      font-size: 15px;
      font-weight: 600;
      transition: all 0.3s;
    }

    .class12-btn-primary:hover {
      background-color: #0040cc;
    }

    .class12-btn-outline {
      border: 2px solid #0056ff;
      color: #0056ff;
      background: transparent;
      border-radius: 25px;
      padding: 10px 25px;
      font-size: 15px;
      font-weight: 600;
      transition: all 0.3s;
    }

    .class12-btn-outline:hover {
      background-color: #0056ff;
      color: #fff;
    }

    .class12-image {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .class12-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .class12-course-tag {
      position: absolute;
      background: #fff;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      border-radius: 10px;
      padding: 10px 15px;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .class12-course-tag i {
      font-size: 16px;
      color: #0056ff;
    }

    .class12-course-tag p {
      margin: 0;
      font-size: 14px;
      font-weight: 500;
      color: #1a1a1a;
    }

    .class12-course-tag span {
      display: block;
      font-size: 12px;
      color: #6c757d;
    }

    /* Positioning the course tags */
    .tag-web {
      top: 20px;
      left: 20px;
    }
    .tag-marketing {
      bottom: 40px;
      left: 20px;
    }
    .tag-uiux {
      top: 40%;
      right: -10%;
      transform: translateY(-50%);
    }

    .class12-features {
      display: flex;
      justify-content: start;
      gap: 30px;
      font-size: 14px;
      margin-top: 40px;
      color: #6c757d;
    }

    .class12-features i {
      color: #0056ff;
      margin-right: 8px;
    }
 .class12-popular-section {
    background-color: #ffffff;
  }

  .class12-popular-title {
    font-size: 36px;
    font-weight: 700;
    color: #0a2540;
  }

  .class12-popular-subtitle {
    font-size: 16px;
    color: #6c757d;
    max-width: 600px;
    margin: 10px auto 0;
  }

  .class12-card {
    background: #f8faff;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
  }

  .class12-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 86, 255, 0.1);
  }

  .class12-card-icon {
    background-color: #0056ff;
    color: #fff;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .class12-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0a2540;
  }

  .class12-card-text {
    font-size: 14px;
    color: #6c757d;
    min-height: 60px;
  }

  .class12-card-students {
    margin-top: 15px;
    font-size: 13px;
    color: #0056ff;
    font-weight: 600;
  }
 /* =================== Class 12 Programs: Why Choose Us Styles =================== */
  .class12-why-section {
    background-color: #f8faff;
  }

  .class12-why-title {
    font-size: 36px;
    font-weight: 700;
    color: #0a2540;
  }

  .class12-why-subtitle {
    font-size: 16px;
    color: #6c757d;
    max-width: 650px;
    margin: 10px auto 0;
  }

  .class12-why-box {
    background: #fff;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
  }

  .class12-why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 86, 255, 0.1);
  }

  .class12-why-icon {
    background-color: #0056ff;
    color: #fff;
    font-size: 26px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .class12-why-heading {
    font-size: 18px;
    font-weight: 600;
    color: #0a2540;
    margin-top: 15px;
  }

  .class12-why-text {
    font-size: 14px;
    color: #6c757d;
    margin-top: 10px;
  }
 /* =================== Class 12 Programs: Testimonials Styles =================== */
  .class12-testimonials-section {
    background-color: #ffffff;
  }

  .class12-testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: #0a2540;
  }

  .class12-testimonials-subtitle {
    font-size: 16px;
    color: #6c757d;
    max-width: 600px;
    margin: 10px auto 0;
  }

  .class12-testimonial-box {
    background-color: #f8faff;
    border-radius: 20px;
    transition: all 0.3s ease;
  }

  .class12-testimonial-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 86, 255, 0.1);
  }

  .class12-testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }

  .class12-testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: #0a2540;
  }

  .class12-testimonial-role {
    font-size: 13px;
    color: #6c757d;
  }

  .class12-testimonial-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }

  .class12-testimonial-stars {
    font-size: 14px;
    color: #ffb400;
  }

    /* --- Hero --- */
    .terms-policy-hero {
      padding: 70px 0 50px;
      background: linear-gradient(135deg, rgba(0,74,173,0.06), rgba(0,180,216,0.03));
    }

    .terms-policy-hero .terms-policy-title {
      font-size: 34px; /* px as requested */
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
      line-height:1.1;
    }

    .terms-policy-hero .terms-policy-sub {
      font-size: 15px;
      color: var(--muted);
      max-width:900px;
    }

    /* --- Layout --- */
    .terms-policy-container {
      margin-top: 30px;
      margin-bottom: 80px;
    }

    /* Left: TOC */
    .terms-policy-toc {
      position: sticky;
      top: 110px;
      align-self:flex-start;
    }

    .terms-policy-toc .list-group-item {
      border: none;
      padding: 10px 14px;
      border-radius: 10px;
      transition: all .15s ease;
      font-size: 14px;
      color: #23334a;
    }
    .terms-policy-toc .list-group-item:hover {
      background: linear-gradient(90deg,var(--primary),var(--accent));
      color: #fff;
      transform: translateX(6px);
    }

    /* Right: Content */
    .terms-policy-card {
      background: var(--card-bg);
      border-radius: 14px;
      padding: 28px;
      box-shadow: 0 8px 30px rgba(6,24,60,0.08);
      border: 1px solid rgba(2,48,91,0.04);
    }

    .terms-policy-section-title {
      font-size: 20px;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 8px;
    }

    .terms-policy-text {
      font-size: 15px;
      color: #34495e;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    /* Accordion custom */
    .terms-policy-accordion .accordion-button {
      font-size: 15px;
      font-weight: 600;
      color: var(--primary);
    }
    .terms-policy-accordion .accordion-body {
      font-size: 14px;
      color: #3b4b63;
    }

    /* Small badges inside content */
    .terms-policy-badge {
      display:inline-block;
      padding:6px 10px;
      background: linear-gradient(90deg,var(--primary),var(--accent));
      color:#fff;
      font-size:13px;
      border-radius:999px;
      margin-right:8px;
    }
    
    .qutoUp{
        position: absolute;
      top: -6px;
      left: -18px;
      width: 18px;
    }
    .qutoDown{
        position: absolute;
      top: 58px;
      right: -17px;
      width: 18px;
    }
    
    /* .title-content{*/
    /*     position: relative;*/
    /* }*/
    
    /*.title-content::after {*/
    /*   content: '';*/
    /*  position: absolute;*/
    /*  bottom: 0;*/
    /*  left: 47%;*/
    /*  width: 80px;*/
    /*  height: 4px;*/
    /*  background: linear-gradient(90deg, #e65b2891, #f47b1f);*/
    /*  border-radius: 2px;*/
    /*  animation: expandWidth 1s ease;*/
    /*  top: 43px;*/
    /*}*/

    /* ---------------- Terms & Policy Page Styles ---------------- */
    :root{
      --primary:#004aad;
      --accent:#00b4d8;
      --muted:#6c757d;
      --bg:#f5f8ff;
      --card-bg: rgba(255,255,255,0.95);
    }

    /* Responsive tweaks */
    @media (max-width: 991px) {
      .terms-policy-toc { position: static; margin-bottom:18px; }
      .terms-policy-hero { padding-top:40px; padding-bottom:30px; }
    }

    @media (max-width: 575px) {
      .terms-policy-hero .terms-policy-title { font-size: 26px; }
      .terms-policy-hero .terms-policy-sub { font-size: 14px; }
      .terms-policy-card { padding:18px; }
    }

    /* Print-friendly */
    @media print {
      body { background:#fff; color:#000; }
      .terms-policy-hero, .terms-policy-footer, .terms-policy-toc { display:none; }
      .terms-policy-card { box-shadow:none; border:none; }
    }
  @media (max-width: 992px) {
    .class12-testimonials-title {
      font-size: 30px;
    }
  }

  @media (max-width: 768px) {
    .class12-testimonials-title {
      font-size: 26px;
    }
  }
  @media (max-width: 992px) {
    .class12-why-title {
      font-size: 30px;
    }
  }

  @media (max-width: 768px) {
    .class12-why-title {
      font-size: 26px;
    }
    .class12-why-box {
      padding: 30px 20px;
    }
  }
  @media (max-width: 992px) {
    .class12-popular-title {
      font-size: 30px;
    }
  }

  @media (max-width: 768px) {
    .class12-popular-title {
      font-size: 26px;
    }
    .class12-card {
      padding: 30px 20px;
    }
  }
    @media (max-width: 992px) {
      .class12-heading {
        font-size: 34px;
        text-align: center;
      }
      .class12-description {
        text-align: center;
        margin: 0 auto 30px auto;
      }
      .class12-stats {
        text-align: center;
      }
      .class12-buttons {
        text-align: center;
        margin-top: 20px;
      }
      .class12-features {
        justify-content: center;
        flex-wrap: wrap;
      }
      .class12-course-tag {
        font-size: 13px;
        padding: 8px 12px;
      }
    }

    @media (max-width: 768px) {
      .class12-heading {
        font-size: 28px;
      }
      .class12-course-tag {
        transform: scale(0.9);
      }
    }
/* Responsive Styles */

/* Desktop */
@media (min-width: 1200px) {
  .jos_home-hero .hero-content h1 {
    font-size: 51px; /* 3.2rem ≈ 51px */
  }
}

/* Tablet */
@media (max-width: 992px) {
  .jos_home-hero {
    padding: 50px 15px;
  }
  .jos_home-hero .hero-content h1 {
    font-size: 40px; /* 2.5rem ≈ 40px */
  }
  .jos_home-features h2,
  .school-erp-section-title {
    font-size: 29px; /* 1.8rem ≈ 29px */
  }
  .school-erp-card {
    padding: 25px 15px;
  }
  .school-erp-card-title {
    font-size: 18px; /* 1.1rem ≈ 18px */
  }
  .school-erp-icon {
    font-size: 35px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .jos_home-hero {
    padding: 40px 15px;
  }
  .jos_home-hero .hero-content h1 {
    font-size: 32px; /* 2rem ≈ 32px */
  }
  .jos_home-hero .hero-content p {
    font-size: 16px; /* 1rem ≈ 16px */
  }
  .jos_home-feature-item {
    padding: 15px 15px;
    font-size: 15px; /* 0.95rem ≈ 15px */
  }
  .school-erp-card {
    padding: 20px 10px;
  }
  .school-erp-card-title {
    font-size: 16px; /* 1rem ≈ 16px */
  }
  .school-erp-icon {
    font-size: 30px;
  }
  .school-erp-cta-title {
    font-size: 29px; /* 1.8rem ≈ 29px */
  }
  .school-erp-cta-text {
    font-size: 15px; /* 0.95rem ≈ 15px */
  }
  .school-erp-cta-btn {
    padding: 10px 20px;
    font-size: 15px; /* 0.95rem ≈ 15px */
  }
}

/* Extra Small Mobile */
@media (max-width: 576px) {
  .jos_home-hero {
    padding: 30px 10px;
  }
  .jos_home-hero .hero-content h1 {
    font-size: 26px; /* 1.6rem ≈ 26px */
  }
  .jos_home-hero .hero-content p {
    font-size: 14px; /* 0.9rem ≈ 14px */
  }
  .jos_home-hero-img {
    margin-top: 20px;
  }
  .jos_home-feature-item {
    flex-direction: column;
    text-align: center;
    font-size: 14px; /* 0.9rem ≈ 14px */
  }
  .jos_home-feature-item i {
    margin-bottom: 10px;
  }
}

/* Hero2 Section */
@media (max-width: 992px) {
  .home_section-hero2 {
    padding: 70px 20px;
  }
  .home_section-title2 {
    font-size: 32px;
  }
  .home_section-subtext2 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .home_section-hero2 {
    padding: 50px 15px;
  }
  .home_section-btn-blue2,
  .home_section-btn-green2 {
    margin-bottom: 10px;
    width: 100%;
  }
  
  .footer_logo{
      top: -125px !important;
  }
  
  .footer_logo_img{
      position: absolute;
      left: 95px !important;
      top: 34px !important;
      width: 186px !important;
      height: 186px !important;
  }
  .header-search{
      display: none;
  }
  .header_bg_img{
        width: 75% !important;
  }
  .header_logo_img{
      left: 71px !important;
  }
  .header__list-item > a{
      color: #10224a;
  }
}

/* Time Tag / Sidebar */
@media (max-width: 991px) {
  .courcs_fillter-sidebar {
    margin-bottom: 20px;
  }
}

/* Stats Box */
@media (min-width: 992px) {
  .stats-box {
    justify-content: center;
  }

}
@media (max-width: 768px) {
  .stats-box {
    justify-content: center;
    text-align: center;
  }
}

/* Choose Us Buttons */
@media (max-width: 768px) {
  .chooseus-btn-blue,
  .chooseus-btn-outline {
    width: 100%;
    margin-bottom: 10px;
  }

  .chooseus-icon-circle {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/* Header Hover Effects */
@media (hover: hover) and (pointer: fine) {
  .header__list-item:hover .submenu-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header__list-item:hover ~ .header__list-item .submenu-wrapper {
    display: none;
  }
  .header__list-item:hover > a,
  .header__list-item:hover > a svg path {
    color: #ee7b2b;
    fill: #ee7b2b;
  }
  .header__button:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
  .submenu-list__item.has-submenu:hover .submenu-list__item-wrapper {
    background-color: rgba(255, 255, 255, 0.04);
  }
  .submenu-list__item.has-submenu:hover .submenu-content,
  .submenu-list__item.has-submenu:hover .submenu-list__item-wrapper > svg {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .submenu-content__list-item:hover .submenu-content__link {
    border-color: rgba(255, 255, 255, 0.3);
  }
  .submenu-content__list-item:hover .submenu-content__link-img img {
    transform: scale(1.05);
  }
  .submenu-content__url:hover,
  .submenu-content__url:hover svg path {
    color: var(--color-primary);
    stroke: var(--color-primary);
  }
  .submenu-content__url:hover svg {
    transform: translateX(5px);
  }
}

/* Submenu Responsive */
@media screen and (max-width: 1280px) {
  .submenu-list {
    max-width: 250px;
  }
 
  .submenu-content__url {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  .header {
    min-height: 64px;
    padding: 0 20px;
  }
  .header__burger {
    display: flex;
  }
  .header__navigation-wrapper {
    flex-direction: column;
    /* align-items: center; */
    position: absolute;
    top: 110%;
    left: 0;
    padding: 20px;
    background-color: white;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .header__navigation-wrapper.open {
    opacity: 1;
    visibility: visible;
  }
  .header__list {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .header__buttons-wrapper {
    flex-direction: column;
    margin-left: unset;
    margin-top: 50px;
    gap: 8px;
    width: 100%;
  }
  .header__list-item {
    flex-direction: column;
    width: 100%;
    padding: 0;
    gap: 0;
    margin: 0;
    border-bottom: 1px solid rgba(42, 42, 42, 0.15);
    padding-bottom: 6px;
  }
  .header__list-item.active a,
  .header__list-item.active a > svg path {
    fill: var(--color-primary);
    color: var(--color-primary);
  }
  .header__list-item .submenu-wrapper {
    position: static;
    padding: 0;
    max-height: 0;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .submenu-list {
    width: 100%;
    max-width: 100%;
    gap: 5px;
  }
  .submenu-list__wrapper {
    margin-top: 30px;
  }
  .submenu-list__item {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .submenu-list__item:active .submenu-list__item-wrapper {
    background-color: rgba(255, 255, 255, 0.04);
  }
  .submenu-list__item:active .submenu-list__item-wrapper > svg {
    opacity: 1;
    visibility: visible;
  }
  .submenu-list__title {
    display: none;
  }
  .submenu-content {
    display: none;
  }
  .header__button {
    border: 1px solid rgba(255, 255, 255, 1);
  }
}

@media screen and (max-width: 767.9px) {
  .header__buttons-wrapper,
  .header__button {
    width: 100%;
  }
}
