@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --theme-red: #B41D26;
    --theme-light-red: #F4DDDE;
    --theme-grey: #353945;
    --theme-off-white: #F5F5F5;
    --theme-yellow: #FEDE34;
    --theme-btn-grey: #EAEAEA;
}

.red-btn {
    text-decoration: none;
    background-color: var(--theme-red);
    color: #fff;
    border: 1px solid var(--theme-red);
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.grey-btn {
    text-decoration: none;
    background-color: var(--theme-btn-grey);
    color: black;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    border: none;
}

.grey-btn.active {
    background-color: var(--theme-red);
    color: #fff;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    border: none;
}

.red-btn:hover {
    background-color: white;
    color: var(--theme-red);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.red-btn-outline {
    text-decoration: none;
    background-color: white;
    color: var(--theme-red);
    border: 1px solid var(--theme-red);
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.red-btn-outline:hover {
    background-color: var(--theme-red);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.red-btn-outline.active {
    background-color: var(--theme-red);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.text-heighlight {
    color: var(--theme-red) !important;
}

.text-h-yellow {
    color: var(--theme-yellow) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.w-max-c {
    width: max-content !important;
}

/* 
body {
    max-width: 1440px;
} */

body,
html {
    overflow-x: hidden;
}

.section-heading {
    font-size: 28px;
    font-weight: bold;
    color: black;
    line-height: 60px;
}

.section-tagline {
    font-size: 14px;
    font-weight: regular;
    color: black;
    line-height: 22px;
}


.header-top {
    background-color: var(--theme-grey);
    padding: 10px 80px;
}

.header-top * {
    font-size: 14px;
    color: white;
    text-decoration: none;
}



.header-top a img {
    width: 20px;
}

.top-links {
    display: flex;
    justify-content: end;
    gap: 20px;
}


.main-header {
    height: 80px;
    padding: 10px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 9px rgba(128, 128, 128, 0.445);
    z-index: 99999;
    background-color: white;


}

header {
    z-index: 999999;
}

.main-header img {
    height: 60px;
}

.main-header nav {
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.main-header nav a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-caret {
    width: 20px;
    height: 20px;
    transition: transform .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-caret img {
    width: 50%;
}



.mega-menu {
    min-height: 70vh;
    position: absolute;
    left: 0;
    top: 122px;
    width: 100%;
    transition: top 0.3s ease-in-out;
    display: none;
    /* background-color: var(--theme-off-white); */
    background-color: white;
    padding: 30px 80px;
    z-index: 999;
    box-shadow: 0px 10px 9px rgba(128, 128, 128, 0.247);
    border-radius: 0px 0px 16px 16px;
}

.mega-menu .menu-title {
    font-size: 14px;
    color: var(--theme-red);
    border-bottom: 2px var(--theme-red) solid;
    padding-bottom: 10px;
}

.mega-menu .menu-links {
    display: flex;
    flex-direction: column;

}

.mega-menu-link {
    font-size: 12px;
    text-decoration: none;
    color: black;
    /* border-bottom: 0.5px gray solid; */
    padding: 5px 0px;
    transition: 0.3s;
}

.mega-menu-link:hover {
    padding-left: 12px;
}

.mega-menu-link-heading {
    font-size: 14px;
    text-decoration: none;
    color: black;
    /* border-bottom: 0.5px gray solid; */
    padding: 10px 0px;
    transition: 0.3s;
    font-weight: 700;
}

.sub-menu {
    padding-left: 12px;
}

.sub-menu:hover {
    padding-left: 24px;
}

/* .mega-menu .menu-links a:nth-of-type(1) {
    border-top: 0.5px solid gray;
} */


#menuIcon {
    display: none;
}

.mobile-nav {
    display: none;
}

/* Banner CSS */

.banner-slide .row {
    padding: 50px 80px;
}

.banner-upper-text {
    font-size: 14px;
    background-color: var(--theme-yellow);
    color: black;
    border-radius: 4px;
    padding: 5px 10px;

}

.banner-heading {
    font-size: 48px;
    font-weight: 700;
    margin-top: 15px;
}

.banner-para {
    font-size: 16px;
}

.banner-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 100% !important;
    background-color: var(--theme-red) !important;
}

/* Banner CSS */


/* section setting  */
section {
    padding: 50px 80px;
}

/* section setting  */

.nav-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

}

.red-devider {
    height: 2px;
    background-color: var(--theme-red);
    border: none;
    opacity: 1;
}

.course-box {
    padding: 25px;
    border-radius: 10px;
    border: 1px var(--theme-btn-grey) solid;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-box img {
    width: 100%;
}

.course-name {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.course-desc {
    font-size: 14px;
}

.course-details {
    font-size: 16px;
    font-weight: 600;
}


/* wcu  */
.wcu-box {
    padding: 25px;
    border-radius: 10px;
    border: 1px var(--theme-btn-grey) solid;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.wcu-img-box {
    background-color: var(--theme-light-red);
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 4px;
}

.wcu-name {
    font-size: 20px;
}

.wcu-desc {
    font-size: 14px;
}

/* wcu  */


/* Counters  */
.counters .count {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.count h2 {
    text-align: center;
    color: var(--theme-red);
    font-size: 32px;
    font-weight: 700;
}

.count p {
    font-size: 16px;
}

/* Counters  */


/* ngo  */


.ngo {
    background: url('https://unremunerative-precongenial-carlyn.ngrok-free.dev/nsp/assets/img/bgg.png');
    min-height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    row-gap: 20px;
}

.ngo-title {
    font-size: 42px;
    line-height: 20px;
    color: white;

}

.ngo-para {
    font-size: 16px;
    line-height: 20px;
    color: white;
}

/* ngo  */


/* job card  */

.job-card {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    min-height: 250px;
    border: 1px var(--theme-light-red) solid;
}

.job-details .avtar {
    background-color: var(--theme-light-red);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    color: var(--theme-red);
    display: flex;
    justify-content: center;
    align-items: center;
}

.job-title h3 {
    font-size: 18px;
}

.job-title span {
    font-size: 12px;
}

.job-details {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.job-posted-icon {
    background-color: var(--theme-light-red);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: var(--theme-red);
    display: flex;
    justify-content: center;
    align-items: center;
}

.job-posted-title {
    font-size: 13px;
}

.job-posted-date {
    font-size: 14px;
    font-weight: 700;

}

.job-posted {
    display: flex;
    align-items: center;
    gap: 15px;
}

.job-posted-on {
    padding: 5px;
    display: flex;
    flex-direction: column;
}

/* job card  */


/* Affilated By  */
#affilated-by-swiper-container {
    width: 100%;
    overflow: hidden;
}

.affilated-by-swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
}

.affilated-by-swiper-slide img {
    height: 60px;
    width: auto !important;
}

.blt-box-row {
    width: 80% !important;
    margin: auto;
}

.blt-box img {
    width: 90% !important;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);

}

/* Affilated By  */
/* Achievements  */
#achievements-swiper-container {
    width: 100%;
    overflow: hidden;
}

.achievements-swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    padding: 20px;
}

/* Achievements By  */



/* expert-trainer  */
#expert-trainer-swiper-container {
    width: 100%;
    overflow: hidden;
}

.expert-trainer-swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    padding: 20px;
}

.expert-trainer-swiper-slide .trainer-name {
    color: var(--theme-red);
    font-size: 16px;
    line-height: 22px;
    margin: 10px 0px;

}

.expert-trainer-swiper-slide .desg {
    color: #ADAAAA;
    font-size: 16px;
    line-height: 22px;

}

.expert-trainer-swiper-slide .para {
    font-size: 14px;
    line-height: 20px;
    text-align: center;

}

/* expert-trainer  */

/* students-review  */
#students-review-swiper-container {
    width: 100%;
    overflow: hidden;
}

.students-review-swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    /* border: 1px solid #ddd; */
    border-radius: 10px;
    /* background: #fff; */
    padding: 10px;
}

/* students-review  */
.testimonial-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.5rem;
    /* max-width: 340px; */
    width: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.tc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F5C400;
    color: #7A5E00;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tc-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tc-name {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.tc-role {
    margin: 0;
    font-size: 13px;
    color: #888;
}

.tc-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.tc-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}


/* blog  */
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.blog-content table th,
.blog-content table td {
    border: 1px solid #dee2e6;
    padding: 10px 14px;
    text-align: left;
    vertical-align: middle;
}

.blog-content table thead th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
}

.blog-content table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.blog-content table tbody tr:hover {
    background-color: #e9ecef;
}

#blog-swiper-container {
    width: 100%;
    overflow: hidden;
}

.blog-swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    /* border: 1px solid #ddd; */
    border-radius: 10px;
    /* background: #fff; */
    padding: 10px;
}

.blog-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    /* max-width: 320px; */
    width: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.blog-sidebar-title {
    font-size: 12px;
}

.blog-content img {
    border-radius: 8px !important;
}

.author-card {
    border: 1px solid #FFDBDB;
    border-radius: 12px;
    padding: 18px 22px;
    background: #FCF5F6;
    transition: .3s;
}

.author-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.author-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.author-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #d8d8d8;
    flex-shrink: 0;
}

.author-info h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.author-meta {
    margin-top: 4px;
    color: #666;
    font-size: 12px;
}

.author-social {
    display: flex;
    gap: 12px;
}

.author-social a {
    color: #444;
    font-size: 18px;
    transition: .3s;
}

.author-social a:hover {
    color: #0d6efd;
}

.author-description {
    margin: 18px 0 8px;
    color: #333;
    line-height: 1.7;
    font-size: 13px;
}

.author-link {
    color: #1f4fff;
    text-decoration: none;
    font-weight: 500;
}

.author-link:hover {
    text-decoration: underline;
}

.bc-thumb {
    width: 100%;
    height: 175px;
    overflow: hidden;
    position: relative;
}

.bc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bc-placeholder {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    border-bottom: 1px dashed #ddd;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bc-placeholder-text {
    font-size: 13px;
    color: #aaa;
    font-weight: 500;
}

.bc-placeholder-size {
    font-size: 11px;
    color: #ccc;
}

.bc-body {
    padding: 14px 16px 16px;
}

.bc-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bc-tag {
    background: #EAF3FF;
    color: #1a6bb5;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #c5ddf7;
}

.bc-read {
    font-size: 12px;
    color: #888;
}

.bc-heading {
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

.bc-excerpt {
    margin: 0 0 12px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.55;
}

.bc-footer {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bc-author {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.bc-dot {
    font-size: 12px;
    color: #bbb;
}

.bc-date {
    font-size: 12px;
    color: #888;
}

/* blog  */

/* FAQ  */
.faq-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.faq-wrap {
    width: 70%;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 768px) {
    .faq-wrap {
        width: 100%;
    }
}

.faq-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease;
}

.faq-item.active {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.faq-q {
    width: 100%;
    background: #fff;
    border: none;
    outline: none;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
}

.faq-q span {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
    transition: color 0.2s;
}

.faq-item.active .faq-q span {
    color: #B41D26;
}

.faq-q:hover span {
    color: #B41D26;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-a {
    /* max-height: 300px; */
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease;
}

.faq-a.closed {
    max-height: 0;
    opacity: 0;
}

.faq-a-inner {
    padding: 0 18px 16px;
}

.faq-a-inner p {
    margin: 0;
    font-size: 13.5px;
    color: #555;
    line-height: 1.65;
}

/* FAQ  */



/* Footer  */
.sf-footer {
    background: #fff;
    font-family: sans-serif;
    border-top: 1px solid #e5e5e5;
    width: 100%;
    padding: 50px 80px 10px 80px;
}

.sf-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
    gap: 32px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.sf-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.sf-logo-text {
    display: flex;
    flex-direction: column;
}

.sf-logo-hi {
    font-size: 15px;
    font-weight: 700;
    color: #B41D26;
    line-height: 1.2;
}

.sf-logo-sub {
    font-size: 10px;
    color: #888;
}

.sf-store-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-swiper-slide {
    height: auto;
}

.blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bc-thumb {
    flex-shrink: 0;
}

.bc-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bc-excerpt {
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.bc-footer {
    margin-top: auto;
}

.blog-card {
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
}


.sf-store-label {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.sf-store-label span {
    font-size: 9px;
    color: #ccc;
}

.sf-store-label strong {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

.sf-col-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #B41D26;
    display: inline-block;
}

.sf-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sf-links a {
    font-size: 13px;
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
}

.sf-links a:hover {
    color: #B41D26;
}

.sf-contact {
    list-style: none;
    margin: 0 0 14px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sf-contact li {
    font-size: 12.5px;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.5;
}

.sf-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.sf-social-label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.sf-social {
    display: flex;
    gap: 6px;
}

.sf-soc-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: #1877F2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.sf-tw {
    background: #1DA1F2;
}

.sf-yt {
    background: #FF0000;
}

.sf-in {
    background: #0A66C2;
}

.sf-about {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.sf-about p {
    margin: 0;
    font-size: 12.5px;
    color: black;
    line-height: 1.7;
    text-align: center;
}

.sf-copy {
    padding: 10px 40px 0px 10px;
    /* border-bottom: 1px solid #eee; */
}

.sf-copy p {
    margin: 0;
    font-size: 12px;
    color: black;
    text-align: center;
}

.sf-areas {
    background: var(--theme-grey);
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 6px;
    text-align: center;
}

.sf-areas-label {
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
}

.sf-areas span {
    font-size: 12.5px;
    color: #fff;
}

.sf-sep {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {




    .sf-footer {
        padding: 30px;
    }

    .sf-top {
        grid-template-columns: 1fr;
        padding-bottom: 25px;
        gap: 24px;
    }

    .sf-store-btn {
        width: 100%;
    }

    .sf-about {
        padding: 16px 0px;
    }

    .sf-about p {
        text-align: justify;
    }

    .sf-copy {
        padding: 12px 0px;
    }

    .sf-areas {
        padding: 10px 30px;
    }
}

/* Footer  */


/* _________________________________About Page Css__________________________________________ */


.about-page-hero-banner {
    min-height: 317px;
    background: url(../img/about-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/* Timeline  */


/* ===== Timeline Section ===== */
.timeline-wrap {
    /* max-width: 760px; */
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(#FFFFFF, #A82524, #B41D26, #FFFFFF);
    transform: translateX(-50%);
}

.timeline .item {
    position: relative;
    width: 50%;
    padding: 0 50px 70px;
}

.timeline .item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline .item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline .dot {
    position: absolute;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--theme-red);
}

.timeline .item:nth-child(odd) .dot {
    right: -9px;
}

.timeline .item:nth-child(even) .dot {
    left: -9px;
}

.timeline .card {
    display: inline-block;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 24px 28px;
    max-width: 100%;
    text-align: left;
}

.timeline .year {
    color: var(--theme-red);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: 0.5px;
}

.timeline .title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--theme-grey);
    margin: 0 0 10px;
}

.timeline .desc {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6b6f78;
    margin: 0;
}

.view-more-wrap {
    text-align: center;
    margin-top: 10px;
}

/* Desktop: hide items beyond the limit until expanded */
.timeline .item.is-hidden {
    display: none;
}




/* Mission Vission  */
.mv {
    border-radius: 16px;
}

.mv-para {
    font-size: 16px;
}

/* Mission Vission  */

.boxes {
    max-width: 800px;
    margin: auto;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    /* background-color: blue; */
    position: relative;
    z-index: 999;
}

.boxes-hr {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 2px;
    background-color: var(--theme-red);
    opacity: 1;
    border-color: var(--theme-red);
    z-index: -1;
}

.box {
    width: 150px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.box-icon {
    background-color: var(--theme-red);
    width: 80px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.box span {
    font-size: 12px;
}

.boxes-para {
    margin-top: 50px;
    background-color: var(--theme-light-red);
    padding: 15px;
    text-align: center;
    border: 1px var(--theme-red) solid;
    border-radius: 16px;
}

.ls-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px 32px;
    background: #fff;
    font-family: sans-serif;

    box-sizing: border-box;
}

.modal {
    --bs-modal-margin: 1.75rem;
}

body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

/* All Modals */
.modal-dialog {
    max-width: 600px;
}

/* Mobile */
@media (max-width: 767.98px) {

    .modal-dialog {
        width: 95%;
        max-width: 95%;
        margin: 1rem auto;
    }

    .modal-content {
        border-radius: 12px;
    }

    .modal-body {
        padding: 1.25rem;
    }

    .modal-header {
        padding: 1rem 1.25rem;
    }

    .modal-footer {
        padding: 1rem 1.25rem;
    }
}

form label {
    font-size: 14px !important;
}

.modal-header {
    padding-bottom: 10px;
}

.modal-header p {
    font-size: 12px;
}

.ls-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.ls-img-wrap {
    flex-shrink: 0;
    width: 120px;
}

.ls-img-placeholder {
    width: 120px;
    height: 140px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ls-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.ls-content {
    flex: 1;
}

.ls-quote {
    margin: 0 0 12px 0;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.45;
}

.ls-desc {
    margin: 0 0 14px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

.ls-name {
    margin: 0 0 2px 0;
    font-size: 14px;
    font-weight: 700;
    color: #B41D26;
}

.ls-role {
    margin: 0;
    font-size: 12.5px;
    color: #888;
}

@media (max-width: 600px) {
    .ls-wrap {
        padding: 16px;
        gap: 16px;
    }

    .ls-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 16px;
        gap: 16px;
    }

    .ls-img-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .ls-img-placeholder {
        width: 110px;
        height: 120px;
    }

    .ls-quote {
        font-size: 14px;
    }

    .ls-desc {
        font-size: 12.5px;
    }
}

/* ===== Mobile: Horizontal Timeline ===== */
@media (max-width: 768px) {
    .timeline-wrap {
        max-width: 100%;
        padding: 0;
    }

    .view-more-wrap {
        display: none;
    }

    .timeline .item.is-hidden {
        display: flex !important;
    }

    .timeline {
        display: flex;
        position: relative;
        overflow-x: auto;
        padding: 30px 24px 40px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .timeline-line {
        left: 0;
        right: 0;
        top: 50%;
        bottom: auto;
        width: auto;
        height: 2px;
        min-width: 100vh;
        transform: translateY(-50%);
    }

    .timeline .item {
        flex: 0 0 260px;
        width: 260px;
        min-height: 230px;
        padding: 0 16px;
        scroll-snap-align: center;
        text-align: left !important;
        left: auto !important;
    }

    .timeline .item:not(:last-child) {
        margin-right: 10px;
    }

    .timeline .card {
        display: block;
        width: 100%;
        max-width: none;
        text-align: left;
        margin-bottom: 34px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    }

    .timeline .dot {
        position: absolute;
        top: auto;
        bottom: -9px;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }

    .timeline .item:nth-child(odd) {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .timeline .item:nth-child(odd) .card {
        order: 1;
        margin-bottom: 0;
        margin-top: 34px;
    }

    .timeline .item:nth-child(odd) .dot {
        top: -9px;
        bottom: auto;
    }

    .timeline .item:nth-child(even) {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .boxes-hr {
        display: none;
    }

    .boxes {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .box span {
        font-size: 14px;
    }
}

/* Timeline  */

/* _________________________________About Page Css__________________________________________ */

/* __________________________________Course Page_______________________________________________  */



.course-hero-banner {
    min-height: 350px;
    background: url(../img/course-hero-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
}

.course-hero-banner h1 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-top: 20px;
}

.course-hero-banner p {
    font-size: 16px;
    color: white;
}

.badge-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 6px;
    /* padding: 10px 20px; */
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 16px 4px 0px;
}

.badge-item span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-family: sans-serif;
    white-space: nowrap;
}


.course-featured-image {
    display: flex;
    justify-content: end;
}

.hero-course-left {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}


.course-overview-para {
    font-size: 14px;
}

.course-form div h2 {
    font-size: 20px !important;
    text-align: center;
}

.course-form div p {
    font-size: 14px !important;
    text-align: center;
}

.course-form {
    border-radius: 16px !important;
}

.course-form .card-body {
    border-radius: 16px;
}

.tool-box {
    aspect-ratio: 1 / 1;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
    text-align: center;
    transition: .3s;
    cursor: pointer;
}

.tool-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.tool-box img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 10px;
}

.tool-box p {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    color: #222;
}

@media (max-width:767px) {

    .tool-box {
        padding: 8px;
    }

    .tool-box img {
        width: 38px;
        height: 38px;
        margin-bottom: 8px;
    }

    .tool-box p {
        font-size: 11px;
    }

}

.w-90 {
    width: 90%;
}

.con {
    /* max-width: 560px; */
    width: 100%;
    gap: 0;
}

.item {
    display: flex;
    align-items: flex-start;
    margin: 0 !important;
    padding: 0;
    gap: 15px;
    /* padding-bottom: 36px; */
}

.item:last-child {
    padding-bottom: 0;
}

.left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #b41d26;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.dashed-line {
    width: 2px;
    min-height: 36px;
    border-left: 2px dashed #b41d26;
    /* margin-top: 4px; */
    flex: 1;
}

.item:last-child .dashed-line {
    display: none;
}

/* .content {
        padding-top: 10px;
      } */

.content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.content p {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
}

.re_desg-meant {
    padding: 50px !important;
    background-color: #fef2f2;
}

.rcv {
    padding: 50px !important;
}

.cert-section .col-md-7 p {
    font-size: 14px !important;
}

sparc-roles-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.sparc-roles-container {
    max-width: 1100px;
    margin: 0 auto;
}

.sparc-roles-heading {
    text-align: center;
    margin-bottom: 36px;
}

.sparc-roles-heading h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.sparc-roles-heading p {
    font-size: 15px;
    color: #777;
    margin: 0;
}

.sparc-roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
}

.sparc-role-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.2s, transform 0.2s;
    cursor: default;
}

.sparc-role-card:hover {
    transform: translateY(-2px);
}

.sparc-role-card:hover .sparc-role-icon {
    opacity: 0.9;
}

.sparc-role-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sparc-role-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sparc-role-name {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
}

/* Color variants */
.sparc-role-card.blue {
    border-color: #e6f1fb;
}

.sparc-role-card.blue:hover {
    border-color: #378ADD;
}

.sparc-role-card.blue .sparc-role-icon {
    background: #e6f1fb;
}

.sparc-role-card.blue svg {
    stroke: #185FA5;
}

.sparc-role-card.purple {
    border-color: #eeedfe;
}

.sparc-role-card.purple:hover {
    border-color: #7F77DD;
}

.sparc-role-card.purple .sparc-role-icon {
    background: #eeedfe;
}

.sparc-role-card.purple svg {
    stroke: #534AB7;
}

.sparc-role-card.amber {
    border-color: #faeeda;
}

.sparc-role-card.amber:hover {
    border-color: #BA7517;
}

.sparc-role-card.amber .sparc-role-icon {
    background: #faeeda;
}

.sparc-role-card.amber svg {
    stroke: #854F0B;
}

.sparc-role-card.green {
    border-color: #eaf3de;
}

.sparc-role-card.green:hover {
    border-color: #639922;
}

.sparc-role-card.green .sparc-role-icon {
    background: #eaf3de;
}

.sparc-role-card.green svg {
    stroke: #3B6D11;
}

.sparc-role-card.red {
    border-color: #fcebeb;
}

.sparc-role-card.red:hover {
    border-color: #E24B4A;
}

.sparc-role-card.red .sparc-role-icon {
    background: #fcebeb;
}

.sparc-role-card.red svg {
    stroke: #A32D2D;
}

@media (max-width: 768px) {
    .badge-bar {
        width: 100%;
        padding: 10px 12px;
        gap: 4px 0;
    }

    .badge-item {
        padding: 5px 12px;
        font-size: 14px;
    }

    .badge-divider {
        display: none;
    }

    .course-hero-banner {
        min-height: 350px;
        background: url(../img/course-hero-banner.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top right;

    }

    .hero-course-left {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .course-hero-banner h1 {
        font-size: 28px;
        font-weight: 700;
        color: white;
        margin-top: 20px;
        text-align: center;
    }

    .course-hero-banner p {
        font-size: 16px;
        color: white;
        text-align: center;
    }

    .course-featured-image {
        margin-top: 20px;
    }

    .course-form {
        margin-top: 20px;
    }

    .re_desg-meant {
        padding: 20px !important;
    }

    .dashed-line {
        width: 2px;
        min-height: 65px;
        border-left: 2px dashed #b41d26;
        /* margin-top: 4px; */
        flex: 1;
    }

    .re_desg-meant .re_desg-section-title,
    .re_desg-meant .re_desg-section-para {
        text-align: center !important;
    }

    .re_desg-meant .re_desg-section-para {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .rcv {
        padding: 20px !important;
    }

    .btx {
        margin-top: 20px;
    }
}

.profile-hero-section {
    background: url(../img/profile-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.profile-picture {
    background-color: white;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.profile-picture img {
    width: 100%;
}

.profile-hero-section .col-md-7 {
    display: flex;
    gap: 20px;
}

.profile-hero-section h2 {
    font-size: 24px;
}

.profile-hero-section p {
    font-size: 14px;
}

.profile-details {
    display: flex;
    flex-direction: column;
}

@media (max-width:768px) {
    .profile-hero-section .col-md-7 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .profile-hero-section h2 {
        text-align: center;
    }

    .profile-hero-section p {
        text-align: center;
    }

    .icon-box-profile {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .blog-count {
        text-align: center;
        justify-content: center !important;
        margin-top: 20px;
    }
}

/* __________________________________Course Page_______________________________________________  */



/* Blog Page CSS */

.blog-hero-section {
    background-color: #FEF2F2;
}

.search-blog {
    background-color: white;
    margin: auto;
    max-width: 500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    border: 1px rgba(128, 128, 128, 0.438) solid;
}

.search-blog input {
    flex: 1;
    border: none;
    outline: none;
    padding-left: 10px;
}

.search-icon {
    background-color: var(--theme-red);
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.search-icon:hover {
    opacity: 0.5;
}

.categories-wrapper {
    position: relative;
}

.categories-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.categories {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    width: max-content;
    padding-right: 45px;
    /* space for arrow */
}

.categories .red-btn-outline {
    flex: 0 0 auto;
    white-space: nowrap;
}

/* Scroll Hint */

.scroll-indicator {
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    pointer-events: none;
    color: #d71920;

    background: linear-gradient(to left,
            #fff 35%,
            rgba(255, 255, 255, .85) 55%,
            rgba(255, 255, 255, 0) 100%);

    transition: .3s;
}

.scroll-indicator svg {
    animation: scrollArrow 1.3s ease-in-out infinite;
}

@keyframes scrollArrow {

    0%,
    100% {
        transform: translateX(0);
        opacity: .45;
    }

    50% {
        transform: translateX(6px);
        opacity: 1;
    }

}

/* Hide on desktop */
@media(min-width:992px) {

    .scroll-indicator {
        display: none;
    }

}

.blog-title {
    font-size: 30px;
    font-weight: 600;
}

.blog-expert {
    font-size: 16px;
    font-style: italic;
}

.blog-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #e5e5e5;
}

.blog-meta-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #444;
    font-size: 13px;
    font-weight: 500;
}

.meta-item svg {
    flex-shrink: 0;
    color: #B41D26;
}

.meta-item span {
    white-space: nowrap;
}

/* Social Icons */
.blog-meta-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.social-icon:hover {
    opacity: 0.85;
}

.social-icon.fb {
    background-color: #1877F2;
}

.social-icon.tw {
    background-color: #1DA1F2;
}

.social-icon.yt {
    background-color: #FF0000;
}

.social-icon.ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon svg {
    fill: #fff;
}

.blog-side-bar {
    border: none !important;
}

.cat-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 20px 18px;
}

.cat-card h6 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9a9a9a;
    margin: 0 0 10px 0;
}

.cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cat-list li {
    border-bottom: 1px solid #f0f0f0;
}

.cat-list li:last-child {
    border-bottom: none;
}

.cat-list a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 2px;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14.5px;
    border-bottom: 2px solid transparent;
    transition: padding-left .2s ease, color .2s ease, border-color .2s ease;
}

.cat-list a .ic {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-right: 6px;
    display: inline-flex;
    align-items: center;
}

.cat-list a .ic svg {
    width: 16px;
    height: 16px;
    display: block;
}

.cat-list a:hover {
    padding-left: 14px;
    color: #B52928;
    border-bottom-color: #B52928;
}

.cat-list a.active {
    color: #B52928;
    font-weight: 600;
    border-bottom-color: #B52928;
    /* padding-left: 14px; */
}

.cat-list a .label {
    flex: 1;
    text-align: left;
}

.cat-list a .count {
    font-size: 12.5px;
    color: #9a9a9a;
}

.cat-list a.active .count {
    color: #B52928;
}

@media (max-width:768px) {
    .blog-title {
        font-size: 28px;
        font-weight: 600;
    }

    .blog-expert {
        font-size: 14px;
        font-style: italic;
    }

    .blog-meta-bar {
        gap: 8px;
    }

    .blog-meta-left {
        gap: 12px;
    }

    .meta-item {
        font-size: 12px;
    }
}

/* Blog Page CSS */





























@media (max-width:768px) {
    .search-blog {
        max-width: 500px;
    }

    .search-blog input {
        width: 90% !important;
        flex: none;
    }

    .main-header {
        padding: 10px 20px;

    }

    .main-header nav {
        display: none;
    }

    #menuIcon,
    #closeMenu {
        display: block;
        width: 30px;
    }

    .mobile-nav {
        display: block;
        background-color: var(--theme-off-white);
        position: fixed;
        top: 0;
        right: -100%;
        overflow-y: scroll;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        transition: 0.3s;
        z-index: 9999;
    }

    .mobile-mega-menu-toggle {
        display: block;
    }

    .mobile-mega-menu-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
    }

    .mobile-nav a {
        text-decoration: none;
        color: black;
        padding: 10px 15px;
        border-bottom: 1px rgba(128, 128, 128, 0.459) solid;
        font-weight: 500;
    }

    .mobile-mega-menu-content-inner a {

        padding-left: 30px;
    }

    .mobile-mega-menu-item a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-mega-menu-item a .caret {
        width: 10px;
        height: 10px;
    }

    .mobile-menu-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
        border-bottom: 1px rgba(128, 128, 128, 0.459) solid;
        padding-right: 20px;
    }

    .mobile-menu-top img {
        height: 60px;
    }

    .mobile-menu-top a {
        text-decoration: none;
        border: none;
    }

    /* Banner CSS */
    .banner-slide .col-md-6 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .banner-slide .row {
        padding: 30px 15px !important;
    }

    .banner-upper-text {
        font-size: 14px;
        background-color: var(--theme-yellow);
        color: black;
        border-radius: 4px;
        padding: 5px 10px;
        text-align: center;

    }

    .banner-heading {
        font-size: 36px;
        font-weight: 700;
        margin-top: 15px;
        text-align: center;
    }

    .banner-para {
        font-size: 16px;
        text-align: center;
    }

    .banner-img {
        margin-top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .banner-img img {
        width: 100%;
        margin-bottom: 20px;
    }

    .carousel-indicators button {
        width: 10px !important;
        height: 10px !important;
        border-radius: 100% !important;
        background-color: var(--theme-red) !important;
    }

    /* Banner CSS */


    /* Section Setting  */

    section {
        padding: 30px 15px !important;
    }

    /* Section Setting  */
    .section-heading {
        font-size: 22px;
        font-weight: bold;
        color: black;
        line-height: 30px;
    }

    .section-tagline {
        font-size: 12px;
        font-weight: regular;
        color: black;
        line-height: 20px;
    }

    .wcu-name {
        font-size: 18px;
    }

    .wcu-desc {
        font-size: 14px;
    }

    /* Counters  */
    .counters .count {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

    }

    .count h2 {
        text-align: center;
        color: var(--theme-red);
        font-size: 24px;
        font-weight: 700;
    }

    .count p {
        font-size: 14px;
        text-align: center;
    }

    /* Counters  */


    /* ngo  */


    .ngo {
        padding: 0;
        row-gap: 10px;
    }

    .ngo-title {
        font-size: 25px;
        line-height: 36px;
        color: white;
        text-align: center;
        width: 95%;
    }

    .ngo-para {
        font-size: 14px;
        line-height: 20px;
        color: white;
        text-align: center;
    }

    /* ngo  */

    .blt-box-row {
        width: 100% !important;
        margin: auto;
    }

    .blt-box img {
        width: 100% !important;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);

    }
}