/* ================= HOME PAGE ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.text-warning{
    color:#f5a400 !important;
}
.text-dark{
  color: #0e1e2e !important;
}
.text-black{
  color: #000 !important;
}
/* ================= TOPBAR ================= */

.topbar {
  background: #0e1e2e;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  color: #666;
  padding: 8px 20px;
}


.topbar .container {
  min-height: 50px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.divider {
  width: 1px;
  height: 15px;
  background: #ccc;
}
.topbar-right{
    display:flex;
    align-items:center;
    gap:18px;
}

.top-social-icon{
    color:#777;
    font-size:15px;
    transition:.3s;
}

.top-social-icon:hover{
    color:#f5b000;
    transform:translateY(-2px);
}

/* ================= NAVBAR ================= */

.navbar {
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.navbar .container {
  position: relative;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* LOGO */

/* =========================
   LOGO
========================= */

.edu-logo-brand{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

/* LOGO BOX */

.edu-logo-img-wrap{
    width:100%;
    height:100%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    position:relative;
    transition:.4s ease;
    flex-shrink:0;
}

.edu-logo-img-wrap img{
    width:auto;
    height:52px;
    object-fit:contain;
}



/* TEXT */

.edu-logo-text{
    font-size:32px;
    font-weight:800;
    color:#111827;
    letter-spacing:1px;
    line-height:1;
}

/* RESPONSIVE */

@media(max-width:991px){

    .edu-logo-img-wrap{
        width:auto;
        height:52px;
    }

    .edu-logo-text{
        font-size:28px;
    }
    

}

@media(max-width:767px){

    .edu-logo-brand{
        gap:10px;
    }

    .edu-logo-img-wrap{
        width: auto;
        height: 52px;
        border-radius:12px;
    }

    .edu-logo-text{
        font-size:24px;
    }

}

.brand-text {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

/* NAV LINKS */

.navbar-nav {
  gap: 35px;
}

.nav-item {
  position: static;
}

.nav-link {
  color: #222 !important;
  font-size: 14px;
  font-weight: 500;
  padding: 20px 0 !important;
  position: relative;
}

.nav-link:hover {
  color: #f5a400 !important;
}

/* .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 2px;
  background: #f5a400;
} */

/* RIGHT BUTTONS */

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 35px;
}

.search-btn {
  width: 46px;
  height: 44px;
  border: 1px solid #f5a400;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5a400;
  transition: 0.3s;
}

.search-btn:hover {
  background: #f5a400;
  color: #fff;
}

.buy-btn {
  background: #f5b000;
  color: #111;
  padding: 10px 28px;
  font-weight: 500;
  border-radius: 10px;
  display: inline-block;
  transition: 0.3s;
  font-size: 14px;
}

.buy-btn:hover {
  background: #df9f00;
  color: #111;
}

/* ================= MEGA MENU ================= */

/* ================= MEGA MENU ================= */

.footer-about-text{
    color:#bdbdbd;
    font-size:15px;
    line-height:1.9;
    margin-top:10px;
}

/* SHOW MENU */

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

/* ================= LEFT SIDEBAR ================= */

.course-sidebar {
  border-right: 1px solid #ddd;
  height: 100%;
}

.course-sidebar ul {
  padding: 0;
  margin: 0;
}

.course-sidebar li {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 18px;

  font-size: 16px;
  font-weight: 500;

  cursor: pointer;

  transition: 0.3s;
}

/* ACTIVE TAB */

.course-sidebar li.active {
  background: #fff;
  color: #f5a400;
}

/* HOVER */

.course-sidebar li:hover {
  background: #fff;
  color: #f5a400;
}

/* ================= TAB CONTENT ================= */

.mega-menu .course-content {
  display: none;
  animation: fade 0.3s ease;
}

.mega-menu .course-content.active-content {
  display: block;
}

/* FADE EFFECT */

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= FEATURED CARDS ================= */

.featured-card img {
  width: 100%;
  display: block;
}

.featured-card h4 {
  font-size: 16px;
  line-height: 1.5;

  margin-top: 15px;

  font-weight: 700;
  color: #222;

  transition: 0.3s;
}

.featured-card:hover h4 {
  color: #f5a400;
}

/* ================= BUTTON ================= */

.view-btn {
  color: #111;

  padding: 12px 35px;

  display: inline-block;

  margin-top: 35px;

  font-weight: 600;

  border: 1px solid #f5a400;

  transition: 0.3s;
}

.view-btn:hover {
  background: #f5a400;
  color: #fff;
}

/* ================= LINKS ================= */

.mega-title {
  font-size: 14px;
  text-transform: uppercase;

  color: #999;

  margin-bottom: 22px;

  font-weight: 500;
}

.mega-links {
  padding: 0;
  margin: 0;
}

.mega-links li {
  margin-bottom: 18px;
}

.mega-links li a {
  color: #222;
  font-size: 16px;

  transition: 0.3s;
}

.mega-links li a:hover {
  color: #f5a400;
}

/* ================= PAGE IMAGES ================= */

.page-image img {
  width: 100%;
  margin-bottom: 15px;
  display: block;
}

.page-image h6 {
  font-size: 18px;
  line-height: 1.5;

  font-weight: 700;
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {
  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    padding: 14px 0 !important;
    font-weight: 600;
  }

  /* MOBILE MENU */

  .mega-menu {
    position: relative;

    opacity: 1;
    visibility: visible;

    display: none;

    padding: 20px;
  }

  .nav-item:hover .mega-menu {
    display: block;
  }

  /* SIDEBAR */

  .course-sidebar {
    border-right: 0;
    margin-bottom: 30px;
  }

  /* RIGHT */

  .header-right {
    margin-left: 0;
    margin-top: 20px;

    flex-wrap: wrap;
  }

  /* TOPBAR */

  .topbar .container {

    justify-content: space-between !important;

    padding: 0;

    gap: 10px;
  }

  .topbar-left,
  .topbar-right {
    flex-wrap: wrap;
    justify-content: center;

    gap: 15px;
  }
}

@media (max-width: 767px) {
      .nav-link{
        padding: 8px 0 !important;
        font-weight: 600;
      }
      .buy-btn{
        padding: 8px 16px;
        font-size: 12px;
      }
      .header-right{
        margin-top: 10px;
      }
  .brand-text {
    font-size: 22px;
  }

  .mega-menu {
    padding: 15px;
  }

  .featured-card {
    margin-bottom: 20px;
  }

  .page-image {
    margin-top: 20px;
  }
}

/* ================= Hero Section ================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url("img/index-hero.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 40px 20px;
}
@media (max-width: 575px) {
  .hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("img/index-mobile-hero.jpg");
    background-position: center;
    background-size: cover;
  }
  .hero-list{
    padding: 8px 10px;
  }
  .hero-list .hero-list-item{
    margin-bottom: 8px !important;
  }
  .hero-list .hero-list-item .herolist-icon{
    width: 35px !important;
    height: 35px !important;
  }
  .hero-list .hero-list-item .herolist-icon i{
    font-size: 18px !important
  }
  .hero-text{
    color: #fff !important;
  }
  .hero-title .highlight{
    color: #ffffff !important;
  }
  .educrsv2-top-badge{
    padding: 6px 10px !important;
    font-size: 12px !important;
  }
}
/* HERO CONTENT */

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-subtitle-one {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.hero-title {
  color: #0e1e2e;
  font-size: 72px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 25px;
  max-width: 720px;
}
.hero-title .highlight{
  color: #fe7c03;
}


.hero-text {
  color: #0e1e2e;
  font-size: 18px;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 35px;
}


.hero-list{
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  display:inline-block
}
.hero-list .hero-list-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 12px;
  color: #111;
}
.hero-list .hero-list-item .herolist-icon{
  background: #fe7c03;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  position: relative;
}
.hero-list .hero-list-item .herolist-icon i{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 22px
}
.hero-list .hero-list-item .hero-list-text{
  font-size: 14px;
  font-weight: 500;
}


/* BUTTONS */

.hero-btns {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.btn-light-custom {
  background: #fe7c03;
  color: #111;
  border: 2px solid #fe7c03;
  border-radius: 15px;
}

.btn-light-custom:hover {
  background: #fff;
  color: #fe7c03;
}

.btn-border-custom {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 15px;
}

.btn-border-custom:hover {
  background: #e6a303;
  color: #fff;
  border: 2px solid #e6a303;
}

/* RIGHT IMAGE */

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
}

/* FLOATING STATS */

.floating-box {
  position: absolute;
  background: #ff5a00;
  border: 4px solid #ffb000;
  border-radius: 60px;
  padding: 5px 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: floatBox 3s ease-in-out infinite;
}

.floating-box i {
  color: #ffdb00;
  font-size: 24px;
}

.floating-box h4 {
  font-size: 22px;
  margin: 0;
  font-weight: 900;
}

.floating-box span {
  font-size: 14px;
  font-weight: 500;
}

/* BOX POSITIONS */

.rating-box {
  top: 105px;
  right: 300px;
}

.learners-box {
  top: 215px;
  right: 370px;
}

.lessons-box {
  top: 325px;
  right: 480px;
}

/* ANIMATION */

@keyframes floatBox {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1400px) {
  .hero-title {
    font-size: 50px;
  }

  .hero-image {
    width: 50%;
  }
}

@media (max-width: 1199px) {
  .hero-title {
    font-size: 54px;
  }

  .hero-image {
    width: 52%;
  }

  .rating-box {
    right: 140px;
  }

  .learners-box {
    right: 200px;
  }

  .lessons-box {
    right: 320px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: 46px;
  }

  .hero-text {
    font-size: 16px;
    max-width: 500px;
  }

  .hero-image {
    position: relative;
    width: 100%;
    margin-top: 60px;
  }

  .floating-box {
    position: relative;
    top: unset !important;
    right: unset !important;
    left: unset !important;
    margin-bottom: 20px;
    width: fit-content;
  }

  .floating-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
  }
}
/* @media (min-width:991px) {
  .hero-text {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 22px;
}
} */
@media (max-width: 767px) {
  .hero-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .info-homepage{
    flex-direction: column-reverse;
   
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 500;
  }
  .hero-subtitle-one {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .hero-text{
    font-size: 14px;
    margin-bottom: 20px;
  }
  .hero-btn {
    font-size: 11px;
    padding: 10px 11px;
    text-align: center;
    border-radius: 4px;
    line-height: 1;
    font-weight: 600;
  }

 

  .floating-box {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-section {
    padding: 60px 0 0;
  }
}

/* ================= FIXED SIDE BUTTONS ================= */

.fixed-sidebar {
  position: fixed;
  right: 18px;
  top: 60%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* BOX */

.fixed-box {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #222;
  transition: 0.3s;
}

.fixed-box i {
  font-size: 22px;
  margin-bottom: 6px;
}

.fixed-box span {
  font-size: 13px;
  font-weight: 500;
}

/* HOVER */

.fixed-box:hover {
  background: #f5a400;
  color: #fff;
  transform: translateX(-5px);
}

/* MOBILE */

@media (max-width: 767px) {
  .fixed-sidebar {
    right: 10px;
  }

  .fixed-box {
    width: 62px;
    height: 62px;
  }

  .fixed-box i {
    font-size: 18px;
  }

  .fixed-box span {
    font-size: 11px;
  }
}

/* ================= SECTION ================= */

.features-section {
  padding: 80px 20px;
  background-color: #f2f2f2;
}

/* TITLE */

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 900;
  color: #0e1e2e;
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-title p {
  font-size: 16px;
  color: #5d6b7a;
  max-width: 780px;

  line-height: 1.7;
}

/* CARD */

.feature-card {
  background: #fff;
  padding: 45px 35px;
  height: 100%;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 4px;
  background: #f5a400;
  transition: 0.4s;
}

.feature-card:hover::before {
  width: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */

.feature-icon {
  min-width: 64px;
  width: 64px;
  height: 64px;
  background: #f5b000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 28px;
  color: #111;
}

/* CONTENT */

.feature-content h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0e1e2e;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-content p {
  font-size: 16px;
  color: #5d6b7a;
  line-height: 1.7;
  margin: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 46px;
  }

  .feature-content h4 {
    font-size: 28px;
  }

  .feature-content p {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .features-section {
    padding: 80px 0;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .section-title p {
    font-size: 18px;
  }

  /*.feature-card {*/
  /*  margin-bottom: 25px;*/
  /*}*/
}

@media (max-width: 767px) {
  .features-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 24px;
    text-align: center;
  }

  .section-title p {
    font-size: 16px;
    text-align: center;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px !important;
  }

  .feature-content h4 {
    font-size: 20px;
  }

  .feature-content p {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 24px;
    text-align: center;
  }
}

/* ================= SECTION ================= */

.learning-section {
  padding: 80px 20px;
  overflow: hidden;
  position: relative;
}

/* LEFT IMAGE AREA */

.learning-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* BACKGROUND BOX */

.bg-shape {
  position: absolute;
  width: 380px;
  height: 380px;
  background: #dbe8f5;
  transform: rotate(-15deg);
  z-index: 1;
}

/* DOTS */

.dots-top {
  position: absolute;
  top: 20px;
  left: 40px;
  width: 110px;
  opacity: 0.4;
}

.dots-bottom {
  position: absolute;
  bottom: 10px;
  right: 50px;
  width: 120px;
  opacity: 0.4;
}

/* CIRCLE */

.circle-shape {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px dashed #d9d9d9;
  border-radius: 50%;
  right: 40px;
  top: 100px;
  z-index: 0;
}

/* TRIANGLE */

.triangle-shape {
  position: absolute;
  left: 40px;
  bottom: 40px;
  color: #8ab6e6;
  font-size: 26px;
  z-index: 0;
}

/* MAIN IMAGE */

.learning-image {
  position: relative;
  z-index: 2;
  /* max-width: 420px; */
  width: 100%;
}

.learning-image img {
  width: 100%;
}

/* LAPTOP */

.laptop-box {
  position: absolute;
  left: 30px;
  bottom: 80px;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.laptop-box img {
  width: 150px;
}

/* CONTENT */

.learning-content {
  padding-left: 40px;
}

.learning-content h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 900;
  color: #0e1e2e;
  margin-bottom: 18px;
}

.learning-content .sub-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
}

.learning-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 30px;
}

/* LIST */

.learning-list {
  margin-bottom: 40px;
}

.learning-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
}

.learning-list li i {
  color: #f5a400;
  font-size: 14px;
}

/* BUTTON */

.learn-btn {
  background: #f5b000;
  color: #111;
  padding: 15px 34px;
  font-size: 16px;
  border-radius: 15px;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
}

.learn-btn:hover {
  background: #df9f00;
  color: #111;
}

/* FLOAT ANIMATION */

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .learning-content h2 {
    font-size: 44px;
  }

  .learning-content {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .learning-section {
    padding: 90px 0;
  }

  .learning-content {
    padding-left: 0;
    /* margin-top: 80px; */
  }

  .learning-content h2 {
    font-size: 32px;
  }

  .bg-shape {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 767px) {
  .learning-section {
    padding: 40px 0;
  }

  .learning-content h2 {
    font-size: 24px;
    text-align: center;
  }

  .learning-content p,
  .learning-content .sub-text {
    font-size: 16px;
  }

  .learning-list li {
    font-size: 15px;
  }

  .bg-shape {
    width: 260px;
    height: 260px;
  }

  .laptop-box {
    left: 0;
    bottom: 40px;
  }

  .laptop-box img {
    width: 120px;
  }
}

@media (max-width: 575px) {
  .learning-content h2 {
    font-size: 24px;
  }

  .bg-shape {
    width: 220px;
    height: 220px;
  }

  .learning-image {
    max-width: 320px;
  }
}

.popular-course-section {
  padding: 80px 20px 80px 20px;
}

/* HEADER */

.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 900;
  color: #0e1e2e;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* BUTTON */

.view-btn {
    border: 2px solid #f5b000;
    color: #f5b000;
    padding: 14px 28px;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.view-btn:hover {
  background: #f5b000;
  color: #111;
}

/* ================= CARD ================= */

.course-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  transition: 0.4s;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* IMAGE */

.course-image {
  position: relative;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  transition: 0.5s;
}

.course-card:hover .course-image img {
  transform: scale(1.06);
}

/* OVERLAY */



/* ENROLL BUTTON */

.enroll-btn {
  background: #f5b000;
  color: #111;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
  border: 2px solid #f5b000;
}

.enroll-btn:hover {
  background: #fff;
  color: #111;
  border: 2px solid #f5b000;
}

/* HEART */



/* AUTHOR */



/* CONTENT */

.course-content {
  padding: 24px 22px;
  text-align: center;
  margin-bottom: 45px;
}
.course-content .enroll-btn{
    position:absolute;
    bottom: 22px;
    left: 50%;
    border-radius: 15px;
    transform: translateX(-50%);
}
.course-content h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  color: #2d2d2d;
  margin-bottom: 18px ;
  transition: 0.3s;
}
.course-content p{
    font-size:16px;
    color:#666;
    margin-bottom:25px;
}
.course-card:hover .course-content h3 {
  color: #f5a400;
}

/* YELLOW LINE */

.yellow-line {
  width: 32px;
  height: 3px;
  background: #f5b000;
  margin: 0 auto 20px;
}

/* FOOTER */

.course-footer {
  border-top: 1px solid #ececec;
  padding-top: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}



/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .section-header h2 {
    font-size: 46px;
  }
}

@media (max-width: 991px) {
  .popular-course-section {
    padding: 80px 20px;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header h2 {
    font-size: 40px;
  }

  .section-header p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .popular-course-section {
    padding: 40px 0;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 16px;
  }

  .view-btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
  }

  .course-content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
  }
  .enroll-btn{
    font-size: 14px;
    padding: 8px 20px;
  }
  .course-content p{
    margin-bottom: 14px;
  }
  
}

@media (max-width: 575px) {
  .section-header h2 {
    font-size: 24px;
  }
}
/* ================= SECTION ================= */



.free-course-wrapper {
  background: #f3f3f3;
  border-top: 4px solid #bdbdbd;
  padding: 85px 80px;
}

/* LEFT CONTENT */

.sub-title {
  font-size: 16px;
  color: #6c6c6c;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  color: #0e1e2e;
  line-height: 1.2;
  margin-bottom: 35px;
}

.description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 45px;
  max-width: 650px;
}

/* TIMER */

.countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.count-box {
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.count-box h2 {
  font-size: 40px;
  color: #f5b000;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.count-box span {
  font-size: 16px;
  color: #777;
  text-transform: uppercase;
}

/* RIGHT CONTENT */

.form-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 28px;
}

/* FORM */

.free-course-form .form-control {
  height: 50px;
  border: none;
  border-radius: 0;
  background: #fff;
  font-size: 14px;
  color: #444;
  padding: 0 22px;
  margin-bottom: 20px;
  box-shadow: none;
}

.free-course-form .form-control::placeholder {
  color: #999;
}

/* BUTTON */

.submit-btn {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 15px;
  background: #f5b000;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #e0a200;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .main-title {
    font-size: 46px;
  }

  .count-box {
    width: 105px;
    height: 105px;
  }

  .count-box h2 {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .free-course-wrapper {
    padding: 70px 50px;
  }

  .main-title {
    font-size: 40px;
  }

  .description,
  .form-text {
    font-size: 18px;
  }

  .right-content {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .free-course-section {
    padding: 30px 0;
  }

  .free-course-wrapper {
    padding: 50px 25px;
  }

  .main-title {
    font-size: 24px;
  }

  .description,
  .form-text {
    font-size: 16px;
  }

  .countdown-wrapper {
    justify-content: center;
  }

  .count-box {
    width: 95px;
    height: 95px;
  }

  .count-box h2 {
    font-size: 38px;
  }

  .count-box span {
    font-size: 13px;
  }

  .submit-btn {
    font-size: 18px;
    height: 58px;
  }
}

@media (max-width: 575px) {
  .main-title {
    font-size: 24px;
  }

  .countdown-wrapper {
    gap: 15px;
  }
}

.package-course-section {
  padding: 0px 20px 80px 20px;
}

/* HEADER */

.section-header {
  margin-bottom: 45px;
}

/* BUTTON */

.view-btn {
  border: 2px solid #f5b000;
  color: #f5a400;
  padding: 16px 36px;
  font-size: 17px;
  font-weight: 700;
  transition: 0.3s;
  display: inline-block;
}

.view-btn:hover {
  background: #f5b000;
  color: #111;
}

/* ================= CARD ================= */

.package-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* IMAGE */

.package-image {
  overflow: hidden;
}

.package-image img {
  width: 100%;
  transition: 0.5s;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

/* CONTENT */

.package-content {
  padding: 26px 20px 24px;
}

.course-count {
  color: #f5a400;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 14px;
}

.package-title {
  font-size: 22px;
  font-weight: 500;
  color: #2d2d2d;
  line-height: 1;
  margin-bottom: 12px;
  transition: 0.3s;
}

.package-card:hover .package-title {
  color: #f5a400;
}

/* PRICE */

.price-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.old-price {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.new-price {
  font-size: 18px;
  font-weight: 700;
  color: #2d2d2d;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .section-header h2 {
    font-size: 46px;
  }

  .package-title {
    font-size: 21px;
  }
}

@media (max-width: 991px) {
  .package-course-section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header h2 {
    font-size: 40px;
  }

  .section-header p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .package-course-section {
    padding: 35px 0 70px 0;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 16px;
  }

  .view-btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
  }

  .package-title {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .section-header h2 {
    font-size: 24px;
    text-align: center;
  }
  .section-header p {
    text-align: center;
  }
}

/* ================= SECTION ================= */

.why-section {
  padding: 80px 20px;
  position: relative;
  background-color: #f2f2f2;
}

/* LEFT CONTENT */

.section-title {
  font-size: 32px;
  font-weight: 900;
  text-align: start;
  color: #111827;
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 55px;
}

/* ================= ACCORDION ================= */

.accordion-item {
  border: none !important;
  background: transparent;
  border-bottom: 1px solid #dddddd !important;
  margin-bottom: 18px;
}

.accordion-button {
  background: transparent !important;
  box-shadow: none !important;
  padding: 30px 0;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.accordion-button:not(.collapsed) {
  background: #fff !important;
  padding: 30px 30px 20px;
}

.accordion-body {
  background: #fff;
  padding: 0 30px 30px;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.accordion-button::after {
  background-image: none !important;
  content: "+";
  font-size: 25px;
  font-weight: 300;
  color: #111827;
  transform: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: "—";
}

/* ================= RIGHT IMAGE AREA ================= */

/* .image-wrapper {
  position: relative;
  min-height: 550px;
} */

/* TOP BORDER BOX */

.border-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 460px;

  border: 4px solid #f5c400;
  z-index: 1;
}

/* BOTTOM YELLOW BG */

.yellow-bg {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 546px;
  height: 380px;
  background: #f3e7a9;
  z-index: 1;
}

/* WHITE BOX */

/* MAIN IMAGE */

.main-image {
  width: 100%;
  height: auto;
}
.main-image img{
  border-radius: 10px;
}

.main-image img {
  width: 100%;
  max-width: 620px;
}

/* HALF CIRCLE */

.circle-shape {
  position: absolute;
  right: 110px;
  bottom: 95px;

  display: flex;
  gap: 10px;

  z-index: 7;
}

.circle-shape span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f5c400;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .section-title {
    font-size: 48px;
  }

  /* .image-wrapper {
    min-height: 680px;
  } */

  .main-image img {
    max-width: 520px;
  }

  .border-box {
    width: 380px;
    height: 380px;
  }

  .white-box {
    width: 390px;
    height: 450px;
  }
}

@media (max-width: 991px) {
  .why-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 40px;
  }

  .image-wrapper {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .why-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .accordion-button {
    font-size: 18px;
    padding: 22px 0;
  }

  .accordion-button:not(.collapsed) {
    padding: 22px 20px 15px;
  }

  .accordion-body {
    font-size: 16px;
    padding: 0 20px 22px;
  }

  .border-box {
    width: 240px;
    height: 240px;
    right: 10px;
  }

  .yellow-bg {
    width: 100%;
    right: 0;
    height: 220px;
  }

  .white-box {
    width: 240px;
    height: 260px;
    left: 0;
    bottom: 70px;
  }

  .main-image {
    left: 0;
  }

  .main-image img {
    max-width: 100%;
  }

  .dot-pattern {
    top: 70px;
    right: 40px;
  }

  .circle-shape {
    right: 40px;
    bottom: 40px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 24px;
  }

  .accordion-button {
    font-size: 17px;
  }
}

/* ================= SECTION ================= */

.event-section {
  padding: 80px 20px;
}

/* HEADER */

.section-header {
  margin-bottom: 25px;
}

.section-title {
  font-size: 32px;
  font-weight: 900;
  color: #2d2d2d;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
}

/* BUTTON */

.view-btn {
  border: 2px solid #f5b000;
  color: #f5b000;
  padding: 14px 28px;
  font-size: 17px;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
}

.view-btn:hover {
  background: #f5b000;
  color: #111;
}

/* ================= EVENT CARD ================= */

.event-card {
  background: #f1f1f1;
  padding: 26px;
  transition: 0.4s;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

/* DATE */

.event-date {
  min-width: 95px;
  text-align: center;
}

.event-date h2 {
  font-size: 50px;
  font-weight: 900;
  color: #f5b000;
  line-height: 1;
  margin-bottom: 6px;
}

.event-date span {
  font-size: 14px;
  color: #666;
}

/* CONTENT */

.event-content {
  padding: 0 10px;
}

.event-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #2d2d2d;

  transition: 0.3s;
}

.event-card:hover .event-title {
  color: #f5b000;
}

/* INFO */

.event-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.event-info span {
  display: flex;
  align-items: center;
  gap: 8px;

  color: #8b8b8b;
  font-size: 14px;
}

.event-info i {
  font-size: 15px;
}

/* DESCRIPTION */

.event-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* IMAGE */

.event-image img {
  width: 210px;
  height: 150px;
  object-fit: cover;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .section-title {
    font-size: 48px;
  }

  .event-title {
    font-size: 24px;
  }

  .event-image img {
    width: 180px;
    height: 140px;
  }
}

@media (max-width: 991px) {
  .event-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 40px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .event-card {
    flex-direction: column;
  }

  .event-content {
    padding: 25px 0;
  }

  .event-image img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767px) {
  .event-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .view-btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  .event-card {
    padding: 22px;
  }

  .event-title {
    font-size: 22px;
  }

  .event-date h2 {
    font-size: 52px;
  }

  .event-date span {
    font-size: 22px;
  }

  .event-desc {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 24px;
  }

  .event-card {
    text-align: center;
  }

  .event-info {
    justify-content: center;
  }
}

/* ================= SECTION ================= */

.blog-section {
  padding: 80px 20px;
}

/* ================= BLOG CARD ================= */

.blog-card {
  transition: 0.4s;
}

.blog-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */

.blog-image {
  overflow: hidden;
  margin-bottom: 28px;
}

.blog-image img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  transition: 0.5s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.06);
}

/* TITLE */

.blog-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  color: #2d2d2d;
  margin-bottom: 12px;
  transition: 0.3s;
}

.blog-card:hover .blog-title {
  color: #f5b000;
}

/* META */

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;

  flex-wrap: wrap;

  margin-bottom: 15px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 8px;

  color: #666;
  font-size: 14px;
}

.blog-meta i {
  font-size: 15px;
}

/* DESC */

.blog-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

/* READ MORE */

.read-more {
  font-size: 16px;
  font-weight: 700;
  color: #2d2d2d;
  transition: 0.3s;
}

.read-more:hover {
  color: #f5b000;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .section-title {
    font-size: 48px;
  }

  .blog-title {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .blog-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 40px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .blog-image img {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .blog-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .view-btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
  }

  .blog-title {
    font-size: 24px;
  }

  .blog-desc {
    font-size: 16px;
  }

  .read-more {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 24px;
  }

  .blog-image img {
    height: 220px;
  }

  .blog-title {
    font-size: 22px;
  }

  .blog-meta {
    gap: 16px;
  }

  .blog-meta span {
    font-size: 15px;
  }
}

/* ================= SECTION ================= */

.testimonial-section {
  padding: 80px 20px;
}

.testimonial-wrapper {
  border-top: 4px solid #c7c7c7;
  padding-top: 75px;
}

/* TITLE */

.section-title {
  font-size: 32px;
  font-weight: 900;
  color: #0e1e2e;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* USER GROUP */

.user-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* AVATARS */

.avatars {
  display: flex;
  align-items: center;
}

.avatars img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f5f5f5;
  margin-left: -14px;
}
.avatars img:hover {
  border-color: #f5b000;
  transition: 0.4s ease all;
  transform: translateY(-6px);
}

.avatars img:first-child {
  margin-left: 0;
}

/* PLUS */

.plus-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ececec;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;
  color: #111;
  font-weight: 300;
}

/* USER CONTENT */

.user-content h3 {
  font-size: 18px;
  font-weight: 900;
  color: #2d2d2d;
  margin-bottom: 10px;
}

.user-content a {
  font-size: 16px;
  font-weight: 700;
  color: #555;
  transition: 0.3s;
}

.user-content a:hover {
  color: #f5b000;
}

/* ================= RIGHT BOX ================= */

.testimonial-box {
  background: #efefef;
  padding: 40px;
  height: 100%;
  border-radius: 12px;
}

/* TEXT */

.testimonial-text {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  margin-top: 15px;
}

/* AUTHOR */

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
}

.testimonial-author img {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50%;
  object-fit: cover;
}

.author-content h4 {
  font-size: 18px;
  font-weight: 900;
  color: #2d2d2d;
  margin-bottom: 8px;
}

/* OWL CAROUSEL CUSTOM DOTS */

.testimonial-carousel .owl-dots {
  text-align: left;
  margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #ccc;
  transition: 0.3s;
}

.testimonial-carousel .owl-dots .owl-dot.active span,
.testimonial-carousel .owl-dots .owl-dot:hover span {
  background: #f5b000;
}

.author-content a {
  font-size: 16px;
  font-weight: 700;
  color: #555;
  transition: 0.3s;
}

.author-content a:hover {
  color: #f5b000;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .section-title {
    font-size: 48px;
  }

  .user-content h3,
  .author-content h4 {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .testimonial-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 40px;
  }

  .section-subtitle,
  .testimonial-text {
    font-size: 18px;
  }

  .testimonial-box {
    margin-top: 0px;
  }
}

@media (max-width: 767px) {
  .testimonial-section {
    padding: 40px 0;
  }

  .testimonial-wrapper {
    padding-top: 55px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle,
  .testimonial-text {
    font-size: 16px;
  }

  .user-content h3,
  .author-content h4 {
    font-size: 20px;
  }

  .user-content a,
  .author-content a {
    font-size: 18px;
  }

  .avatars img,
  .plus-box {
    width: 54px;
    height: 54px;
  }

  .testimonial-box {
    padding: 28px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 24px;
  }

  .user-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-author {
    align-items: flex-start;
  }
}

/* ================= SECTION ================= */

.instructor-section {
  padding: 80px 20px;

  position: relative;
  overflow: hidden;

  background-image: url("img/bg-banner-footer.webp");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* CONTENT */

.instructor-content {
  text-align: center;

  position: relative;
  z-index: 2;
}

/* TITLE */

.instructor-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;

  color: #0e1e2e;

  margin-bottom: 28px;
}

/* SUBTITLE */

.instructor-subtitle {
  font-size: 16px;
  color: #666;

  margin-bottom: 42px;
}

/* BUTTON */

.instructor-btn {
  display: inline-block;
  background: #2d2d2d;
  color: #fff;
  border-radius: 15px;
  padding: 20px 44px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
}

.instructor-btn:hover {
  background: #f5b000;
  color: #111;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .instructor-title {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .instructor-section {
    padding: 90px 0;
  }

  .instructor-title {
    font-size: 32px;
  }

  .instructor-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .instructor-section {
    padding: 40px 0;
  }

  .instructor-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .instructor-subtitle {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .instructor-btn {
    font-size: 18px;
    padding: 10px 20px;
  }
}

@media (max-width: 575px) {
  .instructor-title {
    font-size: 28px;
  }
}

/* ================= FOOTER ================= */

.footer-section {
  background: #050505;
  color: #fff;

  padding: 20px 0;
  overflow: hidden;
}

/* ================= TOP AREA ================= */

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* TITLE */

.footer-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;

  margin-bottom: 14px;
}

.footer-subtitle {
  font-size: 16px;
  color: #b5b5b5;
}

/* NEWSLETTER */

.newsletter-form {
  display: flex;
  align-items: center;

  background: #fff;
  overflow: hidden;
}

.newsletter-form input {
  width: 100%;
  height: 50px;

  border: none;
  outline: none;

  padding: 14px 80px 14px 24px;

  font-size: 18px;
  color: #333;
}

.newsletter-form button {
  min-width: 190px;
  height: 50px;

  border: none;

  background: #f5b000;
  color: #111;

  font-size: 16px;
  font-weight: 700;

  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #fff;
}

.newsletter-form button i {
  margin-left: 8px;
}

/* ================= MAIN FOOTER ================= */


.footer-main {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* LOGO */

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo img {
  max-height: 90px;
}

/* CONTACT */

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 16px;
  color: #9e9e9e;
}

.footer-contact i {
  color: #f5b000;
  font-size: 20px;
  margin-top: 4px;
}

/* SOCIAL */

.footer-social {
  display: flex;
  align-items: center;

  gap: 18px;

  margin-top: 35px;
}

.footer-social a {
  color: #9e9e9e;
  font-size: 20px;

  transition: 0.3s;
}

.footer-social a:hover {
  color: #f5b000;
}

/* FOOTER HEADING */

.footer-heading {
  font-size: 20px;
  font-weight: 900;

  margin-bottom: 35px;
}

/* LINKS */

.footer-links li {
  margin-bottom: 22px;
}

.footer-links a {
  color: #9e9e9e;
  font-size: 16px;

  transition: 0.3s;
}

.footer-links a:hover {
  color: #f5b000;
  padding-left: 6px;
}

/* ================= COPYRIGHT ================= */

.footer-bottom {
  padding: 20px 0;
}

.copyright-text {
  font-size: 16px;
  color: #9e9e9e;
}



/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .footer-title {
    font-size: 46px;
  }

  .footer-heading {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  

  .footer-title {
    font-size: 40px;
  }

  .footer-subtitle,
  .copyright-text,
  .footer-contact li,
  .footer-links a {
    font-size: 18px;
  }

  .newsletter-form {
    margin-top: 35px;
  }

  .footer-column {
    margin-top: 45px;
  }

  .bottom-links {
    justify-content: flex-start;
    margin-top: 22px;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .footer-title {
    font-size: 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-heading {
    font-size: 24px;
  }

  .footer-social a {
    font-size: 24px;
  }

  .bottom-links {
    gap: 18px;
  }
  .copyright-text{
    text-align: center;
  }
  /*.footer-contact li{*/
  /*  justify-content: center;*/
  /*}*/
}

@media (max-width: 575px) {

  
  .footer-title {
    font-size: 24px;
  }
  .footer-subtitle,
  .copyright-text,
  .footer-contact li,
  .footer-links a {
    font-size: 16px;
  }
  .footer-logo img {
    max-height: 80px;
  }
  .footer-heading{
    margin-bottom: 16px;
  }
  
  .footer-column{
    margin-top: 18px;
  }
  .footer-links li {
  margin-bottom: 12px;
  }
  
  
  
}

/* ===================================== */
/* ABOUT US PAGE
        /* ===================================== */


        
    /* HERO SECTION */

.about-hero-section{
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("img/hero-img.jpg");
  background-size: cover;
  background-position: right;
  height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
}
.about-hero-section .breadcrumb-item a{
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
}
.about-hero-section .breadcrumb-item.active{
  color: #000000;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .about-hero-section{
    height: 30vh;
  }
}
.about-hero-section .about-hero-title {
  text-align: start;
  color: #fff;
}

.contact-hero-section{
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("img/contact-hero.png");
  background-size: cover;
  background-position: right;
  height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
}
.contact-hero-section .contact-hero-title {
  text-align: start;
  color: #0e1e2e !important;
}
.contact-hero-section .breadcrumb-item a{
  color: #0e1e2e !important;
  font-size: 18px;
  font-weight: 600;
}
.contact-hero-section .breadcrumb-item.active{
  color: #000000;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .contact-hero-section{
    height: 30vh;
  }
}
.contact-hero-section .contact-hero-title {
  text-align: start;
  color: #0e1e2e !important;
}
@media screen and (max-width: 575px) {
  .contact-hero-section .contact-hero-title{
    display: none !important;
  }
  .admission-hero-section .admission-hero-title{
    display: none !important;
  }
}
.admission-hero-section{
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("img/admission-hero.png");
  background-size: cover;
  background-position: right;
  height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
}
.admission-hero-section .admission-hero-title {
  text-align: start;
  color: #0e1e2e !important;
}
.admission-hero-section .breadcrumb-item a{
  color: #0e1e2e !important;
  font-size: 18px;
  font-weight: 600;
}
.admission-hero-section .breadcrumb-item.active{
  color: #000000;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .admission-hero-section{
    height: 30vh;
  }
}
.admission-hero-section .admission-hero-title {
  text-align: start;
  color: #0e1e2e !important;
}
/* ===================================== */
/* SKILLS SECTION */
/* ===================================== */



.ed-skills-section {
  padding: 80px 20px;
  background: #f5f5f5;
}

/* LEFT SIDE */

.ed-skills-left {
  padding-right: 50px;
}

/* TITLE */

.ed-skills-title {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;

  color: #0e1e2e;

  margin-bottom: 35px;
}

/* TEXT */

.ed-skills-text {
  font-size: 16px;
  line-height: 1.8;

  color: #5d5d5d;

  margin-bottom: 40px;
}

/* BUTTONS */

.ed-skills-btns {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ed-btn-primary {
  background: #f5b000;
  color: #111;
  border-radius: 15px;
  padding: 11px 23px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.ed-btn-primary:hover {
  background: #f5b208;
  color: #fff;
}

.ed-btn-secondary {
  border: 1px solid #222;
  color: #222;
  border-radius: 15px;
  padding: 11px 23px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.ed-btn-secondary:hover {
  background: #f5b000;
  border: 1px solid #f5b000;
  color: #fff;
}

/* RIGHT SIDE */

.ed-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* CARD */

.ed-stat-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 30px;

  text-align: center;

  transition: 0.3s;
}

.ed-stat-card:hover {
  transform: translateY(-5px);
}

/* NUMBER */

.ed-stat-number {
  font-size: 48px;
  line-height: 1;

  font-weight: 900;

  margin-bottom: 18px;
}

.ed-stat-number span:first-child {
  color: #f5b000;
}

.ed-stat-number span:last-child {
  color: #9d9d9d;
}

/* TEXT */

.ed-stat-text {
  font-size: 16px;
  line-height: 1.6;

  color: #5e5e5e;
}
.why-airavis-card{
  background-color: #fff;
  padding: 22px;
  border-radius: 15px;
  overflow: hidden;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); */
  position: relative;
  transition: all 0.3s ease;
}
.why-airavis-card::after{
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 4px;
  width: 0;
  background-color: #f5a400;
  transition: all 0.6s ease;
}
.why-airavis-card:hover:after{
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 3px;
  width: 100%;
  background-color: #f5a400;
}
.why-airavis-card h4{
  font-size: 28px;
  font-weight: 600;
  color: #111;
  transition: all 0.3s ease;
}
.why-airavis-card p{
  font-size: 16px;
  color: #808080;
  transition: all 0.3s ease;
}
.why-airavis-card:hover{
  box-shadow:  0 18px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}
/* .why-airavis-card:hover h4{
  color: #fff !important;
} */
/* .why-airavis-card:hover p{
  color: rgb(180, 180, 180) !important;
} */

.counter-animation{
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(img/section-hero-background.webp) ;
  background-size: cover;
  padding: 80px 0;
  background-repeat: no-repeat;
  background-position: center;
}

/* .counter-animation .counter-card{
  display: flex;
  justify-content: center;
} */

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media (max-width: 1199px) {
  .ed-skills-title {
    font-size: 32px;
  }

  .ed-stat-number {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .ed-skills-section {
    padding: 80px 0;
  }
  .why-airavis-card h4{
    font-size: 24px;
  }
  .hlw-title{
    font-size: 28px !important;
  }
  .ed-skills-left {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .ed-skills-title {
    font-size: 28px !important;
  }

  .ed-skills-text {
    font-size: 18px;
  }

  .ed-stat-text {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .ed-skills-title {
    font-size: 24px;
    marging-bottom: 20px;
  }

  .ed-stats-grid {
    grid-template-columns: 1fr;
  }

  .ed-stat-number {
    font-size: 50px;
  }

  .ed-btn-primary,
  .ed-btn-secondary {
    /* width: 100%; */
    text-align: center;
  }
}

@media (max-width: 575px) {
  .ed-skills-section {
    padding: 70px 0;
  }

  .ed-skills-title {
    font-size: 24px;
    margin-bottom: 18px;
    text-align: center;
  }

  .ed-skills-text {
    font-size: 16px;
  }

  .ed-stat-card {
    padding: 35px 20px;
  }
}

/* ===================================== */
/* HOW LEARNING WORKS */
/* ===================================== */

.hlw-section {
  padding: 80px 20px;
  background: #f5f5f5;
}

/* TITLE AREA */

.hlw-heading-wrap {
  text-align: center;
  margin-bottom: 70px;
}

.hlw-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;

  color: #0e1e2e;

  margin-bottom: 10px;
}

.hlw-subtitle {
  font-size: 16px;
  color: #666;
}

/* STEP CARD */

.hlw-card {
  background: #ececec;

  padding: 35px 20px 18px;
  border-radius: 15px;
  position: relative;

  text-align: center;

  height: 100%;
  transition: 0.3s;
}

.hlw-card:hover {
  transform: translateY(-6px);
}

/* STEP TAG */

.hlw-step-tag {
  position: absolute;

  top: 0;
  left: 50%;

  transform: translate(-50%, -50%);

  background: #2d2d2d;
  color: #fff;
  border-radius: 10px;
  padding: 14px 28px;

  font-size: 14px;
  font-weight: 700;
}

/* CARD TITLE */

.hlw-card-title {
  font-size: 18px;
  line-height: 1.3;

  font-weight: 900;

  color: #232323;

  margin-bottom: 15px;
}

/* CARD TEXT */

.hlw-card-text {
  font-size: 16px;
  line-height: 1.7;

  color: #5d5d5d;
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media (max-width: 1399px) {
  .hlw-title {
    font-size: 32px;
  }

  .hlw-card-title {
    font-size: 18px;
  }

  .hlw-card-text {
    font-size: 16px;
  }
}

@media (max-width: 1199px) {
  .hlw-section {
    padding: 90px 25px;
  }

  .hlw-title {
    font-size: 46px;
  }

  .hlw-card {
    padding: 80px 28px 40px;
  }

  .hlw-card-title {
    font-size: 28px;
  }

  .hlw-card-text {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .hlw-heading-wrap {
    margin-bottom: 55px;
  }

  .hlw-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .hlw-section {
    padding: 40px 0px 0px 0;
  }

  .hlw-title {
    font-size: 24px;
  }

  .hlw-subtitle {
    font-size: 18px;
  }

  .hlw-card-title {
    font-size: 24px;
  }

  .hlw-card-text {
    font-size: 18px;
  }

  .hlw-step-tag {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (max-width: 575px) {
  .hlw-title {
    font-size: 24px;
  }

  .hlw-card {
    padding: 70px 22px 35px;
  }

  .hlw-card-title {
    font-size: 22px;
  }

  .hlw-card-text {
    font-size: 16px;
  }
}

/* ===================================== */
/* INSTRUCTOR SECTION */
/* ===================================== */

.proinst-section {
  padding: 80px 20px;
  background: #f5f5f5;
}

/* TOP AREA */

.proinst-top {
  margin-bottom: 55px;
}

.proinst-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 900;

  color: #232323;

  margin-bottom: 16px;
}

.proinst-subtitle {
  font-size: 16px;
  color: #666;
}

/* BUTTON */

.proinst-btn-wrap {
  text-align: end;
}

.proinst-btn {
  display: inline-block;

  border: 2px solid #f5b000;

  padding: 16px 34px;

  color: #f5b000;

  font-size: 17px;
  font-weight: 700;

  transition: 0.3s;
}

.proinst-btn:hover {
  background: #f5b000;
  color: #111;
}

/* CARD */

.proinst-card {
  background: #ececec;

  overflow: hidden;

  transition: 0.3s;

  height: 100%;
}

.proinst-card:hover {
  transform: translateY(-8px);
}

/* IMAGE WRAP */

.proinst-img-wrap {
  position: relative;
  overflow: hidden;
}

/* IMAGE */

.proinst-img {
  width: 100%;
  transition: 0.4s;
}

.proinst-card:hover .proinst-img {
  transform: scale(1.05);
}

/* SOCIAL */

.proinst-social {
  position: absolute;

  left: 50%;
  bottom: 20px;

  transform: translateX(-50%) translateY(20px);

  display: flex;
  align-items: center;
  gap: 12px;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s;
}

/* SHOW ON HOVER */

.proinst-card:hover .proinst-social {
  opacity: 1;
  visibility: visible;

  transform: translateX(-50%) translateY(0);
}

/* ICON */

.proinst-social a {
  width: 52px;
  height: 52px;

  background: #fff;
  color: #222;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  transition: 0.3s;

  text-decoration: none;
}

/* HOVER */

.proinst-social a:hover {
  background: #f5b000;
  color: #fff;
}

.proinst-img {
  width: 100%;
  height: 300px;

  object-fit: cover;

  transition: 0.4s;
}

.proinst-card:hover .proinst-img {
  transform: scale(1.05);
}

/* CONTENT */

.proinst-content {
  padding: 30px;

  text-align: center;
}

/* INFO */

.proinst-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;

  margin-bottom: 28px;
}

.proinst-info span {
  font-size: 14px;
  color: #5e5e5e;
}

.proinst-info strong {
  color: #222;
}

/* BUTTON */

.proinst-portfolio-btn {
  display: inline-block;

  border: 1px solid #222;

  padding: 7px 16px;

  color: #222;

  font-size: 14px;
  font-weight: 500;

  transition: 0.3s;
}

.proinst-portfolio-btn:hover {
  background: #222;
  color: #fff;
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media (max-width: 1399px) {
  .proinst-title {
    font-size: 32px;
  }
}

@media (max-width: 1199px) {
  .proinst-title {
    font-size: 46px;
  }

  .proinst-img {
    height: 340px;
  }
}

@media (max-width: 991px) {
  .proinst-section {
    padding: 80px 0;
  }

  .proinst-top {
    margin-bottom: 45px;
  }

  .proinst-btn-wrap {
    text-align: start;
    margin-top: 25px;
  }

  .proinst-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .proinst-title {
    font-size: 38px;
  }

  .proinst-subtitle {
    font-size: 18px;
  }

  .proinst-btn {
    padding: 15px 28px;
    font-size: 17px;
  }

  .proinst-img {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .proinst-section {
    padding: 40px 0;
  }

  .proinst-title {
    font-size: 30px;
  }

  .proinst-info {
    flex-direction: column;
    gap: 10px;
  }

  .proinst-img {
    height: auto;
  }
}

/* ===================================== */
/* BLOG Page */
/* ===================================== */

/* ===================================== */
/* BLOG HERO */
/* ===================================== */

.bloghero-section {
  position: relative;

  height: 60vh;

  background: url("img/terms-hero.png");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}
.contacthero-section {
  position: relative;

  height: 300px;

  background: url("img/contact.webp");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}
.courseshero-section {
  position: relative;

  height: 300px;

  background: url("img/courses-banner.webp");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* DARK OVERLAY */

.bloghero-section::before {
  content: "";

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.2);
}
/* DARK OVERLAY */

.contacthero-section::before {
  content: "";

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);
}
.courseshero-section::before {
  content: "";

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);
}

/* CONTENT */

.bloghero-content {
  position: relative;
  z-index: 2;

  text-align: center;
}

/* BREADCRUMB */

.bloghero-breadcrumb {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 14px;

  margin-bottom: 20px;
}

.bloghero-breadcrumb a {
  color: #0e1e2e;

  font-size: 14px;
  font-weight: 500;

  transition: 0.3s;
}

.bloghero-breadcrumb a:hover {
  color: #f5b000;
}

.bloghero-breadcrumb span {
  color: #0e1e2e;
  font-size: 14px;
}

/* TITLE */

.bloghero-title {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;

  color: #fff;
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media (max-width: 991px) {
  .bloghero-section {
    height: 30vh;
  }

}

@media (max-width: 767px) {
  

  .bloghero-breadcrumb {
    gap: 10px;
  }

  .bloghero-breadcrumb a {
    font-size: 14px;
  }
}


/* ===================================== */
/* BLOG SECTION */
/* ===================================== */

.custom-blog-section {
  padding: 80px 20px;
}

/* CARD */

.custom-blog-card {
  text-align: center;
  margin-bottom: 30px;
}

/* IMAGE */

.custom-blog-img-wrap {
  position: relative;
  overflow: hidden;
}

.custom-blog-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.4s;
}

/* ARROWS */

.custom-blog-arrow {
  position: absolute;

  top: 50%;
  transform: translateY(-50%);

  width: 45px;
  height: 45px;

  border: none;

  background: #fff;
  color: #f5b000;

  font-size: 17px;

  opacity: 0;

  transition: 0.3s;

  z-index: 5;
}

.custom-blog-left {
  left: -60px;
}

.custom-blog-right {
  right: -60px;
}

.custom-blog-card:hover .custom-blog-left {
  left: 15px;
  opacity: 1;
}

.custom-blog-card:hover .custom-blog-right {
  right: 15px;
  opacity: 1;
}

/* TITLE */

.custom-blog-title {
  font-size: 18px;
  font-weight: 700;

  color: #111;

  margin-top: 25px;
  margin-bottom: 15px;
}

/* META */

.custom-blog-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

  margin-bottom: 10px;
}

.custom-blog-meta span {
  color: #666;
  font-size: 14px;
}

.custom-blog-meta i {
  margin-right: 6px;
}

/* TEXT */

.custom-blog-text {
  font-size: 16px;
  line-height: 1.8;

  color: #666;
}

/* BUTTON */

.custom-blog-btn {
  color: #111;

  font-size: 16px;
  font-weight: 700;
}

/* SIDEBAR */

.custom-blog-sidebar {
  position: sticky;
  top: 20px;
}

/* LATEST POSTS */

.custom-latest-title {
  font-size: 34px;
  font-weight: 700;

  margin-bottom: 35px;
}

.custom-latest-item {
  display: flex;
  gap: 16px;

  margin-bottom: 28px;
}

.custom-latest-item img {
  width: 100px;
  height: 100px;

  object-fit: cover;
}

.custom-latest-item h5 {
  font-size: 22px;
  line-height: 1.4;

  margin-bottom: 8px;
}

.custom-latest-item span {
  font-size: 16px;
  color: #777;
}

/* BANNER */

.custom-blog-banner img {
  width: 100%;
}

/* PAGINATION */

.custom-blog-pagination {
  display: flex;
  justify-content: center;

  margin-top: 10px;
}

.custom-blog-pagination > div {
  display: flex;
  gap: 12px;
}

.custom-blog-pagination button {
  width: 40px;
  height: 40px;

  border: 1px solid #ddd;

  background: #fff;

  font-size: 16px;

  color: #111;

  transition: 0.3s;
}

.custom-blog-pagination button.active,
.custom-blog-pagination button:hover {
  background: #f5b000;
  border-color: #f5b000;
  color: #fff;
}

/* PAGE */

.blog-page {
  display: none;
}

.blog-page.active {
  display: flex;
  flex-wrap: wrap;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .custom-blog-sidebar {
    margin-top: 60px;
  }

  .custom-blog-title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .custom-blog-section {
    padding: 70px 0;
  }

  .custom-blog-title {
    font-size: 26px;
  }

  .custom-blog-text {
    font-size: 16px;
  }

  .custom-blog-img {
    height: 220px;
  }
}

/* ========================================= */
/* CONTACT INFO SECTION */
/* ========================================= */

.custom-contact-info-section {
  padding: 80px 20px;
  background: #f5f5f5;
}

.custom-contact-card {
  background: #fff;
  
  text-align: center;

  padding: 20px 20px;

  box-shadow: 0 0 25px rgba(0, 0, 0, 0.04);

  height: 100%;

  transition: 0.4s;

  border-radius: 15px;
}

.custom-contact-card:hover {
  transform: translateY(-6px);
}

/* ICON */

.custom-contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.custom-contact-blue {
  color: #1565ff;
}

.custom-contact-green {
  color: #58c93a;
}

.custom-contact-yellow {
  color: #f5b000;
}

/* TITLE */

.custom-contact-card h3 {
  font-size: 22px;
  font-weight: 700;

  color: #111;

  margin-bottom: 14px;
}

/* TEXT */

.custom-contact-card p {
  font-size: 16px;
  line-height: 1.9;

  color: #666;

  margin-bottom: 0;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .custom-contact-card {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .custom-contact-info-section {
    padding: 40px 0px;
  }

  .custom-contact-card {
    padding: 20px;
  }

  .custom-contact-icon {
    width: 50px;
    height: 50px;
    font-size: 42px;
  }

  .custom-contact-card h3 {
    font-size: 22px;
  }

  .custom-contact-card p {
    font-size: 16px;
  }
}

/* ===================================== */
/* CONTACT FORM SECTION */
/* ===================================== */

.custom-contact-form-section {
  padding: 0px 20px 80px 20px;
  background: #f5f5f5;
}

.custom-contact-heading {
  text-align: center;

  font-size: 24px;
  font-weight: 700;

  color: #222;

  line-height: 1.3;

  margin-bottom: 40px;
}

.custom-contact-form {
  max-width: 900px;

  margin: auto;
}

.custom-contact-form .form-control {
  height: 60px;

  border: 1px solid #e4e4e4;

  border-radius: 0;

  background: transparent;

  padding: 10px 22px;

  font-size: 14px;

  color: #555;

  margin-bottom: 18px;

  box-shadow: none;
}

.custom-contact-form textarea.form-control {
  height: 150px;

  resize: none;

  padding-top: 18px;
}

.custom-contact-form .form-control:focus {
  border-color: #f5b000;

  box-shadow: none;
}

.custom-contact-btn-wrap {
  text-align: center;

  margin-top: 22px;
}

.custom-contact-btn {
  border: none;

  background: #f5b000;

  color: #111;

  padding: 14px 40px;

  font-size: 15px;
  font-weight: 600;

  transition: 0.3s;
}

.custom-contact-btn:hover {
  background: #ebb11e;

  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .custom-contact-heading {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .custom-contact-form-section {
    padding: 30px 0px;
  }

  .custom-contact-heading {
    font-size: 30px;

    margin-bottom: 40px;
  }

  .custom-contact-form .form-control {
    height: 60px;

    font-size: 16px;
  }

  .custom-contact-form textarea.form-control {
    height: 180px;
  }

  .custom-contact-btn {
    padding: 15px 35px;

    font-size: 18px;
  }
}



  /* ===================================== */
        /* MAP SECTION */
        /* ===================================== */

        .custom-map-section {
            padding: 0 20px 80px 20px;
            background: #f5f5f5;
        }

        .custom-map-wrap {

            width: 100%;

            overflow: hidden;

            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
        }

        .custom-map-wrap iframe {

            width: 100%;

            border: 0;

            display: block;
        }

        /* RESPONSIVE */

        @media(max-width:991px) {

            .custom-map-wrap iframe {
                height: 500px;
            }
        }

        @media(max-width:767px) {

            .custom-map-section {
                padding: 30px 0;
            }

            .custom-map-wrap iframe {
                height: 250px;
                border-radius: 10px;
            }
        }






        /* ================= TERMS SECTION ================= */

.terms-main-section{
    padding:80px 0;
    background:#fff;
}

/* ================= LEFT SIDEBAR ================= */

.terms-sidebar{
    position:sticky;
    /* top:110px; */
    border:1px solid #e5e5e5;
    background:#fff;
    padding:0;
}

.terms-sidebar ul{
    margin:0;
    padding:0;
    list-style:none;
}

.terms-sidebar ul li{
    border-bottom:1px solid #f1f1f1;
}

.terms-sidebar ul li:last-child{
    border-bottom:0;
}

.terms-sidebar ul li a{
    display:block;
    padding:20px 30px;
    color:#222;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
    line-height:1.5;
}

.terms-sidebar ul li a:hover,
.terms-sidebar ul li a.active{
    color:#ffb606;
    background:#fafafa;
}

/* ================= RIGHT CONTENT ================= */

.terms-content-wrapper{
    padding-left:20px;
}

.effective-date{
    color:#999;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
    display:block;
}

.terms-content-wrapper h1{
    font-size:32px;
    font-weight:700;
    color:#222;
    margin-bottom:25px;
}

.terms-content-wrapper p{
    color:#666;
    font-size:17px;
    line-height:1.95;
}

.single-term-block{
    margin-bottom:30px;
}

.single-term-block h2{
    font-size:24px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .terms-sidebar{
      position:relative;
        top:0;
        margin-bottom:40px;
    }
    
    .terms-content-wrapper{
        padding-left:0;
      }
      
      .terms-content-wrapper h1{
        font-size:34px;
      }
      
      .single-term-block h2{
        font-size:30px;
      }
      
    }
    
    @media(max-width:767px){
      
      .terms-main-section{
        padding:60px 0;
      }
      
      .terms-sidebar ul li a{
        padding:16px 20px;
        font-size:15px;
      }

      .terms-content-wrapper h1{
        font-size:28px;
      }
      
      .single-term-block h2{
        font-size:24px;
      }
      
      .terms-content-wrapper p{
        font-size:15px;
      }
      
    }
    
    
    /* ================= PLACEMENTS ================= */
    .placement-section{
      
    }

    /* ================= PAGE ================= */

     /* custom prefix classes for finchskills-like styling */
        .eduplc-section {
            padding: 60px 20px;
        }

        .eduplc-section-sm {
            padding: 0px 20px;
        }

        .eduplc-bg-gradient {
            background: linear-gradient(135deg, #f5f5f5 0%, #f5f5f5 100%);
        }

        .eduplc-primary-badge {
            background: #ffb606;
            color: #1a2b4c;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 6px 14px;
            border-radius: 40px;
            display: inline-block;
            letter-spacing: -0.2px;
        }

        .eduplc-title {
            font-size: 32px;
            font-weight: 800;
            color: #0e1e2e;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .eduplc-subtitle {
            font-size: 16px;
            color: #5a6e8a;
            font-weight: 400;
            max-width: 700px;
        }

        /* custom card style */
        .eduplc-card {
            background: #ffffff;
            padding: 28px 24px;
            border-radius: 24px;
            border: none;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03), 0 5px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            overflow: hidden;
            height: 100%;
        }

        .eduplc-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 40px rgba(0, 0, 0, 0.08);
        }

        /* Buttons */
        .eduplc-btn-primary {
            background: #ffb606;
            border: none;
            color: #1f2b48;
            font-weight: 500;
            padding: 12px 32px;
            border-radius: 40px;
            transition: all 0.2s ease;
            font-size: 16px;
        }

        .eduplc-btn-primary:hover {
            background: #e5a103;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 182, 6, 0.2);
            color: #1a2b4c;
        }

        .eduplc-btn-outline {
            background: transparent;
            border: 2px solid #ffb606;
            color: #1f2b48;
            font-weight: 700;
            padding: 10px 30px;
            border-radius: 40px;
            transition: all 0.2s;
        }

        .eduplc-btn-outline:hover {
            background: #ffb606;
            color: #1f2b48;
            transform: translateY(-2px);
        }

        /* stat number style */
        .eduplc-stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #ffb606;
            line-height: 1.1;
            margin-bottom: 8px;
        }

        /* company logo card */
        .eduplc-company-logo-card {
            background: #fff;
            border-radius: 28px;
            padding: 24px 16px;
            text-align: center;
            transition: all 0.25s;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .eduplc-company-logo-card:hover {
            border-color: #ffb606;
            box-shadow: 0 18px 30px rgba(0, 0, 0, 0.05);
        }

        .eduplc-company-img {
            max-width: 130px;
            filter: grayscale(0%);
            transition: filter 0.2s;
        }

        /* timeline step */
        .eduplc-timeline-step {
            position: relative;
            background: white;
            border-radius: 28px;
            padding: 28px 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            border: 1px solid #f0f2f5;
            transition: all 0.2s;
            height: 100%;
        }

        .eduplc-timeline-step:hover {
            border-color: #ffb606;
        }
        .eduplc-timeline-step .step-number{
          position: absolute;
          top: 28px;
          right: 28px;
          font-size: 32px;
          font-weight: 700;
          color: #fef5e0;
        }
        .eduplc-step-icon {
            width: 64px;
            height: 64px;
            background: #fef5e0;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #ffb606;
            margin-bottom: 20px;
        }

       

        /* course card */
        .eduplc-course-badge {
            background: #f0f7ff;
            color: #1f2b48;
            font-size: 0.75rem;
            padding: 5px 12px;
            border-radius: 40px;
            font-weight: 600;
        }

        .eduplc-placement-tag {
            background: #ffb60620;
            color: #b87c00;
            font-weight: 700;
            font-size: 0.7rem;
            border-radius: 30px;
            padding: 4px 12px;
        }

        .eduplc-accordion-item .accordion-button:not(.collapsed) {
            background-color: #fff7e6;
            color: #ffb606;
            font-weight: 600;
        }

        .eduplc-accordion-item .accordion-button:focus {
            box-shadow: none;
            border-color: #ffb606;
        }

   

        /* responsive adjustments */
        @media (max-width: 992px) {
            .eduplc-title {
                font-size: 2.2rem;
            }

            .eduplc-section {
                padding: 30px 0px;
            }

            .eduplc-stat-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .eduplc-title {
                font-size: 24px;
            }

            .eduplc-cta-banner {
                padding: 40px 24px;
            }
        }

        /* animation counters use default css */
        .eduplc-stats-box {
            background: #ffffff;
            border-radius: 32px;
            padding: 28px 16px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
        }

        .eduplc-stats-box:hover {
            transform: scale(1.02);
        }
    
    
    
    
    /* ===================================== */
        /* ADMISSION FORM */    



    .eduadm-main-wrapper
    {
            padding:80px 20px;
        }

        .eduadm-form-title{
            text-align:center;
            margin-bottom:30px;
        }

        .eduadm-form-title h1{
            font-size:32px;
            font-weight:700;
            color:#111827;
            margin-bottom:10px;
        }

        .eduadm-title-line{
            width:120px;
            height:3px;
            background:#e8a126;
            margin:auto;
            position:relative;
        }

        .eduadm-title-line::before{
            content:'';
            position:absolute;
            width:14px;
            height:14px;
            border:3px solid #e8a126;
            background:#fff;
            left:50%;
            top:50%;
            transform:translate(-50%,-50%) rotate(45deg);
        }

        .eduadm-form-box{
            background:rgba(120,120,120,.88);
            backdrop-filter:blur(10px);
            padding:30px;
            border-radius:15px;
            box-shadow:0 20px 60px rgba(0,0,0,.12);
        }

        .eduadm-label{
            color:#fff;
            font-weight:600;
            margin-bottom:10px;
            display:block;
            font-size:15px;
        }

        .eduadm-input,
        .eduadm-select,
        .eduadm-textarea{
            width:100%;
            height:45px;
            border:none;
            border-radius:10px;
            padding:0 10px;
            background:#fff;
            font-size:15px;
            transition:.3s ease;
        }

        .eduadm-input:focus,
        .eduadm-select:focus,
        .eduadm-textarea:focus{
            outline:none;
            box-shadow:0 0 0 4px rgba(232,161,38,.18);
        }

        .eduadm-textarea{
            height:120px;
            padding-top:15px;
            resize:none;
        }

        .eduadm-file{
            width:100%;
            background:#fff;
            border-radius:10px;
            padding:10px;
        }

        .eduadm-note{
            color:#f5f5f5;
            font-size:12px;
            margin-top:6px;
        }

        .eduadm-check-wrap{
            display:flex;
            align-items:flex-start;
            gap:12px;
            margin-top:25px;
        }

        .eduadm-check-wrap input{
            margin-top:5px;
            width:18px;
            height:18px;
        }

        .eduadm-check-wrap p{
            color:#f5f5f5;
            line-height:1.8;
            font-size:14px;
            margin:0;
        }

        .eduadm-check-wrap a{
            color:#f6b132;
            text-decoration:none;
            font-weight:600;
        }

        .eduadm-submit-btn{
            width:100%;
            height:50px;
            border:none;
            border-radius:10px;
            background:linear-gradient(90deg,#111827,#1f2937);
            color:#fff;
            font-size:16px;
            font-weight:600;
            margin-top:20px;
            transition:.4s ease;
        }

        .eduadm-submit-btn:hover{
            background:linear-gradient(90deg,#e8a126,#f6b132);
            transform:translateY(-3px);
        }

        @media(max-width:991px){

            .eduadm-form-title h1{
                font-size:42px;
            }

            .eduadm-form-box{
                padding:35px 25px;
            }

        }

        @media(max-width:767px){

            .eduadm-main-wrapper{
                padding:60px 0;
            }

            .eduadm-form-title h1{
                font-size:34px;
            }

            .eduadm-form-box{
                padding:25px 18px;
                border-radius:20px;
            }

        }





     

/* =========================
   HERO SECTION
========================= */

.educrsv2-hero-section{
    position:relative;
    overflow:hidden;
    padding:80px 20px;
    background:#f8f8f8;
}

.educrsv2-hero-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,183,0,.06);
    top:-220px;
    left:-180px;
}

.educrsv2-content-wrap{
    position:relative;
    z-index:2;
}

/* BADGE */

.educrsv2-top-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#ffb800;
    color:#111827;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:24px;
    box-shadow:0 10px 30px rgba(255,184,0,.18);
}

.educrsv2-top-badge i{
    font-size:15px;
}

/* HEADING */

.educrsv2-content-wrap h1{
    font-size:32px;
    line-height:1.3;
    font-weight:800;
    color:#16213e;
    margin-bottom:15px;
    letter-spacing:-1px;
}

/* DESCRIPTION */

.educrsv2-content-wrap p{
    font-size:18px;
    line-height:1.9;
    color:#5b6475;
    max-width:620px;
    margin-bottom:15px;
}

/* BUTTONS */

.educrsv2-btn-group{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:45px;
}

.educrsv2-primary-btn{
    height:56px;
    padding:0 28px;
    background:#ffb800;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#111827;
    font-weight:700;
    font-size:16px;
    text-decoration:none;
    transition:.4s ease;
}

.educrsv2-primary-btn:hover{
    background:#111827;
    color:#fff;
    transform:translateY(-3px);
}

.educrsv2-secondary-btn{
    height:56px;
    padding:0 28px;
    border-radius:50px;
    border:2px solid #d6dce5;
    background:#fff;
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#16213e;
    font-weight:700;
    font-size:16px;
    text-decoration:none;
    transition:.4s ease;
}

.educrsv2-secondary-btn:hover{
    background:#16213e;
    border-color:#16213e;
    color:#fff;
    transform:translateY(-3px);
}

/* FEATURES */

.educrsv2-feature-wrap{
    display:flex;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
}

.educrsv2-feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    padding:16px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.educrsv2-feature-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    background:#fff7df;
    color:#ffb800;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.educrsv2-feature-item h6{
    font-size:17px;
    font-weight:700;
    margin-bottom:3px;
    color:#111827;
}

.educrsv2-feature-item span{
    font-size:13px;
    color:#6b7280;
}

/* IMAGE */

.educrsv2-image-wrapper{
    position:relative;
    z-index:2;
}

.educrsv2-image-wrapper img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* FLOATING CARDS */

.educrsv2-floating-card{
    position:absolute;
    background:#fff;
    border-radius:22px;
    box-shadow:0 18px 50px rgba(0,0,0,.12);
}

.educrsv2-card-one{
    top:25px;
    left:-25px;
    padding:22px;
}

.educrsv2-card-one h3{
    font-size:36px;
    font-weight:800;
    color:#ffb800;
    margin-bottom:4px;
}

.educrsv2-card-one p{
    margin:0;
    color:#64748b;
    font-size:14px;
}

.educrsv2-card-two{
    bottom:25px;
    right:-20px;
    padding:18px 22px;
    display:flex;
    align-items:center;
    gap:15px;
}

.educrsv2-card-two i{
    width:52px;
    height:52px;
    border-radius:14px;
    background:#fff7df;
    color:#ffb800;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.educrsv2-card-two h5{
    font-size:17px;
    font-weight:700;
    margin-bottom:3px;
    color:#111827;
}

.educrsv2-card-two span{
    font-size:13px;
    color:#64748b;
}

/* RESPONSIVE */

@media(max-width:1199px){

    .educrsv2-content-wrap h1{
        font-size:50px;
    }

}

@media(max-width:991px){

    .educrsv2-hero-section{
        padding:75px 0;
    }

    .educrsv2-content-wrap h1{
        font-size:42px;
    }

    .educrsv2-image-wrapper{
        margin-top:15px;
    }

    .educrsv2-card-one{
        left:15px;
    }

    .educrsv2-card-two{
        right:15px;
    }

}

@media(max-width:767px){

    .educrsv2-content-wrap h1{
        font-size:28px;
    }

    .educrsv2-content-wrap p{
        font-size:16px;
    }

    .educrsv2-btn-group{
        flex-direction:column;
        align-items:flex-start;
    }

    .educrsv2-image-wrapper img{
        height:250px;
    }

    .educrsv2-floating-card{
        position:relative;
    }
.course-responsive-box{
  display: flex;
  gap: 16px;
  justify-content: center;
}
    .educrsv2-card-one,
    .educrsv2-card-two{
        left:0;
        right:0;
        top:auto;
        bottom:auto;
        margin-top:18px;
        width:max-content;
        padding: 10px;
    }
    .educrsv2-card-two h5{
      font-size: 14px;
    }
    .educrsv2-card-one h3{
      font-size: 28px;
    }
    .educrsv2-card-two i{
      width: 40px;
      height: 40px;
    }
    .educrsv2-hero-section{
        padding:45px 0;
    }
    .educrsv2-feature-item{
      padding: 8px;
      gap: 6px;
    }
    .educrsv2-feature-item h6 {
      font-size: 14px;
    }
    .educrsv2-feature-icon{
      width: 40px;
      height: 40px;
    }

}



/* =========================
   HERO
========================= */

.edufees-hero-section{
    position:relative;
    background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)), url(img/fee-submission-hero.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height:60vh;
    overflow:hidden;
    display: flex;
    align-items: center;
}

.edufees-hero-content h1{
    color:#fff;
    font-size:62px;
    font-weight:800;
    margin-bottom:18px;
    letter-spacing:-1px;
}

.edufees-hero-content p{
    color:#f3f4f6;
    font-size:18px;
}

/* =========================
   MAIN
========================= */

.edufees-main-section{
    padding:40px 0;
}

.edufees-heading-wrap{
    text-align:center;
    margin-bottom:60px;
}

.edufees-heading-wrap h2{
    font-size:40px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:12px;
}

.edufees-heading-wrap h2 span{
    color:#f4a000;
}

.edufees-heading-wrap p{
    color:#64748b;
    font-size:16px;
}

/* =========================
   BOX
========================= */

.edufees-main-wrapper{
    background:#fff;
    border-radius:35px;
    padding:55px;
    box-shadow:0 25px 80px rgba(0,0,0,.08);
}

.edufees-left-box{
    padding-right:35px;
    border-right:1px solid #e5e7eb;
    height:100%;
}

.edufees-left-box h3{
    font-size:24px;
    font-weight:800;
    margin-bottom:18px;
    color:#111827;
}

.edufees-left-box p{
    color:#64748b;
    line-height:1.6;
    margin-bottom:20px;
}

.edufees-qr-box{
    background:#fff7df;
    border-radius:24px;
    padding:28px;
    display:inline-block;
    margin-bottom:30px;
}

.edufees-qr-box img{
    width:100%;
    border-radius:16px;
}

.edufees-contact-box{
    margin-top:10px;
}

.edufees-contact-box h5{
    font-size:18px;
    font-weight:600;
    margin-bottom:15px;
}

.edufees-contact-item{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:15px;
}

.edufees-contact-item i{
    width:42px;
    height:42px;
    border-radius:12px;
    background:#fff7df;
    color:#f4a000;
    display:flex;
    align-items:center;
    justify-content:center;
}

.edufees-contact-item a,
.edufees-contact-item span{
    color:#111827;
    text-decoration:none;
    font-weight:600;
}

/* =========================
   RIGHT FORM
========================= */

.edufees-form-box{
    padding-left:35px;
}

.edufees-form-box h3{
    font-size:24px;
    font-weight:800;
    margin-bottom:12px;
}

.edufees-form-box p{
    color:#64748b;
    margin-bottom:20px;
}

.edufees-input-wrap{
    margin-bottom:22px;
}

.edufees-label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    font-size:15px;
}

.edufees-input,
.edufees-select{
    width:100%;
    height:58px;
    border:1px solid #dbe2ea;
    border-radius:16px;
    padding:0 18px;
    transition:.3s ease;
    font-size:15px;
}

.edufees-input:focus,
.edufees-select:focus{
    outline:none;
    border-color:#f4a000;
    box-shadow:0 0 0 4px rgba(244,160,0,.12);
}

.edufees-file{
    width:100%;
    border:1px solid #dbe2ea;
    border-radius:16px;
    padding:14px;
}

.edufees-check-wrap{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-top:15px;
}

.edufees-check-wrap input{
    width:18px;
    height:18px;
    margin-top:4px;
}

.edufees-check-wrap p{
    margin:0;
    line-height:1.8;
    font-size:14px;
}

.edufees-check-wrap a{
    color:#f4a000;
    font-weight:700;
    text-decoration:none;
}

.edufees-submit-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:18px;
    background:linear-gradient(90deg,#f4a000,#ffb800);
    color:#111827;
    font-size:16px;
    font-weight:600;
    margin-top:15px;
    transition:.4s ease;
}

.edufees-submit-btn:hover{
    background:#111827;
    color:#fff;
    transform:translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .edufees-hero-section{
        height: 30vh !important;
    }
    .edufees-hero-content h1{
        font-size:46px;
    }

    .edufees-heading-wrap h2{
        font-size:40px;
    }

    .edufees-main-wrapper{
        padding:35px 25px;
    }

    .edufees-left-box{
        border-right:none;
        padding-right:0;
        margin-bottom:40px;
    }

    .edufees-form-box{
        padding-left:0;
    }

}

/* ================= OUR PLACEMENT SUPPORT SECTION ================= */

.eduplc-support-wrapper {
    border: 1px solid #ffb606;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
}

.eduplc-support-content {
    padding: 60px 50px;
}

.eduplc-support-title {
    font-size: 32px;
    font-weight: 800;
    color: #0e1e2e;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.eduplc-support-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
}

.eduplc-support-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eduplc-support-item {
    margin-bottom: 0;
}

.eduplc-item-title {
    color: #ffb606;
    font-weight: 700;
    font-size: 17px;
    margin-right: 5px;
}

.eduplc-item-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    display: inline;
}

.eduplc-support-img {
    height: 620px;
}

.eduplc-support-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

@media (max-width: 991px) {
    .eduplc-support-content {
        padding: 40px 25px;
    }
    .eduplc-support-img {
        height: 400px;
    }
    .eduplc-support-title {
        font-size: 26px;
    }
}

@media(max-width:767px){

    .eduplc-support-content {
        padding: 35px 20px;
    }

    .eduplc-support-title {
        font-size: 24px;
    }

    .eduplc-support-img {
        height: 300px;
    }

    .edufees-main-section{
        padding:70px 0;
    }

    .edufees-hero-section{
        height:30vh;
    }

    .edufees-hero-content h1{
        font-size:34px;
    }

    .edufees-heading-wrap h2{
        font-size:28px;
    }

    .edufees-left-box h3,
    .edufees-form-box h3{
        font-size:28px;
        text-align: center;
    }
    .edufees-left-box p{
      text-align: center;
    }

    .edufees-main-wrapper{
        border-radius:24px;
        padding:25px 18px;
    }

    .edufees-qr-box img{
        width:100%;
    }

}




/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) { 

    .feature-content h4 {
        font-size: 20px;
        font-weight: 500;
    }

    .feature-content p {
        font-size: 16px;
    }
        .feature-card {
        margin-bottom: 0px;
                padding: 20px;
        flex-direction: column;
    }
    .learning-section {
        padding: 40px 0;
    }
    .course-content h3 {
        font-size: 20px;
        font-weight: 500;
    }

.course-content p {
    font-size: 15px;
    margin-bottom: 10px;
  }
.enroll-btn {
  font-size: 16px;
}
    .popular-course-section {
        padding: 60px 20px;
    }

    .sub-title {
    font-size: 14px;
    }

    .main-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .description, .form-text {
        font-size: 16px;
        margin-bottom: 30px;
    }


    .section-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .section-header p {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .view-btn {
      font-size: 15px;
    }
        .section-title {
        font-size: 28px;
        margin-bottom: 10px;
        }
        .section-subtitle {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 16px;
        }
    .event-title {
        font-size: 20px;
    }
    .event-desc {
    font-size: 15px;
    }
    .event-section {
        padding: 40px 0;
    }
        .blog-title {
        font-size: 20px;
    }
    .blog-desc {
    font-size: 15px;
    margin-bottom: 5px;

    }
    .read-more

 {
    font-size: 15px;
 }

     .testimonial-section {
        padding: 40px 0;
    }
    .testimonial-wrapper {
      padding-top: 40px;
    }
        .instructor-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
        .instructor-title {
        font-size: 28px;
    }
    .footer-title
 {
        font-size: 32px;
    }
    .footer-subtitle
 {
        font-size: 16px;
    }
    .footer-column {
        margin-top: 20px;
    }
        .footer-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }
.footer-links li {
    margin-bottom: 15px;
}

.footer-contact li{
  margin-bottom: 15px;
}
    .footer-subtitle, .copyright-text, .footer-contact li, .footer-links a {
        font-size: 15px;
    }
    .footer-bottom {
    padding: 10px 0;
}

    .ed-skills-title {
        font-size: 42px;
    }
    .ed-skills-title{
      margin-bottom: 20px;
    }

    .ed-skills-text {
      margin-bottom: 25px;
    }
    .ed-stat-card {
    
    padding: 20px 15px;
    }
        .ed-skills-section {
        padding: 50px 0;
    }
    .ed-skills-text {
    line-height: 1.6;
    }
        .why-section {
        padding: 40px 0;
    }
        .hlw-section
 {
        padding: 60px 25px;
    }

        .hlw-card-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
    }
        .hlw-card-text {
        font-size: 16px;
    }
        .hlw-card {
        padding: 50px 15px 25px;
    }
    .hlw-step-tag {
    top: 10px;
    }

    .proinst-section {
        padding: 40px 0;
    }
        .proinst-title {
        font-size: 32px;
    }
    

.proinst-title {
  margin-bottom: 10px;
}
.proinst-btn {
    padding: 10px 25px;
    font-size: 15px;
}
    .proinst-btn-wrap {
      
        margin-top: 0px;
    }

    .proinst-content {
    padding-top: 20px;

}




    .bloghero-title {
        font-size: 42px;
    }

        .custom-contact-card {
        padding: 20px;
    }

    .custom-contact-info-section {
    padding: 40px 0px;
}
    .custom-contact-heading {
        font-size: 28px;
        margin-bottom: 25px;
    }
    .custom-contact-form-section {
    padding: 0px 20px 50px 20px;
    }
    .custom-contact-btn-wrap {
    margin-top: 17px;
}
    .educrsv2-hero-section {
        padding: 40px 0;
    }

        .educrsv2-content-wrap h1 {
        font-size: 28px;
        line-height: 1.5;
        margin-bottom: 5px;
    }
    .educrsv2-content-wrap p {
    font-size: 15px;
    
  
  }

  .educrsv2-primary-btn {
    height: 45px;
  }

 .educrsv2-feature-item {
  padding: 10px 15px;
 }
 .educrsv2-top-badge {
  margin-bottom: 15px;
 }

    .edufees-heading-wrap h2 {
        font-size: 32px;
    }

.eduplc-title {
        font-size: 28px;
    }
    .eduplc-card h4 {
        font-size: 18px;
    }

    .text-muted {
      font-size: 15px;
    }
    .eduplc-card{
      padding: 10px;
    }
    .eduplc-timeline-step {
      padding: 10px 15px;
    }

    .terms-sidebar ul li a {
    padding: 10px;
    }
        .terms-content-wrapper h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .terms-content-wrapper p {
    font-size: 15px;
    line-height: 1.5;
}
    .single-term-block h2 {
        font-size: 24px;
        font-weight: 500;
    }



}