/**
 * Frontend CSS Overrides
 * Fixes conflicts between Tailwind CSS utilities and Bootstrap components
 * 
 * Issue: Tailwind CSS v4 @layer utilities has .collapse { visibility: collapse; }
 * which conflicts with Bootstrap's .collapse class used for navbar navigation
 */

/* Override Tailwind's collapse utility for Bootstrap's navbar collapse component */
/* Using high specificity to override Tailwind's utility layer */
.navbar .collapse,
.navbar .navbar-collapse.collapse,
.navbar-collapse.collapse,
.collapse.navbar-collapse,
#navbarSupportedContent.collapse,
.navbar__top .collapse.navbar-collapse {
    /* Reset Tailwind's visibility: collapse - Bootstrap needs visibility: visible */
    visibility: visible !important;
}

/* Bootstrap's default collapse behavior - hidden when not shown */
.navbar .collapse:not(.show),
.navbar .navbar-collapse.collapse:not(.show),
.navbar-collapse.collapse:not(.show),
#navbarSupportedContent.collapse:not(.show),
.navbar__top .collapse.navbar-collapse:not(.show) {
    /* display: none !important; */
    visibility: visible !important;
}

/* Bootstrap's collapse when shown */
.navbar .collapse.show,
.navbar .navbar-collapse.collapse.show,
.navbar-collapse.collapse.show,
#navbarSupportedContent.collapse.show,
.navbar__top .collapse.navbar-collapse.show {
    /* display: block !important; */
    visibility: visible !important;
}

/* Ensure Bootstrap collapse animation works correctly */
.collapsing {
    visibility: visible !important;
    display: block !important;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

/* Additional specificity for navbar collapse with navbar__main class */
.navbar__top .navbar-collapse.collapse.navbar__main {
    visibility: visible !important;
    padding-top:10px;
}

/*
 * Accordion collapse: Tailwind's .collapse { visibility: collapse; } hides
 * .accordion__body content when panel has .show. Override so accordion panels
 * use visibility: visible; Bootstrap still hides closed panels via display.
 */
.accordion__wrap .accordion-collapse.collapse,
.accordion__wrap .collapse.accordion-collapse {
    visibility: visible !important;
}

/*
 * Achievers award: first tab content box width. Ensure tab panes and any nested
 * .content__box (from WYSIWYG) use full width; core.css .award__wrap .content__box
 * has max-width: 52% and matches descendants, which can make first tab content half width.
 */
.award__wrap .award__tab .tab-content {
    width: 100%;
    max-width: 100%;
}
.award__wrap .award__tab .tab-content .tab-pane.tab__pane {
    width: 100%;
    max-width: 100%;
}
.award__wrap .award__tab .tab-content .tab-pane .content__box {
    max-width: 100% !important;
    width: 100% !important;
}
.award__wrap .award__tab .tab-content .tab-pane .award__tab__pane__body {
    width: 100%;
    max-width: 100%;
}

/*
 * Leaders carousel: Read More / Read Less
 * .leader-details-full is hidden by default; .is-visible shows full text.
 * .leader-details-preview is shown by default; .is-hidden hides when expanded.
 */
.content__card .leader-details-full {
    display: none;
}
.content__card .leader-details-full.is-visible {
    display: inline;
}
.content__card .leader-details-preview.is-hidden {
    display: none;
}
.content__card .leader-read-more {
    cursor: pointer;
}

/*
 * Bootstrap tab-pane: Tailwind CSS v4 may interfere with Bootstrap's .fade
 * and .show classes. Ensure active tab panes are visible and properly displayed.
 * Bootstrap uses .tab-content > .active { display: block } and
 * .fade.show { opacity: 1 } but Tailwind can override opacity/display.
 */
.tab-content > .tab-pane.active {
    display: block !important;
}
.tab-content > .tab-pane.fade.show {
    opacity: 1 !important;
}

/* ===== Password-Protected Page ===== */
.protected__page__section {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
}

.protected__page__skeleton {
    padding: 40px 5%;
    filter: blur(3px);
    opacity: 0.45;
    pointer-events: none;
    user-select: none;
}

.skeleton__line {
    height: 16px;
    margin-bottom: 18px;
    border-radius: 4px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 400% 100%;
    animation: skeleton-shimmer 1.8s ease-in-out infinite;
}

.skeleton__line--title {
    width: 45%;
    height: 28px;
    margin-bottom: 28px;
}

.skeleton__line--full {
    width: 100%;
}

.skeleton__line--medium {
    width: 72%;
}

.skeleton__line--short {
    width: 40%;
}

@keyframes skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.protected__page__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10;
}

.protected__page__card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 48px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
}

.protected__card__icon {
    color: #666;
    margin-bottom: 16px;
}

.protected__page__card h2 {
    margin-bottom: 8px;
}

.protected__page__card p {
    color: #666;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
}

.protected__page__error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: 10px 16px;
    margin-bottom: 16px;
    font-size: 14px;
}

.protected__page__form {
    text-align: left;
}

.protected__form__group {
    margin-bottom: 16px;
}

.protected__form__label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}

.protected__form__input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.protected__form__input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.protected__form__btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

/* ===== Banner Media Slider ===== */

/* Hide the parent ::after gradient when slider is active (per-slide overlay used instead) */
.main__banner--slider::after {
    display: none !important;
}

/* Swiper fills the full banner area */
.main__banner .js-banner-slider,
.main__banner .js-banner-slider .swiper-wrapper,
.main__banner .js-banner-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.main__banner .banner-slide {
    position: relative;
    overflow: hidden;
}

/* Per-slide gradient overlay (mirrors .main__banner::after from core.css) */
.main__banner--slider .banner-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom,
        #000 0%,
        rgba(0, 0, 0, 0.75) 20%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.75) 80%,
        #000 100%); */
    z-index: 1;
    pointer-events: none;
}

/* Media fills the slide */
.main__banner .banner-slide .image__box {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.main__banner .banner-slide .image__box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center center;
}

.main__banner .banner-slide .image__box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Banner content overlays the gradient */
.main__banner--slider .banner-slide .banner__content {
    z-index: 2;
}

/* Slide content entrance animation */
.main__banner--slider .banner-slide .banner__content__inner__wrapp {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.main__banner--slider .swiper-slide-active .banner__content__inner__wrapp {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Banner Thumbnail Navigation ===== */

.banner-thumb-slider {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    max-width: 600px;
    width: 90%;
    padding: 0 10px;
    box-sizing: border-box;
}

.banner-thumb-slider .swiper-slide {
    width: 90px;
    height: 56px;
    flex-shrink: 0;
}

.banner-thumb-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.swiper-slide-thumb-active .banner-thumb-item,
.banner-thumb-item:hover {
    border-color: #fff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.banner-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
}

.banner-thumb-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    color: #fff;
    pointer-events: none;
}

/* ===== Banner Thumb Slider: Hidden ===== */

.banner-thumb-slider {
    display: none !important;
}

/* ===== Banner Slider Responsive ===== */

@media (max-width: 991px) {
    .banner-thumb-slider {
        bottom: 20px;
        max-width: 80%;
    }
    .banner-thumb-slider .swiper-slide {
        width: 72px;
        height: 45px;
    }
}

@media (max-width: 767px) {
    .banner-thumb-slider {
        bottom: 12px;
        max-width: 95%;
    }
    .banner-thumb-slider .swiper-slide {
        width: 56px;
        height: 36px;
    }
    .banner-thumb-item {
        border-width: 1.5px;
        border-radius: 4px;
    }
    .banner-thumb-play-icon {
        width: 18px;
        height: 18px;
    }
}

/* =============================================
   Widget Form Styles
   ============================================= */
.widget-form-block {
    margin-bottom: 24px;
}

.widget-form-block h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.form__wrap {
    /* background: #F3C11D; */
}

.form__group {
    margin-bottom: 16px;
}

.form__group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.form__required {
    color: #dc2626;
    font-weight: 700;
    margin-left: 2px;
}

.form__group .form-control {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.9375rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #f9fafb;
    color: #1f2937;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form__group .form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    background: #fff;
}

.form__group textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form__group--captcha {
    margin-bottom: 16px;
}

.form-control--file {
    padding: 8px;
    background: #f9fafb;
    cursor: pointer;
}

.form-control--file::-webkit-file-upload-button {
    padding: 6px 14px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    margin-right: 10px;
}

.form__file-hint {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 4px;
}

.form__group select.form-control {
    appearance: auto;
    cursor: pointer;
}

.form__options-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
}

.form__option-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #1f2937;
    cursor: pointer;
    margin-bottom: 0;
}

.form__option-label input[type="radio"],
.form__option-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
    cursor: pointer;
    flex-shrink: 0;
}

.btn__submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #2563eb;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
    margin-top: 8px;
}

.btn__submit:hover {
    background: #1d4ed8;
}

.btn__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn__submit .icon__box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.btn__submit .icon__box img {
    width: 100%;
    height: auto;
}

.form__message {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 12px;
}

.form__message--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form__message--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form__loading {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.form__spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: formSpin 0.6s linear infinite;
}

@keyframes formSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Sidebar widget form responsiveness */
.content-sidebar .widget-form-block .form__wrap {
    padding: 10px 0;
}

@media (max-width: 768px) {
    .form__wrap {
        padding: 16px;
    }

    .btn__submit {
        width: 100%;
        justify-content: center;
    }
}


/*-------Event-Details--------*/
.event__details h3{color:#626262; font-size:24px; max-width:1115px;}
.event__details__grid__block{display:grid; grid-template-columns:repeat(5, 1fr); gap:24px;}
.event__reply{background-color:#DFF0FF; padding:56px 48px; margin-top:80px; }
.event__reply h2{font-size:48px; text-transform:uppercase; font-family: "AvantGardeLT-Medium"; color:#000;}
.event__reply p{color:#000;}
 
.form__wrap .form__group{margin-top:16px; column-gap:16px;}
.form__wrap .form__group .form__group__inner{flex:1;}
.form__wrap .form__group label{color:#000; font-size:18px; font-family: "AvantGardeLT-Medium"; color:#000;}
.form__wrap .form__group .form__control{border:0; background-color:#fff; border-radius:5px; padding:15px; margin-top:8px; height:52px; font-size:16px; box-shadow:none;}
.form__wrap .form__group textarea.form__control{height:243px;}
.form__wrap .submit__btn{background-color:#005AA9; color:#161616; display:flex; width:312px; height:55px; align-items:center; font-size:18px; font-weight:500; line-height:23px; color:#fff; font-family:"AvantGardeLT-Medium"; text-transform:uppercase; border:0; padding:0; margin-top:32px;}
.form__wrap .submit__btn span{width:100%; display:flex; align-items:center; justify-content:center;}
.form__wrap .submit__btn i.icon__box{border:1px solid #B3B3B3; background-color:#FFF; height:100%; display:flex; align-items:center; justify-content:center; width:45px; flex:0 0 45px;}
.form__wrap .form__group .custom__checkbox label{position:relative; cursor:pointer; padding-left:32px; font-size:18px; font-family:"DM Sans", sans-serif; font-weight:400; margin-top:20px;}
.form__wrap .form__group .custom__checkbox input[type="checkbox"]{position:relative; margin-left:-26px; margin-right:5px; cursor:pointer; height:16px; width:16px;}
.form__wrap .form__group .custom__checkbox input[type="checkbox"]:after{content:""; position:absolute; top:-5px; left:-4px; width:20px; height:20px; background:#fff; border:2px solid #ddd; cursor:pointer;}
.form__wrap .form__group .custom__checkbox input[type="checkbox"]:before{transition:transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75); transform:rotate(-45deg) scale(0, 0); content:""; position:absolute; left:-1px; z-index:1; width:13px; height:7.5px; border:2px solid #22B58F; border-top-style:none; border-right-style:none;}
.form__wrap .form__group .custom__checkbox input[type="checkbox"]:checked:before{transform:rotate(-45deg) scale(1, 1);}
.form__wrap .form__group .custom__checkbox input[type="checkbox"]:after{border-radius:2px;}

label.form__option-label span {
    font-size: 14px;
    line-height: 20px;
}
/*-------Gallery Lightbox--------*/
.gallery__thumb {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: opacity 0.2s ease;
}
.gallery__thumb:hover {
    opacity: 0.85;
}
.gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery__thumb--video {
    position: relative;
}
.gallery__play__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    pointer-events: none;
    transition: background 0.2s ease;
}
.gallery__thumb--video:hover .gallery__play__icon {
    background: rgba(0, 90, 169, 0.85);
}
.gallery__thumb__placeholder {
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.gallery__lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
}
.gallery__lightbox--active {
    display: flex;
}
.gallery__lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 10;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 12px;
    transition: color 0.2s ease;
}
.gallery__lightbox__close:hover {
    color: #f3c11d;
}
.gallery__lightbox__slider {
    width: calc(100% - 112px);
    max-width: 960px;
    height: 80vh;
    margin: 0 auto;
    overflow: hidden;
}
.gallery__lightbox__slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery__slide__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.gallery__slide__inner img,
.gallery__slide__inner iframe,
.gallery__slide__inner video {
    pointer-events: auto;
}
.gallery__slide__inner img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 4px;
}
.gallery__slide__inner iframe {
    width: 100%;
    max-width: 854px;
    height: 480px;
    border: none;
    border-radius: 4px;
}
.gallery__slide__inner video {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 4px;
    background: #000;
}

.gallery__lightbox__prev,
.gallery__lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.gallery__lightbox__prev {
    left: 12px;
}
.gallery__lightbox__next {
    right: 12px;
}
.gallery__lightbox__prev::after,
.gallery__lightbox__next::after {
    font-size: 20px;
    color: #fff;
    font-family: swiper-icons;
    font-weight: 700;
}
.gallery__lightbox__prev::after {
    content: 'prev';
}
.gallery__lightbox__next::after {
    content: 'next';
}
.gallery__lightbox__prev:hover,
.gallery__lightbox__next:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
    .event__details__grid__block {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery__lightbox__slider {
        width: calc(100% - 80px);
        max-width: 100%;
    }
    .gallery__slide__inner iframe {
        height: 280px;
    }
    .gallery__lightbox__prev,
    .gallery__lightbox__next {
        width: 36px;
        height: 36px;
    }
    .gallery__lightbox__prev {
        left: 4px;
    }
    .gallery__lightbox__next {
        right: 4px;
    }
    .gallery__lightbox__prev::after,
    .gallery__lightbox__next::after {
        font-size: 16px;
    }
    .gallery__play__icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .event__details__grid__block {
        grid-template-columns: 1fr;
    }
}


/*-------Event Comments--------*/
.event__comments {
    max-width: 100%;
}
.comments__heading {
    font-size: 28px;
    font-family: "AvantGardeLT-Medium";
    color: #000;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.comments__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.comment__item {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #005AA9;
}
.comment__item--reply {
    border-left-color: #b3d4f0;
}
.comment__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.comment__avatar {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    background: #005AA9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: "AvantGardeLT-Medium";
}
.comment__item--reply .comment__avatar {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    font-size: 15px;
    background: #4a90c4;
}
.comment__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.comment__author {
    font-size: 16px;
    font-family: "AvantGardeLT-Medium";
    color: #000;
}
.comment__author a {
    color: #005AA9;
    text-decoration: none;
}
.comment__author a:hover {
    text-decoration: underline;
}
.comment__date {
    font-size: 13px;
    color: #888;
}
.comment__body {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 8px;
}
.comment__body p {
    margin: 0;
}
.comment__reply__btn {
    background: none;
    border: none;
    color: #005AA9;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.comment__reply__btn:hover {
    text-decoration: underline;
}
.comment__replies {
    margin-top: 16px;
    margin-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Reply Indicator */
.comment__reply__indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #e8f4fd;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #005AA9;
}
.comment__cancel__reply {
    background: none;
    border: none;
    color: #d32f2f;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
}
.comment__cancel__reply:hover {
    text-decoration: underline;
}

/* Comment Form Messages */
.comment__form__message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 15px;
}
.comment__form__message--success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.comment__form__message--error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.below__accordion__content {
    margin-top: -40px;
}

.accordion-collapse {
    visibility: visible;
}

@media (max-width: 767px) {
    .event__reply {
        padding: 32px 20px;
    }
    .event__reply h2 {
        font-size: 32px;
    }
    .comments__heading {
        font-size: 22px;
    }
    .comment__item {
        padding: 16px;
    }
    .comment__replies {
        margin-left: 12px;
    }
}


/*------------------------------------------------- 10/03/2026 addition ----------------------------------------------*/
.admission__wrap.apply__content, .admission__wrap.disclosure__links__wrap{max-width:100%;}
.admission__section .admission__sidebar.apply__wrap{max-width:560px;}
.apply__content h3{color: #005AA9;}
.apply__content a.btn__wrap{width:fit-content !important;}
.apply__content a.btn__wrap span{padding: 0 35px 0 35px !important;}
.admission__sidebar.apply__wrap .form__wrap .form__flex{display:flex; gap:20px;}
.admission__sidebar.apply__wrap .form__wrap .form__flex .form__group{width:50%;}
.admission__sidebar.apply__wrap .form__wrap select{width:100%;} 
.admission__section .admission__sidebar .form__wrap .form__group .form__control{color:#bababa !important;}
.content__wrap.apply__content h2{margin:0 auto;}
.content__wrap.apply__content p{margin:0 auto; max-width:60%;}
.apply__content .solving__widgets .item__wrap{min-height:350px;}
.solving__widgets .item__wrap h4{font-size:27px; font-family:'DM Sans'; color:#626262; font-weight: 400;}
.apply__bg__wrap{margin:80px auto;}
.equal__content__width__wrap{margin-top:60px;}
.equal__content__width__wrap .image__box{max-width:50%; width: 100%; height: 465px;}
.equal__content__width__wrap .image__box img{width:100%; height:100%; object-fit:cover;}
.equal__content__width__wrap .content__box{max-width:50%; width: 100%; background-color:#DFF0FF;}
.equal__content__width__wrap .content__box .content__wrap{padding:50px 64px;}
.equal__content__width__wrap .content__box hr{color:#F3C11D !important; opacity: 1;  margin: 0;}
.equal__content__width__wrap .content__box h3{font-size:40px;  font-weight:400;}
.equal__content__width__wrap .content__box h2{margin-top:16px; font-size:48px; font-weight:700; color:#000;}
.admission__info__wrap h2{max-width:50%; width:100%; margin:0 auto;}
.admission__info__wrap .accordion__wrap .accordion{width:100%;}
.board__scetion .mentor__card__wrap.board__wrap{display:block;}
.elective__section .accordion__wrap button.accordion__button{font-size:22px; line-height:130%;}
.elective__section .accordion__wrap .accordion__body {padding: 12px 24px;}

.mentor__card__slider__navigation , .partner__logo__navigation, .award__card__navigation{position: relative; display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 24px;}
.swiper-button-prev.mentor__card__slider__prev, .swiper-button-next.mentor__card__slider__next{ position: relative !important; left: 0 !important; right: 0 !important; top: 0 !important; bottom: 0 !important; width: 56px; height: 56px; padding: 14px 20px; background-color: #fff; border: 1px solid #B3B3B3; margin: 0 !important; transition: all 0.5s ease; z-index: 0;}
.mentor__card__slider__next:hover, .mentor__card__slider__prev:hover { background-color: #F3C11D; border: 1px solid #F3C11D;}
.mentor__card__slider__next svg path, .mentor__card__slider__prev svg path { fill: #005AA9; transition: all 0.5s ease;}
.mentor__card__slider__next:hover svg path, .mentor__card__slider__prev:hover svg path { fill: #000000;}
.partner__image__wrapper{margin-top:56px;}
.partner__image__wrapper .image__item img{height: 150px !important; object-fit: contain;}
.partner__image__wrapper .image__item{background-color: #F8F8F8;  border: 1px solid #BFBFBF;  align-items: center;  justify-content: center;  padding: 35px !important;  margin-bottom: 2px;}

.swiper-button-prev.partner__logo__prev, .swiper-button-next.partner__logo__next{ position: relative !important; left: 0 !important; right: 0 !important; top: 0 !important; bottom: 0 !important; width: 56px; height: 56px; padding: 14px 20px; background-color: #fff; border: 1px solid #B3B3B3; margin: 0 !important; transition: all 0.5s ease; z-index: 0;}
.partner__logo__next:hover, .partner__logo__prev:hover { background-color: #F3C11D; border: 1px solid #F3C11D;}
.partner__logo__next svg path, .partner__logo__prev svg path { fill: #005AA9; transition: all 0.5s ease;}
.partner__logo__next:hover svg path, .partner__logo__prev:hover svg path { fill: #000000;}
.award__section{margin:80px 0; gap:24px;}
.award__section .award__card{margin:0;}
.award__section .award__card .image__box{height:380px; border:1px solid #91BEE6;}
.award__section .award__card .image__box img{width:100%; height:100%; object-fit:cover;}
.award__section .award__card .card__footer{background-color:#DFF0FF; padding:20px 0;}
.award__section .award__card .card__footer h4{font-size:22px; line-height:130%; text-align: center;}
.swiper-button-prev.award__card__prev, .swiper-button-next.award__card__next{ position: relative !important; left: 0 !important; right: 0 !important; top: 0 !important; bottom: 0 !important; width: 56px; height: 56px; padding: 14px 20px; background-color: #fff; border: 1px solid #B3B3B3; margin: 0 !important; transition: all 0.5s ease; z-index: 0;}
.award__card__next:hover, .award__card__prev:hover { background-color: #F3C11D; border: 1px solid #F3C11D;}
.award__card__next svg path, .award__card__prev svg path { fill: #005AA9; transition: all 0.5s ease;}
.award__card__next:hover svg path, .award__card__prev:hover svg path { fill: #000000;}

.disclosure__links__wrap{background-color:#DFF0FF; padding:48px;}
.disclosure__links__wrap .image__box{max-width:200px; height:auto;}
.disclosure__links__wrap .image__box img{width:100%; height:100%; object-fit:contain;}
.disclosure__links{display:grid; grid-template-columns:repeat(5, 1fr);}

.document__card__wrap{display:grid; grid-template-columns:repeat(3, 1fr); gap:30px;}
.document__card__wrap .document__card{background-color:#F8F8F8;}
.document__card__wrap .document__card .image__box{height:280px; display:flex; align-items:center; justify-content:center; border:1px solid #BFBFBF; border-bottom:0px;}
.document__card__wrap .document__card .image__box img{width:100px; height:auto; object-fit:contain;}
.document__card__wrap .document__card .card__footer{background-color:#DFF0FF; padding:20px 0;}
.document__card__wrap .document__card .card__footer h4{font-size:24px; line-height:130%; text-align: center;}
.flex__list{display: flex; gap:24px;}
ul.iqac__list{margin-top:32px; list-style:none;}
ul.iqac__list li{margin-bottom:20px; position:relative; font-size:16px; font-family:"AvantGardeCE-Demi"; font-weight:500; line-height:130%; display:flex; align-items:center; justify-content:flex-start; gap:20px;}
ul.iqac__list li::before{background-image:url(../images/iqac-list-items.svg); background-repeat:no-repeat; background-size: contain; content:''; width:40px; height:40px; position:relative; display:flex; align-items:center; justify-content:center;}
ul.simple__list, ol.simple__list{ padding-left:18px;}
ul.simple__list li, ol.simple__list li{margin-bottom:10px; font-size: 18px; font-family:'DM Sans';}
ul.simple__list li{list-style-type: disc;}
ol.simple__list li:last-child{margin-bottom:60px;}
.board__scetion.iqac__section{padding:80px 0;}
.board__scetion.iqac__section h2{text-align:start;}
.comittee__wrap .flex__list{justify-content:space-between;}
.comittee__wrap .flex__list p{color:#000;}
.comittee__wrap, .comittee__wrap .credit__wrap{margin:80px 0px 0;}
.comittee__wrap h3{font-size:32px; font-weight:700;}
.comittee__wrap .credit__wrap table tbody tr:nth-child(even) td{background-color:#FFFFFF !important;}
.comittee__wrap .credit__wrap table thead tr th{font-size:22px; font-weight:700; color:#fff; vertical-align: middle; padding: 20px 24px;}
.comittee__wrap .credit__wrap table tbody tr td{font-weight:700; padding: 20px 24px;}
.comittee__wrap .credit__wrap table{margin-bottom:64px;}
.comittee__wrap .credit__wrap table:last-of-type{margin-bottom:0px;}
.comittee__wrap .credit__wrap p{max-width:unset;}
.credit__wrap table.reservation__cell tbody tr{vertical-align: middle;}
.equal__content__width__wrap .content__box.bg__trans{background:transparent;}
.large__block .flex__wrap:has(.content__box.bg__trans){align-items: start;}
.comittee__wrap ul.scheme__list li{font-size:18px; line-height: 165%;}


@media (max-width: 1366px) {
    .content__wrap.apply__content h2, content__wrap.apply__content p{max-width:95%}

  }

  @media (max-width: 991px) {
    .content__wrap.apply__content h2, content__wrap.apply__content p{max-width:100%;}
  }