body {
    font-family: var(--bd-ff-poppins-sans);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--bd-ff-bebas-sans) !important;
}

li {
    list-style: none !important;
}

h3,
h4,
h5 {
    letter-spacing: 0.8px;
}

.text-abps {
    color: var(--tx-abps-primary-color) !important;
}

.rel {
    position: relative;
}

.img {
    width: 100%;
    display: block;
}

.col_sm1 {
    width: 100%;
    display: block;
}

.top {
    width: 90%;
    margin: 0 auto;
    max-width: 1300px;
}

body.loading {
    overflow: hidden;
    overflow: hidden;
    height: 100vh !important;
}

/* #content,
.home {
    z-index: -1;
    position: relative;
} */

.section-cont p {
    font: 400 16px var(--bd-ff-poppins-sans);
    color: var(--bd-black);
    text-align: justify;
}

.section-cont strong {
    font-size: 16px !important;
    letter-spacing: -0.6px !important;
    color: #9f2f26;
}

.wel_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 72px;
    align-items: center;
}

.wel_flex2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    gap: 72px;
    align-items: center;
}

.col_sm2 {
    width: 50%;
}

.col_sm8 {
    width: 40%;
}

.col_sm88 {
    width: 53%;
}

p {
    font-size: 16px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px dashed #e7b909;
    padding-top: 30px;
    margin-top: 30px;
}

.flex2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 30px;
    /* margin-top: 30px; */
    align-items: center;
}

.col_sm3 {
    width: 31%;
}

.wel_txt {
    width: fit-content !important;
}

.wel_txt:hover h3::before {
    animation: widthAnim 1s linear 0s 1 forwards;
}

@keyframes widthAnim {
    from {
        width: 0;
        border-bottom-color: #e1b428;
    }

    to {
        width: 100%;
        border-bottom-color: #e1b428;
    }
}

.wel_txt h3 {
    color: #a51c30;
    /* -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #a51c30; */
    font-size: 60px;
    line-height: 120%;
    text-align: center;
    position: relative;
    letter-spacing: 1px;
}

.wel_txt h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 1px solid #00000041;
}

.wel_txt p {
    text-align: center;
}

.bg_img1 {
    background-image: url(../images/bg-img1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* ── BACK TO TOP BUTTON ── */
.btt-wrap {
    position: fixed;
    bottom: 24px;
    right: 40px;
    z-index: 100;
    opacity: 0;
    transform: translateY(12px) scale(0.75);
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(.34, 1.56, .64, 1), transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.btt-wrap.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.btt-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    display: block;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.btt-btn:active {
    transform: scale(0.93)
}

.btt-svg {
    display: block;
    width: 52px;
    height: 52px;
    overflow: visible
}

/* pulse ring */
.pulse-ring {
    fill: none;
    stroke: #8B1A1A;
    stroke-width: 1.5;
    r: 26px;
    cx: 26px;
    cy: 26px;
    opacity: 0;
    transform-origin: 26px 26px;
}

.btt-wrap.show .pulse-ring {
    animation: pulseRing 2.2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.6
    }

    80% {
        transform: scale(1.65);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 0
    }
}

/* main circle */
.main-circle {
    fill: #8B1A1A;
    transition: fill 0.2s
}

.btt-btn:hover .main-circle {
    fill: #6B1414
}

/* progress track */
.prog-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.18);
    stroke-width: 2.5
}

.prog-fill {
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 150.8;
    stroke-dashoffset: 150.8;
    transform: rotate(-90deg);
    transform-origin: 26px 26px;
    transition: stroke-dashoffset 0.12s linear;
}

/* arrow */
.arrow-g {
    transform: translateY(0px);
    transition: transform 0.2s ease;
    transform-origin: 26px 26px;
}

.btt-btn:hover .arrow-g {
    transform: translateY(-2px)
}

.arr {
    stroke: #fff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none
}

/* tooltip */
.btt-tip {
    position: absolute;
    right: 56px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    background: rgba(26, 26, 26, 0.85);
    color: #fff;
    font-size: 11px;
    font-family: sans-serif;
    padding: 5px 10px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    letter-spacing: 0.5px;
}

.btt-wrap.show .btt-btn:hover+.btt-tip,
.btt-wrap.show:hover .btt-tip {
    opacity: 1
}

/* .col_sm1{
background: url(https://craftohtml.themezaa.com/images/demo-marketing-dot.svg);
} */

.main-header .logo a img {
    width: 220px;
    height: auto;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-section {
    height: 100vh;
}

.cstm-btn.btn-border {
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    background: transparent;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    min-width: 44px;
    min-height: 44px;
    appearance: none;
    touch-action: manipulation;
    isolation: isolate;
}

.cstm-btn.btn-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgb(255 255 255 / 55%);
    backdrop-filter: blur(10px);
    z-index: -1;
    transition: background 0.2s ease;
}

.header-style-seven .main-menu {
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    background: transparent;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    min-width: 44px;
    min-height: 44px;
    appearance: none;
    touch-action: manipulation;
    isolation: isolate;
}

.header-style-seven .main-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgb(255 255 255 / 55%);
    backdrop-filter: blur(10px);
    z-index: -1;
    transition: background 0.2s ease;
}

.shades-two::before {
    position: absolute;
    height: 100%;
    width: 98%;
    background-color: #B9B9B9;
    content: "";
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    border-radius: 15px;
}

.shades-two::after {
    position: absolute;
    height: 100%;
    width: 96%;
    background-color: #888888;
    content: "";
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
    border-radius: 15px;
}

.features-section {
    position: relative;
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
}

.process-item:hover p,
.process-item:hover h6 {
    color: #fff;
}

.experience-no span {
    color: var(--tx-abps-primary-color);
    font-family: var(--bd-ff-bebas-sans);
    font-size: 12rem;
}

.experience-no small {
    font-size: 21px;
}

.about-shape-box {
    position: absolute;
    bottom: -100px;
    left: -12px;
}


/* Cstm Css Start here */
.about-style-seven {
    margin-top: 100px;
    margin-bottom: 100px;
}

.about-bottom-thumb .img-shape {
    position: absolute;
    left: -110px;
    top: -150px;
    bottom: auto;
    z-index: 3;
    animation: spinner 15s infinite linear;
    width: 50%;
}

.gap {
    padding: 40px 0px;
}

.footer-seven {
    /* background-color: #262626; */
    background: #f3f1f1;
    padding-top: 50px;
}

.footer-seven .footer-widget-title {
    color: #000;
}

.footer-link ul li a {
    color: var(--bd-text-body);
    font: 400 16px var(--bd-ff-poppins-sans);
}

.footer-seven .footer-menu-link.footer-menu-two ul li a {
    font: 400 16px var(--bd-ff-poppins-sans);
}

.footer-seven .footer-two-copy-rigth-text p {
    font: 400 16px var(--bd-ff-poppins-sans);
}

.footer-two-mid {
    padding-bottom: 0px;
    z-index: 1;
    position: relative;
}

.footer-seven .footer-two-copy-rigth-text p {
    color: #000;
}

.footer-menu-link.footer-menu-two ul li a {
    color: #000;
}

.footer-link i {
    color: var(--tx-abps-primary-color);
}

.footer-link .footer-dropdown-item {
    display: block;
}

.footer-link .footer-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--bd-text-body);
    font: 400 16px var(--bd-ff-poppins-sans);
    line-height: 1.5;
    text-align: left;
    transition: color 0.2s ease;
}

.footer-link .footer-dropdown-toggle-text {
    display: inline-flex;
    align-items: center;
}

.footer-link .footer-dropdown-bullet {
    margin-right: 8px;
    transform: rotate(270deg);
}

.footer-link .footer-dropdown-toggle:hover,
.footer-link .footer-dropdown-item.is-open .footer-dropdown-toggle {
    color: var(--tx-abps-primary-color);
}

.footer-link .footer-dropdown-arrow {
    margin-left: 2px;
    font-size: 12px;
    transition: transform 0.25s ease;
}

.footer-link .footer-dropdown-item.is-open .footer-dropdown-arrow {
    transform: rotate(180deg);
}

.footer-link .footer-dropdown-menu {
    position: relative;
    max-height: 0;
    margin-top: 0;
    padding-left: 22px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.28s ease, margin-top 0.28s ease, opacity 0.2s ease;
}

.footer-link .footer-dropdown-item.is-open .footer-dropdown-menu {
    max-height: 420px;
    margin-top: 14px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.footer-link .footer-dropdown-menu ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 16px 18px;
    border-radius: 14px;
    background: #f7e8bd;
}

.footer-link .footer-dropdown-menu ul li {
    padding: 0;
}

.footer-link .footer-dropdown-menu ul li::after,
.footer-link .footer-dropdown-menu ul li::before {
    display: none;
}

.footer-link .footer-dropdown-menu ul li a {
    display: block;
    flex: 1;
    color: #111;
    font-size: 16px;
    line-height: 1.45;
}

.footer-link .footer-dropdown-menu ul li a:hover {
    color: var(--tx-abps-primary-color);
}


.con-info i {
    color: var(--tx-abps-primary-color);
}

.chairmain-section {
    background-color: #F2EFEB !important;
    padding-bottom: 100px;
    background-image: url(assets/images/demo-it-business-testimonial-bg.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.bottom-slider {
    margin-top: 0px;
    padding: 6px 0px;
    background-color: #fecf70;
    padding-top: 10px;
}

.impact-section {
    margin-top: 20px;
    padding: 60px 20px;
}

.impact-title {
    font-size: 11rem;
    font-weight: bold;
    color: #000;
    letter-spacing: 4px;
}

.impact-subtext {
    font-size: 2rem;
    color: #333;
}

.impact-link {
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
}

.impact-link .circle {
    width: 45px;
    height: 45px;
    background-color: #a51c30;
    color: white;
    border-radius: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 2rem;
}

.circle {
    margin-top: 0px;
}

.divider-line {
    height: 4px;
    background-color: #111;
    margin: 40px 0;
}

.impact-stat h3 {
    color: #a51c30;
    font-weight: 400;
    font-size: 4rem;
}

.impact-stat p {
    font-weight: 600;
}


.process-item:nth-child(2) {
    background-color: #e1b327;
}

.text-justify {
    text-align: justify;
}

.process-item:nth-child(1),
.process-item:nth-child(3) {
    background-color: #9f2d29;
}

.process-item:nth-child(1) p,
.process-item:nth-child(1) h6,
.process-item:nth-child(1)::after,
.process-item:nth-child(3) p,
.process-item:nth-child(3) h6,
.process-item:nth-child(3)::after {
    color: #fff;
}

.case-style-two::after {
    background-color: #9f2d29;
}

.case-style-two::before {
    background-color: #e1b428;
}

.team-style-seven {
    background-color: #fffaec !important;
}

.service-style-seven {
    background-color: #fffaec !important;
}

.single-featur-content p {
    line-height: 2.6rem;
}

.single-featur-content .feature-content-list {
    font: 400 90px var(--bd-ff-bebas-sans);
    color: #e1b327;
    position: absolute;
    bottom: -55PX;
    right: 10px;
    z-index: -1;
    opacity: 0.8;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #e1b327;
}

.single-featur-content span {
    display: none;
}

.single-featur-content {
    overflow: visible;
}

.single-featur-content h4 {
    color: #9f2d29;
}

.process-item h6,
.process-item p {
    color: #fff;
}

.facilities-section {
    position: relative;
    background-color: #F2EFEB !important;
}

.student-img {
    position: absolute;
    top: -155px;
    left: 67px;
}

.student-img img {
    width: 26%;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Video Styling */
.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay with gradient */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, hsla(0, 0%, 5%, 0) 29.9%, #0e0e0e);
    z-index: 1;
}

/* Heading Styling */
.top-heading-abs {
    position: absolute;
    text-align: left;
    z-index: 2;
    bottom: 40px;
    left: 60px;
    letter-spacing: 3px;
}

.top-heading-abs h1 {
    color: white;
    font-size: 7rem;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
    display: block;
}

.top-heading-abs p {
    color: white;
    font-size: 2rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    position: absolute;
    z-index: 2;
    bottom: -13rem;
}

.section-space {
    padding: 50px 0px !important;
}

/* .mySwiper-sec1 .swiper-wrapper {
    margin-bottom: 3rem;
} */

.mySwiper-sec1 .swiper-horizontal>.swiper-pagination-bullets,
.mySwiper-sec1 .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 0px);
}

.mySwiper-sec1 .swiper-pagination-bullet-active {
    background: #9f2d29;
    outline: 1px solid #9f2d29;
    outline-offset: 2px;
}

.img-se {
    outline: 2px solid #9f2d29;
    border-radius: 10px;
    outline-offset: 4px;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    padding: 0.7rem;
}

.img-se img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiper-seclogo .img-se img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process-wrapper-two {
    /* margin-top: 0px; */
    height: 400px !important;
    overflow: hidden;
    border-radius: 21px;
}

.swiper.mySwiper-sec1 {
    height: 100%;
}

.featured-style-seven {
    background-color: #fff;
}

.btn-border.btn-bg:hover {
    transition: all 0.5s linear;
}



.col_sm8 {
    position: relative;
}

.col_sm8:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #e7ba09;
    right: -20px;
    top: -20px;
    z-index: 1;
    border-radius: 10px;
    animation: floatLoop 4s ease-in-out infinite;
}

.col_sm8 img {
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

@keyframes floatLoop {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px)
    }

    100% {
        transform: translateY(0)
    }
}


.avatar-thumb img {
    width: 100%;
    height: 100%;
}

.sub-title-four {
    font: 400 16px var(--bd-ff-outfit-sans);
}

.navigation__wrapper.navigation-style-five button:hover {
    background-color: #b02a31;
    border-color: #b02a31;
}

.sticky .btn-border:hover .text-content {
    color: var(--bd-primary);
}

.sticky .cstm-btn:hover {
    background-color: #EFEFEF;
}

.sticky .cstm-btn:hover .icon-box {
    background-color: #000;
    color: #FFF;
}

.header-right .btn-border:hover .text-content {
    color: var(--bd-primary);
}

.con-info a {
    position: relative;
}

.con-info a:after {
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fecf70;
    transition: all 0.5s linear;
}

.con-info a:hover:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fecf70;
    transition: all 0.5s linear;
}

.sub-title-four {
    text-transform: uppercase;
}

.testimonial-single-box {
    margin-bottom: 1.5rem;
}

/* .process-item{
    max-height: 386px;
} */
/* .process-wrapper-two{
    height: auto !important;
} */

/* Cstm Css end here */
.footer-seven {
    position: relative;
}

.footer-seven:after {
    content: '';
    position: absolute;
    background: url(../images/line-art3.png);
    bottom: 0;
    right: 0;
    width: 462px;
    height: 70%;
    opacity: 0.1;
    /* object-fit: cover; */
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.footer-seven:before {
    content: '';
    position: absolute;
    background: url(../images/lineart-4.png);
    bottom: 0;
    left: 0;
    width: 432px;
    height: 100%;
    opacity: 0.1;
    /* object-fit: cover; */
    background-size: cover;
    background-repeat: no-repeat;
}

.text-slide-title {
    color: #b02a31;
}

.text-slider-item img {
    filter: grayscale(1);
}

.sticky .cstm-btn.btn-border {
    background: #e1e0e08c;
}

.testimonial-five-slider .swiper-slide {
    opacity: 0;
}

.testimonial-five-slider {
    height: 500px;
}

.footer-two-copy-rigth-text a:hover {
    color: var(--bd-primary);
}

.header-style-seven .sticky .main-header {
    padding: 5px 0;
}

.inner-page.hero-section {
    height: 45vh;
}

.inner-page.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-heading-abs ul {
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
    color: #fff;
    flex-wrap: wrap;
}

.top-heading-abs ul li {
    position: relative;
    margin-right: 2rem;
}

.top-heading-abs ul li:last-child:after {
    display: none;
}

.top-heading-abs ul li:after {
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    right: -1rem;
    background: #fff;
}

.rank-sec li {
    color: #d5d4d4;
    font-size: 20px;
    margin-bottom: 1rem;
    list-style: disc !important;
}

.rank-sec li p {
    color: #fff;
    font-weight: 300;
    margin-bottom: 0;
}

.rank-sec li p strong {
    color: #e7ba09;
    font-weight: 400;
}

/* .rank-sec2 li {
    color: #000;
    font-size: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 25px;
} */

.rank-sec2 li {
    list-style: none;
    color: var(--bd-black);
    font-size: 16px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 25px;
    font-weight: 400;
}

.rank-sec2 li::before {
    content: "\f02d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #b02a36;
}

.rank-sec2.user li::before {
    content: "\f007";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #b02a36;
}

.rank-sec2.dot li::before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #b02a36;
    font-size: 10px;
    line-height: 24px;
}

.rank-sec2 li p {
    color: var(--bd-black);
    font-weight: 300;
    margin-bottom: 0;
    font-weight: 500;
}

.rank-sec2 li p strong {
    color: #e7ba09;
    font-weight: 400;
}

.rank-sec2 li p a {
    word-break: break-all;
}

.pub-list ul,
.pub-list ol {
    margin-bottom: 20px;
}

.pub-list ol li,
.pub-list ul li {
    color: var(--bd-black);
    font-size: 14px;
    margin-bottom: 1rem;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
    list-style: none;
}

.pub-list ol li::before,
.pub-list ul li::before {
    content: "\f02d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #b02a36;
}

.pub-list ol li p,
.pub-list ul li p {
    color: var(--bd-black);
    font-weight: 300;
    margin-bottom: 0;
    font-weight: 500;
}

.pub-list ol li p strong,
.pub-list ul li p strong {
    color: #e7ba09;
    font-weight: 400;
}

.pub-list h5 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.mySwiper-depsec .swiper-slide {
    height: auto;
}

.mySwiper-depsec .swiper-wrapper {
    padding-bottom: 3rem;
}

.mySwiper-depsec .swiper-pagination-bullet-active {
    background: #9d2c28;
    outline: 2px solid #9d2c28;
    outline-offset: 3px;
}

.dep-card {
    background: #9d2c28;
    /* background: #fafafa; */
    /* background: #fdf4e1; */
    /* padding: 2rem; */
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 10px 10px 20px #f0f0f0;
    border-top: 6px solid #ffd070;
}

.dep-card img {
    /* width: 100px; */
    /* filter: invert(1); */
    position: relative;
    z-index: 1;
}

.dep-card h4 {
    width: 75%;
    margin-left: 1.5rem;
    color: #fff;
    font-weight: 400;
}

.dep-icon {
    /* width: 80px;
    padding: 1rem;
    border-radius: 10px;
    margin-right: 2rem;
    position: relative; */
    width: 80px;
    /* background: #b02a31; */
    padding: 1rem;
    border-radius: 10px;
    /* margin-right: 2rem; */
    position: relative;
    order: 2;
    height: 80px !important;
}

.dep-card div:first-child {
    /* background: red; */
    height: 110px;
}


.dep-card p {
    margin-bottom: 0;
    font-weight: 300;
    line-height: normal;
    color: #fff;
}

.dep-icon:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fecf70;
    border-radius: 0 0 0px 30px;
}

.yellow-color {
    color: #e7ba09;
}

.img2 {
    position: relative;
}

.img2:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #e7ba09;
    right: -20px;
    top: -20px;
    z-index: 1;
    border-radius: 10px;
    animation: floatLoop 4s ease-in-out infinite;
}

.img2 img {
    position: relative;
    z-index: 1;
    border-radius: 10px;
}


.vis-card {
    justify-content: center;
    align-items: center;
}

.vis .vis-cont {
    padding-left: 16rem;
    margin-left: -10rem;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.mis .vis-cont {
    padding-right: 16rem;
    margin-right: -10rem;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.vis-icon {
    width: 150px;
    height: 150px;
    /* background: #9d2c28; */
    padding: 3rem;
    /* border-radius: 30%; */
    position: relative;
    z-index: 0;
}

.vis-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #9d2c28;
    z-index: -1;
    transform: rotate(45deg);
    border-radius: 40px;
    outline: 1px solid #fff;
    outline-offset: -6px;
}

.vis-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
}

.vis-cont {
    width: 100%;
    background: #ffd070;
    padding: 4rem;
    margin: 1rem 0;
    border-radius: 10px;
    /* height: 250px; */
    height: auto;
    /* outline: 1px dashed #9d2c28;
    outline-offset: -9px; */
}

.vis-cont p {
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0px;
    color: #000;
}

.vis-cont h4 {
    color: #9d2c28;
}

.mis ul li {
    list-style: disc;
}

.mis ul {
    padding-left: 2rem;
}

.mis .vis-cont {
    width: 0;
}

.mis .vis-cont.animate-in {
    width: 100%;
    transition: all 0.5s linear;
}

.vis .vis-cont {
    width: 0;
}

.vis .vis-cont.animate-in {
    width: 100%;
    transition: all 0.8s linear;
}

.contant {
    display: none;
}

.yelow.sub-title-four::before,
.yelow.sub-title-four:after {
    color: #fecf70;
}

.contant p {
    margin-bottom: 0;
}

.syl-card ul li {
    margin: 2rem 0;
    position: relative;
}

.syl-card ul li::after {
    content: '';
    border-bottom: 1px dashed #b02a31;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1rem;
    left: 0;
}

.syl-card ul li:last-child:after {
    display: none;
}

.syl-card ul li:last-child {
    margin-bottom: 0;
}

.syl-card {
    /* border: 1px solid #dfdddd; */
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
    background: #f8e9cb;
    justify-content: start !important;
}

.tab-sec .nav-tabs {
    margin: auto;
    display: flex;
    justify-content: center;
    border: none;
    background: var(--tx-abps-primary-color);
    align-items: center;
    box-shadow: 2px 10px 14px 4px #dfdfdf;
    z-index: 1;
    position: relative;
}

.tab-sec .nav-tabs .nav-link.active,
.tab-sec .nav-tabs .nav-link:hover {
    background: #fff;
    /* border: none; */
    border: none;
    color: #b02a31;
    border-top: 6px solid #ffd070;
    /* padding: 2rem 1rem; */
    border-radius: 0;
}

.tab-sec .nav-tabs .nav-link {
    padding: 2rem;
}

/* .tab-sec .nav-tabs .nav-link:focus,
.tab-sec .nav-tabs .nav-link:hover {
    border: none;
} */



.tab-sec .nav-link {
    color: #fff;
}

.title-anim {
    font-size: 21px;
    font-weight: 400;
}

.vis-img {
    width: 100px;
    height: 100px;
}

.title-anim strong {
    font-size: 16px !important;
    letter-spacing: -0.6px !important;
    color: #9f2f26;
}

.w-90 {
    width: 90%;
}

li.nav-item:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background: #ffffff;
    top: 0;
}

.link-hover-animation-1 {
    --bs-link-hover-animation-color: #b02a30;
    background: linear-gradient(to right, #b02a30 0%, #b02a30 100%);
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
    background-size: 0px 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    --bs-btn-border-radius: 0 !important;
}

.link-hover-animation-1:hover {
    background-size: 100% 2px;
}

.nav-item {
    position: relative;
}

.page-id-74659 .tab-pane.active[id="20"] {
    padding: 0px 0px !important;
}
.page-id-74659 .tab-pane.active[id="47"] {
    padding-top: 0px !important;
}

.page-id-75120 .table-bordered:nth-child(1) {
    margin-bottom: 0;
}

.page-id-75120 .tab-pane.active[id="38"] {
    padding: 0px 0px !important
}

.page-id-34310 .tab-pane.active[id="3"] {
    padding: 0px 0px !important
}
.page-id-75112 .tab-pane {
    padding: 0px 0px !important;
}

.page-id-75112 .tab-pane.active[id="58"] .mb-30 {
    margin-bottom: 0;
}
.page-id-74463 .tab-pane.active[id="20"] .bg_img1 {
    padding: 0px 0px !important
}

.page-id-75120 .tab-pane.active[id="20"] {
    padding-bottom: 0 !important;
}

.page-id-70457 .tab-pane.active[id="t-pane-70968"] .table-bordered:nth-child(1) {
    margin-bottom: 0px;
}

.page-id-70457 .tab-pane.active[id="t-pane-71097"] .table-responsive:last-of-type .table {
    margin-bottom: 0;

}

.page-id-75619 .tab-pane,
.page-id-71266 .tab-pane {
    padding: 0px 0px !important;
}

.page-id-71266 .rank-sec li {
    font-size: 16px;
}

.page-id-107355 .tab-pane.active[id="48"] .ub-incharges-block {
    padding: 0px !important;
}

.page-id-107355 .tab-pane.active[id="20"] {
    padding-top: 0px !important;
}

.page-id-107680 .tab-pane.active[id="20"] {
    padding: 0px !important;
}

.page-id-72631 .tab-pane.active[id="48"] {
    padding: 0px !important;
}

.img-fluid {
    width: 100%;
}

.page-id-68962 #in-pane-69837 .rank-sec2 {
    display: flex;
    flex-wrap: wrap;
}

.page-id-68962 #in-pane-69837 .rank-sec2 li {
    width: 33.33%;
}

.page-id-70001 .bg-yellow {
    display: none;
}




.page-id-108056 .tab-pane.active[id="48"],
.page-id-107853 .tab-pane.active[id="48"],
.page-id-107680 .tab-pane.active[id="48"],
.page-id-108280 .tab-pane.active[id="48"],
.page-id-108056 .tab-pane.active[id="51"],
.page-id-103356 .tab-pane.active[id="20"],
.page-id-103356 .tab-pane.active[id="38"],
.page-id-66675 .tab-pane.active[id="t-pane-69102"],
.page-id-66675 .tab-pane.active[id="t-pane-69191"],
.page-id-72631 .tab-pane.active[id="47"] {
    padding: 0px 0px !important
}

.page-id-103356 .tab-pane.active[id="20"] .bg_img1,
.page-id-75120 .tab-pane.active[id="20"] .bg_img1 {
    padding-bottom: 50px !important
}

.page-id-66675 .tab-pane.active[id="t-pane-69191"] .col_sm8 {
    margin-top: 2rem;
}

.page-id-74659 .wel_flex {
    gap: 0px !important;
}




td:has(ul) {
    vertical-align: bottom !important;
}

td:has(ul) ul li {
    margin-bottom: 1rem;
}







/* Navbar container */
.main-navbar {
    /* background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    position: relative;
    z-index: 100;
}

.nav-item::after {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    /* padding: 0 40px; */
}

/* .nav-list>li {
    position: relative;
} */

.nav-list>li>a {
    display: flex;
    padding: 8px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font: 400 18px var(--bd-ff-poppins-sans);
    align-items: center;
    justify-content: space-between;
}

.nav-list>li:hover>a {
    color: var(--tx-abps-primary-color);
    background-color: #EFEFEF;
    border-radius: 9px;
}

/* Mega dropdown container */
.mega-dropdown {
    position: absolute;
    left: 0px;
    top: 100%;
    /* width: max-content; */
    width: 31vw;
    background: #fff;
    display: none;
    grid-template-columns: 240px 1fr 0px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-top: 3px solid #b02a31;
    overflow-x: hidden !important;
    max-height: 400px !important;
}

.dropdown-categories li:first-child:before {
    content: '';
    width: 20px !important;
    height: 20px !important;
    mask: unset !important;
    right: -10px !important;
    top: 0px !important;
    position: absolute;
}

/* .dropdown-categories li:last-child:after {
    content: '';
    width: 20px !important;
    height: 20px !important;
    mask: unset !important;
    right: -10px !important;
    bottom: 0px !important;
} */

/* .content-grid a {
    font-size: 16px;
    color: #000;
} */
.content-grid a {
    position: relative;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

/* Create the line */
.content-grid a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    /* slightly below text */
    width: 0;
    height: 2px;
    background: #b02a31;
    /* line color */
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Animate on hover */
.content-grid a:hover {
    color: #b02a31;
    /* optional color change */
}

.content-grid a:hover::after {
    width: 100%;
}

.table td {
    vertical-align: middle;
    /* height: 67px; */
    font-weight: 400;
    background: transparent;
}

.pdf-c {
    color: #9f2f26 !important;
}

.nav-item.open .mega-dropdown {
    display: flex !important;
}

/* Left category list */
.dropdown-left {}

.dropdown-categories {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
}

.dropdown-categories li {
    padding: 12px 10px;
    cursor: pointer;
    border-radius: 6px 0 0 6px;
    font-weight: 500;
    font-size: 16px;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-categories li:hover,
.dropdown-categories li.active {
    background: #fbefd1;
    color: #b02a31;
    position: relative;
}

.dropdown-categories li:hover:after,
.dropdown-categories li.active:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: -20px;
    right: 0px;
    background: #fbefd1;
    mask: radial-gradient(circle at bottom left, transparent 72%, black 72%);
}

.dropdown-categories li:hover:before,
.dropdown-categories li.active:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fbefd1;
    right: -1px;
    top: -20px;
    mask: radial-gradient(circle at top left, transparent 72%, black 72%);
}

/* Center content area */
.dropdown-center {
    padding: 20px;
    background: #fbefd1;
    border-radius: 10px;
    width: -webkit-fill-available;
    padding-right: 10px;
}

.dropdown-content {
    display: none;
}

.dropdown-content.active {
    display: block;
    height: 100%;
    overflow: auto;
}

.content-grid {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 20px;
}

.content-grid div h4 {
    margin: 0 0 4px;
    color: #111;
    font-size: 15px;
}

.content-grid div p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

/* Right column (optional) */
.dropdown-right {
    border-left: 1px solid #eee;
    padding-left: 20px;
}

.featured {
    text-align: center;
}

.featured img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.featured h4 {
    margin-bottom: 6px;
    color: #111;
}

.featured p {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.header-style-seven .main-menu1 {
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    background: transparent;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    min-width: 44px;
    min-height: 44px;
    appearance: none;
    touch-action: manipulation;
    isolation: isolate;
    z-index: 9;
}

.header-style-seven .main-menu1::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgb(255 255 255 / 55%);
    backdrop-filter: blur(10px);
    z-index: -1;
    transition: background 0.2s ease;
}

.dropdown-categories i {
    transform: rotate(90deg);
    float: inline-end;
    font-size: 10px;
}

.nav-item a i {
    /* float: inline-end; */
    margin-left: 4px;
    font-size: 10px;
}

.mySwiper-depsec .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, -2px);
}

.swiper-pagination-bullet {
    background: #9d2c28;
}

.sub-dropdown h4 {
    font-size: 16px !important;
    font-family: 'Poppins' !important;
    font-weight: 500;
}

.sub-dropdown ul li {
    padding-left: 1rem;
    margin: 1rem;
}

.sub-dropdown ul li:last-child {
    margin-bottom: 0;
}

.sub-dropdown h4 i {
    font-size: 1.5rem;
    margin-left: 1rem;
}

.sub-dropdown h4 {
    display: flex;
    align-items: center;
}

.sub-dropdown ul li i {
    color: #9d2c28;
}

.sub-dropdown h4:hover {

    color: #b02a31 !important;
}

.top-header {
    height: 40px;
    z-index: 99;
    position: relative;
    background: #fff;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.top-header ul {
    display: flex;
    justify-content: end;
    height: 100%;
    align-items: center;
}

.top-header ul li {
    padding: 0 10px;
    position: relative;
    white-space: wrap;
}

.top-header ul li:hover {
    color: #b02a31;
}

.top-header ul li:after {
    content: '';
    width: 1px;
    height: 80%;
    display: flex;
    background: #b02a31;
    right: 0;
    position: absolute;
    top: 14%;
}

.top-header ul li::before {
    content: '';
    width: 0%;
    height: 2px;
    display: flex;
    background: #b02a31;
    left: 10%;
    position: absolute;
    bottom: 0%;
    transition: all 0.5s linear;
}

.top-header ul li:hover:before {
    width: 80%;
    height: 2px;

}

.top-header ul li:last-child::after {
    display: none;
}

.top-header ul li a {
    font-weight: 400;
    font-size: 15px;
    /* letter-spacing: -1px; */
}

.main-header .logo:before {
    content: '';
    position: absolute;
    background: url(https://vesim.ves.ac.in/assets/Icon/banner-bg2.png);
    width: 140%;
    height: 150%;
    background-size: cover;
    left: -10%;
    top: 22%;
    z-index: -1;
}

.main-header .logo {
    margin-top: -60px;
    z-index: 99;
}

.sticky .main-header .logo {
    margin-top: unset;
    margin: 6px 0;
}

.sticky .main-header .logo:before {
    display: none;
}

p {
    margin-bottom: 15px;
}

body.footer-seven-header-hidden .top-header,
body.footer-seven-header-hidden .header-area {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 991px) {
    .footer-link .footer-dropdown-menu {
        padding-left: 18px;
    }

    .footer-link .footer-dropdown-item.is-open .footer-dropdown-menu {
        max-height: 420px;
        pointer-events: auto;
    }

    .footer-link .footer-dropdown-menu ul {
        padding: 14px;
    }
}

.swi-btn .swiper-button-prev,
.swi-btn .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, -130px);
}

.swi-btn .swiper-button-next,
.swi-btn .swiper-button-prev {
    color: #ffffff;
    background: #9f2d29;
    width: 40px;
    height: 40px;
    font-size: 1rem !important;
    border-radius: 6px;
    box-shadow: -1px 2px 3px 0px #dcdbdb;
    transition: all 0.5s linear;
}

.swi-btn .swiper-button-next:hover,
.swi-btn .swiper-button-prev:hover {
    color: #9f2d29;
    background: #fff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 2rem;
}



.dropdown-menu {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 300px;
    background: #fff;
    display: none;
    /* grid-template-columns: 240px 1fr 0px; */
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-top: 3px solid #b02a31;
}

.pdf-links {
    background: #f8e9cb;
    padding: 2rem;
    border-radius: 10px;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    box-shadow: 1px 1px 10px #e3e3e3;
}

.pdf-links:hover .pdf-ig {
    right: 0px;
    bottom: 0px;
}

/* Apply white background to even .pdf-links */
.pdf-row div:nth-child(even) .pdf-links {
    background: #f6f0f0;
}


.pdf-links .btn-border.btn-bg {
    width: fit-content;
}

.pdf-ig {
    display: flex;
    justify-content: center;
    position: absolute;
    right: -35px;
    bottom: -35px;
    /* opacity: 0.6; */
    z-index: -1;
    padding: 1rem;
    width: 50px;
    height: 50px;
    transition: all .3s ease;
}


.pdf-ig img {
    width: 40px;
    margin: 0 4px 4px 0;
    opacity: 0.6;
}

.pdf-ig:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 140%;
    height: 140%;
    background: #ffd070;
    z-index: -1;
    border-radius: 128px 0 0;
    outline: 3px solid #ffd070;
    outline-offset: 5px;
    opacity: 0.4;
}


.pdf-links p {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 3rem;

    line-height: 1.5;
    max-height: 3em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.custom-tooltip {
    position: absolute;
    background: #f6f3ed;
    color: #1e1d1d;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 320px;
    width: max-content;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
}

.custom-tooltip.show {
    opacity: 1;
    visibility: visible;
}

.table th {
    background: #ffd070 !important;
    color: #b02a31 !important;
    font-weight: 500;
    /* white-space: nowrap; */
    vertical-align: middle;
}

.table td {
    font-weight: 400;
    border: none;
    background: transparent;
}

table {
    box-shadow: 1px 1px 16px #e6e6e6;
}

.table>:not(caption)>*>* {
    padding: .7rem .7rem .7rem 2rem;
    border-bottom: 0;
    border-right: 1px solid #9f2f2645;
}

.table tbody tr td:last-child,
.table thead tr th:last-child {
    border-right: none !important;
}

/* Style for even rows in tbody */
.table tbody tr:nth-child(even) {
    background-color: #fff8e8;
    /* Light gray background for even rows */
}

/* Style for odd rows in tbody */
.table tbody tr:nth-child(odd) {
    background-color: #ffffff;
    /* White background for odd rows */
}



.home .single-featur-content {
    background-color: #ffff;
}

.home .feature-gallery-single {
    background: #ffefcd;
}

.home .ratting-wrapper {
    background-color: #ffffff;
}

.home .circular-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.home .circular-section .carousel {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-150px, -200px);
    transform-origin: 150px 3900px;
    will-change: transform;
}

.home .wrapper {
    position: absolute;
    height: 100vh;
    transform-origin: 150px 3900px;
}

.home .wrapper div {
    width: 500px;
    height: 570px;
    margin-top: 30px;
}

.home .ywl-bg-r {
    /* box-shadow: 5px 9px 24px 2px #0000003d; */
    border-radius: 2vh !important;
    border-left: 7px solid #e7ba09;
    background-size: cover !important;
    background-position: center !important;
}

.home .ywl-bg-r h2 {
    position: absolute;
    left: -30%;
    top: 130px;
    transform: rotate(270deg);
    height: 100px;
    width: 270px;
    color: #b02a31;
    letter-spacing: 2px;
    text-align: end;
}

.home .bg_img1 {
    position: relative;
}

.home .bg_img1::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10%;
    height: 60%;
    background: url(../images/lineart.png);
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.home .bg_img1:nth-child(odd):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 10%;
    height: 60%;
    background: url(../images/lineart.png);
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.home .section-space1 {
    padding-top: 80px !important;
}



.home .tes-sec {
    position: relative;
}

.home .tes-sec::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -1%;
    width: 20%;
    height: 50%;
    /* left: unset; */
    /* top: unset; */
    background: url(assets/images/lineart1.png);
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
}



.home .title-anim {
    display: block;
    width: fit-content;
    /* or set a fixed width if needed */
    white-space: normal;
    overflow-wrap: break-word;
    word-break: keep-all;
}

.char-sec p {
    color: #fff;
}

.cha-sec {
    background: url(./images/demo-it-business-testimonial-bg.png), #9f2d29;
}

/* .disc li {
    list-style: disc !important;
}

.disc1 li {
    list-style: decimal !important;
} */

.disc li {
    list-style: none;
    color: var(--bd-black);
    font-size: 16px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 25px;
    font-weight: 400;
    text-align: justify;
}

.disc li::before {
    content: "\f02d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #b02a36;
}


.user li {
    list-style: none;
    color: var(--bd-black);
    font-size: 16px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 25px;
    font-weight: 400;
}

.user li::before {
    content: "\f007";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #b02a36;
}

.disc1 li {
    list-style: none;
    color: var(--bd-black);
    font-size: 16px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 25px;
    font-weight: 400;
}

.disc1 li::before {
    content: "\f02d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #b02a36;
}

.arrow1 li {
    list-style: none;
    color: var(--bd-black);
    font-size: 16px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 25px;
    font-weight: 400;
}

.arrow1 li::before {
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #b02a36;
}

.aia-html-card ul li,
.village-adopted-text ol li {
    list-style: none;
    color: var(--bd-black);
    font-size: 16px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 25px;
    font-weight: 400;
    text-align: justify;
}

.aia-html-card ul li::before,
.village-adopted-text ol li::before {
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #b02a36;
}

.aia-html-card ol,
.aia-html-card ul {
    padding-left: 0 !important;
}

.arrow1 li p {
    margin-bottom: 0;
}

.pad-top {
    padding-top: 40px !important;
}

.section-space.\!pb-0 {
    padding-bottom: 0 !important;
}

.tab-pane>.section-space.\!pt-0:first-child {
    padding-top: 0 !important;
}

.tab-sec .inn-tab.nav-tabs {
    background: #efc368;
    width: fit-content;
    padding: 1rem 1rem;
    border-radius: 60px;
    /* width: 100%; */
    align-items: center;
    gap: 8px;
}

.tab-sec .inn-tab .nav-link {
    color: #333;
}

.table-bordered:nth-child(1) {
    padding-bottom: 50px;
}

.tab-sec .inn-tab.nav-tabs .nav-link {
    padding: 1rem 2rem !important;
    border-radius: 30px;
    border: none !important;
}

.tab-sec .inn-tab.nav-tabs .nav-link.active,
.tab-sec .inn-tab.nav-tabs .nav-link:hover {
    /* border-top: 6px solid #b02a31; */
    padding: 1rem 2rem;
    border: none !important;
    border-radius: 30px;
    background: #b02a31;
    color: #ffffff;
}

.inn-tab {
    margin-bottom: 30px !important;
}

.tab-sec .inner-tab-layout {
    display: grid;
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    align-items: flex-start;
    gap: 38px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.tab-sec .inner-tab-layout .inner-tab-sidebar {
    width: 100%;
    min-width: 0;
    display: block;
    align-self: start;
    position: relative;
    position: sticky;
    top: 120px;
}

.tab-sec .inner-tab-layout .inn-tab {
    width: 100%;
    min-width: 0;
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding: 0;
    gap: 14px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    align-items: stretch;
    align-self: start;
}

.tab-sec .inner-tab-layout .inner-tab-sidebar-fill {
    min-height: auto;
    padding: 22px 18px 18px;
    margin-top: 0;
    background: linear-gradient(180deg, #fffdfa 0%, #fff6e9 100%);
    border: 1px solid rgba(239, 195, 104, 0.5);
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(78, 56, 22, 0.1);
    overflow: hidden;
    position: relative;
}

.tab-sec .inner-tab-layout .inner-tab-sidebar-fill::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    width: 100%;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, #b02a31 0%, #efc368 100%);
    pointer-events: none;
}

.tab-sec .inner-tab-layout .inner-tab-sidebar-fill::after {
    content: "";
    position: absolute;
    inset: auto 18px 14px 18px;
    height: 1px;
    width: auto;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(176, 42, 49, 0.16) 0%, rgba(176, 42, 49, 0) 100%);
    pointer-events: none;
}

.tab-sec .inner-tab-layout .inn-tab .nav-item,
.tab-sec .inner-tab-layout .inn-tab .nav-link {
    width: 100%;
}

.tab-sec .inner-tab-layout .inn-tab .nav-link {
    padding: 1rem 1.1rem !important;
    background: rgba(255, 255, 255, 0.82);
    color: #2b2b2b;
    font-weight: 600;
    letter-spacing: 0.015em;
    text-align: center;
    border-radius: 14px !important;
    border: 1px solid rgba(176, 42, 49, 0.06) !important;
    box-shadow: 0 6px 14px rgba(52, 32, 12, 0.04);
    transition: all 0.3s ease;
}

.tab-sec .inner-tab-layout .inn-tab .nav-link:hover {
    transform: translateY(-2px);
    background: rgba(239, 195, 104, 0.22);
    color: #7b2428;
}

.tab-sec .inner-tab-layout .inn-tab.nav-tabs .nav-link.active,
.tab-sec .inner-tab-layout .inn-tab.nav-tabs .nav-link:hover {
    background: linear-gradient(135deg, #b02a31 0%, #942028 100%);
    color: #ffffff;
    border-color: transparent !important;
    box-shadow: 0 12px 24px rgba(176, 42, 49, 0.22);
}

.tab-sec .inner-tab-layout .inner-tab-content {
    width: 100%;
    padding: 28px 32px !important;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(176, 42, 49, 0.07);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(52, 32, 12, 0.07);
    position: relative;
}

.tab-sec .inner-tab-layout.no-inner-tabs {
    grid-template-columns: minmax(0, 1fr);
}

.tab-sec .inner-tab-layout.no-inner-tabs .inner-tab-sidebar {
    display: none;
}

.tab-sec .inner-tab-layout.no-inner-tabs .inner-tab-content {
    width: 100%;
    max-width: 100%;
}

.bg-yellow {
    background-color: #f8f4eb !important;
}


hr.hr-ui:not([size]) {
    margin: 0;
    border-color: rgb(176 42 49 / 60%);
    opacity: 1;
    border-width: 1px;
    border-style: dashed;
    margin: 30px 0px;
}

.page-id-70421 .bg-yellow {
    display: none;
}

.page-id-5756 .bg-yellow .container {
    width: 100%;
    max-width: 100%;
}

.pdf-c {
    display: flex;
    align-items: center;
}

.pdf-c span {
    width: max-content;
}

.tab-pane {
    padding: 50px 0px !important;
}

.identity-strip {
    height: 100%;
}

/* Custom Scrollbar Styling (Optional, for a cleaner look) */
.profile-sidebar::-webkit-scrollbar {
    width: 8px;
}

.profile-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.profile-sidebar::-webkit-scrollbar-thumb {
    background: #8b2323;
    /* Matching your theme color */
    border-radius: 10px;
}

.profile-sidebar::-webkit-scrollbar-thumb:hover {
    background: #5a1616;
}

.pfl-info:last-child {
    margin-bottom: 30px;
}

.page-id-74304 .tab-pane {
    padding: 0px !important;
}

.accordion-button:not(.collapsed) {
    color: var(--bd-secondary);
    background-color: var(--bd-primary);
    -webkit-box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
    box-shadow: none;
    border: 0 !important;
    border-radius: 10px 10px 10px 10px;
    margin-bottom: 2rem;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(20);
}

.accordion-button {
    font-size: 1.8rem;
    padding: 16px 16px;
    font-family: 'Poppins';
    letter-spacing: 0px;
    background-color: #fff4de;
}

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

.accordion-item {
    color: var(--bs-accordion-color);
    background-color: #ffd070;
    box-shadow: 0px 3px 8px 0px #f0f0f0;
    border: none;
    border-radius: 20px;
    font-family: 'Poppins';
}

.page-id-74917 .home>.section-space:first-of-type {
    padding-bottom: 0 !important;
}

.page-id-74917 .home>.section-space:nth-of-type(2) {
    padding-top: 0 !important;
}

.page-id-88951 .disc li {
    margin: 1rem 0;
}

.prex_card {
    border: none;
    padding: 1rem;
    border-radius: 10px;
}

.swiper-fade .swiper-slide {
    display: flex;
    align-items: center;
    height: auto;

}

.loader-18 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #e3b328;
    border-right: 4px solid transparent;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}

.loader-18:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-bottom: 4px solid #9f3027;
    border-left: 4px solid transparent;
}

.loader-section {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    align-items: center;
}

.spin-1 {
    display: flex;
    margin-top: 70px;
}

.naac-section-wrap {
    margin: 0 auto;
    padding: 56px 12px 48px;
}

.naac-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #b02a30;
    border-bottom: 2px solid #efc368;
    padding-bottom: 10px;
    margin-bottom: 30px;
    margin-top: 50px;
}

.naac-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.naac-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.naac-group-btn {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
}

.naac-group-btn:hover {
    background: #fdfaf3;
}

.naac-group-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 27px;
    font-weight: 500;
    color: #101321;
    margin-bottom: 0;
    letter-spacing: 0.3px;
}

.naac-group-btn i {
    transition: transform 0.3s ease;
    color: #b02a30;
    font-size: 18px;
}

.naac-card.active .naac-group-btn i {
    transform: rotate(180deg);
}

.naac-links-container {
    display: none;
    padding: 20px 25px;
    border-top: 1px solid #f8e9cb;
    background: #fffdf8;
}

.naac-card.active .naac-links-container {
    display: block;
}

.naac-description {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

.naac-link-item {
    display: flex;
    align-items: center;
    padding: 15px 0px;
    background: #fdf4e4;
    border-radius: 8px;
    color: #b02a30;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: background 0.2s;
    flex-wrap: wrap;
}

.naac-link-item:hover {
    background: #fdf4e4;
}

.naac-link-item i {
    margin-right: 12px;
    font-size: 18px;
    color: var(--tx-abps-primary-color) !important;
}

.syl-card ul li::after {
    border-bottom: none !important;
}

.tab-pane .pdf-links ul li {
    margin: 1.2rem 0;
}

.naac-link-item a {
    display: block;
    padding: 8px 20px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
    word-break: break-word;
    width: 100%;
    font-weight: 500;
}

.page-id-71108 .row:has(.table-responsive) {
    margin-bottom: 0 !important;
}

.page-id-75181 .bg-yellow{
    display: none;
}

@-webkit-keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (min-width:1199px) {
    .mega>a {
        pointer-events: auto;
        cursor: pointer;
    }

    .nav-item:has(.mega-dropdown)>a {
        pointer-events: auto;
        cursor: pointer;
    }
}


@media (max-width:1500px) {
    .home .wrapper div {
        width: 340px;
        height: 400px;
    }

    .home .wrapper {
        transform-origin: 150px 2690px;
    }

    .home .circular-section .carousel {
        transform-origin: 150px 2690px;
    }

    .home .ywl-bg-r h2 {
        left: -36%;
    }


}

@media (max-width:767px) {
    .home .circular-section {
        height: 60vh;
    }

    .home .wrapper {
        height: 60vh;
        align-items: center;
        display: flex;
    }

    .home .ywl-bg-r h2 {
        top: 190px;
    }

    .home .col_sm88 {
        width: 100%;
    }

    .home .col_sm8 {
        width: 95%;
    }

    .home .flex {
        justify-content: center;
    }

    .home .blockquote-wrapper .icon img {
        right: unset;
        left: -16px;
        top: -20px;
    }

    .home .bg_img1 br {
        display: none;
    }

    .home .bg_img1::after {
        width: 40%;
        height: 30%;
        opacity: 0.1;
        bottom: -16px;
    }

    .home .cnt-sec {
        padding: 50px 0;
    }

    .home .tes-sec::after {
        bottom: -5%;
        width: 60%;
        height: 30%;
    }
}

@media (max-width: 1199px) {
    .cnt-sec {
        padding-bottom: 50px;
    }

    .footer-seven:before {
        width: 362px;
        height: 50%;
    }

    .footer-seven:after {
        height: 50%;
    }

    .col_sm8 {
        width: 70%;
        margin: auto;
    }

    .circular-section {
        height: 50vh !important;
    }

    .col_sm88 {
        width: 100%;
    }
}

@media (max-width:1600px) {
    .nav-list>li>a {
        padding: 8px 10px;
        font: 400 14px var(--bd-ff-poppins-sans);
    }

    .main-header .logo a img {
        width: 200px;
    }

    .top-header ul li a {
        font-size: 14px;
    }

    .top-header .has-sub ul.sub-dropdown li a {
        font-size: 15px;
        margin: 0.5rem;
    }
}

@media (max-width:1500px) {
    .content-grid {
        gap: 12px;
    }

    .top-heading-abs h1 {
        font-size: 5rem;
    }
}

@media (max-width:1400px) {

    .main-header .logo a img {
        width: 160px;
    }

    .nav-list>li>a {
        padding: 8px 8px;
        font: 400 14px var(--bd-ff-poppins-sans);
    }

    .header-style-seven .main-menu1 {
        padding: 0.6rem 1.5rem;
    }

    .section-space {
        padding: 40px 0px !important;
    }
}


@media (max-width:1199px) {
    .top-heading-abs h1 {
        font-size: 4rem;
    }

    .top-header {
        display: none;
    }
}

/* Mobile off-canvas menu */
@media (max-width: 1199px) {

    .content-grid li {
        padding: 10px 0;
        font-size: 15px;
    }

    .dropdown-categories {
        margin-bottom: 0rem;
    }

    .wrapper div {
        width: 500px;
        height: 570px;
    }

    .mobile-menu.fix .content-grid .sub-dropdown {
        padding: 10px 0;
        font-size: 15px;
    }

    .sub-dropdown h4 {
        font-size: 15px !important;
    }

    .nav-list>li>a {
        padding: 8px 8px;
        font: 500 16px var(--bd-ff-poppins-sans);
    }

    .header-area {
        top: 0px;
    }

    .main-header .logo:before {
        display: none;
    }

    .top-header {
        display: none;
    }

    .mobile-menu-wrapper .top-header {
        display: block;
        margin-bottom: 2rem;
        background: #fff0df;
        padding: 1rem;
        height: auto;
        border-radius: 6px;
        display: none;
    }

    .top-header ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-header ul li {
        margin: .3rem 0;
    }

    .main-header .logo {
        margin-top: 12px;
    }

    .sub-dropdown ul li {
        padding: 8px;
        padding-left: 1rem;
        margin: 0;
        background: #f6f6f6;
        border-radius: 0;
    }

    .sub-dropdown ul {
        margin-top: 10px;
    }

    /* Default state */
    .nav-item>a i.fa-chevron-down {
        transition: transform 0.3s ease;
    }

    /* When dropdown is active */
    .nav-item.open>a i.fa-chevron-down {
        transform: rotate(-90deg);
    }

    /* Optional: rotate sub-dropdown chevrons */
    .dropdown-categories li.active i.fa-chevron-right {
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }

    .dropdown-categories li:first-child:before {
        display: none;
    }

    .main-menu1 {
        display: none;
    }

    .mobile-menu.fix .nav-list {
        flex-direction: column;
        padding: 0;
    }

    .mobile-menu.fix .nav-item {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu.fix .mega-dropdown {
        position: relative;
        display: none;
        width: 100%;
        grid-template-columns: 1fr;
        padding: 10px 20px;
        box-shadow: none;
        border-top: none;
        background: #fff;
        background: #f9f9f9;
        border-radius: 10px;
    }

    /* .mobile-menu.fix .dropdown-left {
        display: none;
    } */

    .mobile-menu.fix .dropdown-center {
        padding: 10px;
    }

    .mobile-menu.fix .content-grid a {
        display: block;
        padding: 0px 0;
        font-size: 15px;
    }

    .mega-dropdown {
        left: 0;
    }

    .dropdown-categories li:hover:before,
    .dropdown-categories li.active:before {
        display: none;
    }

    .dropdown-categories li:hover:after,
    .dropdown-categories li.active:after {
        display: none;
    }

    .dropdown-categories li {
        border-radius: 6px;
        /* display: flex;
        align-items: center;
        justify-content: space-between; */

    }

    /* .mobile-menu.fix .content-grid a::after {
        display: none;
    } */

    .nav-list>li:hover>a {
        color: #ffffff !important;
        background-color: #9f3027;
        border-radius: 9px;
    }

    .dropdown-center {
        background: #fff;
        display: none;
    }

    .content-grid {
        gap: 0px;
        background: #fff;
        padding: 10px;
    }
}


@media only screen and (min-width: 768px) {
    .testimonial-five-slider {
        height: 500px;
    }

}

@media (max-width:767px) {
    .table {
        width: 700px !important;
    }

    /* Scrollbar width */
    .table-responsive::-webkit-scrollbar {
        height: 8px;
    }

    /* Track (background) */
    .table-responsive::-webkit-scrollbar-track {
        background: #8b1a1a;
        border-radius: 10px;
        padding: 5px;
    }

    /* Scroll thumb */
    .table-responsive::-webkit-scrollbar-thumb {
        background: #fecf70;
        border-radius: 10px;
        transition: 0.3s;
    }

    /* Hover effect */
    .table-responsive::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .syl-card ul li {
        font-size: 14px !important;
    }

    .table td {
        border-left: 1px solid #ecebeb;
    }

    .table tbody tr:first-child td {
        border-left: none;
    }

    .tab-sec .nav-tabs .nav-link {
        padding: 2rem 1rem;
    }

    .inner-page.hero-section {
        height: 40vh;
    }

    .video-overlay {
        background: linear-gradient(180deg, hsl(0deg 1.52% 77.36% / 39%) 29.9%, #0e0e0e);
    }

    .vis-card {
        flex-wrap: wrap;
    }

    .vis .vis-cont.animate-in,
    .mis .vis-cont.animate-in {
        width: 100%;
        transition: all 0.8s linear;
    }

    .vis .vis-cont {
        padding-left: 2rem;
        margin-left: unset;
        width: 100%;
        padding-top: 5rem;
        height: auto;
    }

    .vis-icon {
        width: 120px;
        height: 120px;
        padding: 2rem;
        margin-bottom: -7rem;
    }

    .mis .vis-cont {
        padding-right: 2rem;
        margin-right: unset;
        height: auto;
        padding-top: 5rem;
        width: 100%;
    }

    .mis .vis-icon {
        order: 1;
    }

    .mis .vis-cont {
        order: 2;
    }

    .footer-seven:after {
        height: 28%;
    }

    .footer-seven:before {
        display: none;
    }

    .wel_flex {
        gap: 42px;
    }

    .img2 {
        margin-top: 2rem;
        width: 95%;
    }

    .tab1 .col_sm8 {
        width: 100%;
    }

    .tab1 .col_sm88 {
        width: 100%;
        margin-top: 28px;
    }

    .top-heading-abs h1 {
        width: 80%;
        text-align: left;
    }

    .top-heading-abs ul li a {
        letter-spacing: normal;
    }

    .top-heading-abs ul li {
        letter-spacing: normal;
    }

    /* .top-heading-abs ul {
        bottom: -120px;
        left: -35px;
    } */
    .tab-sec .nav-tabs {
        flex-wrap: nowrap;
        overflow-y: auto;
        justify-content: start !important;
    }

    .tab-sec .nav-tabs .nav-link {
        width: max-content;
    }

    .tab-sec .inn-tab.nav-tabs {
        flex-wrap: wrap;
        border-radius: 0;
    }

    .tab-sec .inner-tab-layout {
        display: block;
        padding: 20px 16px;
    }

    .tab-sec .inner-tab-layout .inn-tab,
    .tab-sec .inner-tab-layout .inner-tab-content,
    .tab-sec .inner-tab-layout .inner-tab-sidebar {
        width: 100%;
        min-width: 100%;
    }

    .tab-sec .inner-tab-layout .inner-tab-sidebar {
        position: static;
        top: auto;
    }

    .tab-sec .inner-tab-layout .inner-tab-sidebar-fill {
        min-height: auto;

    }

    .tab-sec .inner-tab-layout .inner-tab-content {
        padding-top: 1.5rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        background: transparent;
        box-shadow: none;
    }

    .tab-sec .inner-tab-layout .inner-tab-content::before,
    .tab-sec .inner-tab-layout .inner-tab-sidebar-fill::before,
    .tab-sec .inner-tab-layout .inner-tab-sidebar-fill::after {
        display: none;
    }

    .tab-sec .inn-tab.nav-tabs .nav-item {
        width: 100%;
    }

    h3 {
        font-size: 32px;
    }
}


@media (max-width: 1200px) {

    /* Make cloned menu behave like mobile accordion */
    .mobile-menu.fix .dropdown-menu,
    .mobile-menu.fix .mega-dropdown {
        position: static !important;
        /* stops overlapping */
        display: none;
        /* hidden initially */
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        /* background: #fff; */
        margin: 0;
        padding: 10px 15px;
        z-index: 1;
    }

    /* Make content inside dropdown visible */
    .mobile-menu.fix .dropdown-menu .content-grid,
    .mobile-menu.fix .mega-dropdown .content-grid {
        display: block !important;
    }



    /* Remove left/right layout from mega menu */
    .mobile-menu.fix .dropdown-left,
    .mobile-menu.fix .dropdown-center {
        width: 100% !important;
        display: block !important;
    }

    .mobile-menu.fix .mega .dropdown-center {
        display: none !important;
    }

    .dropdown-menu {
        border: none;
        background: #f9f9f9;
        box-shadow: unset;
    }

    /* .content-grid {
        padding: 0 10px;
    } */

    .content-area {
        padding: 45px 20px !important;
    }

    .pub-list ol {
        list-style: decimal;
    }



}

/* Container jo baahar ka hissa chhupa dega */
.marquee-container {
    width: 100%;
    overflow: hidden;
    /* background: #fff; */
    /* padding: 40px 0; */
    /* border-top: 1px solid #eee; */
    /* border-bottom: 1px solid #eee; */
    display: flex;
}

/* Moving part */
.marquee-content {
    display: flex;
    align-items: center;
    will-change: transform;
}

.text-slider-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 10px 30px;
    white-space: nowrap;
}

.text-slider-item img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Keyframes jo animation ko seamless banate hain */
@keyframes smoothScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* -50% isliye kyunki humne content double kiya hai */
        transform: translateX(-50%);
    }
}

/* Mouse over karne par slow ya stop karne ke liye (Optional) */
/* .marquee-container:hover .marquee-content {
            animation-play-state: paused;
        } */



.cta {
    position: relative;
    padding: 7px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    width: fit-content;
}

.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #e2b228;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease;
}

.cta span {
    font-family: 'Poppins', sans-serif;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    line-height: 140%;
}

.cta:hover span {
    color: #fff;
}

.cta svg {
    position: relative;
    top: -1.5px;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #e2b228;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.cta:hover:before {
    width: 100%;
    background: #b02a36;
}

.cta:hover svg {
    transform: translateX(0);
}

.cta:active {
    transform: scale(0.95);
}

/* The Main Card */

.page-card {
    background: #ffffff;
    width: 100%;
    max-width: 650px;
    display: block;
    padding: 6px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(93, 16, 16, 0.15);
    border: 1px solid #e0dccf;
    position: relative;
}

/* Image Frame */
.image-wrapper {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #5D1010;
    line-height: 0;
}


.image-wrapper:hover .page-link-btn {
    border-radius: 0%;
    height: 100%;
}

.image-wrapper:hover .page-link-btn i {
    opacity: 1;
    scale: 1;
    transition-delay: 0.5s;
    transition-duration: 0.5s;
}

.page-link-btn {
    width: 100%;
    height: 100%;
    display: block;
}

.page-link-btn {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
    background-color: #5d1010f0;
    z-index: 9;
    transition: all .6s ease-in-out;
    perspective-origin: top;
    transform: perspective(600px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Colorful Garland (Toran) - Orange & Yellow */
.toran {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background: repeating-linear-gradient(to right,
            #FF8C00 0%, #FFD700 15%, #ffffff 25%,
            #FF8C00 35%, #FFD700 50%, #ffffff 60%);
    z-index: 5;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 95% 100%, 90% 70%, 85% 100%, 80% 70%, 75% 100%, 70% 70%, 65% 100%, 60% 70%, 55% 100%, 50% 70%, 45% 100%, 40% 70%, 35% 100%, 30% 70%, 25% 100%, 20% 70%, 15% 100%, 10% 70%, 5% 100%, 0 70%);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

/* Maroon Board with Gold Text */
.info-board {
    position: absolute;
    top: 65px;
    left: 25px;
    background: #5D1010;
    /* Maroon */
    color: #FFD700;
    /* Gold */
    padding: 12px 18px;
    border: 2px solid #D4AF37;
    border-radius: 4px;
    text-align: center;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.info-board h3 {
    margin: 0;
    font-size: 10px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-board hr {
    border: 0;
    border-top: 1px solid #FFD700;
    margin: 8px 0;
}

.info-board p {
    margin: 0;
    font-size: 9px;
    font-weight: 600;
}

/* Royal Blue Heading at Bottom */

.card-heading {
    color: #a5342b;
    margin: 15px 0 6px;
    font-size: 25px;
    text-align: center;
}

.sub-text {
    color: #666;
    font-size: 0.9rem;
    margin-left: 20px;
    margin-top: 5px;
}

.page-link-btn i {
    width: 70px;
    height: 70px;
    border: 2px solid #fecf70;
    z-index: 9999;
    display: block;
    border-radius: 50%;
    box-shadow: inset 0 0 0px 2px #fecf70, inset 0 0 0px 36px #fecf702b;
    scale: 0.4;
    opacity: 0;
    transition: all 0.2s ease;
    transition-delay: 0s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #fff;
}

/* Unique Profile Card Styling */
.member-profile-shield {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border-bottom: 6px solid #fecf70;
    height: 100%;
    position: relative;
}

.member-profile-shield:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(154, 51, 36, 0.15);
    border-bottom-color: #fecf70;
}

/* Image Frame */
.profile-vision-box {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #f4f4f4;
    position: relative;
}

.profile-vision-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.member-profile-shield:hover .profile-vision-box img {
    transform: scale(1.15);
}

/* Designation & Name Panel */
.identity-strip {
    padding: 30px 20px;
    background: #b02a30;
    text-align: center;
    color: #ffffff;
}

.identity-strip .expert-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 3px;
    letter-spacing: 0.3px;
    line-height: 140%;
    color: #fff;
}

.identity-strip .role-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    color: #fecf70;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: 1px solid rgb(254 207 112 / 33%);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* Interactive Hover Layer */
.action-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(154, 51, 36, 0.8));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: 0.4s ease;
}

.member-profile-shield:hover .action-layer {
    opacity: 1;
}

.core-btn-action {
    font-family: 'Poppins', sans-serif;
    background: #fecf70;
    color: #b02a30;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FULL SCREEN OVERLAY */
.profile-modal-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(60, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;

    display: none;
    justify-content: center;
    align-items: center;
}

/* MODAL BOX */
.profile-modal-overlay .modal-content {
    width: 95%;
    max-width: 1140px;
    height: auto;
    /* 🔥 FULL HEIGHT */
    background: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* SCROLL ONLY INSIDE CONTENT */
#dynamic-content-box {
    overflow-y: auto;
    flex: 1;
}

/* LOCK BACKGROUND */
.modal-open {
    overflow: hidden !important;
}

.btn-close-custom {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 3rem;
    color: #ffc107;
    cursor: pointer;
    z-index: 100;
    background: #8c2323;
    font-weight: 300;
    padding: 0.5rem 1.1rem;
    line-height: 1;
    border-radius: 30%;
}

/* FULLSCREEN MODAL */
#modalTarget {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 99999;

    background: rgba(60, 10, 10, 0.85);
    backdrop-filter: blur(10px);

    justify-content: center;
    align-items: center;
}

/* Modal Box */
#modalTarget .modal-content {
    width: 100%;
    height: 80%;
    max-width: 1200px;
    background: #fff;
    border-radius: 0;
    overflow-y: auto;
    position: relative;
}

/* Sidebar - Maroon Theme */
.profile-sidebar {
    background: #8b2323;
    color: white;
    padding: 40px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    border-right: 5px solid #ffc107;
    height: 100%;
    overflow: auto;
}

.img-container {
    width: 145px;
    height: 175px;
    border: 3px solid #ffc107;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meta-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 4px;
    padding: 8px 12px;
    margin-bottom: 8px;
}

.meta-box small {
    display: block;
    color: #ffc107;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700;
}

.meta-box span {
    font-size: 1.6rem;
    word-break: break-word;
    color: #fff;
}

/* Content Area - Cream/White Theme */
.content-area {
    padding: 45px;
    background: #fff;
    /* max-height: 85vh; */
    overflow-y: auto;
    scrollbar-width: thin;
    height: 100%;
}

.section-box {
    margin-bottom: 30px;
}

.section-title {
    font-weight: 700;
    color: #8b2323;
    border-left: 5px solid #ffc107;
    padding-left: 15px;
    margin-bottom: 20px;
    font-size: 24px;
    text-transform: uppercase;
}

.pub-item {
    padding: 12px 15px;
    background: #fcf8f3;
    border-radius: 4px;
    margin-bottom: 10px;
    border-left: 3px solid #8b2323;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.pub-item:hover {
    border-color: #ffc107;
    background: #fff;
}

.pub-item strong {
    color: #8b2323;
    font-size: 0.88rem;
    display: block;
    line-height: 1.4;
}

.pub-item p {
    margin: 5px 0 0;
    color: #555;
    font-size: 0.78rem;
    font-style: italic;
}

.tag {
    background: #8b2323;
    color: #fff;
    /* border: 1px solid #ffc107; */
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 1.4rem;
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 5px;
}

.hidden-data {
    display: none;
}

.pfl-info {
    height: 40%;
}

@media (max-width: 991px) {
    .img2 {
        margin-top: 30px;
    }

    .md-scroll {
        overflow-x: scroll !important;
    }

    .pub-list ol li {
        list-style: decimal !important;
    }

    .profile-sidebar {
        min-height: auto;
        height: auto;
        overflow: unset;
    }

    .content-area {
        overflow-y: unset;
    }
}

.dropdown-content .sub-dropdown i {
    transform: rotate(00deg) !important;
}

.nav-item.active>a,
.active-link,
.dropdown-categories li.active,
.sub-dropdown.active>h4,
.sub-dropdown ul li.active>a {
    color: #b02a31 !important;
}

.dropdown ul {
    flex-direction: column;
    height: auto;
    display: flex;
    align-items: start;
}

.dropdown-menu .content-grid li {
    padding: 0;
}

.dropdown-menu .content-grid li::before,
.dropdown-menu .content-grid li::after {
    display: none;
}

.dropdown li {
    position: relative;
    padding: 10px 15px;
}

.dropdown a {
    text-decoration: none;
    color: #000;
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    display: none;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
    z-index: 1000;
}

.dropdown-menu li {
    padding: 10px;
    white-space: nowrap;
}

/* .dropdown-menu li:hover {
    background: #f2f2f2;
} */
.section-space.\!pt-0 {
    padding-top: 0 !important;
}

/* Show on click/state */
.dropdown.open .dropdown-menu {
    display: block;
}

.text-red {
    /* --bs-text-opacity: 1; */
    color: rgb(176 42 48) !important;
}

.red-text li {
    padding-bottom: 8px;
}

.red-text li,
.red-text a {
    font: 400 16px var(--bd-ff-poppins-sans);
    color: var(--bd-black);
    text-align: justify;
    /* padding-bottom: 20px; */
}

.red-text p {
    font: 400 16px var(--bd-ff-poppins-sans) !important;
    color: var(--bd-black) !important;
    text-align: justify;
}

.rank-search-btn,
.rank-prev,
.rank-next {
    padding: 12px 25px;
    font-size: 16px;
    margin: 0;
    border: 2px solid #b02a30;
}

.rank-search-reset {
    padding: 12px 25px;
    font-size: 16px;
    margin: 0;
    border: 4px solid #ffd070;
    background-color: #b02a30;
    color: #fff;
}

input.form-control.me-2.mb-2.rank-search-input {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    outline: 0;
    height: 50px;
    border-radius: 2px !important;
    border: 2px solid #b02a30;
}

.pub-list a {
    color: #8b2323 !important;
}

/* .page-id-75112 .section-title-seven {
    font-size: 41px !important;
} */



/* Why Choose Us - static card section */
.ves-who-section {
    overflow: hidden;
}

.ves-who-section .ves-who-copy {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.ves-who-section .sub-title-four {
    letter-spacing: 0.08em;
}

.ves-who-section .section-title-seven {
    margin-bottom: 24px;
    max-width: 540px;
    font-size: clamp(2.7rem, 4.8vw, 4.8rem) !important;
    line-height: 0.98;
}

.ves-who-section .section-text-seven p {
    margin-bottom: 0;
    max-width: 520px;
    font-size: 1.75rem;
    line-height: 1.55;
    color: #2d2d2d;
}

.ves-card-box--large {
    background: #a9372f;
    border-radius: 28px;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    color: #fff;
}

.ves-card-box--large .ves-header-wrapper {
    position: absolute;
    inset: 0 0 auto 0;
    width: 100%;
    /* background: #a9372f; */
    padding: 26px 30px 24px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
}

.ves-card-box--large .ves-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    border-left: 4px solid #f1b324;
    padding-left: 14px;
    letter-spacing: 0.04em;
}

.ves-card-box--large .ves-number {
    font-size: clamp(3rem, 4vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    opacity: 0.34;
}

.ves-card-box--large .ves-scroll-area {
    height: 300px;
    width: 90%;
    margin: 88px auto 0;
    padding: 0 18px;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    z-index: 9;
}

.ves-track {
    display: flex;
    flex-direction: column;
    gap: 18px;
    will-change: transform;
}

.ves-item-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, background 0.25s ease;
}

.ves-item-row:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.ves-img-container {
    width: 92px;
    height: auto;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid #f1b324;
    background: rgba(255, 255, 255, 0.08);
}

.ves-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ves-text-content {
    flex: 1;
    min-width: 0;
}

.ves-text-content h4 {
    margin: 0 0 6px;
    color: #f1b324;
    font-size: 2.5rem;
    font-weight: 700;
}

.ves-text-content p {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
}

.annon-bg .ves-item-row {
    background: #f6f6f6;
}

.annon-bg .ves-item-row .ves-text-content p {
    color: #000;
}

@media (max-width: 991px) {
    .ves-who-section .section-title-seven {
        max-width: 100%;
    }

    .ves-who-section .section-text-seven p {
        max-width: 100%;
    }

    .ves-card-box--large {
        min-height: 520px;
    }

    .ves-card-box--large .ves-scroll-area {
        width: 90%;
        height: 390px;
    }

    .pdf-links p {
        margin-bottom: 1rem;
        word-break: break-word;
    }
}

@media (max-width: 575px) {
    .swiper-card {
        width: 100% !important;
    }

    .swiper-section .carousel-swiper {
        padding: 0 0 0 0px !important;
    }

    .ves-card-box--large .ves-header-wrapper {
        padding: 22px 20px;
    }

    .ves-card-box--large .ves-scroll-area {
        width: calc(100% - 28px);
        margin-top: 92px;
        height: 380px;
        padding: 0 14px;
    }

    .ves-item-row {
        flex-direction: column;
        text-align: center;
    }

    .ves-img-container {
        width: 100%;
        height: auto;
    }
}

.ves-who-grid {
    width: 100%;
}

@media (min-width: 992px) {
    .ves-who-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .pdf-links p {
        max-height: 100%;
        display: -webkit-box;
        -webkit-line-clamp: none;
        -webkit-box-orient: unset;
        overflow: unset;
    }
}