/* ==========================================
   1. FONTS & TYPOGRAPHY - START
   ========================================== */

/* Base Styles */
/* Google Fonts - Roboto & Roboto Condensed */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Roboto+Condensed:wght@300;400;500;700&display=swap');

/* ==========================================
/* ==========================================
   1. FONTS & TYPOGRAPHY - END
   ========================================== */

/* ==========================================
/* ==========================================
   2. GLOBAL STYLES & RESET - START
   ========================================== */

/* Base Styles */
html {
    overflow-x: hidden;
}

body {
    font-size: 14px;
    overflow-x: hidden;
}

p {
    font-size: 15px;
    line-height: 2;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

a:hover {
    color: #86bc42;
}

ul {
    list-style-type: none;
    padding: 0;
}

.btn:focus {
    border: unset;
}

/* ==========================================
/* ==========================================
   2. GLOBAL STYLES & RESET - END
   ========================================== */

/* ==========================================
/* ==========================================
   3. HEADER SECTION (DESKTOP & MOBILE MENU) - START
   ========================================== */

/* Base Styles */
.main_menu_header {
    background-image: url(/img/header_engi.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 155px;
    top: 0%;
    z-index: 999;
}

.header_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 92px;
}

.header_logo img {
    max-width: 220px;
    position: absolute;
    top: 20%;
    left: 10%;
    transform: translate(-10%, -20%);
}

.header_menuPC>ul>li.menu-item-has-children_about>ul {
    width: 150px !important;
    top: 48px;
    left: 30px;
}

#menu-header-menu>li.menu-item-has-children a {
    position: relative;
}

#menu-header-menu>li.menu-item-has-children>a::before {
    content: '';
    width: 25px;
    height: 15px;
    background-color: #9FC0CF;
    border-radius: 30px 0px 0px 30px;
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translate(10%, -50%);
    transition: all .3s ease-in-out;
}

#menu-header-menu>li.menu-item-has-children>a:hover:before {
    left: -20%;
    background-color: #9DC541;
    width: 15px;
}

#menu-header-menu>li.menu-item-has-children>a::after {
    content: '';
    width: 25px;
    height: 15px;
    background-color: #9FC0CF;
    border-radius: 0px 30px 30px 0px;
    position: absolute;
    top: 50%;
    right: -6%;
    transform: translate(6%, -50%);
    transition: all .3s ease-in-out;
}

#menu-header-menu>li.menu-item-has-children>a:hover::after {
    right: -15%;
    background-color: #9DC541;
    width: 15px;
}

#menu-header-menu>li.menu-item-has-children>ul {
    height: 0px;
    overflow: hidden;
    transition: all .3s ease-in-out;
    opacity: 0;
}

#menu-header-menu>li.menu-item-has-children:hover>ul {
    height: 70px;
    opacity: 1;
}

#menu-header-menu>li.menu-item-has-children>ul {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

#menu-header-menu>li.menu-item-has-children>ul li a {
    position: relative;
}

#menu-header-menu>li.menu-item-has-children>ul li a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translate(20px, -50%);
    height: 20px;
    width: 1px;
    background-color: #fff;
}

#menu-header-menu>li.menu-item-has-children>ul li a {
    font-size: 22px;
    letter-spacing: 1px;
    padding: 0px 15px;
}

.header_menuPC>ul {
    display: flex;
    flex-direction: row;
}

.header_menuPC>ul>li>a {
    padding: 34px 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #313030;
    letter-spacing: 0px;
    transition: 0.3s;
    position: relative;
}

.header_menuPC>ul>li>a:hover:before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #0056A7;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
}

.header_menuPC>ul>li.menu-item-has-children>a {
    padding: 34px 25px 34px 15px;
}

.header_menuPC>ul>li {
    position: relative;
}

.header_menuPC>ul>li.menu-item-has-children>a::after {
    content: "\f0dd";
    font-family: FontAwesome;
    font-weight: 500;
    font-size: 14px;
    position: absolute;
    top: 45%;
    right: 10px;
    transform: translate(-0px, -45%);
    color: #B6ADAD;
}

.header_menuPC>ul>li.menu-item-has-children>ul {
    display: none;
    position: absolute;
    z-index: 999999;
    top: 50px;
    left: 50px;
    transform: translateX(-50px);
    width: 300px;
    background: #ffffff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px 0px;
}

.header_menuPC>ul>li.menu-item-has-children:hover>ul {
    display: block;
}

.header_menuPC>ul>li.menu-item-has-children>ul>li {
    padding: 10px 10px 10px 25px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #2B2B2B;
    letter-spacing: 0px;
    transition: 0.3s;
    position: relative;
}

.header_menuPC>ul>li.menu-item-has-children>ul>li>a {
    color: #2B2B2B;
}

.header_menuPC>ul>li.menu-item-has-children>ul>li>a:hover,
.header_menuPC>ul>li.menu-item-has-children>ul>li:hover>a {
    color: #0659a8;
    background-color: #fff;
    border-radius: 10px;
}

.header_menuPC>ul>li.menu-item-has-children>ul>li>a::before {
    content: "";
    width: 2px;
    height: 15px;
    background-color: #007bff;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(-0px, -50%);
    opacity: .3;
    transition: 0.3s;
}

.header_menuPC>ul>li.menu-item-has-children>ul>li>a:hover:before {
    opacity: 1;
}

.manu_button {
    outline: none;
}

.header_menu_icon {
    display: none;
}

.home .home_icon_box {
    display: none;
}

.home_icon_box {
    display: block;
    cursor: pointer;
}

.home_icon {
    width: 50px;
    height: 50px;
    margin-top: 6px;
}

.header_logo img {
    display: block;
}

/* For submenu smooth expand */
/* For submenu smooth expand */

.mobile-nav .menu-item-has-children>ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0;
}

/* When submenu is active */
/* When submenu is active */

.mobile-nav .menu-item-has-children.active>ul {
    max-height: 500px;
    padding: 10px 0;
}

/* Arrow icon (using ::after or SVG rotation) */
/* Arrow icon (using ::after or SVG rotation) */

.mobile-nav .menu-item-has-children>a::after {
    content: '\f107';
    font-family: FontAwesome;
    float: right;
    transition: transform 0.3s ease;
    margin-right: 0px;
}

.mobile-nav .menu-item-has-children.active>a::after {
    transform: rotate(180deg);
}

.mobile_header_logo img {
    width: 140px;
}

.nav-close {
    padding: 10px 25px 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 30px 0px #0000001A;
}

.nav-close svg {
    border: 1px solid #ffffff;
    color: #585555;
    box-shadow: 0px 0px 30px 0px #0000001A;
    width: 30px;
    height: 30px;
}

.mobile-nav {
    width: 325px;
    height: 100%;
    left: -400px;
    position: fixed;
    top: 0;
    transition: all .3s ease 0s;
    z-index: 999;
    box-shadow: 0 10px 40px 0 rgba(255, 255, 255, .1);
    background-color: #ECF8FF;
    overflow-y: auto;
}

.mobile-nav ul li {
    display: block;
    border-bottom: 1px solid #2C2C2C1A;
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

.mobile-nav ul li a {
    display: block;
    color: #2C2C2C;
    padding: 12px 0px;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
}

.nav-arrow {
    position: absolute;
    right: 32px;
}

.mobile-nav ul li ul li a {
    padding: 10px 35px 10px 50px;
    display: block;
}

.nav-open {
    cursor: pointer;
    position: absolute;
    display: block;
    right: 35px;
    top: 20%;
}

.mobile-nav-wrapper {
    display: none;
}

.mobile-nav-wrapper.navActive .mobile-nav {
    left: 0;
}

.nav-hide {
    display: none;
}

.nav-hide.show {
    display: block;
}

.dark-shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.dark-shadow.navActive {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================
/* ==========================================
   3. HEADER SECTION (DESKTOP & MOBILE MENU) - END
   ========================================== */

/* ==========================================
/* ==========================================
   4. FOOTER SECTION - START
   ========================================== */

/* Base Styles */
.custome-container {
    padding: 0% 8%;
}

.footer_sec_two {
    padding: 25px 0px 0px;
    background-image: url(/img/footer_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer_quick_link {
    display: grid;
    grid-template-columns: auto auto;
}

.footer_quick_link li {
    line-height: 30px;
    color: #585555;
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    font-weight: 500;
    position: relative;
}

.footer_quick_link li a {
    margin-left: 12px;
    color: #585555;
}

.footer_quick_link li:hover a {
    color: #0659a8;
}

.quick_links li a:hover::before {
    color: #0659a8;
}

.footer_bottom_text h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #585555;
    text-align: start;
    margin-top: 12px;
}

.footer_social_icon {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

.footer_social_icon li {
    padding: 5px 10px;
    border: 1px solid #105CAA33;
    background-color: #dcf0fc;
    border-radius: 4px;
    transition: 0.5s ease-in-out;
}

.footer_social_icon li:hover {
    background-color: #105CAA;
    border-radius: 4px;
    color: #FFFFFF;
}

.footer_social_icon li a {
    color: #105CAACC;
}

.footer_social_icon li:hover a {
    color: #FFFFFF;
}

.quick_links li a::before {
    content: "";
    width: 2px;
    height: 10px;
    background-color: rgba(16, 92, 170, 0.84);
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translate(10px, -50%);
    color: rgb(182, 173, 173);
    opacity: 0.5;
}

.footer_sec::before {
    content: '';
    position: absolute;
    background-image: url(/img/steal_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 15px;
    width: 100%;
    top: 0%;
    right: 0%;
}

.footer_head h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #105CAA;
    letter-spacing: 0px;
    margin-bottom: 15px;
}

.footer_head p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #585555;
    letter-spacing: 0px;
    line-height: 27px;
}

.footer_head p a {
    color: #585555;
    font-weight: 600;
}

.footer_head p a:hover {
    color: #105CAA;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
}

/* ==========================================
/* ==========================================
   4. FOOTER SECTION - END
   ========================================== */

/* ==========================================
/* ==========================================
   5. HOME PAGE & HERO BANNER - START
   ========================================== */

/* Base Styles */
.header_bottom_gap {
    margin-top: 88px;
}

#heroCarousel {
    height: 650px;
}

.hero-banner {
    position: relative;
    overflow: hidden;
}

.hero-info-col {
    background-image: url('/img/hero banner bg.png');
    background-size: cover;
    color: #FFFFFF;
    padding: 100px 80px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-info-col::after {
    content: "";
    background-color: #105CAA;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 6px;
}

.hero-content {
    max-width: 710px;
}

.hero-title {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 25px;
    color: #FFFFFF;
    text-shadow: 0px 0px 4px #00000040;
}

.hero-title .highlight {
    color: #9DC541;
}

.hero-desc {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 29px;
    margin-bottom: 45px;
    color: #FFFFFF;
}

.hero-stats-row {
    display: flex;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    padding: 0 15px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 10%;
    top: 10%;
    height: 80%;
    width: 1.5px;
    background-color: #FFFFFF4D;
}

.stat-item:first-child {
    padding-left: 0;
}

.stat-number {
    font-family: "RobotoCondensed-Bold", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0px;
}

.stat-number .highlight {
    color: #FFCD05;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
}

.stat-label {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #E8EFF7;
    letter-spacing: 0.5px;
    line-height: 27px;
}

/* Slider Column */
/* Slider Column */

.hero-slider-col {
    position: relative;
    min-height: 500px;
}

.hero-carousel {
    height: 100%;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom Vertical Indicators */
/* Custom Vertical Indicators */

.vertical-indicators {
    position: absolute;
    top: 50%;
    right: 25px;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    flex-direction: column;
    margin: 0;
    z-index: 15;
}

.vertical-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none important;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 8px 0 !important;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.vertical-indicators button.active {
    background-color: #9DC541 !important;
    transform: scale(1.3);
    opacity: 1 !important;
}

/* ==========================================
/* ==========================================
   5. HOME PAGE & HERO BANNER - END
   ========================================== */

/* ==========================================
/* ==========================================
   6. FOUNDER INTRO SECTION - START
   ========================================== */

/* Base Styles */
.founder-intro-section {
    background-image: url(/img/chair_bg_color.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    border-bottom: 1px solid rgba(0, 86, 167, 0.08);
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
}

/* .founder-img-wrapper {
/* .founder-img-wrapper {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 30px rgba(16, 92, 170, 0.15);
}

.founder-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.founder-name {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
    text-align: justify;
    color: #105CAA;
    margin-bottom: 2px;
}

.founder-title {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    text-align: justify;
    margin-bottom: 15px;
}

.founder-quote {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
    color: #4D4D4D;
}

/* ==========================================
/* ==========================================
   6. FOUNDER INTRO SECTION - END
   ========================================== */

/* ==========================================
/* ==========================================
   7. ABOUT US SECTION - START
   ========================================== */

/* Base Styles */
.about-section {
    background: linear-gradient(90deg, rgba(156, 198, 68, 0.09) 0%, rgba(16, 92, 170, 0.09) 100%);
    padding: 40px 0;
}

.about-title {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 2%;
    color: #2C2C2C;
    margin-bottom: 25px;
}

.about-text {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    text-align: justify;
    color: #4D4D4D;
}

.gallery_card_row {
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: 10px;
    max-width: 100%;
}

.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    overflow: hidden;
}

.about-gallery-left {
    height: 100%;
    /* height: 390px; */

    width: 100%;
    min-width: 0;
    border-radius: 15px;
}

.about-gallery-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 25px 0 0 25px;
    background-color: white;
    padding: 5px;
    max-width: 100%;
}

.about-gallery-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    min-width: 0;
    gap: 10px;
}

.about-gallery-right-img-top,
.about-gallery-right-img-bottom {
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.about-gallery-right-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    background-color: white;
    padding: 5px;
    border-radius: 0 25px 0 0;
    max-width: 100%;
}

.about-gallery-right-img-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    background-color: white;
    padding: 5px;
    border-radius: 0 0 25px 0;
    max-width: 100%;
}

/* ==========================================
/* ==========================================
   7. ABOUT US SECTION - END
   ========================================== */

/* ==========================================
/* ==========================================
   8. OUR PROGRAMS SECTION - START
   ========================================== */

/* Base Styles */
.programs-section {
    padding: 50px 0px;
    background-color: #eef3fa;
    background-image: url('img/Our Programs bg color.png');
}

.programs-title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #26292A;
    text-align: center;
    margin-bottom: 50px;
}

.program-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f4f8;
    transition: all 0.3s ease;
    height: 100%;
}

/* Card hover stage (Card 1 design in screenshot) */
/* Card hover stage (Card 1 design in screenshot) */

.program-card:hover {
    background-color: #f7f9f2;
    border-color: #e2eccb;
}

.program-card-img {
    position: relative;
    height: 230px;
    overflow: hidden;
    object-fit: cover;
    width: 100%;
}

.program-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 12px;
    border-radius: 5px;
}

.program-card-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.program-card-icon img {
    border: 1.5px solid #D9D9D9;
    padding: 0;
}

.program-card-body {
    padding: 30px 25px 25px;
}

.program-card-title {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #2B2B2B;
    text-align: center;
    margin-bottom: 12px;
}

.program-card-text {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
    color: #2B2B2B;
    text-align: center;
    margin-bottom: 20px;
}

.program-read-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #26292A;
    background-color: #F6FAED;
    border-radius: 8px;
    padding: 10px 20px;
    width: 100%;
    transition: all 0.3s ease;
}

.program-card:hover .program-read-more {
    background-color: #FFC600;
    color: #000000;
}

/* ==========================================
/* ==========================================
   8. OUR PROGRAMS SECTION - END
   ========================================== */

/* ==========================================
/* ==========================================
   9. BENEFICIARIES SECTION - START
   ========================================== */

/* Base Styles */
.beneficiaries-section {
    background-image: url('img/Beneficiaries bg.png');
    padding: 50px 0;
    position: relative;
}

.beneficiaries-section .section-title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
    color: #FFFFFF;
    text-shadow: 0px 0px 4px #00000040;
}

.beneficiary-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.beneficiary-card-img {
    padding: 10px;
    position: relative;
    height: 250px;
}

.beneficiary-img-inner {
    overflow: hidden;
    border-radius: 12px;
    height: 100%;
    width: 100%;
    position: relative;
}

.beneficiary-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.beneficiary-card:hover .beneficiary-img-inner img {
    transform: scale(1.10);
}

/* Default state overlay */
/* Default state overlay */

.beneficiary-img-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255 255 255 / 15%);
    /* Soft blue filter */
    z-index: 1;
    transition: background 0.3s ease;
    border-radius: 12px;
}

/* Hover overlay stage */
/* Hover overlay stage */

.beneficiary-card:hover .beneficiary-img-inner::before {
    background: rgba(16, 92, 170, 0.6);
    /* Deeper blue overlay */
}

/* Badge properties */
/* Badge properties */

.beneficiary-badge {
    position: absolute;
    bottom: 20px;
    left: 0px;
    background: #8EC33F;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 0px 20px 20px 0px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.beneficiary-card:hover .beneficiary-badge {
    opacity: 1;
    transform: translateY(0);
}

.beneficiary-card-body {
    padding: 25px 20px;
    text-align: center;
}

.beneficiary-title {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #2B2B2B;
    margin: 0;
    line-height: 28px;
}

/* ==========================================
/* ==========================================
   9. BENEFICIARIES SECTION - END
   ========================================== */

/* ==========================================
/* ==========================================
   10. NEWS & REPORTS SECTION - START
   ========================================== */

/* Base Styles */
.news-section {
    background: linear-gradient(360deg, rgba(16, 92, 170, 0.08) 0%, rgba(156, 198, 68, 0.1) 100%);
    padding: 50px 0;
}

/* Base Styles */
.news-section {
    background-color: #f7f9fc;
    padding: 50px 0;
}

.news-section .section-title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
    color: #26292A;
}

.news-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* height: 470px; */
    aspect-ratio: 9/10;
    width: 100%;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Background dark overlay by default */
/* Background dark overlay by default */

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
    z-index: 1;
    transition: background 0.4s ease;
}

/* Hover stage: change overlay to blue style */
/* Hover stage: change overlay to blue style */

.news-card:hover::before {
    background: linear-gradient(rgba(16, 92, 170, 0.4), rgba(16, 92, 170, 0.9));
}

.news-card:hover {
    box-shadow: 0 15px 30px rgba(16, 92, 170, 0.2);
}

.news-card-content {
    padding: 30px 25px;
    width: 100%;
    z-index: 2;
    transform: translateY(35px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card:hover .news-card-content {
    transform: translateY(0);
}

.news-date {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 27px;
    margin-bottom: 10px;
}

.news-date i {
    margin-right: 5px;
}

.news-headline {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    line-height: 35px;
    margin: 0;
}

.news-read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-read-more i {
    transform: rotate(-45deg);
}

.news-card:hover .news-read-more {
    opacity: 1;
}

.news-read-more:hover {
    color: #ffffff;
    opacity: 0.8;
}

/* ==========================================
/* ==========================================
   10. NEWS & REPORTS SECTION - END
   ========================================== */

/* ==========================================
/* ==========================================
   11. GALLERY SECTION - START
   ========================================== */

/* Base Styles */
.gallery-section {
    background: linear-gradient(90deg, rgba(16, 92, 170, 0.1) 0%, rgba(156, 198, 68, 0.15) 100%);
    padding: 50px 0;
}

.gallery-section .section-title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
    color: #26292A;
}

.gallery-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.gallery-img-box {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-box img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.btn-see-photos {
    background-color: #fbd63f;
    color: #26292a;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 4px;
    text-decoration: none;
    transform: translateY(10px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.gallery-card:hover .btn-see-photos {
    transform: translateY(0);
}

.btn-see-photos:hover {
    background-color: #8EC33F;
    color: #ffffff;
}

.gallery-body {
    padding: 25px;
    text-align: center;
}

.gallery-title-text {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #2B2B2B;
    margin: 0;
}

/* Gallery Slider Styles */
/* Gallery Slider Styles */

#gallery-slider {
    position: relative;
    padding: 0;
}

/* ==========================================
/* ==========================================
   11. GALLERY SECTION - END
   ========================================== */

/* ==========================================
/* ==========================================
   12. PARTNERS (WE WORK WITH) SECTION - START
   ========================================== */

/* Base Styles */
.partners-section {
    background: linear-gradient(180deg, rgba(16, 92, 170, 0.05) 0%, rgba(16, 92, 170, 0.03) 100%);
    padding: 50px 0;
}

.partners-section .section-title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 45px;
    color: #26292A;
}

.partner-logo-box {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.partner-logo-box img {
    max-height: 70px;
    object-fit: contain;
}

.partner-logo-box:hover {
    box-shadow: 0 5px 15px rgba(16, 92, 170, 0.08);
    border-color: #105CAA;
}

/* ==========================================
/* ==========================================
   12. PARTNERS (WE WORK WITH) SECTION - END
   ========================================== */

/* ==========================================
/* ==========================================
   7. PLUGINS & OVERLAYS FIX - START
   ========================================== */

/* Base Styles */
.fancybox__container,
.fancybox-container {
    z-index: 999999 !important;
    --fancybox-z-index: 999999 !important;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.5);
    ;
    background-clip: padding-box;
    border: 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

/* ==========================================
/* ==========================================
   7. PLUGINS & OVERLAYS FIX - END
   ========================================== */

/* ==========================================
/* ==========================================
   1. GLOBAL UTILITIES & COLORS - START
   ========================================== */

/* Base Styles */
/* Gradient Backgrounds */
/* Base Styles */
/* Gradient Backgrounds */

.green_to_blue {
    background: linear-gradient(90deg, rgba(156, 198, 68, 0.14) 0%, rgba(16, 92, 170, 0.14) 100%);
}

.blue_to_green {
    background: linear-gradient(90deg, rgba(16, 92, 170, 0.14) 0%, rgba(156, 198, 68, 0.14) 100%);
}

.blue_to_green_light {
    background: linear-gradient(90deg, rgba(16, 92, 170, 0.08) 0%, rgba(156, 198, 68, 0.08) 100%);
}

/* ==========================================
/* ==========================================
   1. GLOBAL UTILITIES & COLORS - END
   ========================================== */

/* ==========================================
/* ==========================================
   2. COMMON INNER PAGE STYLES (Typography, Buttons, Spacing) - START
   ========================================== */

/* Base Styles */
/* ---- Typography & Section Headings ---- */
/* Base Styles */
/* ---- Typography & Section Headings ---- */

.section-heading-dark {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    color: #26292A;
}

.section-body-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    text-align: justify;
    color: #4D4D4D;
}

.section-body-text-lg {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    text-align: justify;
    color: #4D4D4D;
}

/* ---- Buttons ---- */
/* ---- Buttons ---- */

.btn-read-more {
    background-color: #FFCD05;
    color: #26292A;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-read-more:hover {
    background-color: #8EC33F;
    color: #ffffff;
}

/* ---- Custom Spacing & Alignment (Replaces Bootstrap Utilities) ---- */
/* ---- Custom Spacing & Alignment (Replaces Bootstrap Utilities) ---- */

.section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
}

.section-header-spacing {
    margin-bottom: 3rem;
}

.heading-margin-lg {
    margin-bottom: 1.5rem;
}

.heading-margin-sm {
    margin-bottom: 1rem;
}

.text-margin {
    margin-bottom: 1rem;
}

.mobile-mb {
    margin-bottom: 0;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.gallery-heading {
    text-align: center;
    margin-bottom: 3rem;
}

/* ==========================================
/* ==========================================
   2. COMMON INNER PAGE STYLES (Typography, Buttons, Spacing) - END
   ========================================== */

/* ==========================================
/* ==========================================
   3. PAGE: EDUCATION & TRAINING - START
   ========================================== */

/* Base Styles */
/* ---- Training Cards Component ---- */
/* Base Styles */
/* ---- Training Cards Component ---- */

.training-card {
    background-color: #ffffff;
    box-shadow: 0px 0px 8px 0px #0000001A;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.training-card-body {
    padding: 30px;
}

.training-card-img {
    width: 100%;
    object-fit: cover;
    height: 370px;
    border-radius: 0.5rem;
}

.training-card-content {
    padding-left: 1.5rem;
}

.training-card-content-alt {
    padding-right: 1.5rem;
}

.training-card-row {
    align-items: center;
}

.training-read-more {
    font-size: 14px;
    border-bottom: 1px solid #000;
    color: #212529;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.training-read-more:hover {
    color: #000;
}

.training-action {
    text-align: right;
    margin-top: 0.5rem;
}

.btn-enroll {
    background-color: #FFC107;
    color: #2B2B2B;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    text-decoration: none;
}

.btn-enroll:hover {
    background-color: #e0a800;
    color: #2B2B2B;
}

/* ---- Educational Institutions Specific Layout ---- */
/* ---- Educational Institutions Specific Layout ---- */

.edu-content-left {
    padding-right: 3rem;
}

.edu-content-right {
    padding-left: 3rem;
}

/* ---- Study Abroad Program ---- */
/* ---- Study Abroad Program ---- */

.study-list {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.study-list li {
    margin-bottom: 0.25rem;
    color: #555;
}

.contact-name {
    color: #105CAA;
    font-weight: 600;
}

.margin-top-lg {
    margin-top: 1.5rem;
}

.margin-top-md {
    margin-top: 1rem;
}

.bg-light-gray {
    background-color: #F0F0F0;
}

/* ---- Responsive adjustments for Education & Training ---- */
/* ---- Responsive adjustments for Education & Training ---- */

/* Responsive Styles */


/* ==========================================
/* ==========================================
   3. PAGE: EDUCATION & TRAINING - END
   ========================================== */

/* ==========================================
/* ==========================================
   4. PAGE: ENROLLMENT FORM - START
   ========================================== */

/* Base Styles */
/* ---- Enroll Banner ---- */
/* Base Styles */
/* ---- Enroll Banner ---- */

.enroll-banner {
    background-image: url('../img/research_consultancy_banner.png');
    background-size: cover;
    background-position: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
    text-align: center;
    position: relative;
}

.enroll-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 92, 170, 0.85);
}

.enroll-banner-content {
    position: relative;
    z-index: 1;
}

.enroll-banner-title {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    font-family: 'Roboto Condensed', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
}

/* ---- Enroll Form Container & Fields ---- */
/* ---- Enroll Form Container & Fields ---- */

.enroll-form-container {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 2rem;
}

.enroll-back-link {
    color: #555;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    display: block;
    text-align: right;
    margin-bottom: 1rem;
}

.form-info-title {
    background-color: #E8EFF7;
    color: #26292A;
    font-family: Roboto;
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
    padding: 10px;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group-spacing {
    margin-bottom: 1.5rem;
}

.enroll-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0%;
    margin-bottom: 0.5rem;
    color: #2B2B2B;
}

.enroll-input {
    width: 100%;
    padding: 0.75rem;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-sizing: border-box;
}

.enroll-input:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.enroll-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.enroll-checkbox-label {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #555;
}

.enroll-checkbox-label a {
    color: #555;
    text-decoration: underline;
}

/* ---- Enroll Submit Action ---- */
/* ---- Enroll Submit Action ---- */

.btn-apply {
    background-color: #FFC107;
    color: #2B2B2B;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-apply:hover {
    background-color: #e0a800;
}

/* ==========================================
/* ==========================================
   4. PAGE: ENROLLMENT FORM - END
   ========================================== */

/* ==========================================
/* ==========================================
   5. PAGE: SOCIAL WELFARE - START
   ========================================== */

/* Base Styles */
/* Scoped classes starting with .page-social-welfare */
/* Base Styles */
/* Scoped classes starting with .page-social-welfare */

.page-social-welfare .text-col-padding {
    padding-left: 24px;
    padding-right: 24px;
}

/* ---- Social Welfare Typography & Elements ---- */
/* ---- Social Welfare Typography & Elements ---- */

.page-social-welfare .welfare-heading {
    margin-bottom: 1.5rem;
}

.page-social-welfare .welfare-image {
    max-width: 100%;
    height: auto;
    width: 100%;
    display: block;
}

.page-social-welfare .welfare-img-col {
    margin-bottom: 1.5rem;
}

/* ---- Alternate Layout Rows (Left/Right Swaps) ---- */
/* ---- Alternate Layout Rows (Left/Right Swaps) ---- */

.page-social-welfare .welfare-img-col-right {
    order: 1;
    margin-bottom: 1.5rem;
}

.page-social-welfare .welfare-text-col-left {
    order: 2;
    padding-left: 24px;
    padding-right: 24px;
}

/* ---- Intro & Health Services Sections ---- */
/* ---- Intro & Health Services Sections ---- */

.page-social-welfare .welfare-section-inner {
    padding-right: 0;
}

.page-social-welfare .welfare-ps {
    padding-left: 0;
}

/* ---- Social Welfare Gallery Specific ---- */
/* ---- Social Welfare Gallery Specific ---- */

.page-social-welfare .gallery-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.page-social-welfare .bg-gallery {
    background-color: #FBFFF4;
}

/* Responsive Styles */
@media (min-width: 992px) {
    .page-social-welfare .text-col-padding {
        padding-left: 40px;
        padding-right: 40px;
    }

    .page-social-welfare .welfare-img-col {
        margin-bottom: 0;
    }

    .page-social-welfare .welfare-img-col-right {
        order: 2;
        margin-bottom: 0;
    }

    .page-social-welfare .welfare-text-col-left {
        order: 1;
        padding-left: 40px;
        padding-right: 40px;
    }

    .page-social-welfare .welfare-section-inner {
        padding-right: 3rem;
    }

    .page-social-welfare .welfare-ps {
        padding-left: 3rem;
    }
}

/* ==========================================
/* ==========================================
   5. PAGE: SOCIAL WELFARE - END
   ========================================== */

/* ==========================================
/* ==========================================
   6. PAGE: ABOUT US - START
   ========================================== */

/* Base Styles */
/* ---- About Us Hero Banner ---- */
/* Base Styles */
/* ---- About Us Hero Banner ---- */

.about-banner {
    width: 100%;
    overflow: hidden;
}

.about-banner-row {
    display: flex;
    height: 500px;
}

/* Banner Left: Title & Background */
/* Banner Left: Title & Background */

.about-banner-left {
    flex: 0 0 50%;
    width: 50%;
    background-image: url('./img/aboutbg.jpg');
    background-size: cover;
    background-position: center top;
    position: relative;
}

.about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(0deg, rgba(16, 92, 170, 0.85), rgba(16, 92, 170, 0.85)), ;

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

.about-banner-label {
    border: 2px solid #ffffff;
    color: #ffffff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
    font-weight: 500;
    padding: 12px 44px;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Banner Right: Video Background */
/* Banner Right: Video Background */

.about-banner-right {
    flex: 0 0 50%;
    width: 50%;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.about-banner-right-logo {
    max-width: 65%;
    max-height: 260px;
    z-index: 1;
    display: block;
}

/* ---- About Us Content Sections ---- */
/* ---- About Us Content Sections ---- */

.about-section-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

/* Who We Are: 3 Image Mosaic Grid */
/* Who We Are: 3 Image Mosaic Grid */

.about-img-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
}

.about-img-mosaic-main {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.about-img-mosaic-top,
.about-img-mosaic-bottom {
    width: 100%;
    height: 183px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.about-section-title {
    margin-bottom: 1.25rem;
}

/* ---- Chairman Section ---- */
/* ---- Chairman Section ---- */

/* Message From Chairman Header */
/* Message From Chairman Header */

.about-chairman-header {
    background-image: url('../img/massage_from_chairman_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    padding: 52px;
    height: 250px;
}

.about-chairman-header-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

/* Chairman Body & Content Container */
/* Chairman Body & Content Container */

.about-chairman-body {
    background-image: url('../img/about_chairman_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cnairman_container {
    position: relative;
}

.about-chairman-text p {
    margin-bottom: 1.2rem;
}

.about-chairman-signature {
    margin-top: 1.5rem;
}

.about-chairman-name {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #105CAA;
    margin-bottom: 2px;
}

.about-chairman-designation {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #666666;
}

/* Chairman Profile Photo Overlapping Header */
/* Chairman Profile Photo Overlapping Header */

.about-chairman-photo-col {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 4px;
}

.about-chairman-photo-wrap {
    position: absolute;
    top: -20%;
    right: 0;
    max-width: 420px;
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    display: inline-block;
}

.about-chairman-photo {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* ---- About Us Responsive Adjustments ---- */
/* ---- About Us Responsive Adjustments ---- */

/* Responsive Styles */

/* ==========================================
/* ==========================================
   6. PAGE: ABOUT US - END
   ========================================== */

/* ==========================================
/* ==========================================
   7. PAGE: CONTACT US - START
   ========================================== */

/* Base Styles */
/* ---- Contact Page Title & Subtitle ---- */
/* Base Styles */
/* ---- Contact Page Title & Subtitle ---- */

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
}

.contact-subtitle {
    margin-top: 1rem;
}

/* ---- Contact Form Wrapper ---- */
/* ---- Contact Form Wrapper ---- */

.contact-form-wrapper {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 37px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-group {
    margin-bottom: 1.5rem;
}

.contact-input {
    width: 100%;
    padding: 1rem;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #495057;
    background-color: #fff;
    border: 1px solid #E4E4E4;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-input:focus {
    outline: none;
    border-color: #105CAA;
}

/* ---- Submit Button ---- */
/* ---- Submit Button ---- */

.btn-submit {
    background-color: #FFCD05;
    color: #26292A;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

/* ==========================================
/* ==========================================
   7. PAGE: CONTACT US - END
   ========================================== */

/* ==========================================
/* ==========================================
   7. PAGE: CONTACT US - START
   ========================================== */

/* Base Styles */
/* ---- Contact Page Title & Subtitle ---- */
/* Base Styles */
/* ---- Contact Page Title & Subtitle ---- */

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-subtitle {
    text-align: center;
    margin-top: 1rem;
}

/* ---- Contact Form Wrapper ---- */
/* ---- Contact Form Wrapper ---- */

.contact-form-wrapper {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-group {
    margin-bottom: 1.5rem;
}

.contact-input {
    width: 100%;
    padding: 1rem;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #495057;
    background-color: #fff;
    border: 1px solid #E4E4E4;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-input:focus {
    outline: none;
    border-color: #105CAA;
}

/* ---- Submit Button ---- */
/* ---- Submit Button ---- */

.btn-submit {
    background-color: #FFCD05;
    color: #26292A;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #8EC33F;
}

/* ---- Maps Container ---- */
/* ---- Maps Container ---- */

.contact-map-container {
    position: relative;
    margin-bottom: 2rem;
    background-color: #ffffff;
    padding: 4px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-map-label {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #ffffff;
    color: #105CAA;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 9px 20px;
    border-radius: 50px 0 0 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.contact-map-img,
.contact-map-iframe {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    border: none;
    display: block;
    object-fit: cover;
}

/* ==========================================
/* ==========================================
   7. PAGE: CONTACT US - END
   ========================================== */

/* ==========================================
/* ==========================================
   8. PAGE: GALLERY - START
   ========================================== */

/* Base Styles */
/* ---- Gallery Main Page ---- */
/* Base Styles */
/* ---- Gallery Main Page ---- */

.gallery-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.gallery-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

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

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-btn-see-all {
    background-color: #FFCD05;
    color: #40444F;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 24px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.gallery-btn-see-all:hover {
    background-color: #83a638;
    color: #FFFFFF;
}

.gallery-card-title {
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #40444F;
}

/* ---- Gallery Single Page ---- */
/* ---- Gallery Single Page ---- */

.gallery-single-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.gallery-back-link {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #40444F;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.gallery-back-link:hover {
    color: #105CAA;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    aspect-ratio: 4/3;
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-zoom img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.gallery-item:hover .gallery-item-zoom {
    opacity: 1;
}

/* ---- Fancybox Image Height Limit ---- */
/* ---- Fancybox Image Height Limit ---- */

.fancybox__image {
    max-height: 90vh !important;
    object-fit: contain;
}

/* ---- Gallery Card: dark overlay override ---- */
/* ---- Gallery Card: dark overlay override ---- */

.gallery-card-fancybox-link {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-card .gallery-overlay {
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.gallery-card .gallery-overlay .btn-see-photos {
    pointer-events: all;
}

/* ---- Beneficiaries Pages ---- */
/* ---- Beneficiaries Pages ---- */

.beneficiaries-banner {
    background-color: #9bcc50;
}





/* ==========================================
/* ==========================================
   8. PAGE: GALLERY - END
   ========================================== */

/* ==========================================
/* ==========================================
   PAGE: BENEFICIARIES SINGLE - START
   ========================================== */

/* Base Styles */
.page-beneficiaries-single .bsingle-filter-section {
    background: linear-gradient(90deg, rgba(16, 92, 170, 0.55) 0%, rgba(156, 198, 68, 0.45) 100%);

    padding: 30px 10px;
}

.page-beneficiaries-single .bsingle-filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.page-beneficiaries-single .bsingle-cards-grid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.page-beneficiaries-single .year-filter-btn {
    display: inline-block;
    padding: 6px 20px;
    background-color: #CFDEEE;
    color: #475569;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid #E8EFF7;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-beneficiaries-single .year-filter-btn:hover,
.page-beneficiaries-single .year-filter-btn.active {
    background-color: #9bcc50;
    color: #1e293b;
}

.page-beneficiaries-single .bsingle-list-section {
    padding: 50px 0;
}

.page-beneficiaries-single .bsingle-back-link {
    display: block;
    text-align: right;
    color: #555;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.page-beneficiaries-single .bsingle-back-link:hover {
    color: #105CAA;
}

.page-beneficiaries-single .bsingle-back-link i {
    margin-right: 6px;
}

/* Student Profile Card */
/* Student Profile Card */

.page-beneficiaries-single .bsingle-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1.5px solid #e0e7f0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: visible;
    height: 100%;
    padding: 16px;
    gap: 20px;
}

.page-beneficiaries-single .bsingle-card-photo-wrap {
    position: relative;
    flex-shrink: 0;
}

.page-beneficiaries-single .bsingle-card-photo {
    width: 160px;
    aspect-ratio: 7 / 9;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.page-beneficiaries-single .bsingle-card-number {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    color: #333;
    font-weight: bold;
    font-size: 13px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #dcdcdc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

.page-beneficiaries-single .bsingle-card-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.page-beneficiaries-single .bsingle-card-details h5 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;

    color: #105CAA;
    margin-bottom: 8px;
}

.page-beneficiaries-single .bsingle-card-details p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
}

/* ==========================================
/* ==========================================
   PAGE: BENEFICIARIES SINGLE - END
   ========================================== */

/* ==========================================
   Shared page banner
   ========================================== */
.main_banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    overflow: hidden;
    width: 100%;
    /* background: #105caa; */
}

.main_banner_bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(16, 92, 170, 0.48);
}

.main_banner h4 {
    position: relative;
    z-index: 2;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border: 3px solid #FFFFFF26;
    border-radius: 6px;
    background: rgba(16, 92, 170, 0.7);
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.2;
    color: #fff;
    text-align: center;
}

@media (max-width: 767px) {
    .main_banner {
        min-height: 220px;
    }

    .main_banner h4 {
        font-size: 28px;
    }
}

.Research_Consultancy_bg {
    background: linear-gradient(90deg, rgba(16, 92, 170, 0.1) 0%, rgba(156, 198, 68, 0.15) 100%);
    padding: 60px 0px 20px;
}

.Research_text h2 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #40444F;
}

.Research_text p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    text-align: justify;
    width: 95%;
    color: #2B2B2B;
    margin-top: 20px;
}

.Research_image img {
    border: 5px solid #9CC6444D;
    border-radius: 15px 0 15px 15px;
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.Research_Consultancy h2 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 44px;
    text-align: center;
    margin-bottom: 35px;
    color: #40444F;
}

.Research_Consultancy {
    padding: 60px 0;
}

.resarch_container {
    display: grid;
    grid-template-columns: repeat(3, minmax(auto, 1fr));
    justify-content: center;
}

.resarch_container li {
    position: relative;
    padding-left: 2.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    color: #585555;
}

.resarch_container li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background-image: url(./img/List_arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.policies_heading h6 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 50px;
    color: #585555;
    text-align: justify;
}

/* ==========================================
/* ==========================================
   Research Consultancy Page - END
   ========================================== */

/* ==========================================
/* ==========================================
   Seminars and Conferences - START
   ========================================== */

/* Base Styles */
.conference_ads {
    margin-top: 3rem;
}

.blink-conference_ads {
    animation: smoothBlink 3s ease-in-out infinite;
}

@keyframes smoothBlink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.resarch_container_Executive_Education {
    grid-template-columns: auto auto;
    gap: 10%;
}

/* ==========================================
/* ==========================================
   Seminars and Conferences - END
   ========================================== */

/* ==========================================
/* ==========================================
   Development Projects - START
   ========================================== */

/* Base Styles */
.development_projects_details_section {
    background: linear-gradient(90deg, rgba(156, 198, 68, 0.15) 0%, rgba(16, 92, 170, 0.1) 100%);
    padding: 50px 0px 40px;
}

.project_title h2 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 44px;
    text-align: center;
    margin-bottom: 35px;
    color: #40444F;
}

.upcomming_events_single_cart {
    border-radius: 15px 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.upcomming_events_img_section {
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.upcomming_events_img_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B66B7B2;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.upcomming_events_img_section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.upcomming_events_single_cart:hover .upcomming_events_img_section img {
    transform: scale(1.1);
}

.upcomming_events_img_section h3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    padding: 0 10px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #FFFFFF;
    text-align: center;
    transition: opacity 0.3s ease;
}

.upcomming_events_btn {
    background-color: #F2E7E7;
    padding: 50px 0px 25px;
    justify-content: center;
    position: relative;
    text-align: center;
}

.about_buttetin_section p {
    font-size: 15px;
    color: #40444F;
    font-family: "Roboto", sans-serif;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: center;
}

.upcomming_events_btn button {
    background-color: #FFCD05;
    border: 2px solid #FFFFFF66;
    border-radius: 7px;
    padding: 8px 20px;
    color: #26292A;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
    transition-duration: .5s;
}

.upcomming_events_btn button:hover {
    background-color: #9CC644;
}

.upcomming_events_btn p {
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    z-index: 3;
    width: 80%;
    padding: 10px;
    border: 3px solid #FFFFFF4D;
    border-radius: 30px;
    background-color: #FFFFFF;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    color: #40444F;
    text-align: center;
    transition: opacity 0.3s ease;
    border: 2px solid #FFFFFF4D;
    box-shadow: 0px 0px 4px 0px #00000040;
}

.development_projects_compected_section {
    background: #FFFFFF;
    padding: 50px 0px 40px;
}

/* ==========================================
/* ==========================================
   Development Projects - END
   ========================================== */

/* ==========================================
/* ==========================================
   Active Navigation Menu Styles - START
   ========================================== */

/* Base Styles */
/* Active top-level nav link color */
/* Base Styles */
/* Active top-level nav link color */

.header_menuPC>ul>li>a.nav-active {
    color: #0B66B7 !important;
    font-weight: 600;
}

/* Underline indicator for active top-level link using ::before (same pattern as hover) */
/* Underline indicator for active top-level link using ::before (same pattern as hover) */

.header_menuPC>ul>li>a.nav-active::before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #0B66B7;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
}

/* Override ::after on active parent to keep only the chevron arrow */
/* Override ::after on active parent to keep only the chevron arrow */

.header_menuPC>ul>li.menu-item-has-children>a.nav-active::after {
    content: "\f0dd";
    font-family: FontAwesome;
    font-weight: 500;
    font-size: 14px;
    color: #0B66B7;
}

/* Active sub-menu item */
/* Active sub-menu item */

.header_menuPC>ul>li.menu-item-has-children>ul>li.current-menu-item>a,
.header_menuPC>ul>li.menu-item-has-children>ul>li>a.nav-active {
    color: #0B66B7 !important;
    font-weight: 600;
}

/* Blue indicator bar for active sub-menu item */
/* Blue indicator bar for active sub-menu item */

.header_menuPC>ul>li.menu-item-has-children>ul>li.current-menu-item>a::before,
.header_menuPC>ul>li.menu-item-has-children>ul>li>a.nav-active::before {
    opacity: 1 !important;
    background-color: #0B66B7 !important;
}

/* ==========================================
/* ==========================================
   Active Navigation Menu Styles - END
   ========================================== */

/* ==========================================
/* ==========================================
   Publications Page design - START
   ========================================== */

/* Base Styles */
.publications_section {
    background: linear-gradient(268deg, rgba(156, 198, 68, 0.15) 0%, rgba(16, 92, 170, 0.1) 100%);
    padding: 60px 0;
}

/* Sidebar Tab Styling */
/* Sidebar Tab Styling */

.publication_sidebar_card {
    background: #FFFFFF;
    border: 1px solid #E4E7EC;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: sticky;
    top: 100px;
    padding: 10px 10px;
}

.pub_tab_item {
    display: block;
    width: 100%;
    padding: 20px 0 20px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #40444F;
    text-align: left;
    background: #FFFFFF;
    border: none;
    border-left: 2px solid #D9E2EC;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px solid #F0F2F5;
}

.pub_tab_item:last-child {
    border-bottom: none;
}

.pub_tab_item:hover {
    color: #0B66B7;
    border-left-color: #0B66B7;
}

.pub_tab_item.active {
    background-color: #FFFFFF;
    color: #0B66B7;
    border-left: 3px solid #0B66B7;
    font-weight: 600;
}

/* Tab Content Styling */
/* Tab Content Styling */

.pub_content_title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #2B2B2B;
    line-height: 40px;
    margin-bottom: 20px;
}

.pub_content_desc {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
    color: #2B2B2B;
    margin-bottom: 35px;
    text-align: justify;
}

/* Books Grid & Cards */
/* Books Grid & Cards */

.books_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.book_card {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 35px 0px #00000012;
    border: 1.5px solid #D7D7D7;
    border-radius: 15px 0 15px 0;
    overflow: hidden;
    cursor: pointer;
    transition-duration: .5s;
    position: relative;
}

.book_card:hover::before {
    opacity: 1;
}

.book_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(11, 102, 183, 0.75);
    transition: opacity 0.4s ease;
}

.book_img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.book_img img {
    width: 187px;
    height: 280px;
    object-fit: cover;
}

.book_text {
    background-color: #FCFFF6;
    padding: 20px 20px 30px 20px;
    border-radius: 0 0 15px 15px;
    height: 150px;
}

.book_text h2 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    color: #0B66B7;
}

.book_text h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #40444F;
}

.book_details_author {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #585555;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: center;
}

.book_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    text-decoration: underline;
    transition: opacity 0.4s ease;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    text-decoration: underline;
}

.book_card:hover .book_btn {
    opacity: 1;
    color: #ffffff;
}

.book_buy_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 12px 28px;
    background-color: #105CAA;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #105CAA;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.book_buy_btn:hover {
    background-color: #9CC644;
    border-color: #9CC644;
    color: #ffffff;
}

.book_buy_btn i {
    font-size: 14px;
}

/* Articles List Styling */
/* Articles List Styling */

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

.article_card {
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #E4E7EC;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    padding: 20px;
    transition: all 0.3s ease;
}

.article_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.article_title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #0B66B7;
    line-height: 28px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
    transition: color 0.2s ease;
}

.article_title:hover {
    color: #9CC644;
    text-decoration: underline;
}

.article_meta_row {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #2B2B2B;
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 16px;
}

.article_meta_row:last-child {
    margin-bottom: 0;
}

.article_meta_row strong {
    font-family: 'Roboto', sans-serif;
    color: #2B2B2B;
    font-weight: 600;
    min-width: 140px;
    display: inline-block;
    font-size: 17px;
}

/* Ethics Board Styling */
/* Ethics Board Styling */

.ethics_about_card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E4E7EC;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    padding: 25px;
    margin-bottom: 30px;
}

.ethics_about_title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #2B2B2B;
    margin-bottom: 15px;
    padding-bottom: 8px;
}

.ethics_about_desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    color: #2B2B2B;
    text-align: justify;
    margin-bottom: 35px;
}

.ethics_accordion {
    border: 1px solid #E4E7EC;
    border-radius: 12px;
    background: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
}

.ethics_accordion_item {
    border-bottom: 1px solid #E4E7EC;
}

.ethics_accordion_item:last-child {
    border-bottom: none;
}

.ethics_accordion_header {
    width: 100%;
    padding: 18px 25px;
    background: #FFFFFF;
    border: none;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #26292A;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ethics_accordion_header:hover {
    background-color: #F8FAFC;
    color: #105CAA;
}

.ethics_accordion_header .accordion_icon {
    font-size: 14px;
    color: #A0AEC0;
    transition: transform 0.3s ease;
}

.ethics_accordion_item.active .ethics_accordion_header {
    background-color: #F0F4F8;
    color: #105CAA;
}

.ethics_accordion_item.active .ethics_accordion_header .accordion_icon {
    transform: rotate(90deg);
    color: #105CAA;
}

.ethics_accordion_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #FAFBFC;
}

.ethics_accordion_body {
    padding: 20px 25px;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    line-height: 27px;
    color: #4A5568;
    text-align: justify;
    border-top: 1px solid #EDF2F7;
}

.ethics_accordion_body h6 {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    line-height: 27px;
    color: #4A5568;
    text-align: justify;
}

.ethics_footer_note {
    background: #F8FAFC;
    border-left: 4px solid #105CAA;
    border-radius: 0 12px 12px 0;
    padding: 20px 25px;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    line-height: 27px;
    color: #4A5568;
}

.ethics_footer_note a {
    color: #105CAA;
    text-decoration: underline;
    font-weight: 600;
}

.ethics_footer_note a:hover {
    color: #9CC644;
}

.ethies_lists ul {
    list-style-type: inherit !important;
    margin-bottom: 0 !important;
    margin-top: 0px !important;
    padding-left: 0px !important;
}

.ethies_lists ul li {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #4A5568;
    margin-left: 40px;
    position: relative;
}

/* Book Page */
/* Book Page */

.book_single_page_bg {
    background-color: #F3F3F4;
    padding: 60px 0;
}

.cart_content {
    background-color: #FFFFFF;
    padding: 40px;
    box-shadow: 0px 0px 35px 0px #00000012;
    border-radius: 15px;
    display: flex;
    gap: 50px;
}

.cart_img {
    min-width: 300px;
    position: relative;
}

.cart_img::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    height: 380px;
    width: 100%;
    border: 5px solid #676A6D33;
    transition: opacity 0.4s ease;
}

.cart_img img {
    padding: 0 15px;
    width: 100%;
    object-fit: cover;
}

.content_section_book h2,
.content_section_book h2 a {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    color: #105CAA;
}

.content_section_book h2 a:hover {
    color: #9CC644;
}

.content_section_book h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    color: #9CC644;
    margin-bottom: 5px;
}

.content_section_book h4 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    color: #40423C;
}

.content_section_book h4 span {
    font-weight: 400;
}

.content_section_book p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    text-align: justify;
    color: #2B2B2B;
    margin-bottom: 20px;
}

/* ==========================================
/* ==========================================
   Publications Page design - END
   ========================================== */

/* ==========================================
/* ==========================================
   NEWS AND REPORT PAGES - START
   ========================================== */

/* Base Styles */
/* Article detail background */
/* Base Styles */
/* Article detail background */

.news_report_article_bg {
    background: linear-gradient(90deg, rgba(16, 92, 170, 0.14) 0%, rgba(156, 198, 68, 0.11) 100%);
    padding: 60px 0 70px;
}

.news_report_article_bg {
    background-color: #F3F3F4;
    padding: 60px 0 70px;
}

/* White article card */
/* White article card */

.news_article_card {
    max-width: 1060px;
    margin: 0 auto;
}

/* Author row */
/* Author row */

.news_author_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.news_author_info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.news_author_avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #105CAA;
}

.news_author_name {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #1C1A16;
    line-height: 27px;
}

.news_author_title {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #4D4B4B;
    line-height: 27px;
}

.news_article_date {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    color: #4D4B4B;
    white-space: nowrap;
}

.news_article_date i {
    color: #105CAA;
    margin-right: 4px;
}

/* Divider */
/* Divider */

.news_divider {
    border: none;
    border-top: 2px solid #1C1A161A;
    margin: 22px 0 28px;
}

/* Lead / intro text */
/* Lead / intro text */

.news_article_lead {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #4D4B4B;
    text-align: justify;
    margin-bottom: 28px;
}

/* Section heading */
/* Section heading */

.news_article_section_title {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #2B2B2B;
    margin-top: 35px;
    margin-bottom: 14px;
    position: relative;
    padding-left: 14px;
}

.news_article_section_title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: #105CAA;
    border-radius: 3px;
}

/* Body paragraphs */
/* Body paragraphs */

.news_article_body h3 {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 35px;
    color: #2B2B2B;
    text-align: justify;
    margin-bottom: 18px;
}

.news_article_body p {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
    color: #2B2B2B;
    text-align: justify;
    margin-bottom: 18px;
}

.news_article_body img {
    border-radius: 15px;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 18px;
}

/* Embedded article image */
/* Embedded article image */

.news_article_image_wrap {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 4px solid #e6edf5;
}

.news_article_image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

/* Related news section spacing */
/* Related news section spacing */

.related_news_section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* ==========================================
   CUSTOM MODAL SECTION
   ========================================== */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.custom-modal-dialog {
    background: transparent;
    max-width: 500px;
    width: 100%;
    margin: 1.75rem;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    z-index: 1051;
}

.custom-modal-overlay.active .custom-modal-dialog {
    transform: translateY(0);
}

/* ==========================================
   TRAINING MODAL SECTION
   ========================================== */
.training-modal-content {
    background-color: #ffffff;
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.training-modal-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.training-modal-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    font-size: 26px;
    color: #26292A;
    margin: 0 2.5rem 1.25rem 0;
    line-height: 1.2;
}

.training-modal-text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: #4D4D4D;
    text-align: justify;
    margin-bottom: 0.85rem;
}

.training-modal-text:last-of-type {
    margin-bottom: 0;
}

.training-modal-enroll {
    display: inline-block;
    margin-top: 1.25rem;
    background-color: #FFCD05;
    color: #26292A;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 9px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    align-self: flex-start;
}

.training-modal-enroll:hover {
    background-color: #8EC33F;
    color: #ffffff;
}

/* News article sharing */
.news-share-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 12px;
}

.news-share-label {
    color: #334155;
    font-size: 14px;
    font-weight: 500;
}

.news-share-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-share-button {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8e0e8;
    border-radius: 50%;
    background: #fff;
    color: #334155;
    text-decoration: none;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.news-share-button:hover {
    color: #fff;
    background: #105caa;
    transform: translateY(-2px);
}

.news-share-button.facebook:hover {
    background: #1877f2;
}

.news-share-button.x-twitter:hover {
    background: #111;
}

.news-share-button.linkedin:hover {
    background: #0a66c2;
}

.news-share-button.whatsapp:hover {
    background: #25d366;
}

.copy-status {
    min-width: 70px;
    color: #18864b;
    font-size: 13px;
}

/* Responsive Styles */


/* ==========================================
/* ==========================================
   NEWS AND REPORT PAGES - END
   ========================================== */

/* ==========================================
/* ==========================================
   8. RESPONSIVE SECTION (MEDIA QUERIES) - START
   ========================================== */

/* Responsive Styles */
@media only screen and (max-width: 1736px) {
    .header_logo img {
        top: 20%;
        left: 13%;
        transform: translate(-13%, -20%);
    }
}

@media only screen and (max-width: 1440px) {}

@media only screen and (max-width: 1399px) {
    .main_menu_header {
        height: 148px;
        background-position-x: 10%;
    }

    .header_logo img {
        max-width: 210px;
        position: absolute;
        top: 20%;
        left: 9%;
        transform: translate(-9%, -20%);
    }

    .footer_head p,
    .footer_head .footer_menu li a,
    .footer_head .fotter_social li,
    .footer_quick_link li a {
        font-size: 16px;
    }

    .footer_logoresponsive {
        position: relative;
    }

    .fotter_logo {
        position: absolute;
        top: 14px;
        left: -40px;
    }

    .fotter_logo img {
        width: 300px;
    }

    .footer_head h3 {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 1280px) {
    .hero-title {
        font-size: 36px;
        line-height: 46px;
    }

    .hero-desc {
        font-size: 15px;
        line-height: 25px;
    }

    .stat-item {
        flex: 1;
        min-width: 100px;
        padding: 0px 5px;
        position: relative;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 0.2px;
        line-height: 12px;
    }

    .footer_bottom_text h6 {
        font-size: 14px;
    }
}

@media screen and (max-width: 1199px) {
    .hero-info-col {
        padding: 60px 40px;
    }
}

@media screen and (max-width: 1024px) {
    .header_menuPC {
        margin-top: -10px;
    }

    .main_menu_header {
        height: 132px;
        background-position-x: 15%;
    }

    .header_logo img {
        max-width: 165px;
        left: 7%;
        transform: translate(-7%, -0px);
    }

    .header_bottom_gap {
        margin-top: 73px;
    }

    .header_menuPC>ul>li>a {
        font-size: 15px;
        padding: 34px 5px 30px 5px;
    }

    .header_menuPC>ul>li.menu-item-has-children>a {
        padding: 24px 20px 24px 15px;
    }

    .header_menuPC>ul>li.menu-item-has-children>a::after {
        right: 6px;
    }

    .header_menuPC>ul>li.menu-item-has-children>ul>li>a {
        font-size: 14px;
    }

    .header_menuPC>ul>li.menu-item-has-children>ul {
        width: 230px;
        top: 48px;
    }

    .header_menuPC>ul>li.menu-item-has-children_about>ul {
        width: 130px;
        top: 48px;
        left: 30px;
    }

    .footer_head p,
    .footer_head .footer_menu li a,
    .footer_head .fotter_social li,
    .footer_quick_link li a {
        font-size: 14px;
    }

    .footer_quick_link li a {
        margin-left: 5px;
    }

    .footer_quick_link li a {
        margin-left: 12px;
    }
}


@media screen and (max-width: 991px) {

    /* ── Hero ─────────────────────────────────────────────── */
    .hero-title {
        font-size: 34px;
        line-height: 42px;
    }

    .main_banner {
        min-height: 252px;
    }

    .Research_image img {
        height: auto;
    }

    .hero-desc {
        font-size: 15px;
        line-height: 24px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 13px;
    }

    .form-info-title {
        font-size: 17px;
        line-height: 26px;
    }

    .cart_content {
        display: inline-block;
        padding: 20px;
    }

    .book_single_page_bg {
        padding: 30px 0;
    }

    .cart_img img {
        margin-bottom: 25px;
    }

    /* ── Page Banner (every page) ─────────────────────────── */
    .main_banner h4 {
        font-size: 26px;
    }

    /* ── Section Headings ─────────────────────────────────── */
    .section-heading-dark,
    .welfare-heading,
    .contact-header h2,
    .pub_content_title,
    .project_title h2,
    .Research_Consultancy h2,
    .Research_text h2 {
        font-size: 26px;
        line-height: 34px;
    }

    /* ── Page / Section Titles ─────────────────────────────── */
    .section-title,
    .programs-title,
    .about-title,
    .gallery-heading {
        font-size: 28px;
        line-height: 36px;
        text-align: center;
    }

    /* ── Founder Section ──────────────────────────────────── */
    .founder-name {
        font-size: 22px;
        line-height: 30px;
        text-align: center;
    }

    .founder-title {
        font-size: 14px;
        text-align: center;
    }

    .founder-card {
        gap: 10px;
    }

    .founder-quote {
        font-size: 15px;
        line-height: 26px;
    }

    /* ── Body / Description Text ──────────────────────────── */
    .section-body-text,
    .section-body-text-lg,
    .about-text,
    .hero-desc,
    .Research_text p,
    .resarch_container li,
    .pub_content_desc,
    .ethics_about_desc,
    .ethics_footer_note,
    .ethies_lists ul li,
    .ethics_accordion_body h6,
    .training-read-more,
    .program-card-text,
    .news_article_lead,
    .training-modal-text,
    .wp-block-paragraph {
        font-size: 15px;
        line-height: 26px;
    }

    /* ── Card / Sub Headings ──────────────────────────────── */
    .program-card-title,
    .ethics_accordion_header,
    .ethics_about_title,
    .training-modal-title,
    .book_details_title {
        font-size: 18px;
        line-height: 26px;
    }

    .book_details_subtitle {
        font-size: 15px;
    }

    .book_details_author {
        font-size: 13px;
    }

    /* ── News Cards ───────────────────────────────────────── */
    .news-headline {
        font-size: 18px;
        line-height: 26px;
    }

    .news-date {
        font-size: 13px;
    }

    .news_author_name {
        font-size: 15px;
    }

    .news_author_title {
        font-size: 13px;
    }

    /* ── Gallery / Beneficiary Labels ─────────────────────── */
    .gallery-title-text,
    .gallery-card-title,
    .beneficiary-title {
        font-size: 15px;
    }

    .beneficiary-badge {
        font-size: 12px;
    }

    /* ── Contact ──────────────────────────────────────────── */
    .contact-map-label {
        font-size: 14px;
    }

    .contact-subtitle {
        font-size: 14px;
    }

    /* ── Articles / Publication ───────────────────────────── */
    .article_title {
        font-size: 15px;
        line-height: 22px;
    }

    .article_meta_row,
    .article_meta_row strong {
        font-size: 13px;
    }

    /* ── Buttons / Links ──────────────────────────────────── */
    .btn-read-more,
    .program-read-more,
    .news-read-more,
    .training-read-more,
    .btn-enroll,
    .book_btn,
    .bsingle-back-link,
    .enroll-back-link {
        font-size: 14px;
    }

    /* ── Section Padding ──────────────────────────────────── */
    .section-padding {
        padding: 40px 0;
    }

    .hero-slider-col {
        height: auto;
    }

    .about-banner-row {
        flex-direction: column;
        height: auto;
    }

    .about-banner-left,
    .about-banner-right {
        flex: none;
        width: 100%;
    }

    .about-banner-video {
        position: relative;
    }

    .about-text-col,
    .about-goals-text {
        margin-top: 1.5rem;
    }

    .about-chairman-photo-col {
        margin-top: 2rem;
        align-items: center;
    }

    .about-chairman-photo-wrap {
        position: relative;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-card-content,
    .training-card-content-alt {
        padding-left: 0;
        padding-right: 0;
        margin-top: 1.5rem;
    }

    .training-row-reverse {
        flex-direction: column-reverse;
    }

    .edu-content-left {
        padding-right: 0;
    }

    .edu-content-right {
        padding-left: 0;
    }

    .mobile-mb {
        margin-bottom: 1.5rem;
    }

    .hero-banner {
        margin-top: 110px;
    }

    .resarch_container {
        grid-template-columns: 1fr 1fr;
    }

    .training-card-img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .hero-info-col {
        padding: 50px 30px;
    }

    .mobile-nav-wrapper {
        display: block;
        z-index: 999;
        background-repeat: no-repeat;
        position: fixed;
        width: 100%;
        height: 110px;
        top: 0%;
        background-position: 10% bottom;
    }

    .mobile-nav ul li a {
        padding: 12px 0px;
        font-weight: 500;
        font-size: 14px;
    }

    .mobile-nav ul li ul li a {
        padding: 10px 35px 12px 15px;
    }

    .mbl_menu_social ul li a {
        padding: 3px 5px;
    }

    .secondary_menu,
    .menu_bottom {
        padding: 5px 20px;
    }

    .main_menu_header {
        background-size: cover;
        height: 100px;
        padding: 5px 0px;
        background-position-x: 6%;
    }

    .header_menuPC {
        display: none;
    }

    .main_menu_header .header_logo_box {
        display: none;
    }

    .header_menu_icon {
        display: block;
    }

    .header_logo img {
        position: absolute;
        top: 0px;
        left: 20%;
        transform: translate(-25%, -0px);
        max-width: 155px;
    }

    button.btn.manu_button {
        padding: 0px;
    }

    .header_bottom_gap {
        margin-top: 60px;
    }

    .hero-banner {
        margin-top: 60px;
    }

    .header_logo img {
        top: 18%;
        left: 10%;
        transform: translate(-10%, -18%);
    }

    .cusotme_carousel_inner h5,
    .cusotme_carousel_inner h5 span {
        font-size: 20px;
        line-height: 22px;
        letter-spacing: 1px;
    }

    .footer_head h3 {
        font-size: 16px;
    }

    .about-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }




    .gallery-title-text,
    .beneficiary-title {
        font-size: 16px;
    }

    .news-headline {
        font-size: 20px;
        line-height: 28px;
    }

    /* ── Stacked Column Gaps ──────────────────────────────── */
    /* g-0 rows: no gutter at all, add margin when cols stack */
    .container .row.g-0>[class*="col-"]:not(:last-child) {
        margin-bottom: 2rem;
    }

    /* training-card-row: image + content two-col rows */
    .row.training-card-row>[class*="col-"]:not(:last-child),
    .row.training-card-row.training-row-reverse>[class*="col-"]:last-child {
        margin-bottom: 1.5rem;
    }

    /* General content two-col rows (research, seminars) */
    .Research_Consultancy_bg .row>[class*="col-"]:first-child {
        margin-bottom: 2rem;
    }

    /* Social-welfare specific wrappers */
    .welfare-section-inner,
    .welfare-img-col {
        margin-bottom: 1.5rem;
    }

    /* Education institution page */
    .edu-content-left,
    .edu-content-right {
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 768px) {

    /* ── Layout fixes ─────────────────────────────────────── */
    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .hero-slider-col {
        position: relative;
        min-height: 400px;
    }

    .resarch_container {
        grid-template-columns: 1fr;
    }

    .publication_sidebar_card {
        position: static;
        margin-bottom: 30px;
    }

    .book_img_container {
        height: 240px;
    }

    .book_img_container img {
        height: 180px;
    }

    /* ── Stacked Column Gaps (mobile) ──────────────────────── */
    .container .row.g-0>[class*="col-"]:not(:last-child) {
        margin-bottom: 1.75rem;
    }

    .row.training-card-row>[class*="col-"]:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .Research_Consultancy_bg .row>[class*="col-"]:first-child {
        margin-bottom: 1.5rem;
    }

    .welfare-img-col,
    .welfare-section-inner {
        margin-bottom: 1.25rem;
    }

    .pub_tab_item {
        flex: 0 0 auto;
        width: auto;
        border-left: none;
        border-bottom: none;
        border-top: 4px solid transparent;
        padding: 12px 20px;
        text-align: center;
    }



    .pub_tab_item:hover {
        padding-left: 20px;
    }

    /* ── Hero ─────────────────────────────────────────────── */
    .hero-title {
        font-size: 26px;
        line-height: 34px;
    }

    .hero-desc {
        font-size: 15px;
        line-height: 24px;
    }

    .stat-number {
        font-size: 22px;
    }

    /* ── Page Banner ──────────────────────────────────────── */
    .main_banner h4 {
        font-size: 22px;
    }

    /* Big Heading */
    .partners-section .section-title,
    .gallery-section .section-title,
    .news-section .section-title,
    .beneficiaries-section .section-title,
    .section-title,
    .programs-title,
    .about-title {
        font-size: 30px;
        margin-bottom: 25px;
        text-align: center;
    }

    /* Description  */
    .pub_content_desc,
    .ethics_footer_note,
    .ethies_lists ul li,
    .ethics_accordion_body h6,
    .ethics_about_desc,
    .Research_text p,
    .resarch_container li,
    .training-read-more,
    .section-body-text,
    .section-body-text-lg,
    .hero-desc,
    .program-card-text,
    .about-text,
    .founder-quote {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
    }

    /* Small Heading */
    .ethics_accordion_header,
    .ethics_about_title,
    .program-card-title {
        font-size: 18px;
    }

    /* extra small heading  */
    .article_meta_row,
    .article_meta_row strong .article_title {
        font-size: 14px;
    }

    /* Medium Heading */
    .contact-header h2,
    .pub_content_title,
    .project_title h2,
    .Research_Consultancy h2,
    .Research_text h2,
    .section-heading-dark {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }

    /* ── News Cards ───────────────────────────────────────── */
    .news-headline {
        font-size: 17px;
        line-height: 24px;
    }

    .news-date,
    .news_author_title {
        font-size: 12px;
    }

    .news_author_name {
        font-size: 14px;
    }

    /* ── Gallery / Beneficiary ─────────────────────────────── */
    .gallery-title-text,
    .gallery-card-title,
    .beneficiary-title {
        font-size: 14px;
    }

    /* ── Articles / Publication ───────────────────────────── */
    .article_title {
        font-size: 14px;
        line-height: 20px;
    }

    .article_meta_row,
    .article_meta_row strong {
        font-size: 12px;
    }

    /* ── Buttons ──────────────────────────────────────────── */
    .btn-read-more,
    .program-read-more,
    .news-read-more,
    .training-read-more,
    .btn-enroll,
    .book_btn {
        font-size: 14px;
    }

    /* ── Section Padding ──────────────────────────────────── */
    .section-padding {
        padding: 35px 0;
    }
}

@media screen and (max-width: 600px) {
    .top_gap {
        margin-top: 14%;
    }

    #heroCarousel {
        height: 403px;
    }

    .hero-content {
        text-align: center;
    }

    .footer_bottom {
        display: inline-block;
    }

    #videobg {
        height: 250px;
    }

    .demohospital_video {
        height: 250px;
    }

    #menu-header-menu>li.menu-item-has-children:hover>ul {
        height: 165px;
        display: block;
        padding-left: 0px;
    }

    #menu-header-menu>li.menu-item-has-children:hover>ul>li a::after {
        display: none;
    }

    .header_logo img {
        top: 18%;
        left: 17%;
        max-width: 150px;
        transform: translate(-17%, -18%);
    }

    .about-chairman-header {
        padding: 33px;
        height: 100px;
    }

    .about-chairman-header-title {
        font-size: 28px;
        text-align: center;
    }

    .hero-info-col {
        padding: 50px 30px 20px;
    }

    .page-social-welfare .welfare-section-inner {
        padding: 0px 22px;
    }

    .page-social-welfare .text-col-padding {
        padding: 0px 22px;
        margin-bottom: 25px;
    }

    .welfare-image {
        border-radius: 10px;
    }

    .mbl_health {
        padding: 0px 20px;
    }

    .article_title {
        font-size: 16px;
        line-height: 25px;
    }

    .footer_sec_two {
        padding: 30px 20px;
    }

    .footer_head,
    .footer_logo {
        margin-bottom: 20px;
    }

    .footer_head h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .footer_head p,
    .footer_head .footer_menu li a,
    .footer_head .fotter_social li,
    .footer_quick_link li a {
        font-size: 14px;
        line-height: 22px;
    }

    .footer_social_icon {
        justify-content: center;
    }

    .footer_bottom_text h6 {
        text-align: center;
    }
}

@media screen and (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        flex: 0 0 50%;
        margin-bottom: 20px;
        padding-left: 15px !important;
    }

    .stat-item::after {
        display: none !important;
    }

    .about-gallery-right {
        grid-template-columns: 1fr;
        height: auto;
        gap: 10px;
    }


    .training-modal-title {
        font-size: 20px;
    }

    .training-modal-body {
        padding: 1.25rem;
    }
}

@media screen and (max-width: 375px) {

    .quick_links li a::before {
        left: -3px;
    }

    .footer_quick_link li a {
        margin-left: 18px;
    }

    .news-share-label {
        width: 100%;
    }
}