html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
}
/* Navbar */
.custom-navbar {
    background: #5d0015;
    padding: 12px 0;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}
.logo {
    width: 70px;
}
.navbar-brand h4 {
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    font-size: 26px;
    margin: 0;
}
.navbar-brand p {
    color: #fff;
    font-size: 12px;
    margin: 0;
    line-height: 20px;
}
.nav-link {
    color: #fff !important;
    margin-left: 20px;
    font-weight: 500;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: .4s;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link:hover {
    color: #D4AF37 !important;
}
.btn-golden {
    background: #D4AF37;
    color: #5d0015;
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 40px;
    transition: .4s;
}
.btn-golden:hover {
    background: #fff;
    transform: translateY(-4px);
}
.btn-outline-light {
    padding: 14px 35px;
    border-radius: 40px;
}
.btn-outline-light:hover {
    background: #D4AF37;
    color: #5d0015;
    border-color: #D4AF37;
}

/* Mobile */
@media(max-width:991px) {
.hero h1 {
    font-size: 42px;
}
.hero h2 {
    font-size: 24px;
    line-height: 36px;
}
.logo {
    width: 55px;
}
.navbar-brand h4 {
    font-size: 20px;
}
.navbar-brand p {
    display: none;
}
}
.hero-slider {
    margin-top: 95px;
}
.hero-slider .carousel-item {
    min-height: 500px;
    position: relative;
}
.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(75, 0, 17, .75), rgba(75, 0, 17, .85));
}
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 700px;
    bottom: auto;
    z-index: 2;
}
.slider-tag {
    display: inline-block;
    background: #D4AF37;
    color: #5d0015;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}
.carousel-caption h1 {
    font-family: 'Cinzel', serif;
    font-size: 62px;
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 20px;
}
.carousel-caption p {
    color: #ffffff;
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 35px;
    max-width: 600px;
}
.btn-golden {
    background: #D4AF37;
    color: #5d0015;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
    text-decoration: none;
}
.btn-golden:hover {
    background: #fff;
    color: #5d0015;
    transform: translateY(-4px);
}
/*==============================
 HERO SLIDER
==============================*/
.hero-slider {
    position: relative;
}
.hero-slider .carousel, .hero-slider .carousel-inner, .hero-slider .carousel-item {
    max-height: 500px;
}
.hero-slider .carousel-item {
    position: relative;
}
.hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slider .slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(70, 0, 15, .65);
    z-index: 1;
}
/* Caption */
.hero-slider .carousel-caption {
    position: absolute;
    top: 50%;
    left: 8%;
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
    text-align: left;
    width: 650px;
    max-width: 90%;
    z-index: 2;
}
.hero-slider .slider-tag {
    display: inline-block;
    background: #D4AF37;
    color: #5d0015;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 14px;
}
.hero-slider .carousel-caption h1 {
    color: #D4AF37;
    font-size: 45px;
    font-family: 'Cinzel', serif;
    margin-bottom: 8px;
    font-weight: 700;
}
.hero-slider .carousel-caption p {
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 30px;
}
/* Controls */
.hero-slider .carousel-control-prev, .hero-slider .carousel-control-next {
    width: 70px;
}
.hero-slider .carousel-control-prev-icon, .hero-slider .carousel-control-next-icon {
    width: 55px;
    height: 55px;
    background-size: 55%;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, .9);
}
/* Indicators */
.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D4AF37;
}

/* Mobile */
@media(max-width:991px) {
.hero-slider .carousel, .hero-slider .carousel-inner, .hero-slider .carousel-item {
    height: 80vh;
}
.hero-slider .carousel-caption {
    left: 5%;
    right: 5%;
    width: auto;
}
.hero-slider .carousel-caption h1 {
    font-size: 36px;
}
.hero-slider .carousel-caption p {
    font-size: 16px;
    line-height: 28px;
}
}
/*=========================
ABOUT SECTION
=========================*/
.about-section {
    background: #fffdf8;
    padding: 90px 0;
}
.section-subtitle {
    color: #D4AF37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: #65001A;
    font-weight: 700;
    margin-bottom: 1px;
    line-height: 1.3;
}
.about-text {
    color: #555;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 20px;
}
.about-image {
    position: relative;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    transition: .5s;
}
.about-image:hover img {
    transform: scale(1.05);
}
.experience-box {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #65001A;
    color: #fff;
    padding: 25px;
    border-left: 5px solid #D4AF37;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}
.experience-box h2 {
    color: #D4AF37;
    font-size: 40px;
    margin: 0;
    font-weight: 700;
}
.experience-box p {
    margin: 5px 0 0;
}
/*=========================
COUNTERS
=========================*/
.counter-box {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}
.counter-box:hover {
    background: #65001A;
    transform: translateY(-8px);
}
.counter-box h3 {
    color: #D4AF37;
    font-size: 34px;
    margin-bottom: 8px;
    font-weight: 700;
}
.counter-box span {
    color: #555;
    font-weight: 500;
}
.counter-box:hover span {
    color: #fff;
}
/*=========================
MISSION
=========================*/
.mission-section {
    background: #f9f6ef;
    padding: 80px 0;
}
.mission-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 18px;
    transition: .4s;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}
.mission-card:hover {
    background: #65001A;
    transform: translateY(-10px);
}
.icon-box {
    width: 85px;
    height: 85px;
    margin: auto;
    background: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.icon-box i {
    color: #65001A;
    font-size: 34px;
}
.mission-card h4 {
    color: #65001A;
    font-weight: 700;
    margin-bottom: 18px;
}
.mission-card p {
    color: #666;
    line-height: 28px;
}
.mission-card:hover h4, .mission-card:hover p {
    color: #fff;
}

/*=========================
RESPONSIVE
=========================*/
@media(max-width:991px) {
.section-title {
    font-size: 32px;
}
.about-section {
    text-align: center;
}
.experience-box {
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}
}

@media(max-width:576px) {
.section-title {
    font-size: 28px;
}
.counter-box {
    padding: 18px;
}
.counter-box h3 {
    font-size: 26px;
}
.experience-box {
    position: relative;
    left: 0;
    transform: none;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
}
}
.members-section {
    background: #fff;
    padding: 90px 0;
}
.memberSwiper {
    padding-bottom: 60px;
}
.member-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}
.member-card:hover {
    transform: translateY(-10px);
}
.member-image {
    overflow: hidden;
}
.member-image img {
    width: 100%;
    object-fit: cover;
    transition: .5s;
}
.member-card:hover img {
    transform: scale(1.08);
}
.member-content {
    padding: 25px;
    text-align: center;
}
.member-content h4 {
    color: #65001A;
    font-weight: 700;
	font-size: 16px;
    margin-bottom: 6px;
}
.member-content span {
display: inline-block;
    background: #D4AF37;
    color: #65001A;
    padding: 3px 13px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 12px;
}
.swiper-pagination-bullet {
    background: #65001A;
}
.swiper-pagination-bullet-active {
    background: #D4AF37;
}
.gallery-section {
    background: #faf8f4;
    padding: 90px 0;
}
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(101, 0, 26, .65);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .4s;
}
.gallery-overlay i {
    color: #D4AF37;
    font-size: 42px;
    width: 75px;
    height: 75px;
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(.5);
    transition: .4s;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

@media(max-width:768px) {
.gallery-item img {
    height: 220px;
}
}
/*=================================
          FOOTER
==================================*/
.footer-section {
    background: #65001A;
    color: #fff;
    padding: 70px 0 0;
}
.footer-logo-img {
    width: 65px;
}
.footer-logo h4 {
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    margin-bottom: 5px;
}
.footer-logo small {
    color: #ddd;
}
.footer-text {
    color: #ddd;
    line-height: 30px;
    margin-top: 20px;
}
.footer-section h5 {
    color: #D4AF37;
    margin-bottom: 25px;
    position: relative;
}
.footer-section h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: #D4AF37;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 14px;
}
.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: .3s;
}
.footer-links a:hover {
    color: #D4AF37;
    padding-left: 8px;
}
.footer-contact {
    list-style: none;
    padding: 0;
}
.footer-contact li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ddd;
}
.footer-contact i {
    color: #D4AF37;
    font-size: 18px;
    margin-top: 3px;
}
.footer-registration {
    color: #ddd;
    line-height: 28px;
}
.footer-bottom {
    margin-top: 60px;
    background: #4b0013;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer-bottom {
    color: #ddd;
}
.developer-name {
    color: #D4AF37;
    font-weight: 600;
}

/*============================
 Responsive
=============================*/
@media(max-width:768px) {
.footer-bottom {
    text-align: center;
}
.footer-bottom .text-md-end {
    margin-top: 10px;
    text-align: center !important;
}
.footer-section {
    padding-top: 50px;
}
}



.subtitle{
color:#ff9800;
font-weight:600;
letter-spacing:1px;
text-transform:uppercase;
}

.about-img{
border-radius:20px;
}

.mission-card{
background:#fff;
padding:35px;
text-align:center;
border-radius:15px;
transition:.4s;
box-shadow:0 10px 30px rgba(0,0,0,.08);
height:100%;
}

.mission-card:hover{
transform:translateY(-10px);
}

.mission-card i{
font-size:45px;
color:#ff9800;
margin-bottom:20px;
}

.feature{
display:flex;
margin-bottom:30px;
}

.feature i{
font-size:28px;
color:#ff9800;
margin-right:20px;
}

.counter-section{
background:#ff9800;
color:#fff;
}

.counter-section h2{
font-size:45px;
font-weight:bold;
}

.team-card{
background:#fff;
padding:30px;
text-align:center;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;
}

.team-card:hover{
transform:translateY(-10px);
}

.team-card img{
width:130px;
height:130px;
border-radius:50%;
object-fit:cover;
margin-bottom:20px;
}

.cta-section{
background:#0d6efd;
color:#fff;
padding:80px 0;
}

.cta-section h2{
font-size:42px;
font-weight:bold;
}

.btn-primary,
.btn-warning{
padding:12px 35px;
border-radius:50px;
}

@media(max-width:768px){

.about-section{
text-align:center;
}

.feature{
flex-direction:column;
text-align:center;
}

.feature i{
margin-bottom:15px;
margin-right:0;
}

.counter-section h2{
font-size:35px;
}

.cta-section h2{
font-size:32px;
}

}

/* =========================
   About Banner
========================= */

.page-banner{
    position: relative;
    height:300px;
    background:url("../images/about-banner.jpg") center center/cover no-repeat;
    overflow:hidden;
	    margin-top: 104px;
}

.page-banner .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.page-banner .container{
    position:relative;
    z-index:2;
}

.banner-title{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.breadcrumb{
    background:transparent;
}

.breadcrumb-item,
.breadcrumb-item.active{
    color:#fff;
    font-size:16px;
}

.breadcrumb-item a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb-item a:hover{
    color:#ffc107;
}

.breadcrumb-item + .breadcrumb-item::before{
    color:#fff;
    content:"-";
}

/* Tablet */
@media(max-width:992px){

    .page-banner{
        height:260px;
    }

    .banner-title{
        font-size:38px;
    }
}

/* Mobile */
@media(max-width:576px){

    .page-banner{
        height:150px;
		margin-top: 89px;
    }

    .banner-title{
        font-size:30px;
    }

    .breadcrumb-item{
        font-size:14px;
    }
}


.contact-section{
    background:#f8f9fa;
}

.contact-info,
.contact-form{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.contact-info h2,
.contact-form h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
    color:#222;
}

.info-box{
    display:flex;
    align-items:flex-start;
    margin-bottom:25px;
}

.info-box i{
    width:55px;
    height:55px;
    background:#5d0015;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-right:18px;
    flex-shrink:0;
}

.info-box h6{
    font-weight:700;
    margin-bottom:5px;
}

.info-box p{
    margin:0;
    color:#666;
}

.social-icons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.social-icons a{
    width:45px;
    height:45px;
    background:#5d0015;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#222;
    transform:translateY(-4px);
}

.form-control{
    border-radius:10px;
    padding:12px 15px;
    border:1px solid #ddd;
    box-shadow:none;
}

.form-control:focus{
    border-color:#5d0015;
    box-shadow:none;
}

.contact-btn{
    background:#5d0015;
    color:#fff;
    padding:12px 35px;
    border-radius:30px;
    font-weight:600;
    border:none;
    transition:.3s;
}

.contact-btn:hover{
    background:#222;
    color:#fff;
}

@media(max-width:991px){

    .contact-info{
        margin-bottom:30px;
    }

}

@media(max-width:576px){

    .contact-info,
    .contact-form{
        padding:25px;
    }

    .contact-info h2,
    .contact-form h2{
        font-size:28px;
    }

    .info-box i{
        width:48px;
        height:48px;
        font-size:18px;
    }

}