/********** Template CSS **********/
:root {
    --bs-tertiary: #797E88;
}

body,
p,
span,
a,
li,
button,
input,
textarea {
    font-family: 'Inter', sans-serif !important;
}
h1, h2, h3, h4, h5, h6,
.hero-name {
    font-family: 'Playfair Display', serif !important;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-normal {
    font-weight: 400 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Top Bar ***/
.top-bar {
    height: 90px;
    padding: 0 90px;
}

.top-bar h6 {
    letter-spacing: 1px;
}


/*** Nav Bar ***/
.nav-bar {
    padding: 0 90px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: var(--bs-dark);
    font-size: 18px;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        border-top: 1px solid var(--bs-white);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header Carousel ***/
.header-carousel {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.header-carousel .carousel-img {
    position: relative;
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

.page-header {
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-tertiary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-primary);
}

.page-header .breadcrumb-item.active {
    color: var(--bs-dark);
}


/*** Video ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-dark);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: var(--bs-white);
    background: #000000;
    opacity: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 0px;
    top: 5px;
    left: -40px;
    border-top: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 0px;
    bottom: 6px;
    left: -60px;
    border-bottom: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-img {
    position: relative;
}

/*.about-img::before,*/
/*.about-img::after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    width: 33%;*/
/*    height: 90px;*/
/*    background: var(--bs-white);*/
/*}*/

/*.about-img::before {*/
/*    top: 0px;*/
/*    left: 0px;*/
/*}*/

/*.about-img::after {*/
/*    right: 0px;*/
/*    bottom: 0px;*/
/*}*/


/*** Service ***/
.service-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.service-item {
    overflow: hidden;
}

.service-item .btn-square {
    width: 65px;
    height: 65px;
}

.service-item a {
    position: relative;
    padding: 0;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    transition: .5s;
}

.service-item a::after {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    left: 100%;
    bottom: 3px;
    margin-left: 10px;
    border-bottom: 2px solid var(--bs-primary);
}
.image-box{
    position: relative;
    overflow: hidden;
    border-radius:10px;
}

.service-img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.5s;
}

.image-box:hover .service-img{
    transform:scale(1.1);
}

/* View Button */
.view-btn{
    position:absolute;
    bottom:15px;
    left:50%;
    transform:translateX(-50%);
    background:#ffb000;
    color:#000;
    padding:8px 20px;
    text-decoration:none;
    font-weight:600;
    border-radius:5px;
    opacity:0;
    transition:0.4s;
}

.image-box:hover .view-btn{
    opacity:1;
    bottom:25px;
}
.service-img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition: opacity 0.8s ease-in-out;
}

.fade-out{
    opacity:0;
}

.fade-in{
    opacity:1;
}
.image-box{
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}
/*** Donation ***/
.donation-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.donation-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.donation-item .donation-progress {
    width: 80px;
}

.donation-item .progress .progress-bar {
    height: 20px;
    overflow: visible;
    transition: 3s;
}
/* BLOG IMAGE PREMIUM EFFECT */

.rounded img{
width:100%;
height:220px;
object-fit:cover;
transition:all .7s cubic-bezier(.19,1,.22,1);
}

.rounded{
position:relative;
overflow:hidden;
border-radius:12px;
transition:all .6s ease;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.rounded:hover{
transform:translateY(-12px) scale(1.03);
box-shadow:0 30px 70px rgba(0,0,0,0.25);
}

.rounded:hover img{
transform:scale(1.18);
}
.news-card{

display:flex;
gap:18px;

background:#fff;
border-radius:12px;

padding:15px;
margin-bottom:20px;

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

transition:all .4s ease;

}

.news-card:hover{

transform:translateY(-6px);
box-shadow:0 20px 45px rgba(0,0,0,0.15);

}

/* IMAGE */

.news-img img{

width:130px;
height:100px;
object-fit:cover;

border-radius:8px;

transition:.5s;

}

.news-card:hover img{

transform:scale(1.08);

}

/* CONTENT */

.news-content h5{

font-size:18px;
font-weight:700;
margin-bottom:6px;

}

.news-content h5 a{

text-decoration:none;
color:#111;

}

.news-content p{

font-size:14px;
color:#666;
margin-bottom:8px;

}

.news-date{

font-size:12px;
color:#999;
display:block;
margin-bottom:5px;

}

.read-btn{

font-size:13px;
color:#f5a100;
font-weight:600;
text-decoration:none;

}
.blog-card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:all .4s ease;
height:100%;
}

.blog-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.blog-img{
position:relative;
overflow:hidden;
}

.blog-img img{
width:100%;
transition:.6s;
}

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

.blog-date{
position:absolute;
bottom:10px;
left:10px;
background:#ff6b00;
color:#fff;
padding:5px 12px;
font-size:12px;
border-radius:20px;
}

.blog-content{
padding:20px;
}

.blog-content h5{
font-weight:600;
margin-bottom:10px;
}

.blog-content h5 a{
color:#222;
text-decoration:none;
}

.blog-content h5 a:hover{
color:#ff6b00;
}

.read-more{
font-weight:600;
color:#ff6b00;
text-decoration:none;
}

.read-more:hover{
letter-spacing:1px;
}
.single-article{
max-width:850px;
margin:auto;
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}
.article-image{
width:100%;
height:420px;
overflow:hidden;
border-radius:10px;
}

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

.article-title{
font-size:34px;
font-weight:700;
margin-bottom:15px;
}

.article-meta{
margin-bottom:20px;
color:#777;
}

.article-date{
background:#ff6b00;
color:#fff;
padding:5px 12px;
border-radius:20px;
font-size:13px;
}

.article-content p{
line-height:1.8;
margin-bottom:20px;
font-size:17px;
color:#444;
}

/*** Image Banner ***/
.banner .banner-inner {
    position: relative;
    background: url(../img/banner.webp) center center no-repeat;
    background-size: cover;
    height: 660px;        /* banner height */
    border-radius: 12px;
    overflow: hidden;
}

/* Shine effect layer */
.banner .banner-inner::before{
content:"";
position:absolute;
top:0;
left:-75%;
width:50%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.45),
transparent
);
transform:skewX(-25deg);
}

/* Hover animation */
.banner .banner-inner:hover::before{
animation:shine 1s;
}

@keyframes shine{
100%{
left:125%;
}
}
@media (max-width:768px){
.banner .banner-inner{
height:192px;
}
}

/*** Event ***/
.event-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-item p {
    flex-grow: 1;
}
.event-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.event-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}
.event-carousel .owl-item{
display:flex;
}

.event-carousel .event-item{
display:flex;
flex-direction:column;
height:100%;
width:100%;
}

.event-carousel .event-item p{
flex-grow:1;
}

.event-carousel .event-item .bg-light{
margin-top:auto;
}
.full-view-link {
    color: #ff6a00;
    font-weight: 500;
    text-decoration: none;
    margin-left: 5px;
}

.full-view-link:hover {
    text-decoration: underline;
}
/* Force equal height in owl */
.event-carousel .owl-stage {
    display: flex;
}

.event-carousel .owl-item {
    display: flex;
    height: auto !important;
}

.event-carousel .event-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 420px; /* adjust */
}

/* Image fixed */
.event-carousel .event-item img {
    height: 180px;
    object-fit: cover;
}

/* Content grow */
.event-carousel .event-item p {
    flex-grow: 1;
}

/* Bottom section always bottom */
.event-carousel .event-item .bg-light {
    margin-top: auto;
}
.event-carousel .owl-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.event-carousel .owl-item.active {
    opacity: 1;
    transform: translateY(0);
}
/* Box Style */
.activity-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

/* Hover */
.activity-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Image fixed size */
.activity-img {
    height: 180px;
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: 304px;
    object-fit: cover;
    transition: 0.4s;
}

.activity-box:hover img {
    transform: scale(1.05);
}

/* Content */
.activity-content h6 {
    font-weight: 600;
    margin-bottom: 6px;
}

.activity-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}
/*** Donate ***/
.donate .donate-text {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.donate .donate-text::before,
.donate .donate-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.donate .donate-text::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.donate .donate-text::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}

.donate .donate-form .form-control {
    border: none;
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group {
    display: flex;
}

.donate .donate-form .btn-group .btn {
    margin: 0;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--bs-tertiary);
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group .btn-check:checked+.btn {
    border: none;
    background: var(--bs-white);
}
.video-box iframe{
width:100%;
height:230px;
border-radius:10px;
}
.donation-item{
background:#312e2e;
border-radius:10px;
box-shadow:0 4px 12px rgba(245, 180, 0, 0.08);
transition:all 0.3s ease;
}

.donation-item:hover{
box-shadow:0 10px 25px rgba(0,0,0,0.15);
transform:translateY(-5px);
}
/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.team-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.team-item .team-detail span {
    letter-spacing: 2px;
}



/*** Testimonial ***/
.testimonial-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    transition: .5s;
}

.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover {
    color: var(--bs-secondary);
    background: var(--bs-white);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: 6.3rem;
    }
}

/*** Footer ***/
.footer {
    color: var(--bs-tertiary);
    background: linear-gradient(rgba(5, 19, 17, .95), rgba(5, 19, 17, .95)), url(../img/bg-footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-tertiary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
}
iframe {
    border-radius: 10px;
    transition: 0.3s;
}

iframe:hover {
    transform: scale(1.02);
}
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 768px) {
    .map-container {
        height: 250px;
    }
}
/* Heading spacing fix */
.top-bar h1 {
    margin-bottom: 6px; /* gap between name & tagline */
    line-height: 1.2;
}

/* Tagline fix */
.top-bar p {
    font-family: 'Playfair Display', serif;
    font-style: Poppins;
    font-size: 13px;
    color: #e0e0e0;

    margin: 0;
    line-height: 1.5;

    max-width: 320px; /* control width so break looks clean */
}

/* DESKTOP FIX */
@media (min-width: 992px) {
    .top-bar p {
        max-width: 100%; /* full width */
        white-space: nowrap; /* ek line me rakhega */
    }
}

/* MOBILE FIX (375px etc) */
@media (max-width: 576px) {

    .top-bar {
        padding: 0 15px; /* reduce side spacing */
        height: auto;
    }

    .top-bar h1 {
        font-size: 20px;
    }

    .top-bar p {
        font-size: 11px;
        max-width: 100%;
        white-space: normal; /* allow proper wrapping */
        word-break: keep-all; /* words break na ho beech me */
    }
}
.features-section .bg-primary {
    background-color: #000000a1 !important;
}
.engagement-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-box {
    flex: 0 0 calc(50% - 10px); /* 2 per row */
    height: 90px;
    /*background: ;*/
    border-radius: 10px;
    
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;
}

.logo-box img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}
.engagement-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* LOGO BOX */
.logo-box {
    flex: 0 0 calc(50% - 10px);
    height: 90px;

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

    padding: 12px;
    border-radius: 12px;

    /* 🔥 PREMIUM LOOK */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);

    transition: 0.3s ease;
}

/* BIG LOGO */
.logo-box.big {
    flex: 0 0 100%;
    height: 110px;
}

/* IMAGE */
.logo-box img {
    max-width: 100%;
    max-height: 92px;
    object-fit: contain;
    transition: 0.3s ease;
}

/* HOVER EFFECT (subtle premium) */
.logo-box:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255,255,255,0.2);
}

.logo-box:hover img {
    transform: scale(1.05);
}
@media (max-width: 768px) {

    .engagement-logos {
        gap: 10px;
    }

    .logo-box.big {
        flex: 0 0 100%;
        height: 90px;
    }

    .logo-box {
        flex: 0 0 calc(50% - 5px);
        height: 70px;
        padding: 8px;
    }

    .logo-box img {
        max-height: 50px;
    }
}
.custom-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;

    color: #0c0d0e;
    border: 2px solid #0c0d0e;
    border-radius: 40px;

    text-decoration: none;
    transition: all 0.3s ease;
}

/* hover effect */
.custom-btn:hover {
    background: #000;
    border-color: #000;
    color: #fff;
    transform: translateY(-2px);
}
.engagement-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
}

/* IMAGE */
.engagement-img {
    height: 180px; /* thoda bada kar diya */
    overflow: hidden;
}

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

/* CONTENT */
.engagement-content {
    padding: 18px;
}

.engagement-content h5 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.engagement-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* LINK */
.engagement-content a {
    font-size: 13px;
    color: #f59e0b;
    text-decoration: none;
    font-weight: 500;
}

/* HOVER */
.engagement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.key-engagement-page .row.g-5 {
    align-items: flex-start;
}

.header-carousel .hero-quote {
    font-size: 38px !important;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 1px;
    color: #061c1c;
    margin-bottom: 18px;
}

.header-carousel .hero-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #061c1c;
    margin-bottom: 12px;
}

.header-carousel .hero-subtitle {
    font-size: 15px;
    color: #6f7785;
    margin-bottom: 0 !important;
}

@media (max-width: 991px) {
    .header-carousel .hero-quote {
        font-size: 28px !important;
    }

    .header-carousel .hero-name {
        font-size: 20px;
    }
}
.hero-quote {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s ease;
}

/* Hover effect */
.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

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

/* Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
}

.gallery-overlay h5 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 0;
}

.gallery-overlay p {
    font-size: 14px;
    margin: 5px 0 0;
    opacity: 0.9;
}
.lite-youtube {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    cursor: pointer;
}

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

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    border: none;
    background: red;
    border-radius: 12px;
    cursor: pointer;
}

.play-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

@media (max-width: 767px) {
    .single-article .article-image img {
        width: 100%;
        height: auto !important;
        object-fit: contain !important;
        display: block;
    }

    .single-article .article-image {
        height: auto !important;
        overflow: hidden;
    }
}
