* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    background: #000;
    font-family: Montserrat, sans-serif;
    color: #fff;

}

/* Navbar */

.custom-nav {
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    transition: .4s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.logo {
    letter-spacing: 4px;
    font-size: 24px;
    font-weight: 600;
}

.custom-nav .navbar-brand img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.custom-nav .navbar-toggler {
    border: none;
    padding: 6px;
}

.custom-nav .navbar-toggler:focus {
    box-shadow: none;
}

.custom-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-nav .navbar-collapse {
    justify-content: flex-end;
}

.custom-nav .navbar-nav {
    gap: 0.25rem;
}

.nav-link {
    color: #fff !important;
    margin: 0 15px;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 10px 0;
    position: relative;
    transition: color .3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width .3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.page-breadcrumb {
    padding: 110px 0 24px;
    background: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.page-breadcrumb .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.page-breadcrumb .breadcrumb-item.active {
    color: #f5c96b;
}

.about-section,
.award-section,
.download-section,
.contact-section,
.donation-section,
.society-section,
.services {
    padding-top: 40px;
    padding-bottom: 80px;
}

.about-img,
.award-img,
.contact-image img,
.logo-box img,
.qr-card img {
    width: 100%;
    /* height: 220px; */
    border-radius: 16px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .award-img { height: 160px; }
    .gallery-modal-content { max-width: 92%; padding: 10px; }
}

/* Homepage gallery - larger, thicker thumbnails with subtle hover */
.award-section .award-card {
    overflow: hidden;
    border-radius: 14px;
}

.award-section .award-img {
    height: 260px;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}

.award-section .award-card:hover .award-img {
    transform: scale(1.06);
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

@media (min-width: 1200px) {
    .award-section .award-img { height: 320px; }
}

/* smooth AOS fallback/smoothing for all elements using data-aos */
[data-aos] {
    opacity: 0;
    transform: translateY(12px);
}
.aos-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: all .6s cubic-bezier(.2,.8,.2,1) !important;
}

.download-box,
.contact-card,
.donation-card,
.qr-card,
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.purchase-btn {

    display: inline-block;
    padding: 18px 45px;
    border: 2px solid #fff;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    letter-spacing: 3px;
    transition: .4s;

}

.purchase-btn:hover {

    background: #fff;
    color: #000;

}

/* Hero */

.hero {

    height: 100vh;
    position: relative;
    overflow: hidden;

    background-image: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(img/landing-slisder-img-2.jpg);

    background-size: cover;
    background-position: center;

}

/* Left Image */

.hero::before {

    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(img/landing-slider-img.png) left bottom no-repeat;
    background-size: contain;
    opacity: 2;

}


/* .overlay {

    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #00000000, #000);

} */

.hero-content {

    padding-top: 140px;
    position: relative;
    z-index: 10;

}

.stars {

    font-size: 24px;
    margin-bottom: 20px;

}

.hero h3 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 48px;
    font-style: italic;
    font-weight: 700;

    margin-bottom: 15px;

}

.hero h1 {

    font-size: 80px;
    font-weight: 700;
    letter-spacing: 5px;

}

.hero p {

    letter-spacing: 0.18em;
    font-size: 18px;
    margin-top: 20px;

}

/* Feature */

.features {

    margin-top: 70px;

    display: flex;

    justify-content: center;

    gap: 45px;

    flex-wrap: wrap;

}

.feature-box {

    text-align: center;
    max-width: 170px;
    padding: 22px 16px;
    border-radius: 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 45px rgba(0,0,0,0.14);
    transition: transform .3s ease, border-color .3s ease;

}

.feature-box:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
}

.circle {

    width: 90px;
    height: 90px;

    border: 2px solid #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    color: #fff;
    background: rgba(255,255,255,0.08);

    margin: auto auto 15px;

}

.circle i {
    font-size: 28px;
}

.feature-box h6 {

    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 800;

}

.feature-box span {

    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);

}

/* Responsive */

@media(max-width:992px) {

    .hero h1 {

        font-size: 70px;

    }

    .hero h3 {

        font-size: 42px;

    }

    .hero::before,
    .hero::after {

        opacity: .18;

    }

    .features {

        gap: 20px;

    }

    .circle {

        width: 70px;
        height: 70px;

    }

    .custom-nav {
        padding: 12px 0;
    }

    .custom-nav .navbar-collapse {
        margin-top: 12px;
        background: rgba(0, 0, 0, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        padding: 10px 15px;
    }

    .custom-nav .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-link {
        margin: 0;
        padding: 10px 0;
        font-size: 13px;
    }

}

@media(max-width:768px) {

    .hero {

        text-align: center;

    }

    .hero h1 {

        font-size: 35px;

    }

    .hero h3 {

        font-size: 34px;

    }

    .hero p {

        font-size: 15px;
        letter-spacing: 2px;

    }

    .logo {

        font-size: 22px;

    }

    .purchase-btn {

        padding: 14px 25px;

    }

    .page-breadcrumb {
        padding: 95px 0 18px;
        background: #020202;
    }

    .page-breadcrumb .breadcrumb {
        font-size: 14px;
    }

    .about-section,
    .award-section,
    .download-section,
    .contact-section,
    .donation-section,
    .society-section,
    .services {
        padding-top: 20px;
        padding-bottom: 60px;
    }

    .download-box,
    .contact-card,
    .donation-card,
    .qr-card,
    .service-card {
        padding: 18px;
    }

}

body {

    background: #000;
    font-family: Montserrat, sans-serif;
    color: #fff;

}

.showcase-section {

    padding: 120px 0;
    position: relative;
    overflow: hidden;

}

/* Background Leaf */

.showcase-section::before {

    content: "";

    position: absolute;

    left: -80px;
    top: 50px;

    width: 350px;
    height: 700px;

    background: url(img/landing-img-backgroun-3.jpg) no-repeat;

    background-size: contain;

    opacity: .06;

}

.section-title {

    margin-bottom: 90px;

}

.section-title span {

    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;

}

.section-title h2 {

    font-size: 60px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-top: 20px;

}

.browser {

    background: #2b2b2b;

    padding: 12px;

    border-radius: 8px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);

    transition: .5s;

}

.browser img {

    width: 100%;
    border-radius: 5px;

    display: block;

}

.browser:hover {

    transform: translateY(-10px);

}

.showcase-section h3 {

    font-size: 42px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 25px;

    text-transform: uppercase;

}

.showcase-section p {

    font-size: 18px;

    line-height: 2;

    color: #c8c8c8;

}

/* Responsive */

@media(max-width:991px) {

    .section-title h2 {

        font-size: 42px;

    }

    .showcase-section h3 {

        font-size: 30px;

    }

}


.cta-footer {
    position: relative;
    min-height: 700px;
    background: url(img/Landing-slider-img-3.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-footer::before {
    content: "";
    position: absolute;
    inset: 0; 

}

.content {

    position: relative;
    z-index: 2;
    color: #fff;
}

.film-icon {

    width: 90px;

    margin-bottom: 20px;

    animation: float 4s ease-in-out infinite;

}

.content h2 {

    font-size: 78px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 25px;

}

.content p {

    max-width: 800px;

    margin: auto;

    font-size: 30px;

    line-height: 1.8;

    color: #d8d8d8;

    font-family: 'Cormorant Garamond', serif;

    font-style: italic;

}

.cta-btn {

    display: inline-block;

    margin-top: 50px;

    padding: 18px 55px;

    border: 2px solid #fff;

    color: #fff;

    text-decoration: none;

    letter-spacing: 4px;

    font-size: 14px;

    font-weight: 600;

    transition: .4s;

}

.cta-btn:hover {

    background: #fff;

    color: #000;

    transform: translateY(-5px);

}

@keyframes float {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

    100% {

        transform: translateY(0);

    }

}

@media(max-width:768px) {

    .content h2 {

        font-size: 48px;

    }

    .content p {

        font-size: 22px;

    }

    .film-icon {

        width: 70px;

    }

}


.about-section {

    background: #000;
    padding: 120px 0;

}

.about-img {

    width: 100%;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .5);

}

.section-heading {

    color: #b8860b;
    font-size: 15px;
    letter-spacing: 4px;
    margin-bottom: 15px;

}

.director-name {

    font-size: 45px;
    font-weight: 700;
    margin-bottom: 25px;

}

.about-section p {

    color: #cfcfcf;
    font-size: 18px;
    line-height: 2;

}

.award-section {
    background: #050505;
    padding: 100px 0;
}

.award-section h2 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 50px;
}

.award-card {
    border-radius: 18px;
    overflow: hidden;
    background: #090909;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.award-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .4s, border-color .4s;
    display: block;
}

.award-card:hover .award-img {
    transform: translateY(-10px);
    border-color: #b8860b;
}

.about-connect {
    margin: 30px 0 20px;
    color: #d0d0d0;
    font-size: 17px;
    line-height: 1.8;
    max-width: 680px;
}

.about-connect a {
    color: #f1c66b;
    text-decoration: none;
}

.theme-btn-outline {
    display: inline-block;
    padding: 14px 30px;
    border: 1px solid #f1c66b;
    color: #f1c66b;
    background: transparent;
    border-radius: 999px;
    transition: background .3s ease, color .3s ease;
}

.theme-btn-outline:hover {
    background: #f1c66b;
    color: #000;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery-modal.open {
    display: flex;
}

.gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.gallery-modal-content {
    position: relative;
    max-width: 1100px;
    max-height: 90%;
    padding: 12px;
    z-index: 1;
}

.gallery-modal-content img {
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 120px);
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.7);
    transition: transform .35s ease, opacity .25s ease;
}

.gallery-modal-content img.loading {
    opacity: .35;
    transform: scale(.98);
}

.gallery-modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    color: #fff;
    background: rgba(0,0,0,0.7);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.download-section {

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 50px 0;

}

.download-section .section-heading h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 12px;
}

.download-section .section-heading p {
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    margin-bottom: 0;
}

.download-box {

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 28px 30px;
    margin-bottom: 18px;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;

}

.download-box:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 24px 48px rgba(0,0,0,0.18);
}

.download-box h4 {

    font-size: 22px;
    margin-bottom: 8px;
    color: #fff;

}

.download-box p {

    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 15px;
    line-height: 1.7;

}

.download-meta {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-top: 8px;
}

.download-btn {

    padding: 14px 32px;
    min-width: 140px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #f8b500, #ff5f6d);
    color: #111;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;

}

.download-btn:hover {

    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(248,181,0,0.22);
    opacity: .98;

}



.donation-section{

background:#050505;

color:#fff;

padding:120px 0;

}

.section-title span{

color:#caa35b;

letter-spacing:4px;

font-size:14px;

}

.section-title h2{

font-size:60px;

font-weight:700;

margin:20px 0;

}

.section-title p{

color:#bbb;

max-width:650px;

margin:auto;

}

/* Card */

.donation-card{

background:#111;

padding:40px;

border-radius:15px;

border:1px solid #222;

box-shadow:0 30px 60px rgba(0,0,0,.5);

}

.donation-card h4{

margin-bottom:30px;

}

.amount{

width:100%;

margin-bottom:15px;

padding:15px;

border:1px solid #444;

background:transparent;

color:#fff;

border-radius:8px;

transition:.4s;

}

.amount:hover,

.amount.active{

background:#caa35b;

color:#000;

}

.amount-list input{

width:100%;

padding:15px;

background:#181818;

border:1px solid #333;

color:#fff;

border-radius:8px;

margin-top:10px;

}

.donate-btn{

width:100%;

margin-top:25px;

padding:16px;

background:#caa35b;

border:none;

font-weight:600;

border-radius:8px;

transition:.4s;

}

.donate-btn:hover{

transform:translateY(-5px);

}

.secure{

text-align:center;

margin-top:20px;

color:#50d16f;

}

/* QR */

.qr-card{

background:#111;

padding:30px;

border-radius:15px;

border:1px solid #222;

}

.qr-card img{

border-radius:10px;

}

.qr-card h5{

margin-top:20px;

}

/* Content */

.donation-content{

padding-left:20px;

}

.donation-content h3{

font-size:35px;

margin-bottom:20px;

}

.donation-content p{

color:#bbb;

line-height:2;

}

.donation-content ul{

list-style:none;

padding:0;

margin-top:25px;

}

.donation-content li{

margin-bottom:15px;

color:#ddd;

}


body{
    background:#000;
    color:#fff;
    font-family:Poppins,sans-serif;
}

.services{
    background:#050505;
    padding:100px 0;
}

.sub-title{
    color:#caa35b;
    letter-spacing:4px;
    font-size:14px;
    text-transform:uppercase;
}

.services h2{
    font-size:50px;
    font-weight:700;
    margin:15px 0;
}

.services p{
    color:#bdbdbd;
}

.service-card{

    background:#111;

    padding:45px 30px;

    border:1px solid #222;

    border-radius:15px;

    transition:.4s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:4px;

height:0;

background:#caa35b;

transition:.5s;

}

.service-card:hover{

transform:translateY(-10px);

border-color:#caa35b;

}

.service-card:hover::before{

height:100%;

}

.icon{

width:80px;

height:80px;

background:#1a1a1a;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:25px;

transition:.4s;

}

.icon i{

font-size:35px;

color:#caa35b;

}

.service-card:hover .icon{

background:#caa35b;

transform:rotate(360deg);

}

.service-card:hover .icon i{

color:#000;

}

.service-card h4{

font-size:26px;

margin-bottom:20px;

}

.service-card p{

line-height:1.8;

margin-bottom:25px;

}

.service-card a,
.service-link {
    color: #caa35b;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-card a i,
.service-link i {
    margin-left: 0;
    transition: transform .3s ease;
}

.service-card:hover a i,
.service-link:hover i {
    transform: translateX(8px);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #caa35b;
    color: #000;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .3s ease, box-shadow .3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(202, 163, 91, 0.25);
}

.section-text {
    max-width: 760px;
    margin: 0 auto;
    color: #d2d2d2;
}

.service-card:hover a i{

margin-left:18px;

}

@media(max-width:768px){

.services h2{

font-size:34px;

}

.service-card{

padding:35px 25px;

}

}


.society-section{
    background:#000;
    color:#fff;
    padding:120px 0;
}

.text-only-page{
    max-width:780px;
    margin:0 auto;
    color:#ddd;
    padding:0 16px;
}

.text-only-page h1{
    font-size:56px;
    font-weight:700;
    margin-bottom:12px;
    color:#fff;
}

.text-only-page h2{
    font-size:32px;
    font-weight:600;
    margin-bottom:28px;
    color:#caa35b;
}

.text-only-page p{
    line-height:1.9;
    margin-bottom:24px;
    color:#ccc;
    font-size:17px;
}

.text-only-page strong{
    color:#fff;
}


.btn-gold{

background:#d4af37;
padding:15px 35px;
color:#000;
text-decoration:none;
border-radius:5px;
font-weight:600;

}

.btn-gold:hover{

background:#fff;

}

body{
    background:#000;
    color:#fff;
    font-family:Poppins,sans-serif;
}

.contact-section{
    background:#050505;
    padding:100px 0;
}

.contact-section .text-center{
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
}

.sub-title{
    color:#caa35b;
    letter-spacing:3px;
    text-transform:uppercase;
    display:inline-block;
    margin-bottom:16px;
}

.contact-section h2{
    font-size:48px;
    font-weight:700;
    margin:15px 0 12px;
}

.contact-section p{
    color:#bbb;
    font-size:17px;
    line-height:1.8;
}

.contact-card{
    background:linear-gradient(180deg, rgba(17,17,17,.95), #0b0b0b);
    padding:45px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 30px 60px rgba(0,0,0,.35);
}

.alert{
    border:1px solid rgba(255,255,255,0.1);
    background:rgba(27,27,27,0.98);
    color:#fff;
}

.alert-success{
    border-color:rgba(202,163,91,0.4);
}

.alert-danger{
    border-color:rgba(255,90,90,0.4);
}

.contact-info{
    margin-top:40px;
}

.info-box{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
    background:rgba(255,255,255,0.03);
    padding:20px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.08);
}

.info-box i{
    font-size:26px;
    color:#caa35b;
}

.contact-card{
    background:#111;
    padding:45px;
    border-radius:15px;
    border:1px solid #222;
    box-shadow:0 20px 50px rgba(0,0,0,.5);
}

.form-control{
    background:#181818;
    border:1px solid #333;
    color:#fff;
    padding:15px;
}

.form-control:focus{
    background:#181818;
    color:#fff;
    border-color:#caa35b;
    box-shadow:none;
}

.form-control::placeholder{
    color:#999;
}

.send-btn{
    width:100%;
    padding:16px;
    border:none;
    background:#caa35b;
    color:#000;
    font-weight:600;
    border-radius:8px;
    transition:.4s;
}

.send-btn:hover{
    background:#fff;
    transform:translateY(-4px);
}

.contact-image img{
    max-width:100%;
}

.contact-info{
    margin-top:40px;
}

.info-box{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
    background:#111;
    padding:18px;
    border-radius:10px;
    border:1px solid #222;
}

.info-box i{
    font-size:25px;
    color:#caa35b;
}

.info-box h6{
    margin:0;
}

.info-box p{
    margin:0;
    color:#aaa;
}