@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html,
body {
    overflow-x: hidden;
}

.spacer {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (max-width: 575px) {
    .spacer {
        padding-top: 25px;
        padding-bottom: 25px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1440px !important;
    }
}

a {
    text-decoration: none !important;
    color: #000000;
}

.fw-semibold {
    font-weight: 600;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-26 {
    font-size: 26px;
}

.color-white {
    color: #ffff;
}

:root {
    --prim-color: #600B0D;
    --sec-color: #941B1E;
    --ter-color: #1D3467;
    --black: #2c2c2c;
    --white: #ffffff;
    --grey: #929292;
}

.prim {
    color: var(--prim-color);
}

.bg-prim {
    background-color: var(--prim-color);
}

.second {
    color: var(--sec-color);
}

.bg-second {
    background-color: var(--sec-color);
}

.third {
    color: var(--ter-color);
}

.bg-third {
    background-color: var(--ter-color);
}

.txt-black {
    color: var(--black);
}

.txt-white {
    color: var(--white);
}

.txt-grey {
    color: var(--grey);
}

.w-30 {
    width: 35%;
}

.basic {
    display: flex;
    justify-content: center;
    align-items: center;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--sec-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--prim-color);
}

@media screen and (max-width:991px) {
    .w-30 {
        width: 100%;
    }
}

@media screen and (max-width:575px) {
    .header-underline {
        text-underline-offset: 2px !important;
    }
}

/* ========= header 27-5-2025 ========== */

.border-btm {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
    width: 175px;
    height: 55px;
}

.header-divider {
    width: 2px;
    height: 40px;
    background-color: #E7E7E7;
}

.search {
    position: relative;
}

.search button {
    position: absolute;
    top: -30%;
    left: -3%;
    transform: translate(50%, 50%);
    background: url(../img/search-icon.png) no-repeat center center;
    background-size: cover;
    width: 40px;
    height: 40px;
}

.search input {
    border-radius: 30px !important;
    padding: 12px 12px 12px 55px;
    border: 1px solid rgba(201, 201, 201, 1) !important;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25) !important;
}

.navbar-nav .nav-link {
    color: var(--ter-color);
    font-weight: 500;
    font-size: 18px;
    position: relative;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--sec-color) !important;

}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--sec-color) !important;
    font-weight: 700;
}

.navbar-nav .nav-item {
    margin-right: 30px;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* Optional: removes offset */
}

.dropdown-menu {
    pointer-events: auto;
}

@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        display: block !important;
        position: static;
        float: none;
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
    }
}

.navbar-collapse ul ul li a {
    color: var(--prim-color);
    font-weight: 500;
}

.navbar-collapse ul ul li:hover a {
    background: var(--prim-color);
    color: var(--white);
}

.navbar-toggler {
    padding: 10px 12px !important;
    font-size: 24px !important;
    border: 2px solid var(--sec-color) !important;
}

.navbar-toggler i {
    color: var(--sec-color) !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* ========= footer 27-5-2025 ========== */

footer {
    background-color: #f3f3f3;
}

.institute-info p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.institute-info .logo {
    width: 200px;
    height: 70px;
}

.social-bg {
    background: rgba(148, 27, 30, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-bg:hover {
    background: rgba(29, 52, 103, 0.2);
}

.social-bg i {
    color: var(--sec-color);
}

.social-bg:hover i {
    color: var(--ter-color);
}

footer .footer-title {
    margin-bottom: 30px;
}

footer ul li {
    margin-bottom: 10px;
    transition: ease-in-out 0.3s;
}

footer ul li:hover {
    transform: translateX(7px);
}

footer ul li img {
    margin-right: 6px;
}

footer ul li a {
    color: var(--black);
    font-size: 17px;
    font-weight: 600;
}

footer ul li:hover a {
    color: var(--ter-color);
}

footer .gallery-img img {
    width: 85px;
    height: 85px;
    border-radius: 5px;
    object-fit: cover;
    border: 2px solid transparent;
}

footer .gallery-img img:hover {
    border: 2px solid var(--ter-color);
}

footer ul li:hover img {
    filter: brightness(0) saturate(100%) invert(19%) sepia(8%) saturate(5048%) hue-rotate(185deg) brightness(98%) contrast(97%);
}

.scroll-top {
    background: var(--white);
    color: var(--prim-color);
    border: 2px solid var(--prim-color);
    display: none;
    position: fixed;
    padding: 10px 15px;
    border-radius: 50%;
    bottom: 10%;
    right: 2%;
    transform: translate(0, 0);
    z-index: 999;
    cursor: pointer;
    transition: ease-in-out 0.5s;
}

.scroll-top:hover {
    background: var(--prim-color);
    color: var(--white);
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.scroll-top.animate-pulse {
    animation: pulse 0.5s ease;
}

/* ========= counter 27-5-2025 ========== */
.counter {
    background: url(../img/wave.png) no-repeat center center;
    background-size: cover;
    background-color: var(--sec-color);
    box-shadow: 0px 10px 10px 0px #941b1e52;
}

.counter-info .counter-bg {
    background-color: var(--ter-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-info h2 {
    font-size: 38px;
    font-weight: 600;
    text-transform: capitalize;
}

/* ========= facility 27-5-2025 ========== */

.facility-bg {
    background-color: rgba(148, 27, 30, 0.05);
}

.facility-icon {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.facility-icon,
.facility-section h4,
.facility-section p {
    transition: background-color 0.5s ease, color 0.5s ease;
}

.facility-section:hover .facility-icon {
    background-color: var(--ter-color);
}

.facility-section:hover h4 {
    color: var(--sec-color)
}

.facility-section:hover p {
    color: var(--black)
}

/* ========= testimonial 28-5-2025 ========== */

.mar-100 {
    margin-bottom: 100px;
}

.mar-top-100 {
    margin-top: 100px;
}

@media (max-width: 991px) {
    .mar-100 {
        margin-bottom: 0;
    }

    .mar-top-100 {
        margin-top: 0;
    }
}

.swiper {
    width: 100%;
    height: 100%;
}


.bg-1 {
    background: url("../img/testimonial-bg.png") no-repeat center center;
    background-size: contain;
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    margin-top: 3rem;
}


@media (min-width: 992px) {

    .bg-1 {
        transform: scale(0.90);
        transition: transform 0.3s ease;
        opacity: 0.75;
    }

    .swiper-slide.swiper-slide-next .bg-1 {
        transform: scale(1.05);
        opacity: 1;
    }
}



.swiper-slide {
    display: flex;
    align-items: stretch;
    height: auto;
}

.slider-img-bg {
    width: 100px;
    height: 100px;
    top: -63%;
    transform: translateY(50%);
}

.swiper-content {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 2rem;
}

.swiper-content h5 {
    color: var(--ter-color);
    font-weight: 700;
}

.swiper-slide:hover .swiper-content h5 {
    color: var(--sec-color);
}

.slider-img-bg img {
    border-radius: 50%;
}

.inverted-comma {
    width: 36px;
    height: 36px;
}

.swiper-slide:hover .inverted-comma {
    filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(2251%) hue-rotate(342deg) brightness(82%) contrast(101%);
}

.swiper-content p {
    max-height: 115px;
    overflow-y: auto;
}

.custom-scroll::-webkit-scrollbar {
    width: 2px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #1e3468ab;
    border-radius: 10px;
    height: 10px;
}

.slider-pagination {
    bottom: -35px !important;
}

.slider-pagination .swiper-pagination-bullet {
    height: 12px !important;
    width: 12px !important;
    border: 1px solid;
    background-color: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
    transition: ease-in-out 0.5s;
}

.slider-pagination .swiper-pagination-bullet-active {
    background: var(--prim-color);
    border: 1px solid var(--prim-color);
    width: 24px !important;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .swiper-content p {
        max-height: 75px;
    }

    .slider-img-bg {
        top: -75%;
    }

    .bg-1 {
        min-height: 375px;
    }
}

@media (max-width: 767px) {
    .swiper-content {
        padding: 0 5rem;
    }
}

@media (max-width: 575px) {
    .swiper-content {
        padding: 0 4rem;
    }

    .slider-info h3 {
        font-size: 20px;
    }

    .slider-info h5 {
        font-size: 18px;
    }
}

@media (max-width: 425px) {

    .swiper-content {
        padding: 0 2rem;
    }
}


/* ========= faq 28-5-2025 ========== */

.accordion-item {
    margin-bottom: 24px;
    border: 1px solid #E5E7EB !important;
    border-radius: 8px !important;
}

.accordion-item:hover,
.accordion-item:not(:first-of-type):hover {
    border: 1px solid var(--ter-color) !important;
}

.accordion-item:hover .accordion-button {
    color: var(--ter-color) !important;
}

.accordion-item:hover .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(20%) sepia(16%) saturate(2874%) hue-rotate(185deg) brightness(92%) contrast(96%);
}

.accordion-header button {
    font-size: 20px !important;
    font-weight: 500 !important;
}

.accordion-item:not(:first-of-type) {
    border-top: 1px solid #E5E7EB !important;
}

.accordion-button {
    border-radius: 8px !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--ter-color) !important;
    background-color: var(--white) !important;
    border: 1px solid var(--ter-color) !important;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(20%) sepia(16%) saturate(2874%) hue-rotate(185deg) brightness(92%) contrast(96%);
}

.accordion-body {
    color: #4B5563 !important;
}

.accordion-body strong{
    color: var(--ter-color);
}

.accordion-body ul li {
    list-style: disc;
}

.steps ul li {
    list-style: upper-roman;
}

@media screen and (max-width: 575px) {
    .accordion-header button {
        font-size: 18px !important;
    }
}

/* ========= hero 28-5-2025 ========== */

.hero-spacer {
    padding: 80px;
}

.hero {
    background: rgba(148, 27, 30, 0.05);
    position: relative;
}

.hero .hero-content h2 {
    font-size: 48px;
    line-height: 70px;
    font-weight: 700;
}

.hero .hero-content p {
    line-height: 24px;
}

.hero-btn {
    background-color: var(--sec-color) !important;
    color: var(--white) !important;
    border: 2px solid var(--sec-color) !important;
    display: inline;
    padding: 10px 20px !important;
    border-radius: 28px !important;
    font-size: 18px;
    font-weight: 600;
}

.hero-btn:hover {
    background-color: var(--white) !important;
    color: var(--ter-color) !important;
    border: 2px solid var(--ter-color) !important;
    box-shadow: 0px 0px 5px 1.5px rgba(29, 52, 103, 0.8) !important;


}

.video-btn {
    background-color: var(--ter-color);
    height: 49px;
    width: 49px;
    border: 1px solid var(--ter-color);
    border-radius: 50%;
}

.hero-video:hover .video-btn {
    background-color: var(--white);
    border: 1px solid var(--sec-color);
}

.hero-video:hover img {
    filter: brightness(0) saturate(100%) invert(11%) sepia(69%) saturate(3978%) hue-rotate(346deg) brightness(105%) contrast(93%);
}

.hero-video:hover h5 {
    color: var(--prim-color);
}

.vector-1,
.vector-2,
.vector-3,
.vector-4 {
    width: 100px;
    height: 100px;
}

.vector-1 {
    position: absolute;
    top: 10%;
    right: 52%;
    transform: translate(50%, 50%);
}

.vector-2 {
    position: absolute;
    top: 0%;
    right: 16%;
    transform: translate(50%, 50%);
}

.vector-3 {
    position: absolute;
    top: 40%;
    right: 15%;
    transform: translate(50%, 50%);
}

.vector-4 {
    position: absolute;
    top: 75%;
    right: 40%;
    transform: translate(50%, 50%);
}


@media (max-width: 991px) {
    .vector-1 {
        display: none;
    }

    .vector-4 {
        top: 85%;
    }

    .hero .hero-content h2 {
        font-size: 36px;
        line-height: normal;
    }
}

@media (max-width: 575px) {
    .vector-1 {
        display: none;
    }

    .hero-btn {
        padding: 10px 20px;
    }
}

/* ========= course info 28-5-2025 ========== */

.course-content {
    background: rgba(148, 27, 30, 0.05);
    border: 1px solid rgba(148, 27, 30, 0.15);
    border-radius: 20px;
    transition: ease-in-out 0.5s;
}

.course-content:hover {
    background: rgba(29, 52, 103, 0.08);
    box-shadow: 0px 0px 10px 0px rgba(29, 52, 103, 0.5);
    border: 1.5px solid var(--ter-color);
}

/* ========= hero-2  29-5-2025 ========== */

.hero-2-content h3 {
    font-size: 30px;
}

.hero-2-content p {
    letter-spacing: 30;
    font-size: 14px;
}

.hero-2-content .list-bg {
    height: 50px;
    width: 50px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: rgba(29, 52, 103, 0.1);
    transition: ease 0.5s;
}

.hero-2-content .hero-2-list:hover .list-bg {
    background: rgba(148, 27, 30, 0.05);
    border: 1px solid var(--sec-color);
}

.hero-2-content .hero-2-list {
    margin-bottom: 16px;
}

.hero-2-content .hero-2-list h6 {
    font-size: 19px;
}

.hero-img {
    position: relative;
    text-align: center;
}

.hero-img .hero-img-box {
    position: absolute;
    top: 65%;
    right: 8%;
}

.hero-img-box,
.hero-img-box-1,
.hero-img-box-2,
.hero-img-box-3 {
    box-shadow: 0px 0px 15px 0px rgba(29, 52, 103, 0.15);
    background-color: var(--white);
    border-radius: 15px;
    transition: backackground ease 0.5s, box-shadow ease 0.5s;
}

.hero-img .hero-img-box:hover,
.hero-img-box-1:hover,
.hero-img-box-2:hover,
.hero-img-box-3:hover {
    background: var(--ter-color);
    box-shadow: 0px 0px 15px 1px rgba(29, 52, 103, 1);
}

.hero-img .hero-img-box:hover .hero-img-box-text h6,
.hero-img .hero-img-box-1:hover .hero-img-box-text h6,
.hero-img .hero-img-box-2:hover .hero-img-box-text h6,
.hero-img .hero-img-box-3:hover .hero-img-box-text h6 {
    color: var(--white);
}

/* ========= hero-3  29-5-2025 ========== */

.hero-3-content h3 {
    font-size: 37px;
}

.hero-3-content p {
    letter-spacing: 30;
    font-size: 14px;
}

.progress-section .prog-bar {
    width: 100%;
    height: 20px;
    background-color: #f3f3f3;
    border: 1px solid #e0832633;
    border-radius: 20px;
    padding: 2px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: ease-in-out 0.5s;
}

.progress-section:hover .prog-bar {
    border: 1px solid var(--sec-color);
}

.progress-section .prog-bar .fill {
    height: 100%;
    width: 0%;
    background: var(--ter-color);
    border-radius: 16px;
    transition: width 1s ease-in-out, background-color 0.5s ease-in-out;
}

.progress-section:hover .prog-bar .fill {
    background: var(--prim-color);
}

.progress-bar-tilte,
.progress-bar-percent {
    color: var(--ter-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    transition: ease-in-out 0.5s;
}

.progress-section:hover .progress-bar-tilte,
.progress-section:hover .progress-bar-percent {
    color: var(--sec-color);
}

.hero-img-box-1 img,
.hero-img-box-2 img,
.hero-img-box-3 img {
    width: 40px;
    height: 40px;
}

.hero-img .hero-img-box-1 {
    position: absolute;
    top: 25%;
    right: 0%;
}

.hero-img .hero-img-box-2 {
    position: absolute;
    top: 70%;
    right: 0%;
}

.hero-img .hero-img-box-3 {
    position: absolute;
    top: 50%;
    left: 0%;
}

@media (max-width: 575px) {

    .hero-2-content h5 {
        font-size: 18px;
    }

    .hero-2-content h3 {
        font-size: 24px;
    }

    .hero-2-content .list-bg {
        width: 40px;
        height: 40px;
    }

    .hero-2-content .hero-2-list h6 {
        font-size: 16px;
    }

    .hero-img-box-1,
    .hero-img-box-2,
    .hero-img-box-3 {
        position: static !important;
        margin-bottom: 10px;
    }

    .hero-3-content h3 {
        font-size: 24px;
    }

    .progress-bar-tilte,
    .progress-bar-percent {
        font-size: 16px;

    }
}


/* ========= hero-4  29-5-2025 ========== */

.hero-4 {
    background-color: rgba(148, 27, 30, 0.05);
}

.hero-4-content h3 {
    font-size: 44px;
    text-transform: capitalize;
}

.hero-4-content h4 {
    font-size: 20px;
}

.hero-4-content ul {
    padding-left: 1.5em;
}

.hero-4-content ul li {
    list-style: none;
    position: relative;
    margin-bottom: 0.5em;
}

.hero-4-content ul li::before {
    content: '';
    position: absolute;
    left: -1.2em;
    top: 0.75rem;
    width: 0.25em;
    height: 0.25em;
    background-color: #000000d3;
    border-radius: 50%;
    opacity: 0.8;
    transform: translateY(-50%);
}

.hero-img-circle {
    position: absolute;
    top: 40%;
    right: 50%;
    transform: translate(50%, -50%);
    text-align: center;
    background-color: var(--ter-color);
    border: 5px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    padding: 35px 35px;
    transition: ease-in-out 0.5s;
}

.hero-img-circle h3 {
    font-weight: 700;
    font-size: 40px;
}

.hero-img-circle h6 {
    font-size: 22px;
    font-size: 400;
}

/* .hero-img-circle:hover {
    border: 5px solid var(--prim-color);
    box-shadow: 0px 0px 10px 0px rgba(96, 11, 13, 1);
} */

@media (max-width: 991px) {
    .hero-4-content h3 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .hero-4-content h3 {
        font-size: 26px;
    }

    .hero-img-circle {
        position: static;
        transform: translate(0%, 0%);
        padding: 0;
        width: 200px;
        height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;

    }
}

/* ========= inquiry  29-5-2025 ========== */

.inquiry-form {
    background-color: rgba(148, 27, 30, 0.05);
}

.inquiry-form h3 {
    font-size: 40px;
}

.inquiry-form .form-number a {
    color: var(--ter-color);
    font-size: 34px;
    font-weight: 700;
    transition: color 0.5s ease-in-out;
}

.inquiry-form .form-number:hover a {
    color: var(--sec-color);
}

#inquiry-form {
    background: var(--white);
    box-shadow: 0px 0px 34px 0px rgba(96, 11, 13, 0.3);
    border-radius: 20px;
    position: absolute;
    top: 0;
}

#inquiry-form h2 {
    font-size: 36px;
}

#inquiry-form input,
#inquiry-form textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 25px;
    border: 1.5px solid transparent;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
}

#inquiry-form input:hover,
#inquiry-form textarea:hover {
    border: 1.5px solid var(--sec-color);
    box-shadow: 0px 0px 5px 0px rgba(96, 11, 13, 1);
}

#inquiry-form input:focus-visible,
#inquiry-form textarea:focus-visible {
    outline-color: var(--sec-color) !important;
}

@media (max-width: 991px) {
    form {
        position: static !important;
    }

    .inquiry-form h3 {
        font-size: 32px;
    }

    .inquiry-form .form-number a {
        font-size: 28px;
    }

    #inquiry-form h2 {
        font-size: 25px;
    }
}

@media (max-width: 575px) {
    .inquiry-form h3 {
        font-size: 24px;
    }

    .inquiry-form .form-number a {
        font-size: 18px;
    }
}

/* ========= course card 30-5-2025 ========== */

.cards {
    border: 1.5px solid rgba(224, 224, 224, 1);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    transition: ease-in-out 0.5s;
}

.cards:hover {
    box-shadow: 0px 0px 10px 0px rgba(29, 52, 103, 0.5);
    border: 1.5px solid var(--ter-color);
}

.cards .card-img img {
    border-radius: 12px;
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.cards .card-img {
    position: relative;
}

.cards .card-img .img-overlay {
    background: var(--prim-color);
    color: var(--white);
    border-radius: 20px;
    padding: 6px 15px;
    position: absolute;
    bottom: 5%;
    left: 5%;
    transition: ease-in-out 0.5s;
}

.cards:hover .card-img .img-overlay {
    background: var(--ter-color);
}

.cards .lecture,
.cards .faculty {
    box-shadow: 0px 0px 15px 0px rgba(224, 131, 38, 0.2);
    border-radius: 10px;
    padding: 10px 12px;
    transition: ease-in-out 0.5s;
    border: 1px solid transparent;
}

.cards:hover .lecture,
.cards:hover .faculty {
    border: 1px solid var(--ter-color);
    box-shadow: 0px 0px 15px 0px rgba(29, 52, 103, 0.2);
}

.cards .lecture h6,
.cards .faculty h6 {
    transition: ease-in-out 0.5s;
}

.cards:hover .lecture img,
.cards:hover .faculty img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(16%) saturate(2874%) hue-rotate(185deg) brightness(92%) contrast(96%);
}

.cards:hover .lecture h6,
.cards:hover .faculty h6 {
    color: var(--ter-color);
}

.cards h5 {
    line-height: 24px;
    transition: ease-in-out 0.5s;
}

.cards:hover h5 {
    color: var(--ter-color);
}

.cards .review-star .review-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--grey);
}

.cards {
    position: relative;
}

.cards.course-pricing h6 {
    transition: ease-in-out 0.5s;
}

.cards:hover .course-pricing .btm-text {
    color: var(--ter-color);
}

.cards .course-pricing::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(224, 224, 224, 1);
}

/* ========= course page banner 30-5-2025 ========== */

.banner-img {
    position: relative;
}

.banner-img .overlay {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: url('../img/banner.png') no-repeat center center;
    background-size: cover;
    z-index: 2;
    /* pointer-events: none; */
}

.banner-img .overlay h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

.banner-img img {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    justify-content: center;
}

.breadcrumb .breadcrumb-item a {
    color: var(--prim-color) !important;
    font-size: 20px;
    font-weight: 600;
}

.breadcrumb .breadcrumb-item.active {
    color: var(--ter-color) !important;
    font-size: 20px;
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, "|") !important;
}

@media screen and (max-width: 991px) {
    .banner-img img {
        height: 225px;
        object-fit: cover;
    }

    .banner-img .overlay h1 {
        font-size: 36px;
    }
}

@media screen and (max-width: 575px) {
    .banner-img .overlay h1 {
        font-size: 26px;
    }
}

/* ========= course page tabs 30-5-2025 ========== */

.course-tabs .nav-link {
    border: 2px solid rgba(229, 231, 235, 1);
    padding: 16px 30px;
    text-align: start;
    font-size: 20px;
    font-weight: 700;
    color: var(--prim-color);
}

.nav-pills .nav-link:hover {
    border: 2px solid var(--prim-color);
    background-color: var(--prim-color) !important;
    color: var(--white) !important;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    border: 2px solid var(--prim-color);
    background-color: var(--prim-color) !important;
    color: var(--white) !important;
}

.tab-content .tab-pane .tab-img img {
    height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
}

.tab-content .tab-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--ter-color);
}

.tab-content .tab-info p {
    font-size: 16px;
    font-weight: 400;
    color: #4B5563;
}

.tab-content .tab-info .os-content p {
    font-size: 14px;
}

.tab-content .tab-info .btn-section .view-btn {
    background: var(--sec-color);
    border: 2px solid transparent;
    padding: 14px 30px;
    border-radius: 10px;
    display: inline-block;
    transition: ease-in-out 0.5s;
}

.tab-content .tab-info .btn-section .view-btn:hover {
    box-shadow: 0px 0px 10px 0px #941B1E;
    border: 2px solid var(--prim-color);
    background: transparent;
}

.tab-content .tab-info .btn-section .view-btn a {
    color: var(--white);
    transition: ease-in-out 0.5s;
}

.tab-content .tab-info .btn-section .view-btn:hover a {
    color: var(--prim-color);
}

.tab-content .tab-info .btn-section .view-btn a i {
    transform: rotate(315deg);
}

.tab-content .tab-info .btn-section .help-btn {
    border: 1px solid var(--ter-color);
    padding: 14px 30px;
    border-radius: 10px;
    display: inline-block;
    transition: ease-in-out 0.5s;
}

.tab-content .tab-info .btn-section .help-btn:hover {
    border: 1px solid var(--prim-color);
    background: transparent;
}

.tab-content .tab-info .btn-section .help-btn a {
    color: var(--ter-color);
    transition: ease-in-out 0.5s;
}

.tab-content .tab-info .btn-section .help-btn:hover a {
    color: var(--sec-color);
}

@media screen and (max-width:575px) {
    .tab-content .tab-info h2 {
        font-size: 28px;
    }
}


/* ========= service page 30-5-2025 ========== */

.service-img img {
    border-radius: 20px;
    min-height: 300px;
    object-fit: cover;
}

@media screen and (min-width:1200px) {
    .service-img img {
        height: 700px;
        width: 100%;
        object-fit: cover;
    }
}

.service-content {
    font-size: 20px;
    font-weight: 400;
    color: #4B5563;
}

.service-content ul li {
    list-style: disc;
}

@media screen and (max-width:991px) {
    .service-content {
        font-size: 18px;
    }
}

@media screen and (max-width:575px) {
    .service-content {
        font-size: 16px;
    }
}

/* ========= service page 31-5-2025 ========== */

.service-cards {
    background: url("../img/services-card-bg.png") no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.card-section {
    background: var(--white);
    box-shadow: 0px 0px 25px 0px #00000014;
    border-radius: 20px;
    transition: ease-in-out 0.5s;
}

.card-border {
    border: 1px solid var(--ter-color);
    border-radius: 12px;
    transition: ease-in-out 0.5s;
}

.card-section:hover {
    box-shadow: 0px 0px 25px 0px rgba(96, 11, 13, 0.3);

}

.card-section:hover .card-border {
    border: 1px solid var(--sec-color);
}

.card-border h5 {
    color: var(--ter-color);
    transition: ease-in-out 0.5s;
}

.card-section:hover .card-border h5 {
    color: var(--sec-color);
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 9px;
    border: 1px solid #D1D5DB;
    border-radius: 999px;
    background-color: white;
    color: #111827;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    white-space: nowrap;
    height: 34px !important;
}

.card-btn .btn-text {
    display: none;
    max-width: 0;
    transition: ease-in-out 0.5s;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
}

.card-btn .icon-arrow {
    display: none;
    transform: translateX(-8px);
    transition: ease-in-out 0.5s;
}

.card-section:hover .icon-plus {
    display: none;
}

.card-section:hover .btn-text {
    display: block;
    max-width: 200px;
    margin-left: 4px;
}

.card-section:hover .icon-arrow {
    display: block;
    transform: translateX(0);
}

.service-row>div:nth-child(2),
.service-row>div:nth-child(5),
.service-row>div:nth-child(8) {
    transform: translateY(-40px);
}

@media screen and (max-width: 991px) {

    .service-row>div:nth-child(2),
    .service-row>div:nth-child(5),
    .service-row>div:nth-child(8) {
        transform: translateY(0px);
    }
}

/* ========= blog page 31-5-2025 ========== */

.blog-cards {
    border: 2px solid var(--ter-color);
    border-radius: 20px;
    transition: ease-in-out 0.5s;
}

.blog-cards:hover {
    border: 2px solid var(--sec-color);
    box-shadow: 0px 0px 12px 0px rgba(96, 11, 13, 1);

}

.blog-cards .blog-img img {
    border-radius: 12px;
    height: 250px;
    object-fit: none;
}

.blog-cards .blog-content .blog-categories {
    background: rgba(29, 52, 103, 0.2);
    color: var(--ter-color);
    padding: 10px 16px;
    border-radius: 22px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    transition: ease-in-out 0.5s;
}

.blog-cards:hover .blog-content .blog-categories {
    background: rgb(189 147 147 / 28%);
    color: var(--prim-color);
}

.blog-cards .blog-content .blog-btn {
    background: var(--ter-color);
    color: var(--white);
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    transition: ease-in-out 0.5s;
}

.blog-cards:hover .blog-content .blog-btn {
    background: var(--prim-color);
}

/* ========= pagination 31-5-2025 ========== */

.blog-pagination .page-link {
    border-radius: 4px;
    color: var(--ter-color);
    border: 1px solid var(--ter-color);
    font-size: 18px;
    font-weight: 600;
}

.blog-pagination .active>.page-link {
    background-color: var(--sec-color);
    border-color: var(--sec-color);
    color: var(--white);
}

.blog-pagination .page-link:hover {
    z-index: 2;
    color: var(--ter-color);
    background: rgba(29, 52, 103, 0.2);

    border-color: rgba(148, 27, 30, 0.05);
}

.blog-pagination .page-link:focus {
    z-index: 3;
    color: var(--ter-color);
    background: rgba(29, 52, 103, 0.2);
    outline: 0;
    box-shadow: 0 0 0 0.25rem #1d34674a;
}

.blog-pagination .page-item:last-child .page-link,
.blog-pagination .page-item:first-child .page-link {
    background: var(--ter-color);
    border-color: var(--ter-color);
    border-radius: 4px !important;
    color: var(--white);
}

/* ========= about us page 2-6-2025 ========== */

.hero-header {
    font-size: 30px;
}

.step-process {
    /* padding: 50px 0; */
    overflow-x: auto;
    flex-wrap: nowrap !important;
    min-height: 400px;
}

.step-arrow img {
    width: 100%;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.step-number {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--ter-color);
}

.step-headline {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ter-color);
    transition: color 0.3s ease;
}

.step-item:hover .step-icon {
    filter: brightness(0) saturate(100%) invert(9%) sepia(64%) saturate(4764%) hue-rotate(345deg) brightness(97%) contrast(99%);
}

.step-item:hover .step-headline,
.step-item:hover .step-number {
    color: var(--sec-color);
}

.even {
    transform: translateY(100px);
}

@media screen and (max-width: 991px) {
    .col {
        width: 50% !important;
        flex: auto !important;
    }

    .step-process {
        min-height: auto;
    }

    .step-item.even {
        transform: translateY(0px);
    }
}

@media screen and (max-width: 556px) {
    .col {
        width: 100% !important;
        flex: auto !important;
    }

    .hero-header {
        font-size: 24px;
    }
}

/* ========= contact us page 2-6-2025 ========== */

.contact-map iframe {
    height: 700px;
}

@media screen and (max-width: 768px) {
    .contact-map iframe {
        height: 500px;
    }
}

@media screen and (max-width: 556px) {
    .contact-map iframe {
        height: 300px;
    }
}

.input-group-icon {
    position: relative;
}

.input-group-icon i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #000;
    font-size: 1rem;
}

.input-group-icon:hover i {
    color: var(--ter-color);
}

.input-group-icon i:active {
    color: var(--ter-color) !important;
}

.top-20 i {
    top: 11%;
}

.input-group-icon input,
.input-group-icon select,
.input-group-icon textarea {
    padding-left: 40px;
    border-radius: 8px;
    border: 1px solid #ddd;
    width: 100%;
    height: 48px;
}

.input-group-icon input:hover,
.input-group-icon select:hover,
.input-group-icon textarea:hover {
    border: 1px solid var(--ter-color);
    /* background: #941B1E26; */
}

.input-group-icon input:focus-visible,
.input-group-icon select:focus-visible,
.input-group-icon textarea:focus-visible {
    outline-color: var(--ter-color);
    /* background: #941B1E26; */
}

.input-group-icon textarea {
    height: auto;
    padding-top: 12px;
}

textarea::placeholder,
input::placeholder,
select {
    color: #616161;
}

#contact-form .hero-btn {
    background: var(--ter-color);
    border: 1px solid var(--ter-color);
    border-radius: 10px;
}

#contact-form .hero-btn:hover {
    background: var(--white);
    color: var(--ter-color);
}

.contact-info h5 {
    font-weight: 600;
}

.contact-info p {
    font-size: 16px;
    font-weight: 400;
}

.contact-info-icon {
    font-size: 14px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 5px;
    color: var(--black);
}

.contact-info-icon img {
    height: 16px;
    transition: ease-in-out 0.3s;
}

.contact-info-icon .contact-info-text {
    text-decoration: underline;
    font-weight: 600;
    transition: ease-in-out 0.3s;
}

.contact-info-icon:hover img {
    filter: brightness(0) saturate(100%) invert(9%) sepia(64%) saturate(4764%) hue-rotate(345deg) brightness(97%) contrast(99%);
}

.contact-info-icon:hover .contact-info-text {
    color: var(--sec-color);
}


/* ========= ui-ux page 3-6-2025 ========== */

.course-hero-content-1 h2 {
    font-size: 40px;
}

.course-hero-content-1 h5 {
    font-size: 18px;
}

.course-hero-content-1 ul {
    padding-left: 0;
}

.course-hero-content-1 ul li {
    margin-bottom: 24px;
}

.key-features-icon {
    height: 68px;
    width: 68px;
    border-radius: 10px;
    background: rgba(29, 52, 103, 0.15);
    transition: ease 0.5s;
    position: relative;
}

.key-features-icon::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--ter-color);
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
}

.key-features-card .key-features-icon img {
    filter: brightness(0) saturate(100%) invert(19%) sepia(8%) saturate(5048%) hue-rotate(185deg) brightness(98%) contrast(97%);
}

.key-features-card:hover .key-features-icon {
    background: #600B0D26;
}

.key-features-card:hover h5 {
    color: var(--sec-color);
}

.key-features-card .key-features-icon {
    transition: 0s;
}

.key-features-card:hover .key-features-icon {
    filter: brightness(0) saturate(100%) invert(11%) sepia(73%) saturate(5605%) hue-rotate(351deg) brightness(77%) contrast(86%);
}

.course-hero-2-content-img img {
    border-radius: 15px;
    height: 400px;
    object-fit: cover;
}

.benefits-card .benefits-icon img {
    filter: brightness(0) saturate(100%) invert(19%) sepia(8%) saturate(5048%) hue-rotate(185deg) brightness(98%) contrast(97%);
}

.benefits-card:hover .benefits-icon {
    filter: brightness(0) saturate(100%) invert(11%) sepia(73%) saturate(5605%) hue-rotate(351deg) brightness(77%) contrast(86%);
}

.benefits-card:hover h5 {
    color: var(--sec-color);
}

@media screen and (max-width:575px) {
    .course-hero-content-1 h2 {
        font-size: 23px;
    }

    .course-hero-content-1 h5 {
        font-size: 16px;
    }
}