.navbar-expand-xl .navbar-nav .nav-item{
    margin: 0 8px;
}
.banner_container h1{
    text-transform: none;
}
.course-detail-content h2{
    font-size: 37px;
    font-weight: 500;
    padding-bottom: 6px;
    margin-bottom: 12px;
    position: relative;
    color: #48A94D;
    text-transform: none;
    line-height: 1.3;
}
@media (max-width: 576px) {
    .course-detail-content h2::after {
        margin-left: auto;
        margin-right: auto;  
    }
}
/* navbar styling */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-toggle::after {
  content: "▶";
  float: right;
  font-size: 10px;
  margin-top: 4px;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  display: none;
}

.dropdown-submenu:hover .dropdown-menu {
  display: block;
}

/* end styling */
.aosh h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    margin: 20px 0 10px 0;
    display: block;
    width: 100%;
    color: #48A94D;
    white-space: normal;
    word-break: normal;
    position: relative;
   
}
/* used for underline */
.aosh h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: #48A94D;
    margin-top: 2px; 
}

/*  Medium screens */
@media (max-width: 992px) {
    .aosh h3 {
        font-size: 24px;
       margin-left: auto;
        margin-right: auto;
    }

    .aosh h3::after {
        width: 40px;
        height: 2px;
    }
}
@media (max-width: 576px) {
    .aosh h3::after {
        margin-left: auto;
        margin-right: auto;  
    }
}

/* Mobile / Small screens */
@media (max-width: 576px) {
    .aosh h3 {
        font-size: 19px;
        text-align: center; 
    }

    .aosh h3::after {
        width: 47px;
        height: 2px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .course-detail-content h2 {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .course-detail-content h2 {
        font-size: 22px;
        text-align: center;
    }
}
@media (max-width: 576px) {
    .course-detail-content h2::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.aosh h4 {
  font-size: 32px;
    font-weight: 500;
    padding-bottom: 6px;
    margin-bottom: 12px;
    position: relative;
    color: #48A94D;
    line-height: 1.3;
}
.aosh h2{
    font-size: 37px;
    font-weight: 500;
    padding-bottom: 6px;
    margin-bottom: 12px;
    position: relative;
    color: #48A94D;
    line-height: 1.3;
}
/* for underline */
.aosh h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: #48A94D;  
}
.aosh h4::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: #48A94D;  
}
/* ol */
ol li::marker {
    font-weight: bold;
}
.aosh li{
   justify-items: center;
    text-align: left;
    align-items: center;
    
}
.aosh-li{
    list-style: none;
    list-style-position: inside;
}
.aosh p{
    text-align: left;
    margin-bottom: 15px;
}
@media (max-width: 991px) {
    .aosh h2 {
        font-size: 25px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .aosh h2 {
        margin-top: 25px;
        font-size: 20px;
        text-align: center;
    }
    .aosh p{
        margin: 0 5px 0 10px;
        
    }
    .aosh li{
        margin-left: 10px;
        
    }
}
@media (max-width: 576px) {
    .aosh h4 {
        font-size: 17px;
        text-align: center;
    }
}
@media (max-width: 576px) {
    .aosh h4::after {
        margin-left: auto;
        margin-right: auto;  
    }
}
@media (max-width: 576px) {
    .aosh h2::after {
        margin-left: auto;
        margin-right: auto; 
    }
}
/* course-card styling */
.course-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    list-style: none; 
    padding: 0;
}

/* Card style */
.course-cards > li {
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    position: relative;
}

/* Hover Effect */
.course-cards > li:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    border-color:#333;
    cursor: pointer;
}

/* Optional: number styling */
.course-cards > li::before {
    content: counter(list-item) ". ";
    font-weight: bold;
    transition: 3s;
}

/* Nested UL spacing */
.course-cards ul {
    margin-top: 10px;
    padding-left: 18px;
}
#card-para{
    color:black;
}
/* mobile responsive */
@media (max-width: 768px) {
    .course-cards {
        grid-template-columns: 1fr;
    }
}
/* hyper-link */
.course-cards a{
    color: blue;
}
.hyperlink{
    color: blue;
}
/* FAQ  */
.faq h3{
    text-align: center;
}
.aosh .faq h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: #48A94D;
    margin: 2px auto 0; 
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

 
/* dropdown */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    background: #f7f7f7;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
     outline: none;
    color: #333;
    transition: all 0.3s ease;
}
.faq-question:hover {
    background: #ffe8e3;
}

.faq-question.active {
    background: #e16748;
    color: #fff;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.6;
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 18px;
}


.faq-question.active .faq-icon {
    transform: rotate(180deg); 
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    padding: 0 15px;
}
/* .featured-box h3  */
@media(max-width: 576px){
    .featured-box h3 {
        text-align: center;
  }
}
.featured-properties-item .featured-properties-img img{
    height: 100%;
    width: 100%;
}
.featured-properties-item {
    gap: 15px;
    height: 100%;
    width: 104%;
}
/* courses */
.heading h3 span strong{
    font-weight: bold;
}

.content-container{
    padding: 20px 0px;
}
.heading h3 span strong::after{
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: #48A94D;
    margin-left: auto;
    margin-right: auto;
}
 
 ol ul {
    margin-left: 10px;
    padding-left: 10px;
}
.course-detail-content p{
    text-align: justify;
    font-size: 16px;
}
.aosh{
    padding: 0;
    margin-top: -10px;
}
/* not found styling */

 .not-found{
    
    color: #989595; 
    text-align: center;
    padding: 20px;
}
/* not-found buttons */
.not-found-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-weight: 700;
    padding: 10px 15px;
    min-width: 130px;
    font-size: 16px;
    line-height: 18px;
    box-shadow: none !important;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
}
.not-found-btns a {
    margin-left: 0 !important;
}
.not-found h1 {
    margin-top: auto;
}

.not-found-btns a{
    border: #333;
    padding: 6px;
    margin-bottom: 20px;
    color: #eee;
}
.btnhome{
  color: #fff;
  border-radius: 2px;
}
/* mobile responsive */
@media (max-width: 480px) {
    .not-found {
        padding: 15px;
    }

    .not-found-btns {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .not-found-btns a {
        width: 100%;
        margin: 0 auto;
        padding: 12px 14px;
        max-width: 260px;
        text-align: center;
    }
}