/* ===========================
   CSS Variables & Base
=========================== */
:root {
    --primary: #ff663b;
    --primary-dark: #ee390f;
    --primary-gold: #f9b700;
    --navy: #0c2e60;
    --text-muted: #888888;
    --text-body: #666666;
    --border: #edeff2;
    --bg-light: #f7f7f7;
    --white: #ffffff;
    --gradient: linear-gradient(to left, #ee390f 0%, #f9b700 51%, #ee390f 100%);
}

/* ===========================
   Reset & Base
=========================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    color: var(--text-body);
}

a {
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    line-height: 1.2em;
}

p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.929;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.222;
}

h3 {
    font-size: 24px;
    line-height: 25px;
}

h5 {
    font-size: 18px;
    line-height: 22px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy);
    color: #fff;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
    color: #fff;
}

/* Layout helpers */
.section_padding {
    padding: 140px 0;
}

.padding_top {
    padding-top: 140px;
}

/* ===========================
   Logo
=========================== */
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
}

.logo-accent {
    color: var(--primary);
}

.footer-logo {
    font-size: 24px;
    display: inline-block;
    margin-bottom: 20px;
}

/* ===========================
   Buttons
=========================== */
.btn_1 {
    display: inline-block;
    padding: 13.5px 45px;
    border-radius: 50px;
    font-size: 14px;
    color: #fff;
    transition: all .4s ease-in-out;
    background-image: var(--gradient);
    background-size: 200% auto;
    border: 1px solid transparent;
    box-shadow: 0px 12px 20px 0px rgba(255, 126, 95, 0.15);
    font-family: 'Roboto', sans-serif;
}

.btn_1:hover {
    color: #fff !important;
    background-position: right center;
    box-shadow: 0px 10px 30px 0px rgba(193, 34, 10, 0.2);
}

.btn_2 {
    display: inline-block;
    padding: 13px 39px;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid var(--navy);
    color: var(--navy);
    font-size: 15px;
    font-weight: 500;
    transition: all .4s ease-in-out;
    background-size: 200% auto;
}

.btn_2:hover {
    color: #fff !important;
    background-image: var(--gradient);
    background-position: right center;
    border: 1px solid transparent;
}

.btn_4 {
    background-color: var(--primary);
    padding: 3.5px 21px;
    display: inline-block;
    border: 2px solid transparent;
    transition: 0.5s;
    color: #fff;
    font-size: 13px;
    border-radius: 3px;
}

.btn_4:hover {
    background: rgba(255, 102, 59, 0.85);
    color: #fff;
}

/* ===========================
   Section Title
=========================== */
.section_tittle {
    margin-bottom: 80px;
}

.section_tittle h2 {
    font-size: 42px;
    font-weight: 700;
    position: relative;
    line-height: 1.2;
}

.section_tittle h2::after {
    position: absolute;
    content: "";
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 80px;
    height: 2px;
    background-color: var(--primary);
}

.section_tittle p {
    color: #556172;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ===========================
   Navbar / Header
=========================== */
.main_menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}

.main_menu .navbar {
    padding: 20px 0;
}

.main_menu .navbar-brand {
    padding: 0 !important;
}

.main_menu .main-menu-item {
    text-align: right;
    justify-content: right;
}

.main_menu .main-menu-item ul li .nav-link {
    color: var(--navy);
    font-size: 15px;
    padding: 0 24px;
    font-family: 'Roboto', sans-serif;
}

.main_menu .main-menu-item ul li .nav-link:hover {
    color: var(--primary-dark);
}

.main_menu .main-menu-item ul .btn_1 {
    color: #fff;
    font-size: 14px;
    padding: 11.5px 33px;
    margin-left: 41px;
}

/* Dropdown */
.dropdown-menu {
    border: 0 !important;
    background-color: #fafafa;
}

.dropdown .dropdown-menu {
    transition: all 0.5s;
    overflow: hidden;
    transform-origin: top center;
    transform: scale(1, 0);
    display: block;
    margin-top: 32px;
}

.dropdown .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 9px 18px !important;
    color: #000 !important;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    color: var(--primary) !important;
}

.dropdown:hover .dropdown-menu {
    transform: scale(1);
}

/* Fixed menu on scroll */
.menu_fixed {
    position: fixed;
    z-index: 9999 !important;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
    top: 0;
}

/* ===========================
   Banner
=========================== */
.banner_part {
    height: 880px;
    position: relative;
    overflow: hidden;
    background-image: url('https://preview.colorlib.com/theme/etrain/img/banner_bg.png');
    background-repeat: no-repeat;
    background-size: 68%;
    background-position: top right;
}

/* .banner_part::after {
    position: absolute;
    top: 163px;
    width: 35%;
    height: 69%;
    content: "";
    background-image: url('/img/hero_image.png');
    border-radius: 50%;
    background-size: 100% 100%;
    right: 9%;
} */
.banner_part .banner_text {
    display: table;
    width: 100%;
    height: 880px;
}

.banner_part .banner_text .banner_text_iner {
    display: table-cell;
    vertical-align: middle;
}

.banner_part .banner_text h5 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #556172;
    margin-bottom: 14px;
}

.banner_part .banner_text h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 27px;
    line-height: 1.18;
}

.banner_part .banner_text h1 span {
    color: var(--primary);
}

.banner_part .banner_text p {
    font-size: 15px;
    line-height: 1.8;
    color: #777777;
}

.banner_part .banner_text .btn_1 {
    margin-top: 50px;
    padding: 13.5px 45px;
}

.banner_part .banner_text .btn_2 {
    margin-top: 50px;
    padding: 13px 46px;
    margin-left: 10px;
}

/* ===========================
   Feature Section
=========================== */
.feature_part {
    padding-top: -120px;
}

.feature_part .single_feature_text h2 {
    font-size: 42px;
    line-height: 1.222;
    margin-bottom: 20px;
}

.feature_part .single_feature_text p {
    line-height: 1.8;
}

.feature_part .single_feature_text .btn_1 {
    margin-top: 45px;
}

.feature_part .single_feature_part {
    padding: 50px 20px 35px;
    border: 1px solid var(--border);
    text-align: center;
    transition: 0.6s;
}

.feature_part .single_feature_part span {
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    background-color: #f0f4f6;
    line-height: 80px;
    transition: 0.6s;
}

.feature_part .single_feature_part span i {
    color: var(--navy);
    font-size: 24px;
    transition: 0.6s;
}

.feature_part .single_feature_part h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.feature_part .single_feature_part p {
    color: #7f7f7f;
    line-height: 1.8;
    font-size: 15px;
}

.feature_part .single_feature:hover .single_feature_part {
    border: 1px solid var(--primary);
}

.feature_part .single_feature:hover span {
    background-image: var(--gradient);
    background-size: 200% auto;
}

.feature_part .single_feature:hover span i {
    color: #fff;
}

/* ===========================
   Learning Section
=========================== */
.learning_part {
    position: relative;
    z-index: 99;
    padding: 100px 0;
}

.learning_part .learning_img {
    background-image: url('https://preview.colorlib.com/theme/etrain/img/learning_img_bg.png');
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 70% 100%;
}

.learning_part .learning_img img {
    max-width: 90%;
    height: auto;
}

.learning_part .learning_member_text h5 {
    font-family: 'Roboto', sans-serif;
    color: #556172;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-left: 75px;
    text-transform: uppercase;
}

.learning_part .learning_member_text h5::after {
    position: absolute;
    left: 0;
    top: 10px;
    height: 2px;
    width: 60px;
    content: "";
    background-color: var(--primary);
}

.learning_part .learning_member_text h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 38px;
    margin-top: 19px;
}

.learning_part .learning_member_text p {
    line-height: 1.929;
    margin-bottom: 7px;
}

.learning_part .learning_member_text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.learning_part .learning_member_text ul li {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    padding-left: 33px;
    padding-top: 12px;
    color: var(--text-muted);
    position: relative;
}

.learning_part .learning_member_text ul li span {
    margin-right: 17px;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 14px;
}

/* ===========================
   Advanced Feature
=========================== */
.advance_feature {
    padding: 100px 0;
}

.advance_feature .learning_img {
    background-image: url('https://preview.colorlib.com/theme/etrain/img/advance_feature_bg.png');
    background-size: 84% 100%;
    background-position: right top;
    background-repeat: no-repeat;
}

.advance_feature .learning_img img {
    max-width: 100%;
    height: auto;
}

.advance_feature .learning_member_text_iner span {
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #fdeae5;
    display: inline-block;
    text-align: center;
    font-size: 22px;
    margin-top: 55px;
    margin-bottom: 25px;
}

.advance_feature .learning_member_text_iner .ti-stamp {
    background-color: #fff0e0;
}

.advance_feature .learning_member_text_iner h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 17px;
}

/* ===========================
   Counter Section
=========================== */
.member_counter {
    padding: 73px 0;
    background-image: linear-gradient(0deg, #ee390f 0%, #f9b700 100%);
}

.member_counter .single_member_counter {
    text-align: center;
}

.member_counter .single_member_counter span {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.member_counter .single_member_counter h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-top: 28px;
    text-transform: capitalize;
    position: relative;
}

.member_counter .single_member_counter h4::after {
    position: absolute;
    left: 0;
    top: -20px;
    right: 0;
    margin: 0 auto;
    width: 60px;
    height: 1px;
    background-color: #fff;
    content: "";
}

/* ===========================
   Courses Section
=========================== */
.single_special_cource {
    margin-bottom: 30px;
}

.single_special_cource .special_img {
    width: 100%;
}

.single_special_cource .special_cource_text {
    padding: 35px 35px 40px 30px;
    border: 1px solid var(--border);
    border-top: 0;
}

.single_special_cource .special_cource_text h4 {
    float: right;
    color: var(--primary);
    font-weight: 600;
}

.single_special_cource .special_cource_text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
    transition: 0.5s;
    clear: both;
}

.single_special_cource .special_cource_text h3:hover {
    color: var(--primary);
}

.single_special_cource .special_cource_text>a {
    color: var(--navy);
}

/* Course Badge */
.course_badge {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge_beginner {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.badge_intermediate {
    background-color: #fff3e0;
    color: #e65100;
}

.badge_advanced {
    background-color: #fce4ec;
    color: #c62828;
}

/* Course Meta */
.course_details_meta {
    margin-top: 12px;
    margin-bottom: 5px;
}

.course_details_meta span {
    font-size: 13px;
    color: var(--text-muted);
    margin-right: 15px;
}

.course_details_meta span i {
    margin-right: 4px;
    color: var(--primary);
}

/* Author Info */
.author_info {
    display: flex;
    justify-content: space-between;
    padding-top: 23px;
    margin-top: 23px;
    border-top: 1px solid var(--border);
}

.author_info .author_img {
    position: relative;
    padding-left: 60px;
    display: flex;
    align-items: center;
}

.author_info .author_img img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author_info .author_img p {
    color: #556172;
    margin-bottom: 2px;
    font-size: 12px;
}

.author_info .author_img h5 {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
}

.author_info .author_img h5 a {
    color: var(--navy);
}

.author_info .author_rating {
    text-align: right;
}

.author_info .author_rating .rating {
    display: flex;
    gap: 2px;
    justify-content: flex-end;
}

.author_info .author_rating .rating .ti-star {
    font-size: 14px;
    color: #ddd;
}

.author_info .author_rating .rating .ti-star.star-filled {
    color: #f9b700;
}

.author_info .author_rating p {
    font-size: 12px;
    margin-top: 4px;
}

/* ===========================
   Testimonials
=========================== */
.testimonial_part {
    overflow: hidden;
    padding: 80px 0;
}

.testimonial_part .section_tittle {
    margin-bottom: 80px;
}

.textimonial_iner {
    margin-left: 13%;
    overflow: hidden;
}

.testimonial_slider {
    margin: 30px;
}

.testimonial_slider_text {
    padding: 50px;
    background-color: #fff;
    box-shadow: 0px 10px 30px 0px rgba(12, 46, 96, 0.1);
    position: relative;
    z-index: 1;
}

.testimonial_slider_text::after {
    position: absolute;
    right: 16%;
    top: 59px;
    width: 148px;
    height: 124px;
    background-image: url('https://preview.colorlib.com/theme/etrain/img/quote.png');
    content: "";
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.testimonial_slider_text p {
    font-size: 15px;
    font-style: italic;
}

.testimonial_part h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 5px;
}

.testimonial_part h5 {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: var(--text-muted);
}

/* Swiper pagination */
.testimonial_part .swiper-pagination {
    position: relative;
    padding-top: 40px;
    bottom: auto;
}

.testimonial_part .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d7d7d7;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s;
}

.testimonial_part .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary);
    width: 17px;
    border-radius: 50px;
}

/* ===========================
   Blog Section
=========================== */
.blog_part .card {
    border: 0;
    border-radius: 0;
    background-color: transparent;
}

.blog_part .single-home-blog {
    margin-bottom: 30px;
}

.blog_part .single-home-blog .card-img-top {
    border-radius: 0;
    width: 100%;
}

.blog_part .single-home-blog .card .card-body {
    padding: 35px 30px 23px;
    background-color: #fff;
    transition: 0.5s;
    border: 1px solid var(--border);
}

.blog_part .single-home-blog .card .card-body:hover {
    box-shadow: 0px 10px 30px 0px rgba(12, 46, 96, 0.1);
    border: 1px solid transparent;
}

.blog_part .single-home-blog .card .card-body .btn_4 {
    margin-bottom: 20px;
}

.blog_part .single-home-blog .card .card-body a {
    color: var(--navy);
}

.blog_part .single-home-blog .card h5 {
    font-weight: 600;
    line-height: 1.5;
    font-size: 19px;
    transition: 0.8s;
    text-transform: capitalize;
    margin-top: 10px;
    margin-bottom: 10px;
}

.blog_part .single-home-blog .card h5:hover {
    color: var(--primary);
}

.blog_part .single-home-blog .card ul {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 24px;
}

.blog_part .single-home-blog .card ul li {
    display: inline-block;
    color: #8a8a8a;
    margin-right: 39px;
}

.blog_part .single-home-blog .card ul li span {
    margin-right: 8px;
}

/* ===========================
   Footer
=========================== */
.footer-area {
    background-color: var(--bg-light);
    padding: 100px 0 20px;
}

.footer-area .single-footer-widget {
    margin-bottom: 30px;
}

.footer-area .single-footer-widget p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-area .single-footer-widget h4 {
    margin-bottom: 23px;
    font-weight: 700;
    font-size: 24px;
}

.footer-area .single-footer-widget ul li {
    margin-bottom: 10px;
}

.footer-area .single-footer-widget ul li a {
    color: #555555;
    transition: 0.5s;
    font-size: 15px;
}

.footer-area .single-footer-widget ul li a:hover {
    color: var(--primary);
}

.footer-area .input-group {
    border: 1px solid #dedede;
    padding: 5px;
}

.footer-area .single-footer-widget input {
    height: 40px;
    border: none;
    font-size: 13px;
    color: #999;
    font-family: 'Roboto', sans-serif;
    background: transparent;
    box-shadow: none !important;
}

.footer-area .single-footer-widget input:focus {
    outline: none;
    box-shadow: none;
}

.footer-area .btn_1 {
    margin-top: 0;
    padding: 8px 20px;
    border-radius: 3px;
}

.footer-area .footer_2 .social_icon {
    margin-top: 27px;
}

.footer-area .footer_2 .social_icon a {
    color: #cccccc;
    font-size: 14px;
    margin-right: 20px;
    transition: 0.3s;
}

.footer-area .footer_2 .social_icon a:hover {
    color: var(--primary);
}

.footer-area .contact_info p {
    margin-bottom: 10px;
}

.footer-area .contact_info p span {
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
}

.footer-area .copyright_part_text {
    padding-top: 26px;
    margin-top: 60px;
    border-top: 1px solid #dedede;
}

.footer-area .copyright_part_text p {
    font-size: 15px;
}

.footer-area .copyright_part_text a {
    color: var(--primary);
}

.footer-area .copyright_part_text .ti-heart {
    font-size: 12px;
    margin: 0 2px;
    color: var(--primary);
}

.footer-area .footer_1 p {
    margin-bottom: 10px;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 991px) {
    .textimonial_iner {
        margin-left: 0;
    }

    .testimonial_slider {
        margin: 0 20px;
    }

    .testimonial_slider_text {
        padding: 20px;
    }

    .testimonial_slider_text::after {
        width: 53px;
        height: 45px;
        right: 10%;
        top: 20px;
    }
}

@media (max-width: 767px) {
    .section_padding {
        padding: 70px 0;
    }

    .padding_top {
        padding-top: 70px;
    }

    .section_tittle {
        margin-bottom: 50px;
    }

    .section_tittle h2 {
        font-size: 28px;
    }

    .banner_part {
        height: 700px;
        background-image: none;
        background-color: var(--bg-light);
    }

    .banner_part::after {
        display: none;
    }

    .banner_part .banner_text {
        height: 700px;
        text-align: center;
    }

    .banner_part .banner_text h1 {
        font-size: 30px;
    }

    .banner_part .banner_text .btn_1,
    .banner_part .banner_text .btn_2 {
        margin-top: 20px;
        padding: 10px 25px;
    }

    h2 {
        font-size: 26px;
    }

    .feature_part .single_feature_part {
        margin-top: 25px;
    }

    .feature_part .single_feature_text h2 {
        font-size: 28px;
    }

    .feature_part .single_feature_text .btn_1 {
        margin-top: 25px;
    }

    .learning_part {
        padding: 70px 0;
    }

    .learning_part .learning_img {
        margin-bottom: 30px;
    }

    .learning_part .learning_member_text h2 {
        font-size: 26px;
    }

    .learning_part .learning_member_text ul li {
        display: block;
    }

    .advance_feature {
        padding: 0 0 70px;
    }

    .advance_feature .learning_img {
        margin-bottom: 20px;
    }

    .advance_feature .learning_member_text_iner span {
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .member_counter {
        padding: 50px 0;
    }

    .member_counter .single_member_counter {
        margin: 20px 0;
    }

    .member_counter .single_member_counter span {
        font-size: 40px;
    }

    .member_counter .single_member_counter h4 {
        margin-top: 10px;
    }

    .member_counter .single_member_counter h4::after {
        top: -10px;
    }

    .single_special_cource {
        margin-bottom: 20px;
    }

    .single_special_cource .special_cource_text {
        padding: 20px 15px 15px;
    }

    .testimonial_slider {
        margin: 0;
    }

    .testimonial_slider_text {
        padding: 20px 15px;
    }

    .blog_part {
        padding-bottom: 50px;
    }

    .blog_part .single-home-blog {
        margin-bottom: 20px;
    }

    .blog_part .single-home-blog .card .card-body {
        padding: 15px 12px;
    }

    .footer-area {
        padding: 70px 0 20px;
    }

    .footer-area .copyright_part_text {
        margin-top: 20px;
        text-align: center;
    }

    /* Mobile nav */
    .navbar-light .navbar-toggler {
        border-color: transparent;
    }

    .navbar-collapse {
        z-index: 9999 !important;
        position: absolute;
        left: 0;
        top: 71px;
        width: 100%;
        background-color: #fff;
        text-align: left !important;
    }

    .main_menu .main-menu-item {
        text-align: left !important;
        margin-top: 20px;
    }

    .main_menu .main-menu-item .nav-item {
        padding: 5px 15px !important;
    }

    .main_menu .main-menu-item .nav-item a {
        padding: 5px 15px !important;
    }

    .navbar-nav {
        align-items: start !important;
    }

    .dropdown .dropdown-menu {
        transform: scale(1, 0);
        display: none;
        margin-top: 10px;
    }

    .dropdown:hover .dropdown-menu {
        transform: scale(1);
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .section_padding {
        padding: 70px 0;
    }

    .padding_top {
        padding-top: 70px;
    }

    .banner_part {
        height: 750px;
        background-image: none;
        background-color: var(--bg-light);
    }

    .banner_part .banner_text {
        height: 750px;
        text-align: center;
    }

    .banner_part::after {
        display: none;
    }

    .banner_part .banner_text h1 {
        font-size: 40px;
    }

    .textimonial_iner {
        margin-left: 0;
    }

    .testimonial_slider {
        margin: 0 20px;
    }

    .navbar-collapse {
        position: absolute;
        left: 0;
        top: 71px;
        width: 100%;
        background-color: #fff;
        z-index: 9999 !important;
    }

    .main_menu .main-menu-item {
        text-align: left !important;
    }

    .main_menu .main-menu-item .nav-item {
        padding: 10px 15px !important;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .section_padding {
        padding: 80px 0;
    }

    .padding_top {
        padding-top: 80px;
    }

    .banner_part {
        height: 650px;
    }

    .banner_part .banner_text {
        height: 650px;
    }

    .banner_part .banner_text h1 {
        font-size: 40px;
    }

    .feature_part .single_feature_text h2 {
        font-size: 35px;
    }

    .learning_part .learning_member_text h2 {
        font-size: 28px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}





/* logo */

.navbar-brand img {
    width: 300px;
    /* Default size (desktop) */
    height: auto;
}

/* Jab screen 900px se chhoti ho */
@media (max-width: 900px) {
    .navbar-brand img {
        width: 200px;
        height: auto;
    }

    .feature_part {
        padding-top: 69px;
    }

    .learning_part .learning_img img {
        max-width: 100%;
        height: auto;
    }

}












.hero_stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.stat_box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.3s;
}

.stat_box h2 {
    font-size: 32px;
    color: #ff5e14;
    font-weight: 700;
}

.stat_box p {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
}

.stat_box:hover {
    transform: translateY(-5px);
}



/* Default styling */
.single-footer-widget.footer_3 {
    text-align: center;
    /* center text on desktop */
}

.single-footer-widget.footer_3 .contact_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* center links vertically */
    gap: 10px;
    color: #0c2e60;
    font-weight: 500;
    list-style: none;
    padding: 0;
}

.single-footer-widget.footer_3 .contact_info li a {
    color: #0c2e60;
    text-decoration: none;
    transition: color 0.3s;
}

.single-footer-widget.footer_3 .contact_info li a:hover {
    color: #ff6600;
    /* optional hover color */
}

/* Responsive: screens smaller than 789px */
@media (max-width: 789px) {
    .single-footer-widget.footer_3 {
        text-align: left;
        /* remove center text */
    }

    .single-footer-widget.footer_3 .contact_info {
        align-items: flex-start;
        /* remove center alignment */
    }
}