/* header css start */
.search-bar {
    position: absolute;
    top: 80%; /* hidden above */
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 15px;
    transition: top 0.4s ease-in-out;
    z-index: 1050;
    visibility: hidden;
}

.search-bar.active {
    top: 100%; /* slide down */
    visibility: visible;
}

.the-header {
    font-family: var(--font);
}

.the-header .top-bar {
    background-color: var(--dark);
    color: white;
    padding: 13px 0;
    font-size: 14px;
}

.the-header .top-contact-info {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.the-header .top-hotline {
    color: var(--silver);
}

.the-header .top-hotline:hover {
    color: var(--secondary);
}

.the-header .top-follow {
    margin-right: 7px;
    color: var(--silver);
}

.the-header .top-social-share {
    display: flex;
    align-items: center;
    color: var(--silver);
}

.the-header .top-auth-action {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

.the-header .top-login {
    color: var(--silver);
}

.the-header .top-login:hover {
    color: var(--secondary);
}

.the-header .top-register {
    color: var(--silver);
}

.the-header .top-register:hover {
    color: var(--secondary);
}

.the-header .top-social-links a {
    color: var(--silver);
    margin-left: 5px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.the-header .top-social-links a:hover {
    opacity: 0.8;
    color: var(--secondary);
}

.the-header .main-header {
    padding: 15px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.the-header .logo {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    max-width: 120px;
}

.the-header .logo span {
    color: var(--primary);
}

.the-header .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.the-header .nav-item {
    position: relative;
    margin: 0 5px;
}

.the-header .nav-link {
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 17px;
    padding: 0px 0px !important;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    position: relative;
}

.the-header .nav-link:hover {
    color: var(--secondary) !important;    
}

.the-header .nav-link::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0%;
    background-color: var(--secondary);
    transition: 0.3s;
}

.the-header .nav-link:hover::after{
    width: 100%;
}

.the-header .nav-item.dropdown .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    border: none;
    margin-left: 5px;
    vertical-align: middle;
}

.the-header .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
}

.the-header .dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s;
    color: #333;
}

.the-header .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--secondary);
}

.the-header .header-actions {
    display: flex;
    align-items: center;
}

.the-header .search-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 18px;
    margin-right: 15px;
    cursor: pointer;
    transition: color 0.3s;
}

.the-header .search-btn:hover {
    color: var(--secondary);
}

.the-header .search-btn i {
    font-weight: normal;
}

.the-header .navbar-toggler {
    border: none;
    padding: 5px;
}

.the-header .navbar-toggler:focus {
    box-shadow: none;
}

.the-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .the-header .top-contact-info {
        justify-content: center;
        margin-bottom: 10px;
    }

    .the-header .top-social-links {
        text-align: center;
    }

    .the-header .nav-menu {
        flex-direction: column;
        padding: 20px 0;
        gap: 10px;
    }

    .the-header .nav-item {
        margin: 5px 0;
    }

    .the-header .header-actions {
        margin-top: 15px;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .the-header .top-contact-info span {
        margin-right: 10px;
        font-size: 12px;
    }

    .the-header .top-social-links a {
        margin-left: 10px;
    }
}

/* header css end */

/* slider css start */
.swiper-container {
    width: 100%;
    height: 100%;
}

.slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    overflow: hidden;
}
.slide-content {
    position: relative;
    z-index: 2;
}
.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* semi-transparent black */
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    min-width: 800px;
    text-align: left;
    min-height: 60vh;
    margin-top: 200px;
}

.slide-title {
    font-size: 3rem;
    line-height: 1;
    max-width: 50%;
    white-space: normal;
    word-break: break-word;
    color: #FFF;
    z-index: 100;
    font-family: var(--font);
    /* text-transform: capitalize; */
    font-weight: normal;    
}
.slide-title > span{
    /* text-transform: capitalize; */
}

.slide-desc {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.slide-buttons .btn {
    margin-right: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    transition: 0.3s;
}

.slide-buttons .btn:hover{
    color: white;
    border-color: var(--secondary);
    background-color: var(--secondary);
}

@media (min-width: 45em) {
    .slide-title {
        font-size: 5vw;
        max-width: none;
    }
}

.slide-title span {
    white-space: pre;
    display: inline-block;
    opacity: 0;
}

.slideshow {
    position: relative;
}

.slideshow-pagination {
    position: absolute;
    bottom: 5rem;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: .3s opacity;
    z-index: 10;
}

.slideshow-pagination-item {
    display: flex;
    align-items: center;
}

.slideshow-pagination-item .pagination-number {
    opacity: 0.5;
}

.slideshow-pagination-item:hover,
.slideshow-pagination-item:focus {
    cursor: pointer;
}

.slideshow-pagination-item:last-of-type .pagination-separator {
    width: 0;
}

.slideshow-pagination-item.active .pagination-number {
    opacity: 1;
}

.slideshow-pagination-item.active .pagination-separator {
    width: 10vw;
}

.slideshow-navigation-button {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 5rem;
    z-index: 1000;
    transition: all .3s ease;
    color: #FFF;
}

.slideshow-navigation-button:hover,
.slideshow-navigation-button:focus {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
}

.slideshow-navigation-button.prev {
    left: 0;
}

.slideshow-navigation-button.next {
    right: 0;
}

.pagination-number {
    font-size: 1.8rem;
    color: #FFF;
    font-family: var(--font);
    padding: 0 0.5rem;
}

.pagination-separator {
    display: none;
    position: relative;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    transition: all .3s ease;
}

@media (min-width: 45em) {
    .pagination-separator {
        display: block;
    }
}

.pagination-separator-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    transform-origin: 0 0;
}
/* slider css end */


/* course css start */
.mixitup-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0 40px 0;
}

.mixitup-buttons button {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    background: #f8f9fa;
    color: #495057;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.mixitup-buttons button:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(108, 92, 231, 0.2);
}

.mixitup-buttons button:active,
.mixitup-buttons button:focus {
    outline: none;
    background: var(--primary);
    color: white;
}

/* Active state styling */
.mixitup-buttons button.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
}

/* Responsive design */
@media (max-width: 600px) {
    .mixitup-buttons {
        flex-direction: row;
        align-items: center;
    }

    .mixitup-buttons button {
        width: 200px;
    }
}
.course-section .mixitup-items .mix{
    margin-bottom: 20px;
}

.course-card.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

body .blog-card.card .card-separator {    
    margin: 0px 0 15px 0;    
}

.blog-card .read-more {
    text-decoration: none;
    font-weight: 600;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}
.blog-card .read-more:hover{
    color: var(--secondary);
}

.animated-arrow {
    display: inline-block;
    animation: moveArrow 1s infinite;
}

@keyframes moveArrow {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(5px);
        opacity: 0.7;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.course-card.card:hover {
    transform: translateY(-5px);
}

.course-card.card .card-image {
    width: 100%;
    height: 280px;
}

.course-card.card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-card.card .card-content {
    padding: 20px;
}

.course-card.card .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 5px;
}

.course-card.card .card-instructor {
    font-size: 14px;
    color: #636e72;
    margin-bottom: 15px;
    font-weight: 500;
}

.course-card.card .card-separator {
    height: 2px;
    background-color: #dfe6e9;
    margin: 15px 0;
    width: 10%;
    transition: 0.3s;
}

.course-card.card.card:hover .card-separator {
    background-color: var(--secondary);
    width: 40%;
}

.course-card.card .card-description {
    font-size: 15px;
    color: #636e72;
    line-height: 1.5;
    margin-bottom: 15px;
}

.course-card.card .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.course-card.card .students,
.course-card.card .ratings {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #636e72;
}

.course-card.card .students i,
.course-card.card .ratings i {
    margin-right: 5px;
    color: var(--primary);
}

.course-card.card .price {
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
}

.course-card.card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.course-card.card .add-to-cart {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.course-card.card .add-to-cart:hover {
    background-color: var(--secondary);
}

.course-card.card .wishlist {
    color: #636e72;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s;
}

.course-card.card .wishlist:hover {
    color: #e84393;
}

/* MEDIA QUERIES STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (min-width: 750px) {

    .course-section .courses a {
        background: #EBEBEB;
        border: none;
    }

    .course-section .courses a:hover {
        background: #EBEBEB;
        -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
        transform: scale(1.15);
    }

    .course-section .programs {
        margin-bottom: 0;
    }

    .course-section .programs button {
        width: 25%;
        margin-bottom: 15px;
    }

    .course-section .courses li {
        width: 21%;
    }

}
/* course css end */

/* professional css start */
.professionals-section {
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 50px;
}
.professionals-section .team-grid {
    display: flex;
    align-items: flex-start;
    /* better than center for multi-line */
    gap: 15px;
    flex-wrap: wrap;
}

.professionals-section .professional-card {
    flex: 1 1 calc(33.333% - 15px);    
    max-width: calc(33.333% - 15px);
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.professionals-section .professional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.professionals-section .card-image {
    width: 40%;
    overflow: hidden;
    padding: 10px;
}

.professionals-section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.professionals-section .card-content {
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.professionals-section .name {
    font-size: 22px;
    font-weight: bolder;
    color: #2d3436;
    margin-bottom: 8px;
}

.professionals-section .title {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 15px;
}

.professionals-section .top-social-links > a{
    color: #151515;
    transition: 0.3s;
}

.professionals-section .top-social-links>a>i {
    font-weight: normal;
    font-size: 13px;
    margin-right: 5px;
}

.professionals-section .top-social-links>a:hover{
    color: var(--secondary);
}
/* professional css end */

/* testimonial css start */
.testimonial-section .testimonial-grid {
    display: grid;
    gap: 5rem;
}

.testimonial-section .image-container {
    position: relative;
    width: 100%;
    height: 24rem;
    perspective: 1000px;
}

.testimonial-section .testimonial-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1.5rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: white;
}

.testimonial-section .testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-section .name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 0.25rem;
}

.testimonial-section .designation {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.testimonial-section .quote {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
}

.testimonial-section .arrow-buttons {
    display: flex;
    gap: 1rem;
    padding-top: 3rem;
}

.testimonial-section .arrow-button {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-section .arrow-button:hover {
    background-color: var(--secondary);
}

.testimonial-section .arrow-button svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #f1f1f7;
    transition: transform 0.3s;
}

.testimonial-section .arrow-button:hover svg {
    fill: #ffffff;
}

.testimonial-section .prev-button:hover svg {
    transform: rotate(-12deg);
}

.testimonial-section .next-button:hover svg {
    transform: rotate(12deg);
}

@media (min-width: 768px) {
    .testimonial-section .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-section .arrow-buttons {
        padding-top: 0;
    }
}
/* testimonial css end */

/* tour css start */
.tour-section {    
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.tour-section .container{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}

.tour-section .tour-content {
    flex: 1;
    min-width: 300px;
    padding: 0px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-section .tour-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.tour-section .tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-section .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.tour-section .video-play-button:hover {
    background: var(--secondary);
    transform: translate(-50%, -50%) scale(1.1);
}

.tour-section .video-play-button i {
    margin-left: 5px;
}

      
.tour-section .wrapper {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.tour-section .video-main {
    position: relative;
    display: inline-block;
}

.tour-section .video {
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 100%;
    background: transparent;
    color: #fff;
    display: inline-block;
    background: var(--primary);
    z-index: 999;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

.tour-section .fa-play:before {
    content: "\f04b";
}

.tour-section .waves {
    position: absolute;
    width: 170px;
    height: 170px;
    background: rgba(122, 159, 215, 0.3);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    right: -50px;
    bottom: -50px;
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.tour-section .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.tour-section .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.tour-section .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.tour-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 20px;
}

.tour-section .section-description {
    font-size: 18px;
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tour-section .features-list {
    list-style: none;
    padding: 0;
}

.tour-section .features-list li {
    font-size: 16px;
    color: #2d3436;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.tour-section .features-list li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    margin-right: 15px;
    font-size: 18px;
}

@media (max-width: 900px) {
    .tour-section {
        flex-direction: column-reverse;
        margin-bottom: 50px;
    }

    .tour-section .tour-content,
    .tour-section .tour-image {
        min-width: 100%;
    }

    .tour-section .tour-content {
        padding: 0 10px 15px 10px;
    }

    .tour-section .tour-image {
        height: 300px;
    }
}
/* tour css end */


/* brand css start */
.brand-section{
    /* background-color: var(--primary); */
    margin-top: 80px;
}

.brand-section .brand-items .img{
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    padding: 30px 30px;
    background-color: white;
    border-radius: 6px;
}

.brand-items .slick-slide {
    margin: 15px;
}  

.brand-items {
    margin: -15px;
}
/* brand css start */


/* footer css start */
.the-footer {
    font-family: var(--font);
    background-color: #1a1a1a;
    color: #999;
    padding: 80px 0 0;
}

.the-footer .footer-main {
    padding-bottom: 60px;
}

.the-footer .footer-widget {
    margin-bottom: 40px;
}

.the-footer .widget-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.the-footer .widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.the-footer .about-text {
    line-height: 1.8;
    margin-bottom: 25px;
}

.the-footer .contact-info {
    margin-bottom: 20px;
}

.the-footer .contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.the-footer .contact-info i {
    margin-right: 10px;
    color: var(--primary);
    min-width: 16px;
}

.the-footer .course-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.the-footer .course-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.the-footer .course-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.the-footer .course-list a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    display: block;
}

.the-footer .course-list a:hover {
    color: var(--secondary);
}

.the-footer .course-list .instructor {
    color: #777;
    font-size: 14px;
    margin-top: 5px;
}

.the-footer .support-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.the-footer .support-links li {
    margin-bottom: 12px;
}

.the-footer .support-links li:last-child {
    margin-bottom: 0;
}

.the-footer .support-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.the-footer .support-links a:hover {
    color: var(--secondary);
}

.the-footer .flexible-learning {
    line-height: 1.8;
}

.the-footer .map-image {
    width: 100%;
    height: 200px;
    background-color: #2a2a2a;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.the-footer .map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.the-footer .footer-bottom {
    background-color: #151515;
    padding: 25px 0;
}

.the-footer .copyright {
    margin: 0;
    background: transparent;
    padding: 0;
}

.the-footer .footer-contact {
    display: flex;
    align-items: center;
}

.the-footer .footer-contact .call {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.the-footer .footer-contact i {
    margin-right: 10px;
    color: var(--primary);
}

.the-footer .footer-social {
    display: flex;
    align-items: center;
}

.the-footer .footer-social a {
    color: #999;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.the-footer .footer-social a:hover {
    color: var(--secondary);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .the-footer .footer-contact {
        justify-content: center;
        margin-top: 20px;
    }

    .the-footer .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .the-footer {
        padding: 60px 0 0;
    }

    .the-footer .footer-contact .call {
        margin-right: 15px;
    }

    .the-footer .footer-social a {
        margin-left: 10px;
    }
}
/* footer css end */
/* checkout css start */
.checkout-container {
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.checkout-container .section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
    color: #2c3e50;
}

.checkout-container .cart-item {
    display: flex;
    padding: 15px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #f8f9fa;
}

.checkout-container .cart-item-img {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 15px;
}

.checkout-container .cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-container .cart-item-details {
    flex: 1;
}

.checkout-container .cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.checkout-container .cart-item-price {
    color: var(--secondary);
    margin: 0;
}

.checkout-container .coupon-section {
    margin-top: 25px;
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}

.checkout-container .coupon-input {
    display: flex;
    gap: 10px;
}

.checkout-container .coupon-input .form-control {
    flex: 1;
    min-height: 45px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 0 15px;
}

.checkout-container .btn-coupon {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.checkout-container .btn-coupon:hover {
    background: var(--hover);
}

.checkout-container .cart-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e8e8e8;
    margin-bottom: 20px;
}

.checkout-container .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
}

.checkout-container .summary-row:last-child {
    border-bottom: none;
}

.checkout-container .summary-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
}

.checkout-container .payment-methods {
    margin: 25px 0;
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}

.checkout-container .payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-container .payment-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.checkout-container .payment-option:hover {
    border-color: var(--primary);
}

.checkout-container .payment-option.selected {
    border-color: var(--primary);
    background: rgba(74, 108, 247, 0.05);
}

.checkout-container .payment-option input {
    margin-right: 10px;
}

.checkout-container .payment-icon {
    width: 40px;
    height: 25px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 4px;
    padding: 2px;
}

.checkout-container .payment-icon img {
    max-width: 100%;
    max-height: 100%;
}

.checkout-container .terms-section {
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
}

.checkout-container .terms-section input {
    margin-right: 10px;
    margin-top: 3px;
}

.checkout-container .terms-section label {
    font-size: 0.9rem;
}

.checkout-container .terms-section a {
    color: var(--primary);
    text-decoration: none;
}

.checkout-container .terms-section a:hover {
    text-decoration: underline;
}

.checkout-container .btn-primary {
    width: 100%;
    background: var(--primary);
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    transition: all 0.3s;
}

.checkout-container .btn-primary:hover {
    background: var(--hover);
}

.checkout-container .btn-primary:disabled {
    background: #a0a0a0;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .checkout-container {
        padding: 15px;
    }

    .checkout-container .coupon-input {
        flex-direction: column;
    }

    .checkout-container .payment-options {
        gap: 8px;
    }
}
/* checkout css end */

/* course details css start */
.details-container .course-page {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
    gap: 30px;
}

/* Main Content Area */
.details-container .course-main {
    flex: 1;
    min-width: 300px;
}

.details-container .course-sidebar {
    width: 350px;
}

/* Course Header */
.details-container .course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.details-container .course-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.details-container .course-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}

/* Course Info */
.details-container .course-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.details-container .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-container .info-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.details-container .info-label {
    font-size: 14px;
    color: #777;
}

.details-container .info-value {
    font-weight: 500;
    color: #333;
}

.details-container .apply-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.details-container .apply-btn:hover {
    background-color: var(--secondary);
}

/* Course Image */
.details-container .course-image {
    width: 100%;
    margin-bottom: 30px;
}

.details-container .course-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tabs Navigation */
.details-container .course-tabs {
    margin-bottom: 30px;
}

.details-container .tabs-nav {
    display: flex;
    list-style: none;
    border-bottom: 2px solid #eee;
    padding-left: 0;
}

.details-container .tabs-nav li {
    margin-right: 30px;
}

.details-container .tabs-nav a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #777;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.details-container .tabs-nav a.active {
    color: var(--primary);
}

.details-container .tabs-nav a.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.details-container .tabs-nav a:hover {
    color: var(--primary);
}

/* Tab Content */
.details-container .tab-content {
    display: none;
    padding: 25px 0;
}

.details-container .tab-content.active {
    display: block;
}

.details-container .tab-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
}

/* Curriculum Section */
.details-container .curriculum-section {
    margin-bottom: 30px;
    background: #f1f1f17a;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.details-container .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.details-container .section-name {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.details-container .section-lessons {
    font-size: 14px;
    color: #777;
}

.details-container .section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #444;
}

.details-container .section-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.details-container .section-summary {
    font-size: 14px;
    color: #777;
    margin-top: 15px;
    margin-bottom: 5px;
    font-style: italic;
    margin-left: 10px;
}

.details-container .section-element {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 12px 10px;
    border-bottom: 1px solid #eee;
}

.details-container .element-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-container .element-label {
    font-size: 13px;
    color: #777;
}

.details-container .element-info {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #777;
    font-size: 14px;
}

/* Sidebar Widgets */
.details-container .sidebar-widget {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.details-container .widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    padding-bottom: 10px;
}

.details-container .widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.details-container .course-features li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.details-container .feature-item:last-child {
    border-bottom: none;
}

.details-container .item-label {
    color: #777;
}

.details-container .item-value {
    font-weight: 500;
}

.details-container .certificate-image {
    width: 100%;
    margin-top: 15px;
}

.details-container .certificate-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Course List */
.details-container .course-list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.details-container .course-list-item:last-child {
    margin-bottom: 0;
}

.details-container .course-list-image {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.details-container .course-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-container .course-list-info {
    flex: 1;
}

.details-container .course-list-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #222;
}

.details-container .course-list-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

/* Social Share */
.details-container .social-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.details-container .social-title {
    font-size: 15px;
    color: #777;
}

.details-container .social-icons {
    display: flex;
    gap: 10px;
}

.details-container .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    transition: all 0.3s;
}

.details-container .social-icon:hover {
    background: var(--secondary);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .details-container .course-page {
        flex-direction: column;
    }

    .details-container .course-sidebar {
        width: 100%;
    }
}
.reviews-section {
    margin: 40px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.reviews-main-title {
    margin-bottom: 30px;
}

.reviews-main-title h3 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.reviews-main-title p {
    color: #666;
    line-height: 1.6;
}

.reviews-list-top {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.reviews-grid-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.reviews-grid-col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

.reviews-grid-col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.reviews-number-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.reviews-number-inner {
    text-align: center;
}

.reviews-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #222;
    line-height: 1;
    margin-bottom: 10px;
}

.stars-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stars {
    color: var(--secondary);
    margin-bottom: 5px;
}

.stars i {
    margin: 0 1px;
}

.reviews-count {
    font-size: 14px;
    color: #666;
}

.rating-percentage-wrapper {
    padding: 10px 0;
}

.progress-bar {
    margin-bottom: 12px;
}

.pb-title-holder {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.pb-title {
    font-size: 14px;
    color: #555;
}

.pb-percent {
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

.pb-content-holder {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.pb-content {
    height: 100%;
    background: var(--secondary);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.review-item {
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.review-item:last-child {
    border-bottom: none;
}

.review-avatar {
    flex: 0 0 60px;
    margin-right: 20px;
}

.review-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-content {
    flex: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.review-author {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.review-rating {
    color: var(--secondary);
}

.review-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.review-text {
    color: #444;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {

    .reviews-grid-col-4,
    .reviews-grid-col-8 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .reviews-number {
        font-size: 36px;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-rating {
        margin-top: 5px;
    }
}
.faq-section {
    margin: 40px 0;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.faq-section .faq-title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.faq-section .faq-accordion {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.faq-section .faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-section .faq-item:last-child {
    border-bottom: none;
}

.faq-section .faq-question {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 15px 20px;
    margin: 0;
    cursor: pointer;
    position: relative;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.faq-section .faq-question:hover {
    background-color: #f5f5f5;
}

.faq-section .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 400;
    color: #777;
    transition: transform 0.3s ease;
}

.faq-section .faq-item.active .faq-question::after {
    content: '-';
    transform: translateY(-50%);
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fff;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-section .faq-answer p {
    padding: 15px 20px;
    margin: 0;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 15px;
    }

    .faq-section .faq-question {
        padding: 12px 15px;
        font-size: 15px;
    }

    .faq-section .faq-answer p {
        padding: 12px 15px;
    }
}
.course-members-section {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.course-members-heading {
    margin-bottom: 30px;
}

.course-members-title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.course-members-description {
    color: #666;
    line-height: 1.6;
}

.course-members-items-heading {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.course-members-items-number {
    color: var(--primary);
    font-weight: 600;
}

.course-members-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.course-member-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-member-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.course-member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.course-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-member-info {
    flex: 1;
}

.course-member-name {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    margin: 0 0 5px 0;
}

.course-member-role {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.course-members-view-all {
    text-align: center;
}

.view-all-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-all-btn:hover {
    background-color: var(--primary);
}

@media (max-width: 768px) {
    .course-members-section {
        padding: 20px;
    }

    .course-members-list {
        grid-template-columns: 1fr;
    }

    .course-member-item {
        padding: 12px;
    }

    .course-member-avatar {
        width: 50px;
        height: 50px;
    }
}
/* course details css end */
/* blog details css start */
.blog-comments-section {
    margin: 40px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.blog-comments-section .blog-comments-inner {
    margin-bottom: 40px;
}

.blog-comments-section .blog-comments-title {
    margin-bottom: 25px;
}

.blog-comments-section .blog-comments-title h4 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.blog-comments-section .comments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-comments-section .comment-item {
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.blog-comments-section .comment-item:last-child {
    border-bottom: none;
}

.blog-comments-section .comment-content {
    display: flex;
    gap: 20px;
}

.blog-comments-section .comment-avatar {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-comments-section .comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-comments-section .comment-details {
    flex: 1;
}

.blog-comments-section .comment-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-comments-section .comment-author {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.blog-comments-section .comment-date {
    font-size: 14px;
    color: #777;
}

.blog-comments-section .comment-text {
    margin-bottom: 15px;
}

.blog-comments-section .comment-text p {
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.blog-comments-section .comment-actions {
    margin-top: 10px;
}

.blog-comments-section .comment-reply {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.blog-comments-section .comment-reply:hover {
    color: var(--primary);
}

.blog-comments-section .comment-replies {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 90px;
    border-left: 2px solid #f0f0f0;
    padding-left: 20px;
}

.blog-comments-section .comment-replies .comment-item {
    padding: 20px 0;
}

.blog-comments-section .blog-comment-form {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
}

.blog-comments-section .comment-form-title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin: 0 0 20px 0;
}

.blog-comments-section .comment-form {
    width: 100%;
}

.blog-comments-section .form-group {
    margin-bottom: 20px;
}

.blog-comments-section .form-row {
    display: flex;
    gap: 20px;
}

.blog-comments-section .form-row .form-group {
    flex: 1;
}

.blog-comments-section textarea,
.blog-comments-section input[type="text"],
.blog-comments-section input[type="email"],
.blog-comments-section input[type="url"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.blog-comments-section textarea:focus,
.blog-comments-section input[type="text"]:focus,
.blog-comments-section input[type="email"]:focus,
.blog-comments-section input[type="url"]:focus {
    outline: none;
    border-color: var(--primary);
}

.blog-comments-section textarea {
    min-height: 150px;
    resize: vertical;
}

.blog-comments-section .form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.blog-comments-section .form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.blog-comments-section .form-checkbox label {
    font-size: 14px;
    color: #555;
}

.blog-comments-section .submit-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.blog-comments-section .submit-button:hover {
    background-color: var(--primary);
}

@media (max-width: 768px) {
    .blog-comments-section .comment-content {
        flex-direction: column;
        gap: 15px;
    }

    .blog-comments-section .comment-avatar {
        width: 60px;
        height: 60px;
    }

    .blog-comments-section .comment-replies {
        margin: 20px 0 0 30px;
    }

    .blog-comments-section .form-row {
        flex-direction: column;
        gap: 0;
    }

    .blog-comments-section .blog-comment-form {
        padding: 20px;
        flex-wrap: wrap;
    }
}
/* blog details css end */
/* contact us page css start */
.contact-section {
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-section .contact-title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
}

.contact-section .contact-description {
    color: #666;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-section .contact-icon {
    width: 30px;
    height: 30px;
    background-color: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 14px;
}

.contact-section .contact-details {
    flex: 1;
}

.contact-section .contact-details p {
    margin: 0 0 8px 0;
    color: #444;
    font-size: 16px;
}

.contact-section .contact-details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 0;
        margin-bottom: 20px;
    }

    .contact-section .contact-item {
        flex-direction: row;
        text-align: start;
        align-items: center;
        gap: 15px;
    }

    .contact-section .contact-icon {
        align-self: start;
    }
}
.google-maps {
    position: relative;
    padding-bottom: 36.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* contact us page css end */

/* about us page css start */
.progress-section {
    padding: 60px 0;
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.progress-section .progress-container {
    display: flex;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.progress-section .progress-text-column {
    flex: 1;
    display: flex;
}

.progress-section .progress-text-content {
    padding-right: 15%;
}

.progress-section .progress-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.progress-section .progress-separator {
    width: 38px;
    height: 3px;
    background-color: var(--primary);
    margin: 23px 0 9px 0;
}

.progress-section .progress-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 15px 0 0 0;
}

.progress-section .progress-bars-column {
    flex: 1;
    display: flex;
    align-items: center;
}

.progress-section .progress-bars-content {
    width: 100%;
}

.progress-section .progress-bar-item {
    margin-bottom: 22px;
}

.progress-section .progress-bar-item:last-child {
    margin-bottom: 0;
}

.progress-section .progress-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-section .progress-bar-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.progress-section .progress-bar-percent {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.progress-section .progress-bar-track {
    width: 100%;
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-section .progress-bar-fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

@media (max-width: 992px) {
    .progress-section .progress-container {
        flex-direction: column;
        gap: 30px;
    }

    .progress-section .progress-text-content {
        padding-right: 0;
        text-align: center;
    }

    .progress-section .progress-separator {
        margin: 23px auto 9px auto;
    }
}

@media (max-width: 768px) {
    .progress-section {
        padding: 40px 0;
    }

    .progress-section .progress-main-title {
        font-size: 28px;
    }

    .progress-section .progress-container {
        padding: 0 15px;
    }
}
/* about us page css end */