:root{
    --primary:#922326;
    --secondary:#e58d1f;
    --light:#f5f5f5;
    --white:#ffffff;
    --text:#2d2d2d;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --radius:20px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Khand',sans-serif;
    background:var(--light);
    color:var(--text);
    overflow-x:hidden;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =====================
   HEADER
===================== */

/* HEADER */

.header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 0;
}

.logo{
    height:70px;
}

.menu{
    display:flex;
    align-items:center;
    gap:25px;
    list-style:none;
}

.menu li{
    position:relative;
}

.menu a{
    text-decoration:none;
    color:#333;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.menu a:hover{
    color:#922326;
}

/* DROPDOWN */

.dropdown-toggle{
    display:flex;
    align-items:center;
    gap:8px;
}

.arrow{
    font-size:12px;
    transition:.3s;
}

.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    min-width:220px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:.3s ease;
    overflow:hidden;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu a{
    display:block;
    padding:14px 20px;
    color:#333;
}

.dropdown-menu a:hover{
    background:#f5f5f5;
}

/* DESKTOP HOVER */

@media (min-width:992px){

    .dropdown:hover .dropdown-menu{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .dropdown:hover .arrow{
        transform:rotate(180deg);
    }
}

/* MOBILE */

.menu-btn{
    display:none;
    border:none;
    background:none;
    font-size:30px;
    cursor:pointer;
}

@media (max-width:991px){

    .menu-btn{
        display:block;
    }

    .menu{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:20px;
        box-shadow:0 10px 20px rgba(0,0,0,.08);
    }

    .menu.active{
        display:flex;
    }

    .menu li{
        width:100%;
    }

    .menu a{
        display:block;
        width:100%;
        padding:12px 0;
    }

    .dropdown-menu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        display:none;
        width:100%;
        margin-top:10px;
        border-radius:8px;
        background:#f7f7f7;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }

    .dropdown-menu a{
        padding-left:20px;
    }

    .dropdown.active .arrow{
        transform:rotate(180deg);
    }
}

/* =====================
   MARQUEE
===================== */

.marquee{
    background:var(--secondary);
    color:#fff;
    overflow:hidden;
    white-space:nowrap;
    padding:12px 0;
    font-size:22px;
    font-weight:700;
}

.marquee-content{
    display:inline-block;
    animation:marquee 18s linear infinite;
}

@keyframes marquee{
    from{
        transform:translateX(100%);
    }
    to{
        transform:translateX(-100%);
    }
}

/* =====================
   HERO
===================== */

.hero{
    position:relative;
    padding:25px 0 60px;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:0 auto -35px;
    background:var(--primary);
    color:#fff;
    padding:16px 40px;
    border-radius:60px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.2);
}

.hero-content h1{
    font-size:34px;
    line-height:1.4;
    font-weight:700;
}

.hero img{
    width:100%;
    border-radius:18px;
    box-shadow:var(--shadow);
}

/* =====================
   SECTION TITLE
===================== */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:var(--primary);
    font-size:42px;
    margin-bottom:10px;
}

.section-title p{
    font-size:22px;
    color:#666;
}

/* =====================
   SERVICES
===================== */

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;
    height:100%;
}

.service-card img{
    width:80px;
    margin:0 auto 20px;
}

.service-card h3{
    color:#922326;
    font-size:30px;
    margin-bottom:15px;
}

.service-card p{
    flex:1;
    font-size:18px;
    line-height:1.7;
    color:#555;
    margin-bottom:20px;
}

.service-card .btn{
    margin-top:auto;
}
@media(max-width:991px){

    .service-grid{
        grid-template-columns:1fr;
    }

}

/* =====================
   BUTTON
===================== */

.btn{
    display:inline-block;
    margin-top:25px;
    background:var(--primary);
    color:#fff;
    padding:12px 28px;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:var(--secondary);
    transform:translateY(-3px);
}

/* =====================
   ABOUT
===================== */

.about{
    padding:90px 0;
    background:var(--primary);
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    background:#fff;
    padding:25px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.about-grid img{
    border-radius:15px;
    height:100%;
    object-fit:cover;
}

.about-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.about-content h2{
    color:var(--primary);
    font-size:40px;
    margin-bottom:20px;
}

.about-content p{
    font-size:20px;
    color:#555;
}

/* =====================
   POSTERS
===================== */

.posters{
    padding:90px 0;
}

.poster-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}

.poster-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
    text-align:center;
    padding-bottom:20px;
}

.poster-card:hover{
    transform:translateY(-10px);
}

.poster-card img{
    width:100%;
    display:block;
    transition:.4s;
}

.poster-card:hover img{
    transform:scale(1.05);
}

.poster-card:hover{
    transform:translateY(-10px);
}

.poster-card img{
    border-radius:15px;
    margin-bottom:20px;
    transition:.4s;
}

.poster-card:hover img{
    transform:scale(1.03);
}
@media(max-width:992px){

    .poster-grid{
        grid-template-columns:repeat(2,1fr);
    }

}
@media(max-width:768px){

    .poster-grid{
        grid-template-columns:1fr;
    }

}

/* =====================
   STATS
===================== */

.stats{
    padding:90px 0;
    background:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}
@media(max-width:768px){

    .stats-grid{
        grid-template-columns:1fr;
    }

}
@media(max-width:992px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

.stat-box{
    background:#fff;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    border-top:4px solid #922326;
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box h3{
    color:#922326;
    font-size:26px;
    margin-bottom:12px;
}

.counter{
    display:block;
    font-size:34px;
    font-weight:700;
    color:#e58d1f;
}

.counter{
    display:block;
    color:#222;
    font-size:32px;
    font-weight:700;
}

/* =====================
   CTA
===================== */

.cta{
    padding:90px 0;
    background:var(--primary);
}

.cta-box{
    background:#f6e9e9;
    border-radius:var(--radius);
    text-align:center;
    padding:60px 40px;
}

.cta-box h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-box p{
    font-size:22px;
    color:#555;
}

/* =====================
   FOOTER
===================== */

.footer{
    background:#ffffff;
    border-top:4px solid var(--primary);
    margin-top:0;
    padding-top:45px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:50px;
    padding-bottom:35px;
}

.footer-about p{
    margin-top:15px;
    color:#666;
    font-size:18px;
    line-height:1.8;
    max-width:320px;
}

.footer-logo{
    width:190px;
}

.footer h4{
    color:var(--primary);
    font-size:24px;
    margin-bottom:18px;
    position:relative;
}

.footer h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:45px;
    height:3px;
    background:var(--secondary);
    border-radius:10px;
}

.footer-links ul{
    margin-top:20px;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#555;
    font-size:18px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--primary);
    padding-left:6px;
}

.social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.social a{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f5f5f5;
    border-radius:50%;
    transition:.3s;
}

.social a:hover{
    background:var(--primary);
    transform:translateY(-4px);
}

.social img{
    width:22px;
    height:22px;
}

.copyright{
    background:var(--primary);
    color:#fff;
    text-align:center;
    padding:14px 15px;
    font-size:16px;
}

/* MOBILE */

@media(max-width:768px){

    .footer{
        padding-top:35px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
        padding-bottom:25px;
    }

    .footer-about p{
        max-width:100%;
    }

    .footer-logo{
        width:160px;
    }

    .footer h4{
        margin-bottom:15px;
    }
}
/* =====================
   RESPONSIVE
===================== */

@media(max-width:991px){

    .menu{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        padding:20px;
        box-shadow:0 10px 20px rgba(0,0,0,.08);
    }

    .menu.active{
        display:flex;
    }

    .menu-btn{
        display:block;
    }

    .hero-content{
        width:92%;
        padding:14px 25px;
        margin:0 auto -20px;
    }

    .hero-content h1{
        font-size:22px;
    }

    .about-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .cta-box h2{
        font-size:30px;
    }
}
.about-content .btn{
    align-self:center;
}

@media(max-width:576px){

    .logo{
        height:55px;
    }

    .section-title h2{
        font-size:32px;
    }

    .section-title p{
        font-size:18px;
    }

    .service-card h3{
        font-size:26px;
    }

    .about-content h2{
        font-size:32px;
    }

    .hero{
        padding:15px 0 40px;
    }

    .hero-content{
        border-radius:25px;
    }

    .hero-content h1{
        font-size:18px;
    }

    .marquee{
        font-size:18px;
 
   }
   
}
/* ======================
   PAGE BANNER
====================== */

.page-banner{
    background:linear-gradient(135deg,#922326,#b12f33);
    color:#fff;
    text-align:center;
    padding:70px 0;
}

.page-banner h1{
    font-size:48px;
    margin-bottom:10px;
}

.page-banner p{
    font-size:18px;
}

/* ======================
   HISTORY
====================== */

.history-section{
    padding:80px 0;
    background:#fff;
}

.history-grid{
    display:grid;
    grid-template-columns:450px 1fr;
    gap:50px;
    align-items:center;
}

.history-image{
    position:relative;
}

.history-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.years-badge{
    position:absolute;
    right:-20px;
    bottom:20px;

    width:120px;
    height:120px;

    background:#fff;

    border-radius:50%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    border:5px solid #f4f4f4;
}

.years-badge span{
    font-size:42px;
    font-weight:700;
    color:#e58d1f;
}

.years-badge small{
    color:#666;
}

.history-content h2{
    color:#922326;
    margin-bottom:20px;
    font-size:40px;
}

.history-content p{
    margin-bottom:15px;
    color:#555;
    line-height:1.9;
}

/* ======================
   FEATURES
====================== */

.features-section{
    padding:80px 0;
    background:#f8f8f8;
}

.features-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    margin-top:40px;
}

.features-grid ul{
    list-style:none;
}

.features-grid li{
    padding:12px 0;
    border-bottom:1px solid #eee;
    position:relative;
    padding-left:30px;
}

.features-grid li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#e58d1f;
    font-weight:bold;
}

/* MOBILE */

@media(max-width:991px){

    .history-grid{
        grid-template-columns:1fr;
    }

    .features-grid{
        grid-template-columns:1fr;
    }

    .years-badge{
        width:90px;
        height:90px;
    }

    .years-badge span{
        font-size:30px;
    }

    .page-banner h1{
        font-size:32px;
    }
	
}
/* ======================
   PAGE BANNER
====================== */

.page-banner{
    background:#922326;
    color:#fff;
    padding:50px 0;
    border-radius:0 0 12px 12px;
}

.banner-flex{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.page-banner h1{
    font-size:54px;
    margin-bottom:10px;
}

.page-banner p{
    font-size:22px;
}

.breadcrumb{
    font-size:18px;
}

/* ======================
   EXECUTIVE MEMBERS
====================== */

.members-section{
    padding:70px 0;
}

.members-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.member-card{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.member-card img{
    width:100%;
    display:block;
    transition:.5s;
}

.member-card:hover img{
    transform:scale(1.08);
}

.member-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:-100%;
    background:rgba(146,35,38,.95);
    color:#fff;
    padding:20px;
    text-align:center;
    transition:.4s;
}

.member-card:hover .member-overlay{
    bottom:0;
}

.member-overlay h3{
    font-size:24px;
    margin-bottom:5px;
}

.member-overlay span{
    color:#ffd27d;
    font-size:18px;
}

/* MOBILE */

@media(max-width:991px){

    .members-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .banner-flex{
        flex-direction:column;
        gap:15px;
    }
}

@media(max-width:768px){

    .members-grid{
        grid-template-columns:1fr;
    }

    .page-banner h1{
        font-size:34px;
    }
}
.member-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    background:#fff;
}

.member-card img{
    width:100%;
    height:380px;
    object-fit:cover;
    display:block;
}

.member-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;

    background:rgba(146,35,38,.92);

    color:#fff;

    text-align:center;

    padding:20px;

    transform:translateY(100%);
    transition:.4s ease;
}

.member-card:hover .member-overlay{
    transform:translateY(0);
}

.member-overlay h3{
    margin:0;
    font-size:22px;
}

.member-overlay span{
    display:block;
    margin-top:5px;
    color:#ffd27d;
    font-size:16px;
}
}
/* =====================
   GALLERY
===================== */

.gallery-section{
    padding:70px 0;
}

.gallery-intro{
    text-align:center;
    font-size:22px;
    max-width:1000px;
    margin:0 auto 40px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-item{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    cursor:pointer;
    transition:.4s;
}

.gallery-item:hover{
    transform:translateY(-8px);
}

.gallery-item img{
    width:100%;
    height:280px;

    object-fit:contain;

    background:#f8f8f8;

    display:block;
    padding:10px;
}

/* LIGHTBOX */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:99999;

    animation:fadeIn .3s ease;
}

.lightbox.active{
    display:flex;
}

.lightbox img{
    max-width:90%;
    max-height:90vh;

    animation:zoomIn .3s ease;
}

.close-lightbox{
    position:absolute;
    top:20px;
    right:30px;

    color:#fff;
    font-size:50px;

    cursor:pointer;
}

@keyframes zoomIn{
    from{
        transform:scale(.7);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

@media(max-width:992px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:1fr;
    }
}
/* ======================
   CAREER PAGE
====================== */

.career-section{
    position:relative;

    padding:80px 0;

    background:url('../images/career-bg.jpg')
    center center/cover no-repeat;
}

.career-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.25);
}

.career-wrapper{
    position:relative;
    z-index:2;

    max-width:900px;

    margin:auto;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.career-title{
    background:#ff6a3c;

    color:#fff;

    padding:25px 35px;
}

.career-title h2{
    font-size:48px;
    line-height:1.1;
}

.career-form{
    padding:35px;
}

.form-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:20px;
}

.career-form input,
.career-form textarea{

    width:100%;

    border:1px solid #cfd8dc;

    border-radius:8px;

    padding:15px;

    font-size:16px;

    outline:none;
}

.career-form input:focus,
.career-form textarea:focus{
    border-color:#922326;
}

.career-form textarea{
    min-height:130px;

    resize:none;

    margin-bottom:20px;
}

.file-upload{
    margin-bottom:25px;
}

.file-upload label{
    display:block;

    margin-bottom:10px;

    font-weight:600;

    color:#444;
}

.career-btn{
    background:#922326;

    color:#fff;

    border:none;

    padding:15px 35px;

    border-radius:8px;

    cursor:pointer;

    font-size:18px;

    transition:.3s;
}

.career-btn:hover{
    background:#e58d1f;
}

/* MOBILE */

@media(max-width:768px){

    .career-title h2{
        font-size:30px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .career-form{
        padding:20px;
    }
}
.contact-page{
    padding:80px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:30px;
}

.contact-form-box,
.contact-info-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
}

.contact-form-box textarea{
    height:140px;
}

.contact-form-box button{
    background:#922326;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:8px;
    cursor:pointer;
}

.contact-form-box button:hover{
    background:#e58d1f;
}

.info-item{
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.branch-section{
    padding:40px 0 80px;
}

.branch-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.branch-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.branch-card:hover{
    transform:translateY(-8px);
}

.branch-card h4{
    color:#922326;
    margin-bottom:10px;
}

.branch-card a{
    color:#e58d1f;
    font-weight:600;
}

@media(max-width:992px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .branch-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .branch-grid{
        grid-template-columns:1fr;
    }
}
/* ======================
   DEPOSIT PAGE
====================== */

.deposit-intro{
    padding:70px 0;
}

.deposit-intro-grid{
    display:grid;
    grid-template-columns:450px 1fr;
    gap:50px;
    align-items:center;
}

.deposit-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.deposit-content h2{
    color:#922326;
    margin-bottom:15px;
    font-size:38px;
}

.deposit-content p{
    color:#555;
    line-height:1.8;
    font-size:18px;
}

/* SCHEME GRID */

.deposit-section{
    padding-bottom:80px;
}

.deposit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.deposit-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.deposit-card:hover{
    transform:translateY(-10px);
}

.deposit-card img{
    width:100%;
    height:250px;
    object-fit:contain;
    background:#fff;
    padding:10px;
}

/* MOBILE */

@media(max-width:991px){

    .deposit-intro-grid{
        grid-template-columns:1fr;
    }

    .deposit-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .deposit-grid{
        grid-template-columns:1fr;
    }

    .deposit-content h2{
        font-size:30px;
    }
}
.deposit-card img{
    width:100%;
    height:330px;

    object-fit:cover;
}
.gallery-item{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

    display:flex;
    justify-content:center;
    align-items:center;

    height:310px;
    padding:15px;
}

.gallery-item img{
    width:100%;
    height:100%;

    object-fit:contain;

    display:block;
}
.gallery-item{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

    height:310px;
    padding:0;
}

.gallery-item img{
    width:100%;
    height:310px;

    object-fit:cover;
    object-position:center center;

    display:block;
}