@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

:root {
    --main-color: #ab0c2f;
    --text: #55585B;
    --bg-color: #f6f4ee;
}

a {
    display: inline-block;
    transition: all 0.3s;
    text-decoration: none;
}

span {
    display: inline-block;
}

img {
    max-width: 100%;
    object-fit: cover;
}

p {
    color: var(--text);
}

p:last-child {
    margin-bottom: 0;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.bg-color {
    background-color: var(--main-color);
}

.bg-light {
    background-color: var(--bg-color) !important;
}

.top-header {
    background-color: var(--main-color);
    padding: 16px 0;
}

.top-header .top-row {
    justify-content: space-between;
    align-items: center;
}

.form-control,
.form-select {
    box-shadow: none !important;
}

.top-search-bar .form-control {
    background-color: transparent;
    color: #fff;
    border: 0;
}

.top-search-bar {
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
}

.top-search-bar i {
    position: absolute;
}

.top-search-bar .form-control::placeholder {
    color: #fff;
}

.top-search-bar .form-control {
    background-color: transparent;
    color: #fff;
    border: 0;
    padding-left: 32px;
}

.top-contact-info ul {
    display: flex;
    align-items: center;
    column-gap: 24px;
    list-style: none;
    color: #fff;
    margin-bottom: 0;
    padding-left: 0;
}

.top-contact-info ul li a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
}

.top-contact-info ul li {
    padding-right: 16px;
    border-right: solid 2px #ffffff61;
}

.top-contact-info ul li:last-child {
    padding-right: 0;
    border: 0;
}

.navbar-nav .dropdown-menu {
    box-shadow: 0 10px 30px 0 #2d2d2d33;
    border: 0;
}

.navbar-brand {
    max-width: 250px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 8px 15px;
    color: #000;
}

.navbar-expand-lg .navbar-nav .nav-link.active,
.navbar-expand-lg .navbar-nav .nav-link.show {
    color: var(--main-color);
}

.dropdown-item:hover {
    color: var(--main-color);
    background-color: #f8f9fa !important;
}

.banner-slider {
    margin-bottom: 0;
}

.slider-item img {
    width: 100%;
    height: 650px;
}

.banner-text-outer {
    display: flex;
    justify-content: space-between;
    /* column-gap: 150px; */
}

.banner-text {
    width: 50%;
    padding: 50px;
    background-color: var(--main-color);
    color: #fff;
    box-shadow: 0 0.125rem 0.25rem #00000013;
    position: relative;
    top: -100px;
}

.banner-text h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 24px;
}

.banner-text p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #fff;
}

.banner-text .white-btn {
    padding: 12px 24px;
    background-color: #fff;
    border-radius: 5px;
    color: #000;
    font-weight: 500;
    border: solid 1px #fff;
    transition: all 0.3s;
    cursor: pointer;
}

.banner-text .white-btn:hover {
    background-color: var(--main-color);
    color: #fff;
}

.main-btn {
    padding: 12px 24px;
    background-color: var(--main-color);
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    border: solid 1px var(--main-color);
    transition: all 0.3s;
    cursor: pointer;
}

.main-btn:hover {
    background-color: #fff;
    color: var(--main-color);
}

.about-left {
    position: relative;
}

.about-left img {
    width: 60%;
    height: 500px;
    border: solid 4px #fff;
    border-radius: 15px;
}

.about-left img.img-two {
    position: absolute;
}

.about-left img.img-two {
    position: absolute;
    right: 50px;
    top: 100px;
}

.about-left .exp-box {
    position: absolute;
    padding: 12px 16px;
    right: 0;
    background-color: var(--bg-color);
    border-radius: 5px;
    min-width: 210px;
}

.about-left .exp-box h3 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 30px;
}

.about-left .exp-box p {
    margin-bottom: 0;
}

.section-heading h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.section-heading .mini-heading {
    color: var(--main-color);
    margin-bottom: 10px;
}

.section-heading h2 .curved-text {
    color: var(--main-color);
    position: relative;
    padding-bottom: 10px;
}

.section-heading h2 .curved-text img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.section-heading p {
    color: var(--text);
    font-size: 18px;
}

.section-heading .desc-border {
    padding-left: 40px;
    border-left: 4px solid var(--main-color);
}

.about-text .icon-box-outer {
    margin: 40px;
}

.about-text .icon-box {
    display: flex;
    align-items: center;
    column-gap: 24px;
    margin-bottom: 24px;
}

.about-text .icon-box .icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 16px;
    border: solid 1px #ab0c2e47;
}

.exp-row-bg {
    padding: 50px;
    background-color: var(--main-color);
    border-radius: 16px;
}

.exp-row-bg .col-exp-box {
    border-right: solid 1px #ffffff61;
}

.exp-row-bg .col-exp-box:last-child {
    border: 0;
}

.exp-row-bg .col-exp-box h3 {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.exp-row-bg .col-exp-box p {
    color: #fff;
    text-align: center;
}

.chhose-section .head-row {
    align-items: end;
    margin-bottom: 30px;
}

.chhose-section .box-row-bg {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 50px 0;
}

.chhose-section .box-row-bg .row {
    row-gap: 40px;
}

.col-choose-box {
    border-right: solid 1px #ccc;
}

.col-choose-box:last-child {
    border: 0;
}

.chhosen-box {
    padding: 0 40px;
    text-align: center;
}

.chhosen-box img {
    max-width: 60px;
    margin-bottom: 32px;
}

.chhosen-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.chhosen-box .arrow-btn {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: solid 1px var(--main-color);
    color: #000;
    border-radius: 50%;
    margin-top: 24px;
}

.tab-btns-div {
    display: flex;
    align-items: center;
    column-gap: 16px;
    justify-content: center;
}

.tab-btns-div .tab-btn {
    padding: 10px 20px;
    background-color: transparent;
    color: #fff;
    border-radius: 5px;
    border: solid 1px #fff;
}

.tab-btns-div .tab-btn.active {
    background-color: #fff;
    color: #000;
}

.course-box img {
    height: 350px;
    width: 100%;
    border-radius: 15px 15px 0 0;
}

.course-box .content-box {
    padding: 32px;
    background-color: #fff;
    border-radius: 0 0 15px 15px;
}

.acedemic-section .head-row {
    margin-bottom: 40px;
}

.acedemic-section .box-row {
    row-gap: 24px;
}

.course-box {
    position: relative;
}

.course-box .content-box .category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 12px;
    background-color: #fff;
    border-radius: 30px;
    font-size: 14px;
    color: #000;
}

.course-box .content-box ul {
    display: flex;
    align-items: center;
    column-gap: 24px;
    list-style: none;
    padding: 0;
}

.course-box .content-box ul li {
    color: #000;
}

.course-box .content-box ul li i {
    color: var(--main-color);
    margin-right: 10px;
}

.course-box .content-box h3 {
    font-size: 22px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 16px;
    font-weight: 600;
}

.events-btn {
    margin-top: 200px;
}

.events-box-list {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.event-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.event-box .content-box {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    padding: 24px;
    background: linear-gradient(180deg, #AB0C2F00 42.36%, #AB0C2F 100%);
    justify-content: space-between;
}

.event-box .action-btn a {
    width: 40px;
    height: 40px;
    color: #000;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.event-box .content-box h3 {
    font-size: 24px;
    color: #fff;
}

.event-box .content-box ul {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 0;
    padding: 0;
    column-gap: 16px;
    list-style: none;
    color: #ffffffb3;
}

.video-btn-text a {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--main-color);
    font-size: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

footer {
    background-color: #161613;
    padding-top: 100px;
}

.footer-main-text .section-heading p {
    font-size: 18px;
    color: #FFFFFFB3;
}

.top-footer .top-row {
    padding-bottom: 60px;
}

.footer-contact-svg {
    padding-left: 100px;
}

.top-footer .mid-row {
    padding: 80px 0;
    border: solid 1px #ffffff14;
    border-left: 0 !important;
    border-right: 0 !important;
}

.footer-menus ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    list-style: none;
    column-gap: 32px;
    justify-content: end;
}

.footer-menus ul li a {
    color: #fff;
}

.footer-copyright p {
    color: #fff;
}

footer .bottom-row {
    padding: 32px 0;
}

.company-info-outer {
    display: flex;
    align-items: start;
    column-gap: 50px;
    justify-content: space-between;
}

.company-info-outer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-info-outer ul li a {
    color: #ffffffb3;
}

.location-text {
    color: #FFFFFFB3;
    font-size: 18px;
    width: 80%;
}

.footer-email-box {
    padding-left: 100px;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: end;
    border-left: solid 1px #ffffff14;
}

.footer-email-box form {
    width: 100%;
    border-bottom: solid 1px #FFFFFF33;
    display: flex;
    align-items: center;
}

.footer-email-box form input {
    background-color: transparent;
    color: #fff;
    border: 0;
    width: 100%;
    outline: none;
    font-size: 20px;
}

.footer-email-box form button {
    background-color: transparent;
    color: #fff;
    border: 0;
    font-size: 24px;
}

.video-section {
    height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-color: #16161380;
    background-blend-mode: color;
}

.video-btn-text h2 {
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 0;
}

.video-contact-info {
    display: flex;
    align-items: center;
    column-gap: 40px;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--main-color);
    padding: 14px 30px;
    border-radius: 10px;
    text-align: left;
}

.video-contact-info .info-spacer {
    width: 40px;
    text-align: center;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: var(--main-color);
    border-radius: 50%;
    font-weight: 700;
}

.video-contact-info .contact-box p {
    margin-bottom: 0px;
    color: #FFFFFFB3;
}

.video-contact-info .contact-box a {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

.contact-info-box {
    background-color: #161613;
    padding: 32px;
    color: #fff;
    border-radius: 8px;
}

.contact-info-box .icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
    background-color: var(--main-color);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 24px;
}

.contact-info-box h3 {
    font-size: 24px;
}

.contact-info-box p {
    color: #ccc;
    margin-bottom: 8px;
}

.contact-info-box .text span {
    font-size: 20px;
    font-weight: 500;
}

.col-form-outer {
    padding: 48px;
    border-radius: 8px;
    background-color: var(--bg-color);
}

.form-heading {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 24px;
}

.form-row .form-group {
    margin-bottom: 24px;
}

.form-row .form-group label {
    margin-bottom: 10px;
    font-weight: 500;
}

.form-row .form-group .form-control {
    background: transparent;
    border-color: #161613;
    padding: 12px 16px;
    border-radius: 6px;
}

.form-row .form-group .form-error {
    font-size: 14px;
    margin-top: 5px;
    color: #dc3545;
}

.img-box {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.img-box img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: all 0.3s;
}

.img-box img:hover {
    transform: scale(1.05);
}

.accordion-button {
    box-shadow: none !important;
    background-color: var(--main-color) !important;
    color: #fff !important;
}

.accordion-button.collapsed {
    background-color: #fff !important;
    color: #212529 !important;
}

.accordion {
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.tc-btn {
    display: flex;
    justify-content: end;
}

/* .box-row-bg {
    padding: 50px 0;
}

.chhosen-box {
    background: #ffffff;
    padding: 30px 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    height: 100%;
} */
/* FORCE PERFECT CIRCLE PROFILE IMAGE */
.profile-image {
    width: 140px !important;
    height: 140px !important;
    min-width: 140px !important;
    min-height: 140px !important;

    border-radius: 50% !important;
    overflow: hidden !important;

    margin: 0 auto 20px;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;

    display: block !important;
}

.profile-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;

    object-fit: cover !important;
    object-position: center top;

    border-radius: 50% !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;

    display: block !important;
}


.chhosen-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.chhosen-box h4,
.chhosen-box h6 {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.chhosen-box p {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}


.committee-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid #0d6efd;
}

.committee-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.committee-list li {
    padding: 15px 20px;
    margin-bottom: 12px;
    background: #f9f9f9;
    border-left: 3px solid #dee2e6;
    transition: all 0.3s ease;
}

.committee-list li:hover {
    border-left-color: #0d6efd;
    background: #ffffff;
}

.member-name {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: #212529;
}

.member-role {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin-top: 3px;
}

.navbar-brand.mobile {
    display: none;
}


@media(max-width:992px) {
    .top-contact-info ul {
        flex-wrap: wrap;
        row-gap: 12px;
        /* justify-content: center; */
    }

    .slider-item img {
        height: 450px;
    }

    .navbar-brand.mobile {
        display: block !important;
        max-width: 180px;
    }

    #navbarMain .navbar-brand {
        display: none;
    }

    .navbar-toggler {
        box-shadow: none !important;
    }

    /* .navbar-nav .dropdown-menu{
        border: solid 1px #d9d9d9;
    } */
    .banner-text-outer {
        flex-wrap: wrap;
    }

    .banner-text {
        top: 0;
        width: 100%;
        margin-top: 40px;
        padding: 30px;
        margin-bottom: 10px;
    }

    .banner-text h1 {
        font-size: 36px;
    }

    .about-left img {
        height: auto;
        width: 100%;
        position: static !important;
    }

    .about-left .exp-box {
        top: 0;
        position: static !important;
        margin: 24px 0;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .about-text .icon-box-outer {
        margin: 24px 0;
    }

    h3,
    .exp-row-bg .col-exp-box h3 {
        font-size: 24px;
    }

    .exp-row-bg .col-exp-box {
        border: 0;
        width: 50%;
    }

    .exp-row-bg {
        padding: 30px;
    }

    .exp-row-bg .exp-row {
        row-gap: 24px;
    }

    .pb-100 {
        padding-bottom: 40px;
    }

    .pt-100 {
        padding-top: 40px;
    }

    .video-section {
        height: 450px;
        background-position: center;
    }

    .video-contact-info {
        flex-direction: column;
        row-gap: 16px;
        position: static;
        transform: none;
        margin-top: 24px;
    }

    .events-btn {
        margin-top: 30px;
    }

    .events-sec .main-row,
    footer .bottom-row {
        row-gap: 24px;
    }

    footer {
        padding-top: 50px;
    }

    .footer-contact-svg {
        text-align: center;
        padding: 0;
        display: none;
    }

    .top-footer .top-row {
        padding-bottom: 30px;
    }

    .top-footer .mid-row {
        padding: 40px 0;
    }

    .footer-email-box {
        padding: 0;
        border: 0;
        margin-top: 24px;
    }

    .footer-menus ul,
    .company-info-outer {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-copyright p {
        text-align: center;
    }

    section {
        overflow: hidden;
    }

    .company-info-outer .company-info,
    .location-text {
        width: 100%;
    }

    .top-header .top-row {
        row-gap: 16px;
    }
}

@media(max-width:576px) {
    h3 {
        font-size: 20px;
    }

    .location-text {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .slider-item img {
        height: 220px;
        object-fit: cover;
    }
}