/* === ROBOTO GLOBAL OVERRIDE — Sprint 6 === */
body, h1, h2, h3, h4, h5, h6, p, span, div, a, button, input, select, textarea, label, li, td, th, dt, dd, blockquote, .nav-link, .dropdown-item, .form-control, .form-label, .table, .modal, .btn, .card, .alert, .badge, .tooltip, .popover {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif !important;
}
/* === SCROLL FIX: inline.css has unscoped error-page body { display:flex; height:100vh }
     that leaks to all pages. Override here for main layout pages. === */
body {
  display: block !important;
  height: auto !important;
}

/* Bootstrap Icons spin animation (replaces FA fa-spin) */
.bi-spin {
    display: inline-block;
    -webkit-animation: bi-spin 1.5s linear infinite;
    animation: bi-spin 1.5s linear infinite;
}
@keyframes bi-spin {
    0%   { -webkit-transform: rotate(0deg);   transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-webkit-keyframes bi-spin {
    0%   { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

/* Social Feed Follow Cards (replaces Facebook/Instagram/X iframes) */
.social-follow-card {
    text-align: center;
    padding: 32px 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}
.social-icon-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #fff;
    font-size: 48px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform 0.25s ease;
}
.social-icon-circle:hover {
    transform: translateY(-3px) scale(1.04);
}
.social-icon-circle.facebook-bg {
    background: linear-gradient(135deg, #1877F2 0%, #0e5fc1 100%);
}
.social-icon-circle.instagram-bg {
    background: linear-gradient(135deg, #F58529 0%, #DD2A7B 35%, #8134AF 70%, #515BD4 100%);
}
.social-icon-circle.x-bg {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}
.social-platform-name {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 1.4rem;
}
.social-platform-desc {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 320px;
    margin: 0 auto 18px;
}
.btn-facebook-social,
.btn-instagram-social,
.btn-x-social {
    display: inline-flex;
    align-items: center;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 999px;
    transition: filter 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}
.btn-facebook-social {
    background: linear-gradient(135deg, #1877F2 0%, #0e5fc1 100%);
}
.btn-instagram-social {
    background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #515BD4 100%);
}
.btn-x-social {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
}
.btn-facebook-social:hover,
.btn-instagram-social:hover,
.btn-x-social:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-1px);
}

/* Map Card (offline location card - replaces Google Maps iframe) */
.map-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 350px;
    background: linear-gradient(135deg, #f1f8ff 0%, #e8f5e9 60%, #fff8e1 100%);
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}
.map-illustration {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.map-illustration svg {
    width: 100%;
    height: 100%;
    display: block;
}
.map-overlay {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);
    padding: 32px 24px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    top: 50%;
    transform: translateY(-50%);
}
.map-pin-wrapper {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 38px;
    box-shadow: 0 6px 16px rgba(211,47,47,0.35);
    animation: map-pin-pulse 2.2s ease-in-out infinite;
}
@keyframes map-pin-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}
.map-title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 1.35rem;
}
.map-address {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 18px;
}
.btn-map-directions {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    transition: filter 0.2s ease, transform 0.2s ease;
}
.btn-map-directions:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-1px);
}
@media (max-width: 575.98px) {
    .map-card { min-height: 420px; }
    .map-overlay { padding: 22px 16px; }
}

/* Footer map card (replaces Google Maps iframe in footer) */
.footer-map-card {
    text-align: center;
    padding: 18px 14px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
}
.footer-map-pin {
    font-size: 38px;
    color: #ff7961;
    display: inline-block;
    margin-bottom: 6px;
    animation: map-pin-pulse 2.2s ease-in-out infinite;
}
.footer-map-text {
    color: #fff;
    font-size: 0.92rem;
    margin-bottom: 12px;
    opacity: 0.95;
}
.btn-footer-map {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff7961 0%, #d32f2f 100%);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.88rem;
    transition: filter 0.2s ease, transform 0.2s ease;
}
.btn-footer-map:hover {
    color: #fff;
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.socialFeed .nav-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}
.socialFeed .nav-tabs .nav-link i {
    font-size: 1.05rem;
    line-height: 1;
}

html {
    overflow-x: hidden;
}
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.top_header {
    background: linear-gradient(to right, #6c1340, #e91e63);
}

.top_header.header-top .language01 select {
    background: none;
}

.top_header ul li {
    display: inline-block;
    /* float: left; */
    line-height: 36px;
    /* height: 36px; */
    list-style: none;
    margin-right: 4px;
    padding-right: 10px;
}

.top_header ul li:nth-child(1) {
    border-right: 1px solid #ffffff80;
}

.top_header .font01 {
    opacity: 1;
}

.top_header .skip_content {
    width: 22px;
    height: 22px;
    /* opacity: 0.4; */
}

.nav_menu_section {
    background: linear-gradient(to right, #6c1340, #e91e63);
}

.nav_menu_section .navbar-nav .nav-link {
    color: #fff;
    font-size: 14px !important;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 10px;
}

.nav_menu_section .dropdown-toggle::after {
    margin-left: 5px;
    width: 4px;
    height: 4px;
    border-width: 0px 1px 1px 0px;
    border-color: currentColor;
    vertical-align: 2px;
    opacity: 0.75;
}

/* Tiny chevron for top nav dropdowns */
.navbar-nav > li.nav-item.dropdown > .nav-link.dropdown-toggle::after {
    width: 4px !important;
    height: 4px !important;
    border-width: 0px 1px 1px 0px !important;
    border-color: currentColor !important;
    vertical-align: 2px !important;
    opacity: 0.75 !important;
}

/* Submenu (Level 2+) chevron - sub-dropdown-toggle in dropdown-menu */
.nav_menu_section .dropdown-menu .dropdown-item.dropdown-toggle::after {
    width: 4px;
    height: 4px;
    border-width: 0px 1px 1px 0px;
    border-color: currentColor;
    margin-left: auto;
    margin-right: 0;
    vertical-align: 2px;
    transform: rotate(45deg);
    opacity: 0.75;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.nav_menu_section .dropdown-menu .dropdown-item.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(225deg);
    opacity: 1;
}

/* .nav_menu_section .navbar-nav .nav-link.active, 
  .nav_menu_section .navbar-nav .nav-link:hover
  .nav_menu_section .navbar-nav .nav-link:hover
  .navbar-nav .show > .nav-link 
  {
    color: #ffe700 !important;
  } */
.nav_menu_section .navbar-nav .nav-link:hover,
.nav_menu_section .navbar-nav .nav-link:focus,
.nav_menu_section .navbar-nav .nav-link.active {
    color: #ffe700 !important;
}

.nav_menu_section .dropdown-menu a.dropdown-item:hover,
.nav_menu_section .dropdown-menu a.dropdown-item:focus {
    background-color: #fbe9ef !important;
    color: #e91e63 !important;
    border-left: 4px solid #e91e63 !important;
    padding-left: 20px !important;
}

.nav_menu_section .navbar-nav .dropdown-menu {
    min-width: max-content !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    border: 1px solid rgba(108, 19, 64, 0.08) !important;
    box-shadow: 0 8px 30px rgba(108, 19, 64, 0.08) !important;
    text-align: left;
    transition: all ease-in-out 0.3s;
    overflow: hidden !important;
    padding: 6px 0 !important;
}

.nav_menu_section .navbar-nav .dropdown-menu li a {
    padding: 10px 18px !important;
    border-bottom: 1px dashed rgba(108, 19, 64, 0.18) !important;
    border-radius: 0 !important;
    white-space: nowrap !important;
    max-width: none !important;
    color: #6c1340 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease-in-out !important;
    border-left: 4px solid transparent !important;
}

.nav_menu_section .navbar-nav .dropdown-menu li:last-child a {
    border-bottom: 0 !important;
}

/* Remove default browser blue click outlines and focus rings */
.nav_menu_section a:focus,
.nav_menu_section button:focus,
.nav_menu_section .nav-link:focus,
.nav_menu_section .dropdown-item:focus,
.nav_menu_section a:active,
.nav_menu_section button:active,
.nav_menu_section .nav-link:active,
.nav_menu_section .dropdown-item:active,
.nav_menu_section a:focus-visible,
.nav_menu_section button:focus-visible,
.nav_menu_section .nav-link:focus-visible,
.nav_menu_section .dropdown-item:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.banner_section.banner {
    background: none;
    padding: 0;
    min-height: 360px;
    height: clamp(360px, 52vh, 620px);
}
/* .banner_section.banner .carousel-item img {
    width: 100%;
    height: 100%;
} */
.banner_section.banner
    #carouselExampleIndicators
    .carousel-inner
    .carousel-item
    img {
    height: clamp(360px, 52vh, 620px);
    object-fit: cover;
    width: 100%;
}

.banner_section.banner .carousel-caption {
    bottom: 10rem;
}

.banner_section.banner .carousel-caption h5 {
    font-size: 40px;
}

.banner_section.banner .carousel-caption p {
    font-size: 25px;
}

.banner_section.banner .carousel-indicators [data-bs-target] {
    width: 10px !important;
    height: 10px !important;
    padding: 1px !important;
    border-radius: 50% !important;
}
.banner_section.banner .card.latestEventNews.right_section h3 {
    /* background: linear-gradient(to right, #6c1340, #e91e63); */
    border-bottom: 1px solid #8c2f4e;
    padding: 6px 10px;
    color: #fff;
    font-size: 20px;
}
.social_section .card.latestEventNews {
    padding-bottom: 10px;
}
.social_section .card.latestEventNews,
.social_section .card.socialFeed {
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.2),
        0px 2px 8px -2px rgba(33, 33, 33, 0.04);
}
.social_section .card.socialFeed {
    padding-bottom: 0px !important;
}
/* .banner_section.banner .card.latestEventNews {
    position: absolute;
    top: 5%;
    right: 22px;
    width: 400px;
    background: #fff;
} */
/******keyIndicators******/
.keyIndicators {
    /* padding: 70px 0; */
    background: #f1effa;
    position: relative;
}
/* .keyIndicators .owl-item {
    width: 25% !important;
    float: left;
} */
.keyIndicators .item {
    /* background: #f9eff1; */
    /* background: #f1effa; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100px;
    transition: all 0.3s ease;
    padding: 16px;
    border-radius: 0 !important;
    margin: 0 !important;
}
.keyIndicators .item:hover {
    /* background: #f9eff1; */
    background: linear-gradient(90deg, #dcd6f3, #f6dbe2);
    transition: all 0.1s ease;
}
.keyIndicators h2,
.activity_section h2,
.project_section h2,
.social_section h2 {
    color: #6c1340;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}
#keyIndicators .headline {
    font-size: 16px;
    color: #0074c6;
    transition: 400ms;
    margin: 0;
}
#keyIndicators .number {
    font-size: 28px;
    font-weight: 600;
    color: #002e2e;
    transition: 400ms;
    margin: 0 0 10px 0px;
}
#keyIndicators .duration {
    font-size: 14px;
    color: #666;
    transition: 400ms;
    text-align: center;
    margin: 0;
}
#keyIndicators .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 999;
    /* pointer-events: none;    allow clicks to go through except buttons */
}

#keyIndicators .owl-nav button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    pointer-events: all; /* re-enable click */
    /* display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease; */
}
#keyIndicators .owl-stage {
    transition-timing-function: linear !important;
}
#keyIndicators .owl-nav button:hover {
    background: rgba(0, 0, 0, 0.8);
}

#keyIndicators .owl-nav .owl-prev {
    margin-left: 20px;
}

#keyIndicators .owl-nav .owl-next {
    margin-right: 20px;
}

/*******About us Section*******/
.aboutus_section img {
    border-radius: 20px;
}
.aboutus_section .eduexplore_left-content.aboutContent button {
    background: linear-gradient(to right, #6c1340, #e91e63);
    transition: all 0.1s linear;
    color: #fff;
    border: none;
}
.aboutus_section .eduexplore_left-content.aboutContent button:hover {
    background: linear-gradient(90deg, #00b2e1, #4b3ea7);
    transition: all 0.5s ease-in-out;
}
.aboutus_section span {
    font-family: "var";
    font-size: 40px;
    font-weight: 600;
    background: linear-gradient(to right, #6c1340, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.aboutus_section p {
    text-align: justify;
    line-height: 1.85 !important;
    margin-bottom: 24px !important;
}
.aboutus_section .eduexplore_left-content.aboutContent * {
    font-family: "var", sans-serif !important;
}

.aboutus_section .cm_photo_section {
    border: 1px solid rgba(0, 0, 0, 0.08); /* light outer border */
    border-radius: 12px;
    background: linear-gradient(
        90deg,
        #f5eefe38,
        #fbe9ef75
    ); /* subtle matching bg */
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.cm_photo_section .single_section {
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border-radius: 10px !important;
    padding: 20px 16px !important;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    text-align: left !important;
    box-shadow: 0 4px 12px rgba(108, 19, 64, 0.03) !important;
    transition: all 0.25s ease-in-out !important;
}
.cm_photo_section .single_section:hover {
    transform: translateY(-2px) !important;
    background: rgba(255, 255, 255, 0.6) !important;
    border-color: rgba(108, 19, 64, 0.2) !important;
    box-shadow: 0 6px 16px rgba(108, 19, 64, 0.08) !important;
}
.cm_photo_section .single_section img {
    width: 85px !important;
    height: 85px !important;
    border-radius: 50% !important;
    border: 2px solid #f4d3dd !important;
    padding: 3px !important;
    flex-shrink: 0 !important;
}
.cm_photo_section .single_section:last-child {
    margin-bottom: 0 !important;
}
.cm_photo_section .single_section .head-info-content {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
}
.cm_photo_section .single_section h3 {
    font-size: 15px !important;
    font-weight: bold !important;
    margin: 0 0 4px 0 !important;
    color: #6c1340 !important;
    text-align: left !important;
    line-height: 1.2 !important;
}
.cm_photo_section .single_section p {
    margin: 0 !important;
    font-size: 13px !important;
    color: #718096 !important;
    text-align: left !important;
    line-height: 1.3 !important;
}
/*****Activity Section Start*****/
/* .activity_section {
    background: #fff;
    padding: 70px 0;
}
.activity_section .activitySectionSwiper .swiper-slide {
  display: flex;
  justify-content: center;
}
.activity_section .activitySectionSwiper .card {
  width: 100%;
  max-width: 100%;
  box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.20), 0px 2px 8px -2px rgba(33, 33, 33, 0.04) !important;
}
.activity_section img {
    height: 200px;
}
.activity_section p {
    min-height: 90px;
} */

.activity_section {
    background: #fff;
    padding: 70px 0;
}
.activity_section .activitySectionSwiper .swiper-wrapper {
    align-items: stretch;
}
.activity_section .activitySectionSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
}
.activity_section .activitySectionSwiper .card {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.2),
        0px 2px 8px -2px rgba(33, 33, 33, 0.04) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.activity_section .activitySectionSwiper .card:hover {
    transform: scale(1.03) !important;
    box-shadow: 0px 12px 20px -2px rgba(33, 33, 33, 0.22),
        0px 4px 12px -2px rgba(33, 33, 33, 0.06) !important;
}
.activity_section .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.activity_section img {
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}
.activity_section .activity-desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
.activity_section .activity-desc p {
    margin: 0;
    padding: 0;
}
.tooltip-inner {
    background-color: white;
    color: #0f0f0f;
}
.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #6c1340;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #6c1340;
}

/*****Activity Section End*****/

/****Product Section Start****/
.project_section {
    background: #f9eff1;
    padding: 70px 0;
}
.project_section .projects,
.socialWall {
    background: #fff;
    border-radius: 10px;
    border-color: rgba(0, 0, 0, 0.075);
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.2),
        0px 2px 8px -2px rgba(33, 33, 33, 0.04) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.project_section .projects:hover,
.socialWall:hover {
    transform: scale(1.03) !important;
    box-shadow: 0px 12px 20px -2px rgba(33, 33, 33, 0.22),
        0px 4px 12px -2px rgba(33, 33, 33, 0.06) !important;
}
.project_section img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    height: 200px;
    object-fit: cover;
}
.project_section .projects h5 {
    padding: 5px 15px 5px 15px;
    margin: 0;
    font-size: 20px;
    color: #000;
}
.project_section .projects p {
    padding: 0px 15px 15px 15px;
    margin: 0;
    font-size: 16px;
    color: #000;
}
.project_section .projects:hover h5,
.project_section .projects:hover p {
    color: #6c1340;
    transition: all 0.5s linear;
}
.project_section .view_more,
.day_nrlm .view_more {
    background: linear-gradient(to right, #6c1340, #e91e63);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.1s linear;
    border: none;
}
.project_section .view_more:hover,
.day_nrlm .view_more:hover {
    background: linear-gradient(90deg, #00b2e1, #4b3ea7);
    transition: all 0.5s ease-in-out;
}
#uw-main .second-panel {
    background: linear-gradient(to right, #6c1340, #e91e63);
}
/****Product Section End****/

/*****Social Section Start*****/
.social_section {
    padding: 70px 0;
    background: #fff;
}
.social_section .card.socialFeed {
    border: 0;
}
.social_section nav,
.livelihood_section #myTab.nav {
    background: linear-gradient(to right, #6c1340, #e91e63);
    border-radius: 8px 8px 0 0;
}
.social_section .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.livelihood_section .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #6c1340 !important;
    border: 0;
    background: linear-gradient(90deg, #dcd6f3, #f6dbe2);
}
.social_section .nav-tabs .nav-link,
.livelihood_section .nav-tabs .nav-link {
    color: #fff;
    /* background: #fff; */
    border: none;
    padding: 10px 20px;
    border-radius: 0;
}
.social_section .nav-tabs .nav-link:hover,
.livelihood_section .nav-tabs .nav-link {
    border: none !important;
}
.social_section .nav-tabs .nav-link.active:first-child,
.livelihood_section .nav-tabs .nav-link.active:first-child {
    border-radius: 5px 0 0 0;
}
.social_section #nav-tabContent,
.livelihood_section #nav-tabContent {
    padding: 10px !important;
    border-radius: 0 0 8px 8px !important;
    border: 1px solid #ccc;
    border-top: 0 !important;
    background: #f9eff1;
}
.social_section #nav-tabContent:hover,
.livelihood_section #nav-tabContent:hover {
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.2),
        0px 2px 8px -2px rgba(33, 33, 33, 0.04) !important;
}
.social_section iframe {
    width: 100%;
    height: 100%;
}
.social_section .tab-pane.active {
    display: flex !important;
    flex-direction: column;
}
.social_section #nav-x-tab {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    background: #000 !important;
    color: #fff !important;
    border-radius: 4px !important;
    border: none !important;
    margin: auto 4px auto 10px !important;
    font-weight: bold !important;
    font-size: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    box-shadow: none !important;
}
.social_section #nav-x-tab:hover {
    background: #222 !important;
    color: #fff !important;
}
.social_section .card.latestEventNews h3 {
    background: linear-gradient(to right, #6c1340, #e91e63);
    color: #fff;
    border-radius: 5px 5px 0 0;
    padding: 5px 10px;
    font-size: 20px;
}
/* Card Container */
.latestEvent {
    margin: 3px 12px;
    padding: 6px 10px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #edf2f7;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    flex-shrink: 0 !important;
}

.latestEvent:hover {
    transform: translateY(-2px);
    border-color: rgba(209, 32, 95, 0.25);
    background-color: #fffafb;
    box-shadow: 0 4px 12px rgba(209, 32, 95, 0.05);
}

/* Link Wrapper */
.news-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    width: 100%;
}

/* Calendar Date Badge */
.news-date-badge-single {
    font-size: 10px;
    font-weight: 700;
    color: #d1205f;
    background: #fff5f7;
    border: 1px solid rgba(209, 32, 95, 0.15);
    border-radius: 4px;
    padding: 1px 6px;
    white-space: nowrap;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-sizing: border-box;
    flex-shrink: 0;
}

.latestEvent:hover .news-date-badge-single {
    background: #d1205f;
    color: #fff;
    border-color: #d1205f;
}

/* Text Content */
.news-text-content {
    flex: 1;
    min-width: 0 !important;
    display: flex;
    gap: 4px;
}

.news-title {
    font-size: 13px !important;
    font-weight: 600;
    color: #2d3748 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: color 0.2s ease;
    text-align: left;
    min-width: 0 !important;
}

.latestEvent:hover .news-title {
    color: #d1205f !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Metadata Row */
.news-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-type {
    font-size: 10px;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-badge-new {
    background: #ef4444;
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 1px 5px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    animation: pulse-badge 1.5s infinite;
}

@keyframes pulse-badge {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}
.latestEventNews .row {
    padding: 0 12px;
}
.latestEventNews a {
    color: #000;
    font-size: 14px;
    line-height: 18px;
}
.latestEventNews a:hover {
    color: #6c1340;
}
.latestEvent {
    margin-bottom: 10px;
    border-bottom: 1px dashed #ccc;
}
.latestEvent:last-child {
    border-bottom: 0;
}
.latestEvent a span.pulse2 {
    -webkit-animation: pulse 400ms infinite alternate;
    animation: pulse 400ms infinite alternate;
    padding: 2px 10px;
    width: 50px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 5px;
    font-weight: 600;
    /* color: #fff; */
    text-align: center;
    height: 19px;
    line-height: 14px;
    /* color: #6c1340; */
}
@-webkit-keyframes pulse {
    0% {
        background: linear-gradient(to right, #6c1340, #e91e63);
        color: #fff;
    }
    100% {
        background: linear-gradient(90deg, #dcd6f3, #f6dbe2);
        color: #6c1340;
    }
}
@keyframes pulse {
    0% {
        background: linear-gradient(to right, #6c1340, #e91e63);
        color: #fff;
    }
    100% {
        background: linear-gradient(90deg, #dcd6f3, #f6dbe2);
        color: #6c1340;
    }
}

.common_button {
    background: linear-gradient(to right, #6c1340, #e91e63);
    color: #fff !important;
    border-radius: 5px 5px;
    padding: 8px 10px;
    font-size: 16px !important;
    text-align: center;
    display: inline-block;
}
.common_button.readMore {
    border-radius: 5px 0 5px 0;
}
.common_button:hover {
    background: linear-gradient(90deg, #00b2e1, #4b3ea7);
}
/*****Social Section End*****/
/*****Social Tab Start****/
.social_tab {
    /* background: #f1effa; */
    background: linear-gradient(90deg, #dcd6f3, #f6dbe2);
}
.social_tab,
.social_tab * {
    font-family: inherit !important;
}
.social_tab .nav .nav-item .nav-link img {
    width: 50px;
    height: 50px;
}
.social_tab .nav .nav-item .nav-link span {
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}
.social_tab .nav {
    border-bottom: 1px solid #fff;
}
.social_tab .nav .nav-item {
    margin-right: 5px;
}
.social_tab .nav .nav-item .nav-link {
    background: #ccc;
    border-radius: 5px 5px 0 0;
}
.social_tab .nav .nav-item .nav-link.active {
    /* background-color: transparent !important; */
    background: linear-gradient(to right, #6c1340, #e91e63) !important;
    border: 0px solid #fff !important;
    border-bottom: 0 !important;
    border-radius: 5px 5px 0 0;
}
.social_tab .tab-content {
    border-radius: 0 0 5px 5px;
    border: 1px solid#fff;
    border-top: 0;
    padding: 20px 20px 10px 20px;
}

/**Social Tab**/
.Socialwall_img {
    margin-bottom: 20px;
}
.Socialwall_img img {
    border-radius: 10px;
    width: 100%;
    border: 4px solid #fff;
    height: 185px;
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.2),
        0px 2px 8px -2px rgba(33, 33, 33, 0.04);
}
.socialWall img {
    border-radius: 10px 10px 0 0;
    box-shadow: none;
}
.social_tab h3 {
    font-size: 30px;
    margin-bottom: 15px;
    background: linear-gradient(to right, #6c1340, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.social_tab p {
    font-size: 18px;
    line-height: 22px;
    color: #333;
}

/*****Social Tab End*****/

/******Gallery Section******/
.gallery_section {
    background: #f1effa;
    /* background: linear-gradient(92deg, #D7FFE0 -17.42%, rgba(217, 231, 239, 0) 108.05%); */
    padding: 40px 0;
}
.gallery_section .card {
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.2),
        0px 2px 8px -2px rgba(33, 33, 33, 0.04);
}

.gallery_section .owl-stage-outer {
    padding: 10px 10px !important;
}

.gallery_section .owl-item {
    width: 348px !important;
}

.gallery_section .study-heading h3 {
    font-size: 40px;
    color: #6c1340;
    padding: 5px 10px;
    font-weight: 600;
}

.gallery_section .focus-area .card {
    padding: 0 !important;
}

.gallery_section .focus-area .card h6,
.gallery_section .focus-area .card p {
    padding: 5px 10px;
    text-align: center;
}

.gallery_section .focus-area .owl-nav {
    top: 90%;
}

.gallery_section .focus-area .item img {
    border-radius: 10px 10px 0 0;
}
.gallery_section .card {
    border-radius: 10px;
}
.gallery_section .card img {
    border-radius: 10px 10px;
    /* height: 258px; */
    height: 175px;
}

/* Testimonial Section */
.testimonial_section {
    /* background: #f1effa; */
    background: #f9eff1;
    padding: 60px 0;
    border-top: 1px solid #fff;
}

.testimonial_section .main-heading {
    margin-bottom: 0;
    padding: 5px 10px;
    font-weight: 600;
}

/* Subtitle */
.testimonial-subtitle {
    font-size: 32px;
    color: #333;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Swiper container */
.testimonialSectionSwiper {
    overflow: visible;
    padding: 80px 0 60px; /* CHANGED: increased top padding for larger image */
    position: relative;
}

/* Swiper slide */
.testimonialSectionSwiper .swiper-slide {
    position: relative;
    height: auto;
}

/* Card - Dynamic height based on content */
.testimonial-card {
    position: relative;
    padding: 90px 25px 30px; /* CHANGED: increased top padding for larger image */
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 5px 15px rgba(108, 19, 64, 0.1);
    text-align: center;
    /* min-height: auto; */
    height: 150px;
    min-height: 150px; /* ensures consistency */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 60px; /* CHANGED: increased for larger image */
}

/* Avatar */
.testimonial-img-wrapper {
    position: absolute;
    top: -60px; /* CHANGED: increased for larger image */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Avatar - Larger size */
.testimonial-img {
    width: 140px; /* CHANGED: increased from 120px */
    height: 140px; /* CHANGED: increased from 120px */
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6c1340; /* CHANGED: thicker border */
    background: #ddd;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
}

/* Testimonial text wrapper */
.testimonial-text {
    line-height: 1.7;
    text-align: center;
    margin: 0;
    padding: 0 20px;
    display: inline-block;
    position: relative;
}

/* Make ONLY the text content truncatable, not the quote spans */
.testimonial-text {
    display: inline; /* Keep inline to allow quotes to wrap around */
    position: relative;
}

/* Create a wrapper for the actual text content that gets truncated */
.testimonial-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: help;
}

/* Tooltip styling */
.testimonial-tooltip {
    position: fixed;
    background: #fff;
    border: 2px solid #6c1340;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.25);
    z-index: 99999;
    max-width: 450px;
    display: none;
    color: #333;
    line-height: 1.7;
    pointer-events: none;
}

.more-link {
    color: #6c1340;
    font-weight: 600;
    cursor: pointer;
    margin-left: 3px;
    font-size: 0.9em;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.more-link:hover {
    text-decoration: underline;
}

/* Hover tooltip on "more" link */
.more-link:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 12px;
    margin-bottom: 5px;
    z-index: 1000;
}

/* Opening quote - aligned with first line */
.quote-open {
    position: absolute;
    left: -10px;
    top: 0;
    font-size: 40px;
    color: rgba(108, 19, 64, 0.25);
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    line-height: 1;
    pointer-events: none;
}

/* Closing quote - aligned with last line */
.quote-close {
    position: absolute;
    right: -10px;
    bottom: 0;
    font-size: 40px;
    color: rgba(108, 19, 64, 0.25);
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    line-height: 1;
    pointer-events: none;
    transform: translateY(35%);
}

/* Text content wrapper */
.testimonial-content {
    flex-grow: 1;
}

/* Name - Brand color with underline */
.testimonial-name {
    font-weight: 700;
    font-size: 1.1rem;
    /* color: #6c1340; */
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 20px;
    margin-top: 15px;
    border-top: 3px solid #6c1340;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.testimonialSectionSwiper .swiper-pagination-bullet-active {
    background: #6c1340;
    width: 14px;
    height: 14px;
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .testimonial-img {
        width: 120px;
        height: 120px;
    }

    .testimonial-img-wrapper {
        top: -55px;
    }

    .testimonial-card {
        padding: 80px 25px 30px;
        margin-top: 55px;
    }

    .testimonialSectionSwiper {
        padding: 70px 0 60px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .testimonial_section .study-heading h3 {
        font-size: 28px;
    }

    .testimonial-subtitle {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .testimonialSectionSwiper {
        padding: 65px 0 50px;
    }

    .testimonial-card {
        padding: 70px 20px 25px;
        margin-top: 50px;
    }

    .testimonial-img-wrapper {
        top: -50px;
    }

    .testimonial-img {
        width: 110px;
        height: 110px;
        border: 3px solid #6c1340;
    }

    .quote-open {
        font-size: 35px;
        left: -8px;
    }

    .quote-close {
        font-size: 35px;
        right: -8px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        padding: 0 15px;
        line-height: 1.6;
    }

    .testimonial-name {
        font-size: 1rem;
        padding-top: 15px;
        margin-top: 12px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 575px) {
    .testimonial_section .study-heading h3 {
        font-size: 24px;
    }

    .testimonial-subtitle {
        font-size: 20px;
    }

    .testimonialSectionSwiper {
        padding: 60px 0 45px;
    }

    .testimonial-card {
        padding: 65px 18px 22px;
        border-radius: 15px;
        margin-top: 45px;
    }

    .testimonial-img-wrapper {
        top: -45px;
    }

    .testimonial-img {
        width: 100px;
        height: 100px;
        border: 3px solid #6c1340;
    }

    .quote-open {
        font-size: 32px;
        left: -6px;
    }

    .quote-close {
        font-size: 32px;
        right: -6px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        padding: 0 12px;
        line-height: 1.6;
    }

    .testimonial-name {
        font-size: 0.95rem;
        padding-top: 15px;
        margin-top: 12px;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .testimonial-img {
        width: 90px;
        height: 90px;
    }

    .testimonial-img-wrapper {
        top: -42px;
    }

    .testimonial-card {
        padding: 60px 15px 20px;
        margin-top: 42px;
    }

    .quote-open,
    .quote-close {
        font-size: 28px;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }
}

/******Highlight Testimonial********/
/* =====================================
   Smooth Zoom & Focus Transition
   ===================================== */

/* Base transition for all cards */
.testimonial-card {
    transition: transform 0.55s ease, opacity 0.55s ease, box-shadow 0.55s ease;
}

/* Default (non-active) slides */
.testimonialSectionSwiper .swiper-slide .testimonial-card {
    transform: scale(0.9);
    opacity: 0.45;
}

/* Center / active slide */
.testimonialSectionSwiper .swiper-slide-active .testimonial-card {
    transform: scale(1.05); /* 👈 clear zoom */
    opacity: 1;
    box-shadow: 0px 28px 55px rgba(108, 19, 64, 0.28);
    z-index: 10;
}

/* Side slides (next & prev) */
.testimonialSectionSwiper .swiper-slide-prev .testimonial-card,
.testimonialSectionSwiper .swiper-slide-next .testimonial-card {
    transform: scale(0.96);
    opacity: 0.7;
}

/* Avatar subtle zoom on active */
.testimonialSectionSwiper .swiper-slide-active .testimonial-img {
    transform: scale(1.06);
    transition: transform 0.55s ease, box-shadow 0.55s ease;
    box-shadow: 0px 12px 35px rgba(108, 19, 64, 0.35);
}

/* Text clarity boost on active */
.testimonialSectionSwiper .swiper-slide-active .testimonial-text {
    color: #222;
}
/***Highlight Testimonial End***/

.odisha-logo {
    height: 38px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

/* ============================================
   NEWS & HIGHLIGHTS SECTION
   ============================================ */

.news_highlight_section {
    padding: 80px 0;
    background: linear-gradient(90deg, #dcd6f3, #f6dbe2);
    position: relative;
}

.news_highlight_section .main-heading {
    margin-bottom: 0;
    padding: 5px 10px;
    font-weight: 600;
}

/* .news-highlight-wrapper {
  background: linear-gradient(90deg, #f5eefe, #fbe9ef); 
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
} */

.news_highlight_section .latestEventNews {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 10px !important;
}
.news_highlight_section .vertical_scroll_latestNews {
    flex-grow: 1;
}

.highlights-swiper-container {
    height: 100%;
    position: relative;
}

.highlightSectionSwiper {
    height: 100%;
    padding-bottom: 60px;
}

.highlightSectionSwiper .swiper-slide {
    height: auto;
}

.highlight-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 330px !important;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(169, 53, 103, 0.15);
}

.highlight-image {
    width: 100%;
    height: 160px !important; /* CHANGED: Reduced from 180px to match card min-height */
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-image img {
    transform: scale(1.05);
}

.highlight-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

@media (max-width: 1199px) {
    .news-highlight-wrapper {
        padding: 40px;
    }

    .news_highlight_section .main-heading {
        font-size: 2.5rem;
    }

    .news_highlight_section .latestEventNews {
        min-height: 300px; /* CHANGED: Reduced */
        max-height: 550px; /* CHANGED: Reduced */
    }

    .highlight-card {
        min-height: 380px; /* CHANGED: Reduced */
    }

    .highlight-image {
        height: 200px; /* CHANGED: Reduced */
    }
}

@media (max-width: 991px) {
    .news_highlight_section {
        padding: 60px 0;
    }

    .news_highlight_section .main-heading {
        font-size: 2rem;
    }

    .news-highlight-wrapper {
        padding: 30px;
    }

    .news_highlight_section .latestEventNews {
        min-height: 280px; /* CHANGED: Reduced */
        max-height: 500px; /* CHANGED: Reduced */
    }

    .highlight-card {
        min-height: auto;
    }

    .highlight-image {
        height: 180px; /* CHANGED: Reduced */
    }

    .highlight-content {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .news_highlight_section {
        padding: 40px 0;
    }

    .news_highlight_section .main-heading {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .news-highlight-wrapper {
        padding: 25px;
        border-radius: 20px;
    }

    .news_highlight_section .latestEventNews {
        min-height: 250px; /* CHANGED: Reduced */
        max-height: 450px; /* CHANGED: Reduced */
    }

    .highlight-image {
        height: 160px; /* CHANGED: Reduced */
    }

    .highlight-content {
        padding: 18px;
    }

    .highlight-title {
        font-size: 1.15rem; /* CHANGED: Reduced */
    }

    .highlight-description {
        font-size: 0.85rem;
    }

    .highlightSectionSwiper .swiper-button-prev,
    .highlightSectionSwiper .swiper-button-next {
        width: 45px;
        height: 45px;
    }

    .highlightSectionSwiper .swiper-button-prev::after,
    .highlightSectionSwiper .swiper-button-next::after {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .news_highlight_section .main-heading {
        font-size: 1.4rem;
    }

    .news-highlight-wrapper {
        padding: 20px;
    }

    .news_highlight_section .latestEventNews {
        min-height: 200px; /* CHANGED: Reduced */
        max-height: 400px; /* CHANGED: Reduced */
    }

    .highlight-image {
        height: 150px; /* CHANGED: Reduced */
    }

    .highlight-content {
        padding: 15px;
    }

    .highlight-title {
        font-size: 1.05rem;
    }

    .highlight-description {
        font-size: 0.8rem;
    }
}

.highlightSectionSwiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch; /* Add this */
}

/* 2. Let highlight cards adjust to their own content */
.highlight-card {
    height: auto;
    min-height: 420px; /* Keep minimum height */
    width: 100%;
}

/* 3. Let content area expand naturally */
.highlight-content {
    /* Remove any flex-grow or flex: 1 */
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    /* NO overflow properties - let it expand naturally */
}

/* ============================================
   RESPONSIVE: Update min-heights only
   ============================================ */

@media (max-width: 1199px) {
    .highlight-card {
        min-height: 380px;
    }
}

@media (max-width: 991px) {
    .highlight-card {
        min-height: auto; /* Remove min-height on smaller screens */
    }
}
/********For All Heading********/
.allHeading {
    background: linear-gradient(to right, #6c1340, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.activitySectionSwiper .swiper-button-next::after,
.activitySectionSwiper .swiper-button-prev::after,
.gallerySectionSwiper .swiper-button-next::after,
.gallerySectionSwiper .swiper-button-prev::after,
.testimonialSectionSwiper .swiper-button-next::after,
.testimonialSectionSwiper .swiper-button-prev::after,
.highlightSectionSwiper .swiper-button-prev::after,
.highlightSectionSwiper .swiper-button-next {
    color: #fff;
}
.keyIndicators .keyIndicatorSectionSwiper .swiper-button-next::after,
.keyIndicators .keyIndicatorSectionSwiper .swiper-button-prev::after {
    color: #8c2f4e;
    font-size: 30px;
}

/******Footer Section*******/
/* .our_brand_logo  */
.footer_section {
    background: linear-gradient(white, white),
        url(images/wall-of-partnership-bg.png) no-repeat left top;
    background-size: auto, auto;
    background-size: cover;
    background-blend-mode: multiply;
    background-size: cover;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    border-top: 0;
}

.our_brand_logo {
    position: relative;
    padding: 35px 0;
    overflow: hidden;
    background: linear-gradient(90deg, #fdfbfb 0%, #f7f3f5 50%, #fdfbfb 100%);
    border-top: 1px solid rgba(108, 19, 64, 0.06);
    border-bottom: 1px solid rgba(108, 19, 64, 0.06);
    display: flex;
    align-items: center;
}

/* Premium side gradient masks for fade-out effect */
.our_brand_logo::before,
.our_brand_logo::after {
    content: "";
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.our_brand_logo::before {
    left: 0;
    background: linear-gradient(
        to right,
        #fdfbfb 0%,
        rgba(253, 251, 251, 0) 100%
    );
}

.our_brand_logo::after {
    right: 0;
    background: linear-gradient(
        to left,
        #fdfbfb 0%,
        rgba(253, 251, 251, 0) 100%
    );
}

.our_brand_logo h2 {
    font-size: 34px;
    color: #6c1340;
    text-align: center;
    margin: 0 auto;
}

.our_brand_logo h2 span {
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    color: #6c1340;
    font-weight: bolder;
}

.our_brand_logo .logo_items {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.our_brand_logo:hover .logo_items {
    animation-play-state: paused;
}

.our_brand_logo .logo_items a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 95px;
    margin: 12px 15px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid rgba(108, 19, 64, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.our_brand_logo .logo_items a img {
    height: 55px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.our_brand_logo .logo_items a:hover {
    transform: scale(1.2); /* 1.2x scaled logo on hover */
    box-shadow: 0 8px 24px rgba(108, 19, 64, 0.12);
    border-color: rgba(108, 19, 64, 0.18);
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.production_section.foundation .foundation_heading h2 {
    color: #6c1340;
}

.production_section.foundation .foundation_class_subgrid img {
    width: 170px;
    border-radius: 10px;
}

.eduexplore.aboutus_section,
.about_section {
    background: linear-gradient(90deg, #dcd6f3, #f6dbe2);
}

.terms {
    background: linear-gradient(to right, #6c1340, #e91e63);
    border-top: 0;
}

.footer_section {
    /* background: linear-gradient(90deg, #edeafb 0%, #fceff1 100%); */
    background: linear-gradient(to right, #ffffff, #f8bbd0);
}

.footer_section ul li {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.footer_section ul li i {
    margin-right: 14px;
}

.footer_section h3 {
    color: #000;
    font-size: 26px;
    border-bottom: 1px solid #fff;
    padding-bottom: 8px;
    margin: 10px auto 30px auto;
}

/******17th July******/
.latestNews {
    background: linear-gradient(90deg, #00b2e1, #4b3ea7);
    color: #fff;
    padding: 6px 0;
}

.latestNews .badge-info {
    /* background-color: transparent !important; */
    overflow: hidden;
    position: relative;
}

.latestNews .badge-info span.badge-detail {
    display: block;
    box-shadow: none !important;
    position: static;
    border-radius: 0 !important;
    background-color: transparent !important;
    color: #fff;
    font-size: 16px;
    border: 0 !important;
    padding: 0;
    min-height: auto;
    text-align: left;
    /* animation: scroll-left 15s linear infinite;
    white-space: nowrap;
    padding-left: 50%; */
}

/* @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  } */
.latestNews p {
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}

/***Inner Page starts here***/
.inner_banner img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
/****About Us Inner Page****/
.about_section h1 {
    font-size: 35px;
}
.about_section p {
    font-size: 17px;
}
.about_section h1 span {
    font-size: 50px;
    line-height: 1.1em;
}
.about_section img {
    border-radius: 20px;
}
.about_section h1 span {
    font-weight: 700;
}
.about_section ul li {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    /* text-transform: capitalize; */
    color: var(--primary-color);
    padding-left: 20px;
    margin-bottom: 10px;
}
.about_section ul li::before {
    /* content: '\f00c'; */
    content: "\f111";
    font-family: "FontAwesome";
    position: absolute;
    top: 10px;
    left: 0;
    /* font-size: 20px; */
    font-size: 6px;
    /* background-image: linear-gradient(267.43deg, #ff6900 4.95%, #ffb846 97.92%); */
    background-image: linear-gradient(267.43deg, #4b3ea7 4.95%, #8c2f4e 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission_vision_section h3,
.team_section h3,
.inner_page_heading {
    font-size: 30px !important;
}
.mission_vision_section h5 {
    font-size: 20px;
}
.mission_vision_section p {
    font-size: 17px;
}
.mission_vision_section img {
    height: 250px;
}
.team_section .card:hover {
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.2),
        0px 2px 8px -2px rgba(33, 33, 33, 0.04) !important;
}
.team_section img {
    border-radius: 5px 5px 0 0;
    height: 200px;
}
.project_height_scroll {
    height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
}
.project_height_scroll::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* Optional: just to be extra safe */
}
/* Hide scrollbar for Firefox */
.project_height_scroll {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.project_height_scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

/* .livelihood_section #myTab.nav {
	background: linear-gradient(to right, #6c1340, #e91e63);
	border-radius: 8px 8px 0 0;
} */
.livelihood_section #myTab.nav-tabs .nav-item .nav-link {
    font-size: 20px !important;
}

.inclusion_listing li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 17px;
    transition: all 0.3s ease;
}

.inclusion_listing li::before {
    content: "\279E";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    /* color: #ff6900; */
    background: linear-gradient(to right, #6c1340, #e91e63);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: transform 0.3s ease;
}

.inclusion_listing li:hover::before {
    transform: translateX(5px);
}

.highlightText {
    color: #4b3ea7;
}

.livelihood_section img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 300px;
}

.lakhpati img {
    height: 170px;
}

/* Tender Section Starts */
.tender_section .filter-box {
    background: #f8f9fa;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}
.tender_section .table thead th {
    background-color: #ae1952;
    color: #fff;
    text-align: center;
}
/* .tender_section .table tbody tr:first-child {
    background-color: #e0f7f7;
    font-weight: bold;
  } */
.tender_section .table td,
.table th {
    vertical-align: middle;
    text-align: center;
}
.tender_section .download-link {
    color: #212529;
    font-weight: bold;
    text-decoration: none;
}
.tender_section .download-link:hover {
    text-decoration: underline;
}
.tender_section .apply_button {
    background: #ae1952;
    color: #fff;
}
/* .tender_section .apply_button:hover {
    border: 1px solid #4B3EA7;
  } */
.tender_section .active > .page-link,
.tender_section .page-link.active {
    z-index: 3;
    color: #fff;
    background-color: #ae1952;
    border-color: #ae1952;
}
.vertical_scroll_latestNews {
    height: 320px !important;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(209, 32, 95, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.vertical-news-marquee {
    display: flex;
    flex-direction: column;
    animation: vertical-scroll-news 22s linear infinite;
}

.vertical_scroll_latestNews:hover .vertical-news-marquee {
    animation-play-state: paused;
}

@keyframes vertical-scroll-news {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.parent_sticky {
    /* background: #f0f2f5; */
    margin: 20px 10px 10px 10px !important;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* height: 100vh; */
    /* font-family: 'Segoe UI', sans-serif; */
}
.sticky-note {
    width: 100%;
    min-height: 160px;
    padding: 20px;
    /* background: linear-gradient(145deg, #7ea4de, #274f8d, #1e3a70); */
    background: linear-gradient(to right, #6c1340, #e91e63);
    color: #fff;
    border-radius: 10px;
    box-shadow: 6px 10px 20px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    transition: all 0.3s ease;
}
.sticky-note::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 20px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #8c2f4e;
}
.sticky-note p {
    font-size: 12px;
    /* font-style: oblique; */
    text-align: justify;
    margin-bottom: 10px;
    line-height: 19px;
}
.sticky-note span {
    font-size: 12px;
    display: block;
    text-align: right;
    font-style: oblique;
}
.sticky-note:hover {
    transform: scale(1.03);
    box-shadow: 8px 14px 26px rgba(0, 0, 0, 0.3);
}

.publication_section .dataTables_wrapper .dataTables_filter {
    display: none; /* Hide default search */
}

/****RTI Section****/
.rti_section .rtiSection .card {
    padding: 10px;
    background: #f7f8f9;
}
.rti_section .contact-card {
    padding: 15px;
    display: inline-block;
    background: #fff;
    border-radius: 10px;
    border-color: rgba(0, 0, 0, 0.075) !important;
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.2),
        0px 2px 8px -2px rgba(33, 33, 33, 0.04) !important;
}
.rti_section .contact-card h5 {
    color: #000;
}
.rti_section .contact-card small {
    color: #8c2f4e;
}
.rti_section .icon {
    width: auto;
    height: auto;
    margin: 0px 10px 5px 0;
    color: #8c2f4e;
    background: none;
}
.financial_inclusion img {
    border-radius: 10px;
    height: 200px;
}
/*****FAQ Section*****/
.faq_section .accordion-button {
    font-weight: 500;
}
.faq_section .accordion-button:not(.collapsed) {
    /* background-color: #4B3EA7; */
    background: linear-gradient(to right, #6c1340, #e91e63);
    color: #fff;
}

.mission_vision_section .card-custom {
    position: relative;
    border-radius: 20px;
    padding: 5rem 2rem;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #4b3ea7, #8c2f4e) border-box;
    border: 5px solid transparent;
}
.mission_vision_section .card-custom h3 {
    color: #4b3ea7;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mission_vision_section .card-custom p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 0.8rem;
}

/* Gradient border-matching icon circle */
.mission_vision_section .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(to right, #6c1340, #e91e63);
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: absolute; */
    /* bottom: -35px;
    left: 0%; */
    /* transform: translateX(-50%); */
    border: 4px solid #fff;
    margin: 0 auto;
}

.mission_vision_section .icon-circle i {
    color: #fff;
    font-size: 28px;
}
.mission_vision_title {
    position: relative;
    text-transform: uppercase;
}
.mission_vision_title:after {
    position: absolute;
    top: 21px;
    left: 30%;
    content: "";
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, #6c1340, #e91e63);
}
.mission_vision_title:before {
    position: absolute;
    top: 21px;
    right: 30%;
    content: "";
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, #6c1340, #e91e63);
}
.mission_vision_title.for_mission:after {
    left: 28% !important;
}
.mission_vision_title.for_mission:before {
    right: 28% !important;
}
.mission_vision_title {
    position: relative;
}

/* Vision icon on right */
/* .mission_vision_section .icon-circle-right {
    bottom: -35px;
    left: 0;
    right: auto;
    transform: translateX(50%);
} */
ol.roman > li {
    list-style-type: lower-roman;
    margin-left: 20px;
    margin-bottom: 5px;
}
.capacity_tab_image img {
    height: 200px !important;
    width: 250px !important;
}
/* .partnership_grid {
    background: #fff;
    border-radius: 10px;
    border-color: rgba(0, 0, 0, 0.075);
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.20), 0px 2px 8px -2px rgba(33, 33, 33, 0.04) !important;
} */
.partnership_grid {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px !important;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
    /* border-color: rgba(0, 0, 0, 0.075);
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.20), 0px 2px 8px -2px rgba(33, 33, 33, 0.04) !important; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.partnership_grid:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.12);
}
.partnership_grid img {
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}
.partnership_grid h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}
.partnership_grid span {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    font-style: italic;
}
.partnership_grid p {
    font-size: 0.9rem;
    color: #444;
}
/*
.marquee {
  height: 100%;
  overflow: hidden;
  position: relative;
}
 
.marquee-content {
  display: flex;
  flex-direction: column;
  animation: scroll-up 12s linear infinite;
}



*/

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll-up {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

.image_hover_title_div .overlay_heading {
    display: none;
}
.image_hover_title_div:hover .overlay_heading {
    display: block;
    position: absolute;
    top: 42%;
    left: auto;
    width: 100%;
}
.image_hover_title_div .overlay_heading h4 {
    /* width: 100%; */
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 5px 5px;
    margin: 0;
    transition: all 0.3s ease-in-out;
}
/****Success stories section Starts here****/
.success_stories_section .card {
    background: #fff;
    border-radius: 10px;
    border-color: rgba(0, 0, 0, 0.075);
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.2),
        0px 2px 8px -2px rgba(33, 33, 33, 0.04) !important;
}
.success_stories_section img {
    height: 156px;
    border-radius: 10px 0 0 10px;
    object-fit: cover;
}
.success_stories_section .card h4 {
    font-size: 22px;
    /* color: #8C2F4E; */
}
.success_stories_section .card .designation {
    font-style: italic;
    color: #8c2f4e;
    font-size: 16px;
}
.success_stories_section .card .view_more {
    color: #8c2f4e;
    background: none;
    border: 2px solid transparent;
    padding: 3px 5px;
    margin: 10px 0;
    font-weight: bold;
}
.success_stories_section .card .view_more:hover {
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #6c1340, #e91e63) border-box;
}
.success_stories_details p {
    text-align: justify;
}
.success_story_modal .modal-header {
    background: linear-gradient(to right, #6c1340, #e91e63);
}
.success_story_modal .modal-header .modal-title {
    color: #fff !important;
    /* color: #6c1340; */
}
.success_story_modal .modal-header .btn-close {
    background-color: #fff;
}
.success_story_modal .modal-body img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.success_story_modal .modal-body p {
    /* font-family: poppins, sans-serif !important; */
    font-size: 16px;
    text-align: justify;
}
.wallof_fame_text_resize .Socialwall_img.socialWall p {
    height: 45px !important;
}

/****New Changes Updated****/
/***About OLM Page***/
/* .about_olm_key_features h3 {
    background: linear-gradient(to right, #6c1340, #e91e63);
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    color: #fff;
    border: 1px solid #ccc;
}
.about_olm_key_features {
    border: 1px solid #ccc;
    border-top: 0;
    border-radius: 10px 10px;
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.20), 0px 2px 8px -2px rgba(33, 33, 33, 0.04) !important;
    background: #fff;
}
.about_olm_key_features ul {
    padding: 10px 20px ;
} */
/* .about_olm_key_features {
    height: 218px;
 } */
.about_olm_key_features .card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 10px;
    height: 180px;
    /* display: flex;
    justify-content: center; 
    align-items: center; */
}
.about_olm_key_features .card:hover {
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.2),
        0px 2px 8px -2px rgba(33, 33, 33, 0.04) !important;
    background: #fff;
}
.about_olm_key_features .svg_icon {
    /* background: #6c1340; */
    background: linear-gradient(to right, #6c1340, #e91e63);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    padding: 5px 5px;
}
.about_olm_key_features p {
    font-weight: bold;
    padding: 10px 5px 0 5px;
    margin-bottom: 0;
}

/********Vision Mission Updated********/
.mission_vision_card {
    /* font-family: 'Poppins', sans-serif;

        background-color: #f0f4f8;

        display: flex;

        justify-content: center;

        align-items: center; */

    min-height: auto;

    /* margin: 0;

        padding: 20px;

        box-sizing: border-box; */
}

.mission_vision_card > div {
    display: flex;
}

.mission_vision_card .container {
    display: flex;

    gap: 40px;

    flex-wrap: wrap;

    justify-content: center;
}

.mission_vision_card .card {
    background-color: white;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    padding: 30px;

    width: 100%;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    box-sizing: border-box;
    min-height: 480px;
    transition: all 0.4s ease;
}

.mission_vision_card .icon-top {
    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 20px;

    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mission_vision_card .icon-top svg {
    width: 30px;

    height: 30px;
}

.mission_vision_card .vision .icon-top {
    background-color: #f7931e;
}

.mission_vision_card .vision .icon-top svg path {
    fill: white;
}

.mission_vision_card .mission .icon-top {
    background-color: #1a4d8c;
}

.mission_vision_card .mission .icon-top svg path {
    fill: white;
}

.mission_vision_card .card-title {
    font-size: 1.8rem;

    font-weight: 600;

    text-transform: uppercase;

    margin-bottom: 20px;

    position: relative;

    letter-spacing: 1px;
}

.mission_vision_card .card-title::before,
.mission_vision_card .card-title::after {
    content: "";

    position: absolute;

    height: 3px;

    width: 60px;

    top: 50%;

    transform: translateY(-50%);
}

.mission_vision_card .card-title::before {
    left: -70px;
}

.mission_vision_card .card-title::after {
    right: -70px;
}

.mission_vision_card .vision .card-title {
    color: #1a4d8c;
}

.mission_vision_card .vision .card-title::before,
.mission_vision_card .vision .card-title::after {
    background-color: #e67e22;
}

.mission_vision_card .mission .card-title {
    color: #1a4d8c;
}

.mission_vision_card.mission .card-title::before,
.mission_vision_card .mission .card-title::after {
    background-color: #3498db;
}

.mission_vision_card .text-box {
    border-radius: 15px;

    padding: 25px;

    margin-bottom: 30px;

    text-align: left;

    font-size: 1rem;

    line-height: 1.6;

    font-weight: 500;
}

.mission_vision_card .vision .text-box {
    background-color: #fff9e6;

    border: 1px solid #ffcc00;

    color: #333;

    position: relative;
}

.mission_vision_card .vision .text-box::before {
    content: "⭐";

    position: absolute;

    top: 25px;

    left: 25px;

    font-size: 1.5rem;
}

.mission_vision_card .vision .text-box p {
    padding-left: 35px;

    margin: 0;
}

.mission_vision_card .mission .text-box {
    background-color: #e6f2ff;

    border: 1px solid #3498db;

    color: #333;

    position: relative;
}

.mission_vision_card .mission .text-box::before {
    content: "🔵";

    position: absolute;

    top: 25px;

    left: 25px;

    font-size: 1.5rem;
}

.mission_vision_card .mission .text-box p {
    padding-left: 35px;

    margin: 0;
}

.mission_vision_card .keywords {
    display: flex;

    justify-content: space-around;

    width: 100%;

    gap: 15px;

    margin-top: auto;
}

.mission_vision_card .keyword-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    font-size: 0.9rem;

    font-weight: 500;

    color: #555;

    text-align: center;

    flex: 1;
}

/* added by kirti */
.mission_vision_card .mission .card-title {
    color: #1a4d8c;
}

.mission_vision_card .mission .card-title::before,
.mission_vision_card .mission .card-title::after {
    background-color: #3498db;
}

.mission_vision_card .keyword-icon {
    width: 50px;

    height: 50px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 8px;

    background-color: #f0f4f8;

    border: 1px solid #ddd;
}

.mission_vision_card .keyword-icon svg {
    width: 24px;

    height: 24px;
}

.mission_vision_card .vision .keyword-icon svg path {
    fill: #e67e22;
}

.mission_vision_card .mission .keyword-icon svg path {
    fill: #3498db;
}

.mission_vision_card .keyword-item span {
    white-space: nowrap;
}
.mission_vision_card .card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
    border-color: #3b82f6;
}

@media (max-width: 900px) {
    .mission_vision_card .container {
        flex-direction: column;

        align-items: center;
    }
}
.day_nrlm .card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 20px 20px;
}
.day_nrlm .view_more {
    max-width: 125px;
}
.day_nrlm .card:hover,
.mksp_ifc .card:hover,
.rseti_section .card:hover {
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.2),
        0px 2px 8px -2px rgba(33, 33, 33, 0.04) !important;
    background: #fff;
}
/* .mksp_ifc svg {
    width: 40px;
} */

.mksp_ifc .card,
.mis_section .card,
.livelihoodCard .card {
    /* background: linear-gradient(90deg, #8C2F4E, #D68CA9);  */
    /* background: linear-gradient(90deg, #DAD6F3, #F6DBE2); */
    background: linear-gradient(to right, #fdeef2, #fbd6e2);
    padding: 10px 10px !important;
    cursor: pointer;
}
.mksp_ifc i {
    margin-right: 5px;
}
.rseti_section .card {
    /* border-left: 4px solid !important;
    border-image: linear-gradient(90deg, #4B3EA7, #8C2F4E) 1;
    border: none; */
    border-left: 5px solid #8c2f4e;
    background: #f8f9fa;
}
.rseti_section .more-text {
    display: none;
}
.rseti_section .read-btn,
.toggle-btn {
    border-radius: 20px;
    color: #6c1340;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    padding: 5px 15px;
    border: 1px solid #6c1340;
    width: 115px;
}
.inclusion_listing.more-text li::before,
.inclusion_listing.bulletListing li::before {
    content: "\f111" !important;
    font-size: 8px !important;
    top: 7px !important;
}

.mkt_folder_div {
    overflow: hidden;
    border-radius: 20px;
}
.mkt_folder_div img {
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.folder_div {
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 20px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
}
.folder_div i {
    font-size: 40px;
}
.mkt_folder_div:hover img {
    transform: scale(1.1);
    filter: brightness(0.5);
}
.mkt_folder_div:hover .folder_div {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.imageModal i {
    font-size: 25px;
    animation: wiggle-left-right 1s ease-in-out infinite;
}
.more-text h5 i {
    animation: wiggle-left-right 1s ease-in-out infinite;
}
/* @keyframes wiggle-left-right {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-3px);
    }
    75% {
        transform: translateX(3px);
    }
} */
.mis_section .card {
    width: 250px;
    height: 250px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: rotate(45deg);
    transform-style: preserve-3d;
    transition: transform 0.6s;
}
.rhombus_card_content {
    /* transform: rotate(-45deg); */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.rhombus_card_content::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #6c1340, #e91e63);
    transition: top 0.5s ease;
    z-index: 0; /* Behind the content */
}

/* Slide the overlay into view on hover */
.mis_section .card:hover .rhombus_card_content::before {
    top: 0;
}
/* .rhombus_card_content > * {
    position: relative;
    z-index: 1;
} */

.mis_section .rhombus_card_content h5 {
    transform: rotate(-45deg);
    margin: 0;
}

.mis_section .card:hover {
    /* box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.20), 0px 2px 8px -2px rgba(33, 33, 33, 0.04) !important; */
    /* background: linear-gradient(to right, #6c1340, #e91e63) !important; */
    /* background: #fff; */
    /* transform: rotateY(180deg) rotate(45deg); */
}
/* .mis_section .card:hover .rhombus_card_content {
    transform: rotateY(180deg);
} */
.mis_section .card:hover .rhombus_card_content h5 {
    /* transform: rotate(45deg); */
    color: #fff;
}
#infoModal .modal-content .modal-header,
#infoModal2 .modal-content .modal-header,
#infoModal12 .modal-content .modal-header,
#imageModal .modal-content .modal-header,
#partnershipModal .modal-content .modal-header {
    background: linear-gradient(to right, #6c1340, #e91e63) !important;
    color: white !important;
    border-bottom: none;
    /* border-top-left-radius: 14px;
    border-top-right-radius: 14px; */
}
#infoModal p,
#infoModal2 p,
#infoModal12 p {
    font-size: 17px;
}
.sisd_section .card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 10px 10px !important;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}
.more-content {
    display: none;
}

.gradient_top_border.card,
.cbo_section .card {
    position: relative;
    padding: 20px;
}
/* Create a pseudo-element for the gradient border */
.gradient_top_border::before,
.cbo_section .card::before,
.cbo_section #accordionCBOSection .accordion-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(to right, #6c1340, #e91e63);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.cbo_section #accordionCBOSection .accordion-header:before {
    z-index: 9;
}
.revolving_fund.card h5 {
    min-height: 56px;
}
.revolving_fund.card p {
    text-align: justify;
}
.revolving_fund.card a {
    /* width: auto; */
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    color: #8c2f4e;
    /* background: #4B3EA7; */
    /* background: linear-gradient(90deg, #8C2F4E, #4B3EA7); */
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        /* Inner background */ linear-gradient(to right, #6c1340, #e91e63)
            border-box;
}
.revolving_fund.card:hover,
.revolving_fund.card a:hover {
    background: linear-gradient(to right, #6c1340, #e91e63);
    /* background:  */
    /* linear-gradient(white, white) padding-box,  */
    /* linear-gradient(90deg, #4B3EA7, #8C2F4E) border-box !important;
    color: #fff; */
    /* transition: 0.5s ease-in-out; */
}
.revolving_fund.card a:hover {
    border: 1px solid #fff;
    color: #fff;
}
.revolving_fund.card:hover h5,
.revolving_fund.card:hover p {
    color: #fff;
}
.imageModal {
    background: linear-gradient(to right, #6c1340, #e91e63);
    padding: 10px 20px;
    border-radius: 20px;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
}
.imageModal i {
    font-size: 20px;
}
.cbo_section .card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 20px 20px;
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.2),
        0px 2px 8px -2px rgba(33, 33, 33, 0.04) !important;
    background: #fff;
    min-height: 560px;
}
.cbo_section .card h5 {
    min-height: 56px;
}
.community_staff .card {
    /* background: linear-gradient(to right, #6c1340, #e91e63); */
    color: white;
    border-radius: 10px;
    /* padding: 20px; */
    border: none;
    /* box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3); */
    transition: all 0.3s ease;
    /* cursor: pointer; */
    /* position: relative; */
    overflow: hidden;
    height: 230px;
    perspective: 1000px;
}
/* Flip card */
.community_staff .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.community_staff .card:hover .card-inner {
    transform: rotateY(180deg);
}

.community_staff .card-front,
.community_staff .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Hide the back when facing front */
    /* display: flex; */
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 20px;
    /* background: lightblue;
    border: 1px solid #ccc;
    border-radius: 8px; */
}
.community_staff .card-front img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}
.community_staff .card-front h6 {
    position: absolute;
    bottom: 22%;
    left: 38%;
    color: #fff;
    background: #000;
    padding: 10px 10px;
    opacity: 0.6;
    font-weight: 600;
    /* border-radius: 5px; */
}

.community_staff .card-back {
    background: linear-gradient(to right, #6c1340, #e91e63);
    transform: rotateY(180deg);
}
/***********/
.community_staff .card:hover,
.ib_fund.cbo_section .card:hover,
.cbo_section .card:hover,
.capacity_building_section .card:hover,
.modal_card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}
.community_staff .card h5 {
    font-size: 20px;
    margin-bottom: 10px;
}

.community_staff .card p {
    text-align: justify;
    font-size: 14px;
}
.ib_fund.cbo_section .card,
.cbo_section .card {
    transition: all 0.3s ease;
}
.ib_fund.cbo_section .card {
    min-height: 345px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}
.capacity_building_section .card {
    background: linear-gradient(to right, #6c1340, #e91e63);
    color: white;
    transition: all 0.3s ease;
    padding: 15px 15px;
    border: none;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    text-align: center;
    cursor: pointer;
}
.capacity_building_section .card h5 {
    font-size: 18px;
    margin-bottom: 0;
}
.modal_card .card {
    transition: all 0.3s ease;
    padding: 15px 15px;
    /* border: none; */
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}
/******External Links Starts******/
/* .external_link_section {
    background: #0a4c7b;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 70px 0;
}
.external_link_section img.rotateme.roate-event-bg {
    position: absolute;
    left: -17%;
    top: -47%;
    transition: all 0.3s ease-out 0s;
}
.rotateme {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    }

    @-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
} */

/*****Quick Links*****/
.external_link_section .content-container {
    position: relative;
    min-height: 150px;
}

.external_link_section .content-section {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    width: 100%;
}

.external_link_section .content-section.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.external_link_section {
    /* background: #226390; */
    background: #0a4c7b;

    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 70px 0;
}

.external_link_section img.rotateme.roate-event-bg {
    position: absolute;
    left: -17%;
    top: -47%;
    /* bottom: -47%; */
    transition: all 0.3s ease-out 0s;
}

.rotateme {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.external_link_section .accordion-button {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.external_link_section .accordion-button:hover {
    background-color: #f1f1f1;
}

.quick_links {
    color: #fff;
    display: inline-block !important;
}

/*    .quick_links::before {
        content: '';
        width: 33px;
        height: 5px;
        background: #ffffff;
        position: absolute;
        left: -41px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .quick_links::after {
        content: '';
        width: 33px;
        height: 5px;
        background: #ffffff;
        position: absolute;
        right: -41px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }*/
.external_link_section .accordion-item {
    /* padding: 1rem; */
    margin-bottom: 20px;
    border-radius: 60px 0 0 60px;
    border: none;
    background: none;
}

/* .external_link_section .accordion-item .accordion-header {} */

.external_link_section .menu-tab {
    transition: background-color 0.3s, color 0.3s;
    padding: 1rem !important;
    border-radius: 60px 0 0 60px !important;
}

.external_link_section .accordion-button:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.external_link_section .accordion-button::after {
    /*background-image: none;*/
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
}

.external_link_section .menu-tab:hover {
    background-color: #f0f0f0;
}

.external_link_section .menu-tab.active-tab {
    background-color: #f09d27;
    color: #fff;
}

.external_link_section .menu-tab.active-tab:hover {
    background-color: #f09d27;
    color: #fff;
}

.external_link_section .accordion-header .accordion-button:focus

 /* , .nav-tabs .nav-link:hover  */
 {
    isolation: isolate;
    border-color: #f09d27;
}

.tab_content {
    overflow: hidden;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 315px;
}

.tab_content p,
.tab_content h4 {
    color: #fff;
}

.tab_thumb_img {
    height: 250px;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.tab_thumb_img::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--tg-color-white-default);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: -1;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
}

.tab_thumb_img:hover::before {
    transform: rotate(-3.505deg);
}

.tab_thumb_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    box-shadow: 0px 26px 60px 0px rgba(0, 36, 65, 0.8);
    border: 2px solid #fff;
    transition: all 0.3s ease-out 0s;
}

.tab_content ul li {
    border-bottom: 1px dotted #aaaa;
    padding: 5px;
}

.tab_content ul li::before {
    content: "\f101";
    font-family: FontAwesome;
    display: inline-block;
    margin-left: calc(var(--icon-space) * -1);
    width: var(--icon-space);
    color: #fff;
    padding-right: 5px;
    font-size: 13px;
}

.tab_content ul li a {
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.1 ease-in-out;
    -moz-transition: all 0.1 ease-in-out;
    -webkit-transition: all 0.1 ease-in-out;
    -o-transition: all 0.1 ease-in-out;
}

.tab_content ul li:hover {
    background: #d7d3d359;
    transition: all 0.5 ease-in-out;
    -moz-transition: all 0.5 ease-in-out;
    -webkit-transition: all 0.5 ease-in-out;
    -o-transition: all 0.5 ease-in-out;
}

.tab_content ul li:hover a {
    color: #f09d27 !important;
    transition: all 0.5 ease-in-out;
    -moz-transition: all 0.5 ease-in-out;
    -webkit-transition: all 0.5 ease-in-out;
    -o-transition: all 0.5 ease-in-out;
}
.external_link_section .accordion-button#odisha::after {
    background-image: url("../../media/banners/odisha_tinted.png");
}
.external_link_section .accordion-button#india::after {
    background-image: url("../../media/banners/india_tinted.png");
}
.external_link_section .accordion-button#international::after {
    background-image: url("../../media/banners/united-nations_tinted.png");
}
.external_link_section .accordion-button#survey::after {
    background-image: url("../images/banner/survey.png");
}
/******External Links End******/

.LakpatiDidi {
    background: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: -48px;
    right: -2%;
    z-index: 9;
}
.LakpatiDidi .highlightBtn {
    /* padding: 14px 28px; */
    /* font-size: 18px;
  font-weight: bold; */
    /* background-color: #4B3EA7; */
    background-color: transparent !important;
    /* background: linear-gradient(to right, #6c1340, #e91e63); */
    /* color: white; */
    border: none;
    /* border-radius: 10px; */
    cursor: pointer;
    animation: intenseBlink 0.8s infinite;
    transition: transform 0.2s ease-in-out;
}
.LakpatiDidi .highlightBtn:hover {
    animation: intenseBlink 0.8s infinite;
}
.LakpatiDidi .highlightBtn img {
    height: 150px;
}
@keyframes intenseBlink {
    0%,
    100% {
        background-color: #4b3ea7;
        /* box-shadow: 0 0 0px rgba(255, 255, 255, 0); */
        transform: scale(1);
    }
    50% {
        background-color: #8c2f4e;
        /* box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.9),
                0 0 20px 10px rgba(255, 0, 128, 0.6); */
        transform: scale(1.05);
    }
}
/* .LakpatiDidi .highlightBtn.pulse {
  animation: pulseHighlight 1.5s infinite;
} */
.Lakhpati_modal .modal-header {
    background: linear-gradient(to right, #6c1340, #e91e63);
    color: white !important;
    border-bottom: none;
}
.Lakhpati_modal .modal-header button {
    background-color: #fff;
}
.Lakhpati_modal .LakhpatiSectionSwiper img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}
.Lakhpati_modal .LakhpatiSectionSwiper .swiper-button-next,
.Lakhpati_modal .LakhpatiSectionSwiper .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
}

.infographics {
    list-style: none;
    padding: 0;
    margin: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    display: grid;
    row-gap: 50px;
}
.infographics li {
    padding: 0px !important;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
}
/* .infographics li:hover {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0px 6px 8px -2px rgba(33, 33, 33, 0.20), 0px 2px 8px -2px rgba(33, 33, 33, 0.04) !important;
} */
.about_section ul li::before {
    background-image: none !important;
    content: "";
    position: static;
}
.infographics li span {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 9;
    font-size: clamp(1.25rem, 0.447vw + 0.963rem, 1.5rem);
    color: #000;
    font-weight: 600;
}
.infographics li span:after {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    z-index: -9;
}
.infographics p {
    padding: 0;
    margin: 0;
    font-size: clamp(0.875rem, 0.224vw + 0.732rem, 1rem);
    color: #111827;
    width: 60%;
    word-break: normal;
    font-weight: normal;
}
.bg5 {
    /* background: #4289bc; */
    background: linear-gradient(to right, #6c1340, #e91e63);
}
.infographics .svg_icon {
    background: none;
    color: #8c2f4e;
}
/* Institution-Building Accordion */
.modal_card .cbosCss .accordion-button::after,
.cbo_section .accordion-button::after {
    display: none !important;
}

.modal_card .cbosCss .accordion-body,
.cbo_section .accordion-body {
    background-color: #fff;
}

.modal_card .cbosCss .arrow-box,
.cbo_section .arrow-box {
    background-color: white;
    color: black;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.modal_card .cbosCss .accordion-item,
.cbo_section .accordion-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}
.modal_card .cbosCss .accordion-button,
.cbo_section .accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    font-weight: 500;
    background-color: #f9f9f9 !important;
    border: none;
    cursor: pointer;
}
.modal_card .cbosCss .arrow-box,
.cbo_section .arrow-box {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}
.modal_card .cbosCss .accordion-button:not(.collapsed) .arrow-box,
.cbo_section .accordion-button:not(.collapsed) .arrow-box {
    transform: rotate(180deg);
}
.modal_card .cbosCss .accordion-title,
.modal_card .cbosCss .allHeading .cbo_section .cbosCss .accordion-title,
.cbo_section .cbosCss .allHeading {
    font-size: 1rem;
    margin: 0;
}
.modal_card .cbosCss .accordion-body,
.cbo_section .accordion-body {
    padding: 1rem 1.25rem;
    background-color: #fff;
}
.modal_card .cbosCss .inclusion_listing,
.cbo_section .inclusion_listing {
    margin: 0;
}
.modal_card .cbosCss .row.g-4 > .col-md-6,
.cbo_section .row.g-4 > .col-md-6 {
    margin-bottom: 1rem;
}
.modal_card .cbosCss .accordion-collapse,
.cbo_section .accordion-collapse {
    transition: all 0.3s ease;
}

.modal_card .cbosCss .accordion-button:not(.collapsed),
.cbo_section .accordion-button:not(.collapsed) {
    background-color: #fdfdfdea;
    color: black;
}

.modal_card .cbosCss .accordion-button:hover,
.cbo_section .accordion-button:hover {
    background-color: #f1f1f1;
}

.modal_card .cbosCss .accordion-button:focus,
.cbo_section .accordion-button:focus {
    border-color: transparent !important;
    box-shadow: none !important;
}

/******Other Page*******/
/* .swiper-wrapper {
  transition-timing-function: ease-in-out !important;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1) !important;
} */
/* .LakhpatiSectionSwiper .swiper-slide, .nonfirmSectionSwiper .swiper-slide
 {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

.LakhpatiSectionSwiper .swiper-slide-active, .nonfirmSectionSwiper .swiper-slide-active 
{
  opacity: 1;
  pointer-events: auto;
} */

.pageLoadPopup img {
    height: 400px;
    width: 100%;
    border-radius: 5px;
    object-fit: fill;
}
/*******Flip Booklet page********/
.lakhpati_booklet .book-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}
.lakhpati_booklet .book {
    position: relative;
    width: 350px;
    height: 500px;
    perspective: 2000px;
    transition: transform 0.8s ease;
}
.lakhpati_booklet .paper {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: left;
    transition: transform 1s ease;
    transform-style: preserve-3d;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.lakhpati_booklet .front,
.lakhpati_booklet .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: #fff;
    overflow: hidden;
    border-radius: 6px;
}
.lakhpati_booklet .back {
    transform: rotateY(180deg);
}
.lakhpati_booklet .flipped {
    transform: rotateY(-180deg);
}

.lakhpati_booklet .front-content img,
.lakhpati_booklet .back-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lakhpati_booklet .book #p1 {
    z-index: 3;
}
.lakhpati_booklet .book #p2 {
    z-index: 2;
}
.lakhpati_booklet .book #p3 {
    z-index: 1;
}
.lakhpati_booklet .book-container button {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.lakhpati_booklet .book-container button i {
    font-size: 50px;
    color: #727374;
    transition: color 0.3s ease;
}
.lakhpati_booklet .book-container button:hover i {
    color: #8e8f91;
    transform: scale(1.1);
}
.lakhpati_booklet .book-container:has(.book) #prev-btn {
    transform: translateX(70px);
    z-index: 1;
    opacity: 0.8;
}
.lakhpati_booklet .book-container:has(.book) #next-btn {
    transform: translateX(-70px);
    z-index: 1;
    opacity: 0.8;
}

.lakhpati_booklet .book-container:has(.book.opened) #prev-btn {
    transform: translateX(-100px);
    z-index: 1;
    opacity: 0.8;
}

.lakhpati_booklet .book-container:has(.book.opened) #next-btn {
    transform: translateX(100px);
    z-index: 1;
    opacity: 0.8;
}

/* Header Menu Drawer styles */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background-color: #000;
    color: white;
    transition: right 0.4s ease;
    z-index: 1055;
    overflow-y: auto;
    padding-top: 50px;
    opacity: 0.9;
}
.mobile-drawer.open {
    right: 0;
}
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1050;
    display: none;
}
.drawer-overlay.show {
    display: block;
}
.mobile-drawer .navbar-nav .nav-link {
    font-weight: 500;
    padding: 10px 20px;
    color: #fff;
}
.mobile-drawer .nav-item.dropdown .dropdown-menu.show {
    position: static !important;
    transform: unset !important;
    margin: 0 0 0 10px !important;
}
.mobile-drawer .nav-item.dropdown .dropdown-menu .dropdown-item {
    padding: 10px 10px;
    border-bottom: 1px dashed #d7d7d7;
    border-radius: 0 !important;
}
.mobile-drawer .navbar-nav .nav-link.dropdown-toggle::after {
    margin-left: 10px;
    vertical-align: 0.2em;
}
/* .mobile-drawer .nav-item.dropdown .dropdown-menu:last-child .dropdown-item {
    border-bottom: 0;
} */

/*********/
/* .customOwlCarousel .owl-carousel.owl-loaded {
    display: block;
}
.customOwlCarousel .about-left ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
.customOwlCarousel .owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}
.customOwlCarousel .owl-carousel .owl-stage-outer {
    position: relative;
    transform: translate3d(0px, 0px, 0px);
    overflow: hidden;
}
.customOwlCarousel .owl-carousel .owl-stage {
    position: relative;
    touch-action: manipulation;
}
.customOwlCarousel .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
}
.customOwlCarousel .owl-carousel .owl-wrapper, .customOwlCarousel .owl-carousel .owl-item {
    backface-visibility: hidden;
    transform: translate3d(0px, 0px, 0px);
} */
/* body.odia-Lang .ami-box span,  */
/* .customOwlCarousel ul li {
    font-size: 17px;
}
.customOwlCarousel li {
    display: list-item;
    text-align: -webkit-match-parent;
    unicode-bidi: isolate;
}
.customOwlCarousel .owl-carousel .owl-item img {
    display: block;
    width: 100%;
}
.customOwlCarousel .img-fluid {
    max-width: 100%;
    height: auto;
}
.customOwlCarousel .owl-carousel .owl-nav.disabled, .customOwlCarousel .owl-carousel .owl-dots.disabled {
    display: none;
}
.customOwlCarousel .owl-carousel .owl-nav button.owl-prev, .customOwlCarousel .owl-carousel .owl-nav button.owl-next, .customOwlCarousel .owl-carousel button.owl-dot {
    color: inherit;
    background: none;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    font: inherit;
    padding: 0px !important;
}
.customOwlCarousel .owl-carousel .owl-nav .owl-prev, .customOwlCarousel .owl-carousel .owl-nav .owl-next, .customOwlCarousel .owl-carousel .owl-dot {
    cursor: pointer;
    user-select: none;
} */
.social_section .card.socialFeed .tab-content .tab-pane iframe {
    width: 100% !important;
}
.social_section
    .card.socialFeed
    .tab-content
    .tab-pane
    iframe
    #u_0_1_pC
    ._2p3a {
    min-width: 100% !important;
    width: 100% !important;
}
.name_designation {
    font-size: 14px !important;
}
/**********Media Query**********/

/* @media(min-width:991px) and (max-width:1400px) {
    .container {
        max-width: 1300px !important;
        width: 100%;
        margin: 0 auto;
    }
} */
@media (min-width: 992px) and (max-width: 1150px) {
    .nav_menu_section .navbar-nav .nav-link {
        padding: 8px 6px;
        font-size: 12px !important;
    }
    .name_designation {
        font-size: 12px !important;
    }
}
@media (min-width: 992px) and (max-width: 1300px) {
    .sticky-note {
        min-height: auto;
        padding: 15px;
    }
}
@media (max-width: 991px) and (min-width: 668px) {
    .infographics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 992px) {
    .lakhpati_booklet .book {
        width: 45vw;
        height: 65vw;
    }
    .lakhpati_booklet .book-container button i {
        font-size: 6vw;
    }
    /* .nav_menu_section .navbar-collapse.collapse.show{
        position: absolute;
        background: linear-gradient(to right, #6c1340, #e91e63);
        width: 100% !important;
        z-index: 9;
        right: 0;
        top: 100%;
        padding: 0 20px;
        text-align: left;
    } */
    .pageLoadPopup img
    /* .banner_section.banner,
    .banner_section.banner #carouselExampleIndicators .carousel-inner .carousel-item img  */
 {
        height: auto;
    }
    .banner_section.banner {
        min-height: 300px !important;
        height: 300px !important;
    }
    /* .banner_section.banner, */
    .banner_section.banner
        #carouselExampleIndicators
        .carousel-inner
        .carousel-item
        img {
        height: 300px !important;
    }
}
@media (min-width: 992px) {
    .mobile-drawer,
    .drawer-overlay {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .container {
        max-width: 1400px !important;
        width: 100%;
        margin: 0 auto;
    }
    .mission_vision_section img {
        height: auto;
    }
}
@media (max-width: 768px) {
    .tender_section .filter-box .form-control,
    .tender_section .filter-box .btn {
        margin-bottom: 10px;
    }
    .publication_section .filter-row .col-md-3 {
        margin-bottom: 10px;
    }
}
@media (max-width: 767px) {
    .mission_vision_section .card-custom {
        margin-bottom: 3rem;
    }
    .aboutus_section span {
        font-size: 35px;
    }
    .eduexplore .eduexplore_left-content h2 {
        font-size: 30px;
    }
}
@media (max-width: 667px) {
    .infographics {
        row-gap: 25px;
    }
    .infographics {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
@media (max-width: 575px) {
    .Socialwall_img img {
        height: auto;
    }
    .footer_section iframe {
        width: 100% !important;
    }
    .banner_section.banner {
        min-height: 200px !important;
        height: 200px !important;
    }
    /* .banner_section.banner, */
    .banner_section.banner
        #carouselExampleIndicators
        .carousel-inner
        .carousel-item
        img {
        height: 200px !important;
    }
}
@media (max-width: 420px) {
    .lakhpati_booklet .book {
        width: 45vw;
        height: 65vw;
    }
    .book-container {
        gap: 5vw;
        padding: 0.5rem;
    }
    .lakhpati_booklet.book-container button i {
        font-size: 10vw;
    }
    .lakhpati_booklet .book-container:has(.book) #prev-btn {
        transform: translateX(37px);
    }
    .lakhpati_booklet .book-container:has(.book) #next-btn {
        transform: translateX(-37px);
    }
    .lakhpati_booklet .book-container:has(.book.opened) #next-btn {
        transform: translateX(37px);
    }
    .lakhpati_booklet .book-container:has(.book.opened) #prev-btn {
        transform: translateX(-37px);
    }

    #header-sticky .navbar-brand img {
        height: 60px !important;
    }
    #header-sticky .cm_photo {
        width: 100% !important;
        height: auto !important;
    }
}
@media (max-width: 380px) {
    .lakhpati_booklet .book {
        width: 45vw;
        height: 65vw;
    }
    .lakhpati_booklet .book-container button i {
        font-size: 12vw;
    }
    /* .header-top .goi img {
    display: none;
  } */
    .header-top .skip01 {
        padding-right: 0;
    }
}

/* Inline styles extracted from blade files */
@import url('inline.css');

/* Global overrides to eliminate blue tap highlight overlays and focus outlines/shadow boxes on click */
* {
    -webkit-tap-highlight-color: transparent !important;
}
*:focus,
*:active,
*:focus-visible,
button:focus,
button:active,
button:focus-visible,
a:focus,
a:active,
a:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* ==========================================
   UNIFORM SMOOTH HOVER TRANSITIONS (Sprint 6)
   ========================================== */
a,
button,
.btn,
.card,
.social-follow-card,
.highlight-card,
.activity-card,
.single_section,
.item,
.dropdown-menu,
.dropdown-item,
#header-sticky,
#header-sticky img,
.header-top a,
.footer_section a {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

