/* Root Variables */
:root {
    --primary-red: #e31e24;
    --primary-black: #333333;
    --primary-white: #ffffff;
    --primary-blue: #636569;
    --header-height: 60px;
}

/* Icon Size */
.icon_s {
    font-size: 25px;
}

/* Social Media Icons */
.Social-midea a i:hover.fa-facebook {
    color: #1877f2;
}

.Social-midea a i:hover.fa-twitter {
    color: #1da1f2;
}

.Social-midea a i:hover.fa-instagram {
    color: #e4405f;
}

.Social-midea a i:hover.fa-linkedin {
    color: #0077b5;
}

.Social-midea a i:hover.fa-youtube-play {
    color: #ff0000;
}

.Social-midea a i:hover.fa-whatsapp {
    color: #25d366;
}

.Social-midea a i:hover.fa-telegram {
    color: #0088cc;
}

.Social-midea a i {
    transition: all 0.3s ease;
}

/* Update existing Social Media styles */
.Social-midea a {
    color: var(--primary-white);
    margin: 0 0px;
    transition: all 0.3s ease;
}

.Social-midea a:hover {
    transform: translateY(-2px);
}

/* Social Media Icons Mobile Responsive */
@media screen and (max-width: 768px) {
    .Social-midea {
        display: flex !important;
        justify-content: center !important;
        margin: 10px 0 !important;
    }

    .Social-midea a {
        margin: 0 12px !important;
    }

    .Social-midea a i {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 480px) {
    .Social-midea a {
        margin: 0 8px !important;
    }

    .Social-midea a i {
        font-size: 18px !important;
    }

    .icon_s {
        font-size: 20px !important;
    }
}

/* Mobile Header Styles */
@media screen and (max-width: 991px) {
    /* General */
    .site-header {
        position: relative !important;
    }

    /* Top Header */
    .header-top {
        display: none !important;
    }

    /* Logo */
    .site-branding {
        text-align: center !important;
        padding: 10px 0 !important;
    }

    .site-branding img {
        max-width: 150px !important;
        height: auto !important;
    }

    /* Header Bottom */
    .header-bottom {
        background: #fff !important;
        box-shadow: 0 1px 5px rgba(0,0,0,0.1) !important;
    }

    /* Main Navigation */
    .main-navigation {
        display: none !important;
    }

    /* Toggle Buttons */
    .mobile-menu-toggle {
        position: absolute !important;
        top: 10px !important;
        width: 40px !important;
        height: 40px !important;
        background: var(--primary-red) !important;
        color: #fff !important;
        border: none !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 20px !important;
        z-index: 1000 !important;
        cursor: pointer !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
        left: 10px !important; /* Position on the left */
    }

    .mobile-menu-toggle.active {
        background: var(--primary-black) !important;
    }

    /* Header Buttons */
    .header-buttons {
        display: none !important; /* Hide header buttons */
    }

    /* Overlay */
    .header-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0,0,0,0.5) !important;
        z-index: 997 !important;
        display: none !important;
    }

    .header-overlay.active {
        display: block !important;
    }

    /* New Mobile Navigation */
    .mobile-nav {
        position: fixed !important;
        top: 0 !important;
        left: -280px !important;
        width: 280px !important;
        height: 100vh !important;
        background: #fff !important;
        padding: 70px 15px 15px !important;
        transition: all 0.3s ease !important;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1) !important;
        z-index: 998 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .mobile-nav.active {
        left: 0 !important;
    }

    .mobile-nav ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mobile-nav ul li a {
        display: block !important;
        padding: 12px 15px !important;
        font-size: 14px !important;
        color: #333 !important;
        text-decoration: none !important;
        border-bottom: 1px solid #eee !important;
    }
}

/* Mobile Header Responsive Styles */
@media screen and (max-width: 991px) {
    .site-header {
        position: relative !important;
    }

    .header-top {
        padding: 5px 0 !important;
        background: var(--primary-black) !important;
    }

    .header-bottom {
        padding: 10px 0 !important;
    }

    /* Logo */
    .site-branding {
        text-align: center !important;
        padding: 10px 0 !important;
    }

    .site-branding img {
        max-width: 150px !important;
        height: auto !important;
    }

    /* Header Buttons */
    .header-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        padding: 10px 15px !important;
        margin: 0 !important;
    }

    .custom-btn {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        padding: 10px 15px !important;
        border-radius: 6px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        text-align: left !important;
    }

    .custom-btn i {
        width: 20px !important;
        margin-right: 10px !important;
        font-size: 16px !important;
    }

    /* Main Navigation */
    .main-navigation {
        background: var(--primary-white) !important;
        border-top: 1px solid #eee !important;
    }

    .menu {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .menu > li {
        border-bottom: 1px solid #eee !important;
    }

    .menu > li > a {
        padding: 12px 15px !important;
        display: block !important;
        color: var(--primary-black) !important;
        font-weight: 500 !important;
    }

    /* Submenu */
    .sub-menu {
        display: none !important;
        background: #f5f5f5 !important;
        padding: 0 !important;
    }

    .sub-items:hover .sub-menu {
        display: block !important;
    }

    .sub-menu li a {
        padding: 10px 20px !important;
        display: block !important;
        font-size: 13px !important;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 576px) {
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .custom-btn {
        font-size: 13px !important;
        padding: 8px 12px !important;
    }

    .custom-btn i {
        font-size: 14px !important;
    }

    .menu > li > a {
        font-size: 14px !important;
    }

    .Social-midea a {
        margin: 0 8px !important;
    }

    .icon_s {
        font-size: 18px !important;
    }

    .mobile-toggle-btn {
        width: 40px !important;
        height: 40px !important;
        top: 10px !important;
        right: 10px !important;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 375px) {
    .site-branding img {
        max-width: 140px !important;
    }

    .custom-btn {
        font-size: 12px !important;
        padding: 8px 10px !important;
    }

    .menu > li > a {
        font-size: 13px !important;
        padding: 10px 12px !important;
    }
}

.txt-justify{ text-align:justify;}
/* Header Buttons Container */
.header-buttons-wrapper {
    position: fixed !important;
    right: -300px !important;
    top: 0 !important;
    width: 280px !important;
    height: 100vh !important;
    background: #fff !important;
    z-index: 999 !important;
    transition: right 0.3s ease !important;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1) !important;
}

.header-buttons-wrapper.active {
    right: 0 !important;
}

/* Toggle Button */
.mobile-buttons-toggle {
    position: fixed !important;
    right: 15px !important;
    top: 2px !important;
    z-index: 1000 !important;
    background: #fff !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 12px !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    display: none !important;
}

@media screen and (max-width: 991px) {
    .mobile-buttons-toggle {
        display: block !important;
    }

    .header-buttons {
        padding: 20px 15px !important;
    }

    .custom-btn {
        margin-bottom: 10px !important;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed !important;
    right: 15px !important;
    top: 15px !important;
    z-index: 1000 !important;
    background: var(--primary-red) !important;
    color: #fff !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
}

.mobile-menu-toggle.active {
    background: var(--primary-black) !important;
}

.header-buttons-wrapper {
    display: block;
}

@media screen and (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .header-buttons-wrapper {
        position: fixed !important;
        right: -300px !important;
        top: 0 !important;
        width: 280px !important;
        height: 100% !important;
        background: #fff !important;
        z-index: 999 !important;
        transition: right 0.3s ease !important;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1) !important;
        padding: 60px 15px 15px !important;
    }

    .header-buttons-wrapper.show {
        right: 0 !important;
    }

    .header-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .custom-btn {
        width: 100% !important;
        justify-content: flex-start !important;
    }
}

/* Mobile Button Styles */
@media screen and (max-width: 991px) {
    .header-buttons {
        position: fixed !important;
        right: -300px !important;
        top: 0 !important;
        width: 280px !important;
        height: 100% !important;
        background: #fff !important;
        z-index: 999 !important;
        transition: all 0.3s ease !important;
        padding: 60px 15px 15px !important;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .header-buttons.active {
        right: 0 !important;
    }

    .custom-btn {
        width: 100% !important;
        text-align: left !important;
        padding: 12px 15px !important;
        display: flex !important;
        align-items: center !important;
        font-size: 14px !important;
    }

    .custom-btn i {
        width: 20px !important;
        margin-right: 10px !important;
        font-size: 16px !important;
    }

    .mobile-menu-toggle {
        position: fixed !important;
        right: 15px !important;
        top: 15px !important;
        z-index: 1000 !important;
        background: var(--primary-red) !important;
        color: #fff !important;
        border: none !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
    }

    .mobile-menu-toggle.active {
        background: var(--primary-black) !important;
    }

    .header-buttons-wrapper {
        display: block;
    }
}
    @media screen and (max-width: 991px) {
        .mobile-menu-toggle {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        .header-buttons-wrapper {
            position: fixed !important;
            top: 0 !important;
            right: -300px !important;
            width: 280px !important;
            height: 100% !important;
            background: #fff !important;
            z-index: 999 !important;
            transition: right 0.3s ease !important;
            box-shadow: -2px 0 5px rgba(0,0,0,0.1) !important;
            padding: 60px 15px 15px !important;
        }

        .header-buttons-wrapper.show {
            right: 0 !important;
        }

        .header-buttons {
            flex-direction: column !important;
            gap: 10px !important;
        }

        .custom-btn {
            width: 100% !important;
            justify-content: flex-start !important;
        }
    }

    /* Mobile Button Styles */
    @media screen and (max-width: 991px) {
        .header-buttons {
            position: fixed !important;
            right: -300px !important;
            top: 0 !important;
            width: 280px !important;
            height: 100% !important;
            background: #fff !important;
            z-index: 999 !important;
            transition: all 0.3s ease !important;
            padding: 60px 15px 15px !important;
            box-shadow: -2px 0 5px rgba(0,0,0,0.1) !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 10px !important;
        }

        .header-buttons.active {
            right: 0 !important;
        }

        .custom-btn {
            width: 100% !important;
            text-align: left !important;
            padding: 12px 15px !important;
            display: flex !important;
            align-items: center !important;
            font-size: 14px !important;
        }

        .custom-btn i {
            width: 20px !important;
            margin-right: 10px !important;
            font-size: 16px !important;
        }

        .mobile-menu-toggle {
            position: fixed !important;
            right: 15px !important;
            top: 15px !important;
            z-index: 1000 !important;
            background: var(--primary-red) !important;
            color: #fff !important;
            border: none !important;
            width: 40px !important;
            height: 40px !important;
            border-radius: 50% !important;
            cursor: pointer !important;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
        }

        .mobile-menu-toggle.active {
            background: var(--primary-black) !important;
        }

        .header-buttons-wrapper {
            display: block;
        }
    }
        @media screen and (max-width: 991px) {
            .mobile-menu-toggle {
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }

            .header-buttons-wrapper {
                position: fixed !important;
                top: 0 !important;
                right: -300px !important;
                width: 280px !important;
                height: 100vh !important;
                background: #fff !important;
                z-index: 999 !important;
                padding: 70px 15px 15px !important;
                transition: all 0.3s ease !important;
                box-shadow: -2px 0 10px rgba(0,0,0,0.1) !important;
            }

            .header-buttons-wrapper.active {
                right: 0 !important;
            }

            .mobile-nav-buttons {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background: #fff;
                padding: 10px;
                display: flex;
                justify-content: space-between;
                box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
                z-index: 998;
            }
        }

        /* Mobile Menu Styles */
        @media (max-width: 991px) {
    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        transition: 0.3s ease-in-out;
        overflow-y: auto;
        padding-top: 60px;
    }

    .main-navigation.show {
        left: 0;
    }

    .main-navigation .menu {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .main-navigation .menu > li {
        border-bottom: 1px solid #eee;
    }

    .main-navigation .menu > li > a {
        padding: 12px 20px;
        display: block;
    }

    .sub-menu {
        display: none;
        background: #f5f5f5;
        padding-left: 20px;
    }

    .sub-items.active .sub-menu {
        display: block;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .menu-overlay.show {
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }

    .mobile-nav-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 10px;
        display: flex;
        justify-content: space-between;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 998;
    }
}

/* Components */
.testimonial {
    @extend .card-base;
    padding: 40px;
    margin: 15px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.testimonial__quote {
    position: relative;
    margin-bottom: 25px;
}

/* Bubbles Animation */
@keyframes bubble {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: bubble 3s infinite;
}

.bubble:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    background: rgba(255, 82, 25, 0.7);
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 70%;
    background: rgba(0, 96, 255, 0.7);
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 120px;
    height: 120px;
    top: 80%;
    left: 30%;
    background: rgba(255, 82, 25, 0.7);
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 90px;
    height: 90px;
    top: 10%;
    left: 80%;
    background: rgba(0, 96, 255, 0.7);
    animation-delay: 3s;
}

/* Scroll To Top */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #e31e24;
    border-radius: 100%;
    font-size: 25px;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: 0.3s;
    overflow: hidden;
    z-index: 9999;
    display: none;
    text-decoration: none;
    cursor: pointer;
}

.scroll-top:hover {
    box-shadow: 1px 1px 60px rgb(0 0 0 / 15%);
    transition: 0.3s;
    color: #ffffff;
}

.scroll-top:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #636569;
    transition: 0.3s;
    z-index: 0;
}

.scroll-top:hover:before {
    top: 0;
}

.scroll-top i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    line-height: 10px;
    z-index: 1;
}

.scroll-top:hover i {
    animation: swipe 0.6s linear infinite alternate;
}

@keyframes swipe {
    from {
        margin-top: -3px;
    }
    to {
        margin-top: 3px;
    }
}
    

/*==========Courses Page CSS End==========*/

/*==========Course Detail Page CSS Start==========*/
.main-course-detail-in {
    padding-top: 120px;
    padding-bottom: 90px;
}

.course-detail-box {
    padding-right: 20px;
}

.course-detail-box .h2-title {
    padding-top: 0;
}

.course-detail-instructor-date-box {
    display: flex;
    align-items: center;
}

.course-detail-instructor {
    display: flex;
    align-items: center;
}

.course-detail-instructor-img {
    border: solid 3px #ffffff;
    box-shadow: 0px 5px 20px 0px rgb(0,0,0,0.15);
    border-radius: 100%;
}

.course-detail-instructor-text {
    margin-left: 15px;
}

.course-detail-instructor-text a p {
    font-weight: 500;
    margin-bottom: 0;
    color: #050d36;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-instructor-text a p:hover {
    color: #e31e24;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-instructor-text span {
    color: #777777;
}

.course-detail-date {
    margin-left: 50px;
}

.course-detail-date a p {
    font-weight: 500;
    margin-bottom: 0;
    color: #050d36;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-date a p:hover {
    color: #e31e24;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-date span {
    color: #777777;
}

.course-detail-rating-tag-box {
    display: flex;
    align-items: center;
}

.course-detail-rating-star {
    display: flex;
    align-items: center;
}

.course-detail-rating-star i {
    font-size: 18px;
    color: #ffc107;
    margin-left: 8px;
}

.course-detail-rating-star i:first-child {
    margin-left: 0;
}

.course-detail-rating-star p {
    margin-bottom: 0;
    color: #050d36;
    font-weight: 500;
    margin-left: 8px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-rating-box a:hover p {
    color: #e31e24;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-rating-box span {
    color: #777777;
}

.course-detail-tag-box {
    margin-left: 65px;
}

.course-detail-tag-box ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
}

.course-detail-tag-box ul li {
    margin-left: 20px;
}

.course-detail-tag-box ul li:first-child {
    margin-left: 0;
}

.course-detail-tag-box ul li a {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 15px;
    padding: 8px 20px;
    color: #ffffff;
    border-radius: 4px;
}

.course-detail-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.course-detail-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-img:hover>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-point {
    margin-top: 30px;
}

.course-detail-point ul {
    list-style: none;
    text-decoration: none;
    padding-left: 0;
    margin-bottom: 0;
}

.course-detail-point ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.course-detail-point ul li:last-child {
    margin-bottom: 0;
}

.course-detail-point ul li i {
    font-size: 30px;
    color: #e31e24;
    margin-right: 15px;
}

.course-detail-point ul li p {
    font-weight: 500;
    color: #050d36;
    margin-bottom: 0;
}

.course-detail-share ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
}

.course-detail-share ul li {
    margin-left: 20px;
}

.course-detail-share ul li:first-child {
    margin-left: 0;
}

.course-detail-share ul li a i {
    width: 45px;
    height: 45px;
    border: solid 1px #050d36;
    border-radius: 4px;
    line-height: 18px;
    font-size: 18px;
    padding-top: 4px;
    color: #050d36;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-share ul li a i:hover {
    border: solid 1px #e31e24;
    background-color: #e31e24;
    color: #ffffff;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-share {
    margin-top: 30px;
}

.get-the-course {
    background-color: #f3f4f8;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
}

.get-the-course ul {
    margin-bottom: 0;
    padding-left: 0;
    text-decoration: none;
    list-style: none;
}

.get-the-course ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.get-the-course ul li:last-child {
    margin-bottom: 0;
}

.get-the-course ul li p {
    color: #050d36;
    font-weight: 500;
    margin-bottom: 0;
}

.get-the-course ul li p span {
    color: #777777;
}

.get-course-icon {
    width: 35px;
    height: 35px;
    margin-right: 15px;
    background-color: #636569;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-course-line {
    width: 100%;
    height: 1px;
    background-color: #d7d7d7;
    margin-top: 30px;
    margin-bottom: 30px;
}

.get-course-dropdown .form-select {
    width: 100%;
    padding: 7px 54px 7px 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: #777777;
    border: 1px solid #777777;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.get-course-dropdown .form-select:focus {
    box-shadow: none;
}

.get-course-dropdown option {
    font-weight: 500;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: #777777;
}

.get-course-price {
    display: flex;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 24px;
}

.get-course-price .h3-title {
    margin-bottom: 0;
}

.get-course-price span {
    font-family: 'Jost', sans-serif;
    color: #777777;
    text-decoration: line-through;
    font-size: 15px;
    font-weight: 500;
    margin-left: 10px;
}

.get-course-price p {
    background-color: rgb(7,149,97,0.1);
    width: 72px;
    height: 28px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
    color: #079561;
    margin-left: 30px;
}

.recent-course-box {
    background-color: #f3f4f8;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    margin-top: 50px;
}

.recent-course-box ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    text-transform: none;
}

.recent-course-box ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.recent-course-box ul li:last-child {
    margin-bottom: 0;
}

.recent-course-text {
    width: calc(100% - 115px);
}

.recent-course-text a p {
    font-weight: 500;
    margin-bottom: 0;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.recent-course-box ul li:hover p {
    color: #050d36;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.recent-course-text span {
    color: #e31e24;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
}

.recent-course-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 15px;
}

.recent-course-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.recent-course-box ul li:hover> .recent-course-img img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}
/*==========Course Detail Page CSS End==========*/

/*==========Event Detail Page CSS Start==========*/
.main-event-detail-in {
    padding-top: 120px;
    padding-bottom: 70px;
}

.event-detail-box {
    padding-right: 20px;
}

.event-detail-instructor-date-box {
    display: flex;
    align-items: center;
}

.event-detail-instructor {
    display: flex;
    align-items: center;
}

.event-detail-instructor-img {
    border: solid 3px #ffffff;
    box-shadow: 0px 5px 20px 0px rgb(0,0,0,0.15);
    border-radius: 100%;
}

.event-detail-instructor-text {
    margin-left: 15px;
}

.event-detail-instructor-text a p {
    font-weight: 500;
    margin-bottom: 0;
    color: #050d36;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-instructor-text a p:hover {
    color: #e31e24;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-instructor-text span {
    color: #777777;
}

.event-detail-date {
    margin-left: 50px;
}

.event-detail-date a p {
    font-weight: 500;
    margin-bottom: 0;
    color: #050d36;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-date a p:hover {
    color: #e31e24;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-date span {
    color: #777777;
}

.event-detail-location-time {
    display: flex;
    align-items: center;
}

.event-detail-location {
    margin-left: 5px;
}

.event-detail-location a p {
    font-weight: 500;
    margin-bottom: 0;
    color: #050d36;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-location a p:hover {
    color: #e31e24;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-location span {
    color: #777777;
}

.event-detail-time {
    margin-left: 50px;
}

.event-detail-time a p {
    font-weight: 500;
    margin-bottom: 0;
    color: #050d36;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-time a p:hover {
    color: #e31e24;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-time span {
    color: #777777;
}

.event-detail-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.event-detail-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-img:hover>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-price-box {
    background-color: #f3f4f8;
    padding: 40px;
    border-radius: 8px;
}

.event-detail-price-box .get-course-price {
    margin-top: 0;
}

.event-detail-related-event-box {
    background-color: #f3f4f8;
    padding: 40px;
    border-radius: 8px;
    margin-top: 50px;
}

.event-detail-related-event-box ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    text-transform: none;
    max-height: 465px;
    overflow-x: hidden;
}

.event-detail-related-event-box ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.event-detail-related-event-box ul li:last-child {
    margin-bottom: 0;
}

.related-event-text {
    width: calc(100% - 115px);
}

.related-event-text a p {
    font-weight: 500;
    margin-bottom: 0;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-related-event-box ul li:hover p {
    color: #050d36;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.related-event-text span {
    color: #e31e24;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
}

.related-event-img {
    position: relative;
    display: block;
    max-width:100px;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 15px;
}

.related-event-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-related-event-box ul li:hover> .related-event-img img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}
/*==========Event Detail Page CSS End==========*/

/*==========Instructor Page CSS Start==========*/
.main-instructor-detail-in {
    padding-top: 210px;
    padding-bottom: 120px;
}

.instructor-detail-img-box {
    padding-right: 70px;
    position: relative;
}

.instructor-detail-img {
    display: block;
    overflow: hidden;
    border-radius: 22px;
}

.instructor-detail-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-detail-img:hover>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-detail-box {
    position: relative;
    width: 375px;
    background-color: #e31e24;
    box-shadow: 0px 20px 30px 0px rgb(255,82,25,0.3);
    padding: 68px 50px;
    border-radius: 8px;
    text-align: left;
    display: block;
    float: right;
    margin-top: -306px;
}

.instructor-detail-box .h3-title {
    font-size: 36px;
    line-height: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.instructor-detail-box p {
    margin-bottom: 0;
    font-size: 18px;
    color: #ffffff;
    line-height: 28px;
}

.main-instructor-page-in {
    padding-bottom: 60px;
}

.main-instructor-page-in .instructor-box {
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
}
/*==========Instructor Page CSS End==========*/

/*==========Instructor Detail Page CSS Start==========*/
.main-instructor-detail-page-in {
    padding-top: 120px;
    padding-bottom: 60px;
}

.instructor-detail-info-img-box {
    padding: 20px;
    position: relative;
}

.instructor-detail-info-img-box::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background-color: #e31e24;
    border-radius: 8px;
    top: 0;
    left: 0;
    z-index: -1;
}

.instructor-detail-info-img-box::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background-color: #636569;
    border-radius: 8px;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.instructor-detail-page-img {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.instructor-detail-page-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-detail-info-img-box:hover> .instructor-detail-page-img img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-detail-info-box {
    padding-left: 20px;
}

.instructor-detail-info-user-box {
    display: flex;
    align-items: center;
}

.instructor-detail-info-name-rating {
    display: flex;
    align-items: center;
}

.instructor-detail-info-name .h2-title {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 50px;
    line-height: 60px;
}

.instructor-detail-info-name span {
    color: #777777;
}

.instructor-detail-info-name-rating .course-detail-rating-box {
    margin-left: 50px;
}

.instructor-detail-info-follow ul {
    list-style: none;
    text-decoration: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.instructor-detail-info-follow ul li {
    margin-left: 15px;
}

.instructor-detail-info-follow ul li:first-child {
    margin-left: 0;
}

.instructor-detail-info-follow ul li a i {
    color: #050d36;
    font-size: 18px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-detail-info-follow ul li a i:hover {
    color: #e31e24;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-detail-info-follow span {
    color: #777777;
}

.instructor-detail-info-follow {
    margin-left: 50px;
}

.instructor-detail-info-line {
    width: 100%;
    height: 1px;
    background-color: #d7d7d7;
    margin-top: 40px;
    margin-bottom: 40px;
}

.instructor-detail-info-courses .h2-title {
    font-size: 50px;
    line-height: 60px;
    text-align: left;
    padding-top: 0;
    margin-bottom: 0;
}
/*==========Instructor Detail Page CSS End==========*/

/*==========FAQ Page CSS Start==========*/
.main-faq-in {
    padding-top: 120px;
    padding-bottom: 120px;
}

.faq-title {
    text-align: center;
}

.accordion-item.faq-bg {
    background-color:#ffffff;
    border: none;
    margin-bottom: 20px;
    border-radius: 0;
    border-radius: 8px;
}

.accordion-item.faq-bg:first-of-type {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 8px;
     border-bottom-left-radius: 8px;
}

.accordion-button.faq-btn {
    min-height: 60px;
    display: flex;
    align-items: center;
    line-height: 28px;
    margin-bottom: 0;
    padding: 5px 90px 5px 30px;
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    color: #050d36;
    cursor: pointer;
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.accordion-button.faq-btn:not(.collapsed) {
    color: #050d36;
    background-color: #ffffff;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.accordion-button {
    background-color: #ffffff;
}

.accordion-button:not(.collapsed) {
    box-shadow: 1px 1px 60px 0px rgba(0,0,0,0.1);
}

.accordion-button.faq-btn:focus {
    z-index: 0;
    border-color: #fff;
    outline: 0;
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.1);
}

.accordion-button.faq-btn:after {
    display: none;
}

.accordion-header.h3-title {
    padding-top: 0;
}

.accordion.faq-box .accordion-item.faq-bg .accordion-header.h3-title .icon {
    position: absolute;
    color: #fff;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: #e31e24;
    border-radius: 0 8px 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.accordion.faq-box .accordion-item.faq-bg .accordion-header.h3-title>span {
    position: relative;
    z-index: 1;
}

.accordion.faq-box .accordion-item.faq-bg .accordion-header.h3-title .accordion-button.faq-btn.collapsed .icon i {
    position: relative;
    color: #fff;
    transform: rotate(0deg);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    z-index: 1;
}

.accordion.faq-box .accordion-item.faq-bg .accordion-header.h3-title .icon i {
    position: relative;
    color: #fff;
    transform: rotate(-90deg);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    z-index: 1;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 8px;
}

.accordion-collapse.collapse.show {
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.1);
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.accordion-button:hover {
    z-index: 0;
}

.accordion.part-1 {
    padding-right: 15px;
}

.accordion.part-2 {
    padding-left: 15px;
}

.main-submit-ticket-in {
    padding-top: 120px;
    padding-bottom: 90px;
}

.submit-ticket-img-box {
    position: relative;
}

.submit-ticket-form-content {
    padding-left: 20px;
}

.submit-ticket-img-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 355px;
    border-radius: 50px;
    background-color: #636569;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.submit-ticket-form .form-input {
    border: solid 1px #777777;
}

.submit-ticket-form textarea {
    height: 160px;
}

.submit-ticket-form .sec-btn {
    border: none;
    margin-top: 10px;
}
/*==========FAQ Page CSS End==========*/

/*==========Pricing Page CSS Start==========*/
.main-pricing-in {
    padding-top: 120px;
    padding-bottom: 120px;
}
/*==========Pricing Page CSS End==========*/

/*==========Blog List Page CSS Start==========*/
.main-blog-list-in {
    padding-top: 60px;
    padding-bottom: 60px;
}

.main-blog-list-box {
    padding-right: 20px;
}

.blog-list-box {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.1);
    margin-bottom: 50px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-big-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px  8px 0 0;
}

.blog-big-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-box:hover .blog-big-img>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-big-content {
    padding: 30px;
}

.blog-big-user-box {
    display: flex;
    align-items: center;
}

.blog-big-user {
    display: flex;
    align-items: center;
}

.blog-big-user-icon {
    margin-right: 10px;
}

.blog-big-user a p {
    margin-bottom: 0;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-big-user a p:hover {
    color: #050d36;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-big-user-line {
    width: 1px;
    height: 15px;
    background-color: #d7d7d7;
    margin-right: 20px;
    margin-left: 20px;
}

.blog-big-content .h3-title {
    margin-top: 15px;
    margin-bottom: 20px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-box:hover .h3-title {
    color: #e31e24;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-big-content .sec-btn {
    margin-top: 20px;
}

.main-blog-list-in .courses-pagination {
    padding-right: 20px;
    display: block;
    text-align: center;
    margin-top: 70px;
}

.blog-list-sidebar-categories-box {
    background-color: #f3f4f8;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    margin-top: 50px;
}

.blog-list-sidebar-title {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 20px;
}

.sidebar-title-line {
    width: 4px;
    height: 20px;
    background-color: #e31e24;
    margin-right: 10px;
}

.blog-list-sidebar-title .h3-title {
    margin-bottom: 0;
}

.blog-list-sidebar-categories-box ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
}

.blog-list-sidebar-categories-box ul li {
    margin-bottom: 15px;
}

.blog-list-sidebar-categories-box ul li:last-child {
    margin-bottom: 0;
}

.blog-list-sidebar-categories-box ul li a {
    display: flex;
    align-items: center;
}

.blog-list-sidebar-categories-box ul li a i {
    font-size: 20px;
    color: #777777;
    margin-right: 10px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-sidebar-categories-box ul li:hover a i {
    color: #e31e24;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-sidebar-categories-box ul li:hover a p {
    color: #e31e24;
    margin-left: 10px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-sidebar-categories-box ul li a p {
    margin-bottom: 0;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-sidebar-recent-post {
    background-color: #f3f4f8;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    margin-top: 50px;
}

.blog-list-sidebar-recent-post ul {
    list-style: none;
    text-decoration: none;
    padding-left: 0;
    margin-bottom: 0;
}

.blog-list-sidebar-recent-post ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.blog-list-recent-post-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 15px;
}

.blog-list-recent-post-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-sidebar-recent-post ul li:hover .blog-list-recent-post-img>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-recent-post-content {
    width: calc(100% - 115px);
}

.blog-list-recent-post-content p {
    font-weight: 500;
    margin-bottom: 0;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-sidebar-recent-post ul li:hover p {
    color: #050d36;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-recent-post-content .blog-date a p {
    font-weight: 400;
    color: #e31e24;
}

.blog-list-sidebar-recent-post ul li:hover .blog-list-recent-post-content .blog-date a p {
    color: #e31e24;
}

.blog-list-sidebar-tag-box {
    background-color: #f3f4f8;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    margin-top: 50px;
}

.blog-list-sidebar-tag-box ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
}

.blog-list-sidebar-tag-box ul li {
    margin-right: 15px;
    margin-bottom: 15px;
    display: inline-block;
    align-items: center;
}

.blog-list-sidebar-tag-box ul li a {

    padding: 10px 25px;
    border: solid 1px #777777;
    color: #777777;
    font-weight: 500;
    display: inline-block;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-sidebar-tag-box ul li a:hover {
    background-color: #e31e24;
    border: solid 1px #e31e24;
    color: #ffffff;
    box-shadow: 0px 10px 20px 0px rgb(255,82,25,0.4);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}
/*==========Blog List Page CSS End==========*/

/*==========Blog Detail Page CSS Start==========*/
.main-blog-detail-in {
    padding-top: 120px;
    padding-bottom: 90px;
}

.blog-detail-info-box {
    padding-right: 20px;
}

.blog-detail-info-img-1 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
}

.blog-detail-info-img-1>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-detail-info-img-1:hover>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.contact-detail-content p {
    color: #ffffff;
    text-transform: uppercase;
}

.contact-text {
    color: #ffffff;
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
}

.contact-detail-content {
    width: calc(100% - 50px);
}

.contact-detail-icon {
    margin-right: 20px;
}

.get-touch-box {
    padding-left: 20px;
}

.get-touch-form .form-input {
    border: solid 1px #777777;
}

.get-touch-form .sec-btn {
    margin-top: 10px;
    border: none;
}

.get-touch-form textarea {
    height: 160px;
}

.main-contact-map-in {
    width: 100%;
    height: 280px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.main-contact-map-in iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive map sizing */
@media (max-width: 991px) {
    .main-contact-map-in {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .main-contact-map-in {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .main-contact-map-in {
        height: 250px;
        margin: 20px 0;
    }
}
/*==========Contact Us Page CSS End==========*/

/*==========Scroll To Top CSS Start==========*/
.scroll-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: #e31e24;
    border-radius: 100%;
    font-size: 25px;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: 0.3s;
    overflow: hidden;
    z-index: 50;
    display: none;
}

.scroll-top:hover {
    box-shadow: 1px 1px 60px rgb(0 0 0 / 15%);
    transition: 0.3s;
    color: #ffffff;
}

.scroll-top:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #636569;
    transition: 0.3s;
    z-index: 0;
}

.scroll-top:hover:before {
    top: 0;
}

.scroll-top i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    line-height: 10px;
    z-index: 1;
}

.scroll-top:hover i {
    animation: swipe 0.6s linear infinite alternate;
}

@keyframes swipe {
    from {
        margin-top: -3px;
    }
    to {
        margin-top: 3px;
    }
}
/*==========Scroll To Top CSS End==========*/

/*==========Bubbles Animation CSS Start==========*/
.bubbles_wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow: hidden;
    pointer-events: none;
}

@-webkit-keyframes animateBubble {
    0% {
        margin-top: 20%
    }
    to {
        margin-top: -30%
    }
}

@-moz-keyframes animateBubble {
    0% {
        margin-top: 20%
    }
    to {
        margin-top: -30%
    }
}

@keyframes animateBubble {
    0% {
        margin-top: 20%
    }
    to {
        margin-top: -30%
    }
}

@-webkit-keyframes sideWays {
    0% {
        margin-left: 0
    }
    to {
        margin-left: 25px
    }
}

@-moz-keyframes sideWays {
    0% {
        margin-left: 0
    }
    to {
        margin-left: 25px
    }
}

@keyframes sideWays {
    0% {
        margin-left: 0

    }
    to {
        margin-left: 25px
    }
}

.x1 {
    -webkit-animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 6%;
    top: 45%;
    background: #e31e24;
}

.x2 {
    -webkit-animation: animateBubble 10s linear infinite, sideWays 4s ease-in-out infinite alternate;
    animation: animateBubble 10s linear infinite, sideWays 4s ease-in-out infinite alternate;
    left: 5%;
    top: 80%;
    background: #636569;
}

.x3 {
    -webkit-animation: animateBubble 18s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 18s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 10%;
    top: 40%;
    background: #e31e24;
}

.x4 {
    -webkit-animation: animateBubble 12s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 12s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 15%;
    top: 70%;
    background: #636569;
}

/* Mobile Header Fixes */
@media screen and (max-width: 991px) {
    .header-buttons-wrapper {
        position: fixed !important;
        top: 0 !important;
        right: -300px !important;
        width: 280px !important;
        height: 100vh !important;
        background: #fff !important;
        z-index: 999 !important;
        padding: 70px 15px 15px !important;
        transition: all 0.3s ease !important;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1) !important;
    }

    .header-buttons-wrapper.active {
        right: 0 !important;
    }

    .mobile-toggle-btn {
        position: fixed !important;
        top: 15px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
        background: var(--primary-red) !important;
        color: #fff !important;
        border: none !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 20px !important;
        z-index: 1000 !important;
        cursor: pointer !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
    }

    .header-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .custom-btn {
        width: 100% !important;
        padding: 12px 15px !important;
        text-align: left !important;
        display: flex !important;
        align-items: center !important;
        border-radius: 6px !important;
    }

    .custom-btn i {
        margin-right: 10px !important;
        width: 20px !important;
        text-align: center !important;
    }
}

/* Small Mobile Fixes */
@media screen and (max-width: 576px) {
    .site-branding img {
        max-width: 140px !important;
    }
    .main-banner {
    padding-top: 0px!important;
}

    .mobile-toggle-btn {
        top: 10px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
    }

    .custom-btn {
        font-size: 13px !important;
        padding: 10px 12px !important;
    }

    .custom-btn i {
        font-size: 14px !important;
    }
}

/* Extra Small Mobile Fixes */
@media screen and (max-width: 375px) {
    .header-buttons-wrapper {
        width: 260px !important;
    }

.custom-btn {
    padding: 10px 12px !important;
    font-size: 12px !important;
}
}

/* Mobile Navigation Buttons */
@media (max-width: 991px) {
    .mobile-nav-buttons {
        display: flex;
        justify-content: space-between;
        padding: 10px 15px;
        background: #fff;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-button {
        padding: 8px 15px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .nav-button.menu {
        background: #333333;
        color: #ffffff;
    }

    .nav-button.action {
        background: rgb(255, 0, 0);
        color: #ffffff;
    }

    .nav-button i {
        margin-right: 5px;
    }

    /* Adjust main content to account for fixed bottom nav */
    body {
        /* padding-bottom: 60px; */
    }

    /* Hide desktop buttons in mobile view */
    .header-buttons {
        display: none;
    }
}

/* Add this to your CSS */
@media (max-width: 991px) {
    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        transition: 0.3s ease-in-out;
        overflow-y: auto;
        padding-top: 60px;
    }

    .main-navigation.show {
        left: 0;
    }

    .main-navigation .menu {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .main-navigation .menu > li {
        border-bottom: 1px solid #eee;
    }

    .main-navigation .menu > li > a {
        padding: 12px 20px;
        display: block;
    }

    .sub-menu {
        display: none;
        background: #f5f5f5;
        padding-left: 20px;
    }

    .sub-items.active .sub-menu {
        display: block;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .menu-overlay.show {
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }

    .mobile-nav-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 10px;
        display: flex;
        justify-content: space-between;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 998;
    }
}

/* Course Category Boxes - Single Line Display */
.course-category-box {
    margin-bottom: 30px;
}

.course-category-box .course-category-icon {
    margin-bottom: 20px;
}

.course-category-box .course-category-icon i {
    color: #2c3e50;
    transition: all 0.3s ease;
}

.course-category-box:hover .course-category-icon i {
    transform: scale(1.05);
    color: #34495e;
}

.course-category-box .course-category-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    transition: all 0.3s ease;
    color: var(--primary-black);
}

.course-category-box:hover .course-category-content h3 {
    color: #34495e !important;
}

.course-category-box .course-category-content a {
    text-decoration: none;
    color: inherit;
}

.course-category-box:hover .course-category-content a {
    color: #34495e !important;
}

/* Force single line display for course categories */
.course-categories-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
}

.course-categories-row .col-xl-3 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 10px;
}

@media (max-width: 1199px) {
    .course-categories-row .col-xl-3 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 991px) {
    .course-categories-row {
        flex-wrap: wrap;
    }
    
    .course-categories-row .col-xl-3 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .course-categories-row .col-xl-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Mobile Navigation Button */
.mobile-nav-toggle {
    position: relative;
    z-index: 1001;
    margin-right: 10px;
}

.mobile-menu-btn {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e24 100%);
    color: var(--primary-white);
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(227, 30, 36, 0.3);
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: linear-gradient(135deg, var(--primary-black) 0%, #333 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 160px;
    height: 100vh;
    background: var(--primary-white);
    z-index: 10000;
    transition: all 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 20px rgba(0,0,0,0.3);
    border-radius: 0 20px 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) #f0f0f0;
    /* Ensure menu is completely hidden by default */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: #c41e24;
}

.mobile-menu.active {
    left: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-header {
    background: #575656 100%;
    color: var(--primary-white);
    padding: 25px 20px;
    text-align: left;
    position: relative;
    border-radius: 0 20px 0 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-menu-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--primary-white);
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid #eee;
}

.mobile-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    color: var(--primary-black);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    cursor: pointer;
}

.mobile-menu ul li a .menu-text {
    display: flex;
    align-items: center;
    flex: 1;
}

.mobile-menu ul li a .menu-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.mobile-menu ul li a .menu-icon i {
    font-size: 16px;
    color: var(--primary-red);
}

.mobile-menu ul li a:hover {
    background: linear-gradient(90deg, var(--primary-red) 0%, #c41e24 100%);
    color: var(--primary-white);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(227, 30, 36, 0.3);
}

.mobile-menu ul li a:hover .menu-icon {
    background: rgba(255,255,255,0.2);
}

.mobile-menu ul li a:hover .menu-icon i {
    color: var(--primary-white);
}

.mobile-menu ul li a i {
    font-size: 12px;
    transition: all 0.3s ease;
}

.mobile-menu ul li a:hover i {
    transform: rotate(180deg);
    color: var(--primary-white);
}

.mobile-menu .sub-menu {
    display: none;
    background: #f8f9fa;
    padding-left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu .sub-menu.active {
    display: block;
    max-height: 500px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu .sub-menu a {
    padding: 12px 25px 12px 55px;
    font-size: 14px;
    color: #666;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-menu .sub-menu a:before {
    content: '';
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    /* background: var(--primary-red); */
    border-radius: 50%;
    opacity: 0.7;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: none;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.mobile-menu-overlay.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile Buttons Toggle */
.mobile-buttons-toggle {
    position: relative;
    z-index: 1001;
    margin-left: 10px;
}

.mobile-buttons-btn {
    background: linear-gradient(135deg, var(--primary-black) 0%, #333 100%);
    color: var(--primary-white);
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-buttons-btn:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e24 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.mobile-buttons-btn:active {
    transform: scale(0.95);
}

/* Mobile Buttons Dropdown */
.mobile-buttons-dropdown {
    position: fixed;
    top: 50px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 50px);
    background: var(--primary-white);
    z-index: 99999;
    transition: all 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 20px rgba(0,0,0,0.3);
    border-radius: 20px 0 0 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) #f0f0f0;
    transform: translateZ(0);
    will-change: transform;
    /* Ensure dropdown is hidden by default */
    visibility: hidden;
    opacity: 0;
}

.mobile-buttons-dropdown::-webkit-scrollbar {
    width: 6px;
}

.mobile-buttons-dropdown::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.mobile-buttons-dropdown::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 3px;
}

.mobile-buttons-dropdown::-webkit-scrollbar-thumb:hover {
    background: #c41e24;
}

.mobile-buttons-dropdown.active {
    right: 0;
    transform: translateZ(0);
    /* Ensure dropdown is visible when active */
    visibility: visible;
    opacity: 1;
}

/* Ensure dropdown stays visible during scroll */
.mobile-buttons-dropdown.active {
    position: fixed !important;
    top: 50px !important;
    right: 0 !important;
    z-index: 99999 !important;
}

/* Prevent body scroll when dropdown is active */
body.mobile-dropdown-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Ensure dropdown content is scrollable */
.mobile-buttons-dropdown .mobile-buttons-content {
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Improve overlay animation */
.mobile-buttons-overlay {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Ensure dropdown appears above overlay */
.mobile-buttons-dropdown.active {
    z-index: 99999 !important;
}

/* Mobile Buttons Overlay */
.mobile-buttons-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Hide mobile buttons dropdown on desktop */
@media (min-width: 992px) {
    .mobile-buttons-dropdown,
    .mobile-buttons-overlay,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
    
}

.mobile-buttons-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .mobile-buttons-dropdown {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .mobile-buttons-dropdown.active {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .mobile-buttons-overlay {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.mobile-buttons-header {
    background: #575656;
    color: var(--primary-white);
    padding: 25px 20px;
    text-align: center;
    position: relative;
    border-radius: 20px 0 0 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-buttons-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.mobile-buttons-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--primary-white);
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-buttons-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.mobile-buttons-content {
    padding: 20px;
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 25px;
    margin-bottom: 20px;
    background: #2c2c2c;
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
    border: 2px solid rgba(255,255,255,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.mobile-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-btn:hover:before {
    left: 100%;
}

.mobile-btn:hover {
    background: linear-gradient(135deg, var(--primary-black) 0%, #333 100%);
    color: var(--primary-white);
    transform: translateX(-8px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.2);
    text-decoration: none;
}

.mobile-btn:active {
    transform: translateX(-5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.mobile-btn i {
    margin-right: 15px;
    font-size: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-btn:hover i {
    transform: scale(1.2);
}

.mobile-btn span {
    display: inline;
    font-weight: 600;
    white-space: nowrap;
    flex: 1;
}

/* Mobile Top Contact Bar */
.mobile-top-contact {
    background: #050d36;
    color: var(--primary-white);
    padding: 8px 0;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-contact-item i {
    font-size: 10px;
    color: var(--primary-white);
    opacity: 0.9;
}

.mobile-contact-item a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-contact-item a:hover {
    color: var(--primary-white);
    text-decoration: none;
    opacity: 0.8;
}

.mobile-login-btn {
    text-align: right;
}

.mobile-login-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.2);
    color: var(--primary-white);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.mobile-login-link:hover {
    background: rgba(255,255,255,0.3);
    color: var(--primary-white);
    text-decoration: none;
    transform: scale(1.05);
}

.mobile-login-link i {
    font-size: 10px;
}

/* Mobile Fixed Social Media Icons */
.mobile-fixed-social {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    padding: 10px 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-fixed-social .icon_s {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #050d36;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.05);
}

.mobile-fixed-social .icon_s:hover {
    background: var(--primary-red);
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.4);
}

.mobile-fixed-social .icon_s:active {
    transform: scale(0.95);
}

@media (max-width: 576px) {
    .mobile-top-contact {
        padding: 6px 0;
        font-size: 11px;
    }
    
    .mobile-contact-item a {
        font-size: 10px;
    }
    
    .mobile-login-link {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .mobile-fixed-social {
        bottom: 15px;
        left: 15px;
        gap: 10px;
        padding: 8px 5px;
    }
    
    .mobile-fixed-social .icon_s {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Mobile Header Layout Improvements */
@media (max-width: 991px) {
    .header-bottom { 
        padding: 10px 0;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: relative;
    }
    
    .header-bottom .row {
        align-items: center;
        justify-content: center;
    }
    
    .site-branding {
        text-align: center;
        flex: 1;
        order: 2;
    }
    
    .site-branding img {
        max-height: 50px;
        width: auto;
    }
    
    .header-menu {
        display: none;
    }
    
    /* Mobile Navigation Button */
    .mobile-nav-toggle {
        width: 40px !important;
        height: 40px !important;
        border: none;
        border-radius: 8px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.3s ease;
        z-index: 1000;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #dc3545;
        color: white;
        left: 15px;
    }
    
    .mobile-nav-toggle button {
        background: none;
        border: none;
        color: white;
        font-size: 18px;
    }
    
    /* Mobile Buttons Toggle */
    .mobile-buttons-toggle {
        width: 40px !important;
        height: 40px !important;
        border: none;
        border-radius: 8px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.3s ease;
        z-index: 1000;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #6c757d;
        color: white;
        right: 15px;
    }
    
    .mobile-buttons-toggle button {
        background: none;
        border: none;
        color: white;
        font-size: 18px;
    }
    
    .mobile-nav-toggle:hover, .mobile-buttons-toggle:hover {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    
    /* Hide other elements in header */
    .header-bottom .col-lg-4:first-child,
    .header-bottom .col-lg-8 {
        display: none;
    }
    
    .header-bottom .col-lg-4 {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .header-bottom {
        padding: 10px 0;
    }
    
    .site-branding img {
        max-height: 40px;
    }
    
    .mobile-menu-btn,
    .mobile-buttons-btn {
        min-width: 40px;
        height: 40px;
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .mobile-nav-toggle {
        margin-right: 8px;
    }
    
    .mobile-buttons-toggle {
        margin-left: 8px;
    }
}

/* Header Buttons Styling */
.header-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.header-buttons .custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    margin: 0 5px;
    background: linear-gradient(135deg, var(--primary-black) 0%, #333 100%);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(227, 30, 36, 0.3);
    border: 2px solid rgba(255,255,255,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
}

.header-buttons .custom-btn:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e24 100%);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.2);
}

.header-buttons .custom-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-buttons .custom-btn i {
    margin-right: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.header-buttons .custom-btn:hover i {
    transform: scale(1.1);
}

.header-buttons .custom-btn span {
    display: inline;
    font-weight: 600;
    white-space: nowrap;
}

/* Mobile Responsive for Header Buttons */
@media (max-width: 991px) {
    .header-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .header-buttons .custom-btn {
        padding: 10px 15px;
        font-size: 12px;
        min-width: 120px;
    }
    
    .header-buttons .custom-btn span {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .header-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .header-buttons .custom-btn {
        width: 100%;
        max-width: 200px;
        min-width: auto;
    }
}

.mobile-fixed-social.hide-on-scroll {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-fixed-social {
    transition: opacity 0.3s;
}

/* Testimonials Mobile Responsive */
.testimonials-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.testimonials-title .subtitle {
    color: var(--primary-red);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.testimonials-title .title {
    color: var(--primary-black);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.testimonial-content {
    padding: 30px 20px;
    background: var(--primary-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-content .quote {
    color: var(--primary-red);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
    margin-bottom: 25px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-author-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid var(--primary-red);
    box-shadow: 0 3px 10px rgba(227, 30, 36, 0.2);
}

.author-info .name {
    color: var(--primary-black);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info .designation {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 500;
}

.rating {
    margin-top: 8px;
}

.rating i {
    font-size: 14px;
    margin-right: 2px;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -100px;
}

.carousel-control-next {
    right: -100px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-black);
}

.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background: var(--primary-red);
}

/* Additional Mobile Improvements */
@media (max-width: 768px) {
    .testimonial-content {
        margin: 10px 5px;
    }
    
    .quote i {
        font-size: 2rem !important;
    }
    
    .testimonial-text {
        padding: 0 10px;
    }
}

/* Touch-friendly carousel for mobile */
@media (max-width: 576px) {
    #testimonialCarousel {
        touch-action: pan-y pinch-zoom;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .carousel-inner {
        /* padding-bottom: 20px !important; */
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    /* Ensure row and column don't overflow */
    .row {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .col-lg-12 {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Force container to be responsive */
    .container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box !important;
    }
}

/* Mobile Responsive for Testimonials */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-title .title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .testimonial-content {
        padding: 25px 15px;
        margin: 15px 0;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .testimonial-author-img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .author-info .name {
        font-size: 16px;
    }
    
    .author-info .designation {
        font-size: 13px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: -20px;
    }
    
    .carousel-control-next {
        right: -20px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 30px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .testimonials-section .container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        overflow: hidden !important;
    }
    
    .testimonials-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
    
    .testimonials-section .col-lg-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }
    
    .testimonials-title .title {
        font-size: 24px !important;
        margin-bottom: 25px !important;
        word-wrap: break-word !important;
    }
    
    .testimonials-title .subtitle {
        font-size: 14px !important;
    }
    
    #testimonialCarousel {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    #testimonialCarousel .carousel-inner {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    #testimonialCarousel .carousel-item {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .testimonial-content {
        padding: 20px 12px !important;
        margin: 10px 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        box-sizing: border-box !important;
    }
    
    .testimonial-text {
        font-size: 14px !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 5px !important;
        box-sizing: border-box !important;
        margin-bottom: 20px !important;
    }
    
    .testimonial-author {
        flex-direction: column !important;
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .author-image {
        margin-bottom: 15px !important;
        margin-right: 0 !important;
        text-align: center !important;
    }
    
    .testimonial-author-img {
        width: 70px !important;
        height: 70px !important;
        max-width: 70px !important;
        max-height: 70px !important;
    }
    
    .author-info {
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .author-info .name {
        font-size: 15px !important;
        word-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .author-info .designation {
        font-size: 12px !important;
        word-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px !important;
        height: 35px !important;
        display: none !important;
    }
    
    .carousel-indicators {
        bottom: -30px !important;
    }
    
    .carousel-indicators button {
        width: 10px !important;
        height: 10px !important;
        margin: 0 3px !important;
    }
}

/* Online Classes styles have been moved to timeline.css for better organization */











.conclusion-text p {
    color: #1a1a1a;
    font-size: 16px;
    font-weight:700;
    line-height: 1.6;
    margin: 0;
}

.conclusion-text strong {
    color: #4a90e2;
    font-weight: 700;
}

.contact-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Mobile Responsive for Online Classes Section */
@media (max-width: 991px) {
    .online-classes-section {
        padding: 60px 0;
    }
    
    .online-classes-title .main-title {
        font-size: 30px;
    }
    
    .process-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .item-content h4 {
        font-size: 16px;
    }
    
    .item-content p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .online-classes-section {
        padding: 40px 0;
    }
    
    .online-classes-title .main-title {
        font-size: 24px;
    }
    
    .online-classes-title .main-title::after {
        right: -25px;
        width: 6px;
        height: 6px;
    }
    
    .process-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .item-number {
        font-size: 20px;
        margin-right: 15px;
        min-width: 25px;
    }
    
    .item-content h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .item-content p {
        font-size: 13px;
    }
    
    .conclusion-text {
        padding: 20px;
    }
    
    .conclusion-text p {
        font-size: 14px;
    }
}

/* Floating Call Button */
.floating-call-button {
    position: fixed;
    bottom: 10px;
    right: 75px;
    z-index: 10000; /* Higher z-index to stay above mobile social icons */
    animation: pulse 2s infinite;
}

.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.call-btn i {
    font-size: 20px;
    margin-right: 0;
}

.call-text {
    position: absolute;
    top: -40px;
    right: 0;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.call-btn:hover .call-text {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Responsive for Call Button */
@media (max-width: 768px) {
    .floating-call-button {
        bottom: 10px;
        right: 75px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .call-btn {
        width: 55px;
        height: 55px;
    }
    
    .call-btn i {
        font-size: 18px;
    }
    
    .call-text {
        font-size: 11px;
        padding: 4px 8px;
    }
}

@media (max-width: 576px) {
    .floating-call-button {
        bottom: 10px;
        right: 75px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .call-btn {
        width: 50px;
        height: 50px;
    }
    
    .call-btn i {
        font-size: 16px;
    }
}

/* Ensure call button is always visible on mobile */
@media (max-width: 991px) {
    .floating-call-button {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 9999 !important;
    }
}

/* Mobile App Download Section */
.mobile-app-download {
    background: #ffffff;
    /* padding: 40px 0; */
    border-bottom: 1px solid #e9ecef;
}

.download-section {
    padding: 20px 0;
}

.download-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.store-badge {
    height: 60px;
    width: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.download-btn:hover .store-badge {
    transform: scale(1.05);
}

/* Mobile Responsive for Download Section */
@media (max-width: 768px) {
    .mobile-app-download {
        padding: 30px 0;
    }
    
    .download-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .download-buttons {
        gap: 15px;
    }
    
    .store-badge {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .download-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .store-badge {
        height: 45px;
    }
}

/* Social Media Footer Section */
.social-footer-section {
    background: #393939;
    /* padding: 20px 0; */
    color: white;
}

.social-footer-content {
    padding: 15px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.social-connect {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.connect-text {
    font-size: 16px;
    font-weight: 500;
    color: white;
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    min-width: 40px;
    min-height: 40px;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.telegram {
    background: #0088cc;
}

.social-icon.android {
    background: #a4c639;
}

/* Mobile Responsive for Social Footer */
@media (max-width: 768px) {
    .social-footer-section {
        padding: 15px 0;
    }
    
    .social-footer-content {
        padding: 10px 0;
    }
    
    .copyright-text p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .social-connect {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .connect-text {
        font-size: 14px;
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
        min-width: 35px;
        min-height: 35px;
    }
}

@media (max-width: 576px) {
    .copyright-text p {
        font-size: 13px;
    }
    
    .connect-text {
        font-size: 13px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        min-width: 32px;
        min-height: 32px;
    }
}

/* About Section Styles */
.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    padding-right: 30px;
}

.about-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #818181, #868686);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 20px;
}

.about-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature-item i {
    color: #8f8f8f;
    font-size: 1.2rem;
    margin-right: 12px;
    min-width: 20px;
}

.feature-item span {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.about-button {
    margin-top: 30px;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    transition: left 0.3s ease;
    z-index: -1;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.read-more-btn:hover::before {
    left: 0;
}

.about-image {
    text-align: center;
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Responsive Design for About Section */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-features {
        margin: 25px 0;
    }
    
    .feature-item {
        margin-bottom: 12px;
    }
    
    .read-more-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 1.6rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .read-more-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* Ensure scroll-to-top button is always visible and working */
.scroll-top {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
    display: none;
}

.scroll-top:hover {
    background-color: #c41e24 !important;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 15px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 20px !important;
    }
}

@media (max-width: 576px) {
    .scroll-top {
        bottom: 10px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }
}

/* Enhanced Testimonials Slider Styles */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-title .subtitle {
    color: #e31e24;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.testimonials-title .title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

#testimonialCarousel {
    max-width: 1111px;
    margin: 0 auto;
}

#testimonialCarousel .carousel-inner {
    padding: 20px 0;
}

#testimonialCarousel .carousel-item {
    /* padding: 20px; */
}

.testimonial-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e31e24, #c41e24);
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.quote i {
    color: #e31e24;
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-author {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.testimonial-author-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.author-info .name {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info .designation {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 500;
}

.rating {
    margin-top: 10px;
}

.rating i {
    font-size: 14px;
    margin-right: 2px;
}

/* Carousel Controls */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(227, 30, 36, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    border: none;
}

#testimonialCarousel .carousel-control-prev {
    left: -100px;
}

#testimonialCarousel .carousel-control-next {
    right: -100px;
}

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
    background: rgba(227, 30, 36, 1);
    transform: translateY(-50%) scale(1.1);
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
#testimonialCarousel .carousel-indicators {
    bottom: -15px;
}

#testimonialCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dee2e6;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#testimonialCarousel .carousel-indicators button.active {
    background-color: #e31e24;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title .title {
        font-size: 2rem;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
    
    #testimonialCarousel .carousel-control-prev {
        left: -20px;
    }
    
    #testimonialCarousel .carousel-control-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .testimonials-title .title {
        font-size: 1.8rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author-img {
        width: 60px;
        height: 60px;
    }
    
    .author-info .name {
        font-size: 1.1rem;
    }
    
    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-title .title {
        font-size: 1.5rem;
    }
    
    .testimonial-content {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .testimonial-author-img {
        width: 50px;
        height: 50px;
    }
    
    .author-info .name {
        font-size: 1rem;
    }
    
    .author-info .designation {
        font-size: 0.9rem;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-title .subtitle {
    color: #007bff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.testimonials-title .title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

.testimonial-img-box {
    padding: 10px;
    /* background: white; */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-img-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.testimonial-img {
    text-align: center;
}

.testimonial-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.testimonial-img-box:hover .testimonial-img img {
    transform: scale(1.05);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-title .title {
        font-size: 28px;
    }
    
    .testimonial-img-box {
        padding: 8px;
        margin: 5px;
    }
    
    .testimonial-img img {
        max-height: 200px;
        object-fit: cover;
    }
}

/* Testimonials Mobile Responsive */
@media (max-width: 576px) {
    .testimonial-content { padding: 20px 12px !important; /* ... */ }
    .testimonial-text { font-size: 14px !important; word-wrap: break-word !important; /* ... */ }
    .testimonial-author { flex-direction: column !important; /* ... */ }
    /* ... many !important overrides for mobile testimonials ... */
}

/* Testimonials Image Slider Mobile Responsive */
@media (max-width: 767px) {
    .testimonials-section .carousel-item .row .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .testimonials-section .carousel-item .row .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .testimonial-img-box {
        text-align: center;
        margin-bottom: 20px;
        max-height: 610px;
    }
    
    .testimonial-img img {
        max-width: 100%;
        max-height: 610px;
        border-radius: 8px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .testimonials-section .carousel-item .row .col-lg-4 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .testimonials-section .carousel-item .row .col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* Testimonials Carousel Styles */
.testimonials-section .carousel {
    position: relative;
    margin-top: 0px;
}

.testimonials-section .carousel-inner {
    overflow: hidden;
}

.testimonials-section .carousel-item {
    transition: transform 0.6s ease-in-out;
}

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonials-section .carousel-control-prev {
    left: -100px;
}

.testimonials-section .carousel-control-next {
    right: -100px;
}

.testimonials-section .carousel-indicators {
    bottom: -40px;
    z-index: 10;
}

.testimonials-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: #ccc;
    border: none;
}

.testimonials-section .carousel-indicators button.active {
    background-color: #007bff;
}

/* Testimonials Image Slider Mobile Responsive */
@media (max-width: 991px) {
    .header-bottom {
        padding: 10px 0 !important;
        background: #fff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        position: relative !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ensure sticky header works in mobile */
    .sticky-header .header-bottom {
        padding: 10px 0 !important;
        background: #fff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: headerSlideDown 0.3s ease !important;
    }
    
    /* Set sticky header width to 0% in mobile view */
    .site-header.sticky-header {
        width: 0% !important;
    }
    
    /* Sticky header animation for mobile */
    @keyframes headerSlideDown {
        0% {
            transform: translateY(-100%);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    /* Add padding to body when sticky header is active */
    body.sticky-header-active {
        padding-top: 70px !important;
    }
    
    .header-bottom .row {
        align-items: center !important;
        justify-content: center !important;
        display: flex !important;
    }
    
    .site-branding {
        text-align: center !important;
        flex: 1 !important;
        order: 2 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .site-branding img {
        max-height: 50px !important;
        width: auto !important;
    }
    
    .header-menu {
        display: none !important;
    }
    
    /* Mobile Navigation Button - Ensure visibility */
    .mobile-nav-toggle {
        width: 40px !important;
        height: 40px !important;
        border: none !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 18px !important;
        transition: all 0.3s ease !important;
        z-index: 1000 !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        background: #dc3545 !important;
        color: white !important;
        left: 15px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-nav-toggle button {
        background: none !important;
        border: none !important;
        color: white !important;
        font-size: 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Mobile Buttons Toggle - Ensure visibility */
    .mobile-buttons-toggle {
        width: 40px !important;
        height: 40px !important;
        border: none !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 18px !important;
        transition: all 0.3s ease !important;
        z-index: 1000 !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        background: #6c757d !important;
        color: white !important;
        right: 15px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-buttons-toggle button {
        background: none !important;
        border: none !important;
        color: white !important;
        font-size: 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .mobile-nav-toggle:hover, .mobile-buttons-toggle:hover {
        transform: translateY(-50%) scale(1.05) !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
    }
    
    /* Hide other elements in header */
    .header-bottom .col-lg-4:first-child,
    .header-bottom .col-lg-8 {
        display: none !important;
    }
    
    .header-bottom .col-lg-4 {
        flex: 1 !important;
        text-align: center !important;
        display: block !important;
    }
}

@media (max-width: 576px) {
    .header-bottom {
        padding: 10px 0 !important;
    }
    
    .site-branding img {
        max-height: 40px !important;
    }
    
    .mobile-menu-btn,
    .mobile-buttons-btn {
        font-size: 16px !important;
    }
    
    .mobile-nav-toggle {
        width: 35px !important;
        height: 35px !important;
    }
    
    .mobile-buttons-toggle {
        width: 35px !important;
        height: 35px !important;
    }
}

/* Mobile Top Buttons Container - Ensure visibility */
.mobile-top-buttons-container {
    display: none;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

@media (max-width: 991px) {
    .mobile-top-buttons-container {
        display: block !important;
    }
    
    .mobile-nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #dc3545;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1001;
    }
    
    .mobile-nav-toggle:hover {
        background: #c82333;
        transform: scale(1.05);
    }
    
    .mobile-buttons-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #6c757d;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1001;
    }
    
    .mobile-buttons-toggle:hover {
        background: #5a6268;
        transform: scale(1.05);
    }
    
    .mobile-logo-center {
        text-align: center;
    }
    
    .mobile-logo-center img {
        max-height: 40px;
        width: auto;
    }
}

/* Mobile Login Dropdown Styles */
.mobile-login-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mobile-login-dropdown.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.mobile-login-dropdown-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    max-width: 350px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease;
}

.mobile-login-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.mobile-login-dropdown-header h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #050d36;
    text-align: center;
    flex: 1;
}

.mobile-login-dropdown-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-login-dropdown-close:hover {
    background: #f0f0f0;
    color: #050d36;
}

.social-media-section {
    margin-bottom: 25px;
}

.social-media-section h6 {
    font-size: 16px;
    font-weight: 600;
    color: #050d36;
    margin-bottom: 15px;
    text-align: center;
}

.social-media-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.social-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.social-icon:hover:before {
    left: 100%;
}

.social-icon i {
    /*margin-right: 0px;*/
    font-size: 18px;
    flex-shrink: 0;
}

.social-icon span {
    flex: 1;
    font-weight: 600;
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d6efd 100%);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-icon.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #0077b3 100%);
}

.social-icon.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.social-icon:active {
    transform: translateY(0);
}

.login-section {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
}

.login-section h6 {
    font-size: 16px;
    font-weight: 600;
    color: #050d36;
    margin-bottom: 15px;
    text-align: center;
}

.student-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, #050d36 0%, #1a237e 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 13, 54, 0.3);
    border: 2px solid rgba(255,255,255,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.student-login-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.student-login-btn:hover:before {
    left: 100%;
}

.student-login-btn:hover {
    background: linear-gradient(135deg, #1a237e 0%, #050d36 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 13, 54, 0.4);
    text-decoration: none;
}

.student-login-btn:active {
    transform: translateY(0);
}

.student-login-btn i {
    margin-right: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.student-login-btn:hover i {
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    .mobile-login-dropdown-content {
        padding: 25px 20px;
        max-width: 320px;
    }
    
    .mobile-login-dropdown-header h5 {
        font-size: 18px;
    }
    
    .social-icon {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .social-icon i {
        font-size: 16px;
       
    }
    
    .student-login-btn {
        padding: 15px 20px;
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .mobile-login-dropdown-content {
        padding: 20px 15px;
        max-width: 300px;
    }
    
    .mobile-login-dropdown-header h5 {
        font-size: 16px;
    }
    
    .social-icon {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .social-icon i {
        font-size: 15px;
        margin-right: 8px;
    }
    
    .student-login-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* Mobile dropdown open state */
body.mobile-dropdown-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Prevent scrolling when dropdown is open */
body.mobile-dropdown-open .mobile-login-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(5, 13, 54, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(5, 13, 54, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.slider-prev:active,
.slider-next:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-prev i,
.slider-next i {
    transition: all 0.3s ease;
}

.slider-prev:hover i,
.slider-next:hover i {
    transform: scale(1.2);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(5, 13, 54, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(5, 13, 54, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: #050d36;
    border-color: #050d36;
    transform: scale(1.3);
}



/* Responsive adjustments */
@media (max-width: 767px) {
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 575px) {
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-dots {
        margin-top: 20px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}


/* Ensure navigation buttons are always visible */
.slider-prev,
.slider-next {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    opacity: 1;
}

/* Improve dot visibility */
.slider-dots .dot {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.slider-dots .dot:hover,
.slider-dots .dot.active {
    opacity: 1;
}
.contact-detail-box{
    background: #333333;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.contact-detail-box ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 50px;
}
.contact-detail-box ul li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.main_footer-link{
    border: 1px solid #818181;
    border-radius: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 10px;
}








