* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #090909;
    background-image: url('/assets/images/film-strip.webp');
    background-repeat: no-repeat;
    background-position: left top;
}
.navbar {
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(15px);
    padding: 5px 0;
    transition: .4s;
}
.navbar-brand img {
    height: 85px;
}
.navbar ul {
    display: flex;
    gap: 35px;
    list-style: none;
}
.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
}
.navbar a:hover {
    color: #FDBA2D;
}

.hero-section {
    background: url('/assets/images/bg-banner.webp');
    background-size: cover;
    background-position: center;
    height: 566px;
}

.hero h5 {
    color: #FDBA2D;
    letter-spacing: 2px;
}
.hero h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
    color:#fff;
}
.hero span {
    color: #FDBA2D;
}
.hero p {
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 40px;color:#fff;
}
.btn-main {
    display: inline-block;
    padding: 18px 45px;
    background: #FDBA2D;
    color: #111;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: .4s;
}
.btn-main:hover {
    transform: translateY(-4px);
    background: #fff;
}
.hero img {
    animation: float 4s infinite;
}
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
/*==================== FEATURES ====================*/
section.features {
    background: url(/assets/images/featre.webp);
    background-size: cover;
    background-position: center;
    height: 274px;
    padding: 40px 0px;

}


.feature-box {
    
   padding: 20px 5px;
    display: inline-block;
    width: 19.6%;
    border-right: 1px solid #d4a017;
    text-align: center;
  

}
.feature-box:last-child {
    border-right: 0px solid #d4a017;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
.feature-box i {
    font-size: 45px;
    color: #D4A017;
    margin-bottom: 20px;
}
.feature-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.feature-box p {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}
/*==================== ABOUT ====================*/

.about {
    padding: 49px 0;
    background: #090909;
    position: relative;
    overflow: hidden;
}
.about::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: #D4A017;
    filter: blur(250px);
    opacity: .18;
    right: -250px;
    top: -100px;
}
.about img {
    border-radius: 20px;
    transition: .5s;
}
.about img:hover {
    transform: scale(1.03);
}
.about h5 {
    color: #FDBA2D;
    letter-spacing: 3px;
    margin-bottom: 15px;
}
.about h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}
.about h2 span {
    color: #FDBA2D;
}
.about p {
    font-size: 18px;
    line-height: 30px;
    color: #fff;text-align: justify;
}
.hero {
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    right: -150px;
    top: -100px;
    width: 700px;
    height: 700px;
    background: #FDBA2D;
    opacity: .18;
    filter: blur(220px);
}
.feature-box {
    opacity: 0;
    transform: translateY(80px);
    transition: 1s;
}
.feature-box.show {
    opacity: 1;
    transform: translateY(0);
}
/*================ GALLERY ================*/
.gallery-section {
    padding: 40px 0;
    background: #111;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h5 {
    color: #FDBA2D;
    letter-spacing: 3px;
}
.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    margin-top: 15px;color: #fff;
}
.section-title p {
    color: #bbb;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    object-fit: cover;
    transition: .6s;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .5s;
}
.gallery-overlay i {
    font-size: 45px;
    color: #FDBA2D;
}
.gallery-item:hover img {
    transform: scale(1.15);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
/*================ EVENTS ================*/
.events {
    padding: 40px 0;
    background: #090909;
}
.event-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}
.event-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: .5s;
}
.event-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 40px;
    background:
        linear-gradient(
          to top,
          #000,
          transparent
        );
}
.event-content h3 {
    font-size: 34px;
    font-weight: 700;
    color:#fff;
}
.event-content p {
    margin: 15px 0;
    color: #ddd;
}
.event-content a {
    color: #FDBA2D;
    font-weight: bold;
    text-decoration: none;
}
.event-card:hover img {
    transform: scale(1.1);
}
/* CONTACT */

/* SECTION */
.contact-banner {
    position: relative;
    background: url('../images/contact-banner.png') no-repeat center/cover;
    padding: 60px 20px;
    color: #fff;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}


/* LEFT */
.contact-left h2 {
    color: #FFD700;
    margin-bottom: 10px;
}

.contact-left p {
    color: #ccc;
}

/* CENTER */
.contact-center p {
    margin: 8px 0;
    color: #ddd;
}

.contact-center i {
    color: #FFD700;
    margin-right: 10px;
}

/* RIGHT */
.contact-right h3 {
    color: #FFD700;
    margin-bottom: 10px;
}

.social-icons i {
    font-size: 20px;
    margin-right: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons i:hover {
    color: #FFD700;
    transform: scale(1.2);
}

.contact-right p {
    margin-top: 10px;
    color: #bbb;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
}


/* FOOTER */
.footer {
    background: #090909;
    padding: 80px 0 20px;
}
.footer-logo {
    height: 60px;
    margin-bottom: 25px;
}
.footer h4 {
    margin-bottom: 25px;
    color: #FDBA2D;
}
.footer ul {
    padding: 0;
    list-style: none;
}
.footer li {
    margin-bottom: 12px;
}
.footer a {
    color: #ccc;
    text-decoration: none;
}
.footer a:hover {
    color: #FDBA2D;
}
.footer input {
    width: 100%;
    padding: 15px;
    background: #222;
    border: none;
    color: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
}
.footer button {
    width: 100%;
    padding: 15px;
    background: #FDBA2D;
    border: none;
    font-weight: bold;
    border-radius: 8px;
}
.footer hr {
    margin: 50px 0 20px;
    border-color: #333;
}
.copyright {
    text-align: center;
    color: #888;
}
.counter-section {
    padding: 100px 0;
    background: #111;
}
.counter-box {
    padding: 40px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    transition: .4s;
}
.counter-box:hover {
    border-color: #FDBA2D;
    transform: translateY(-10px);
}
.counter {
    font-size: 60px;
    font-weight: 700;
    color: #FDBA2D;
}
.counter-box p {
    font-size: 18px;
    color: #ccc;
    margin-top: 10px;
}
.testimonial {
    padding: 100px 0;
    background: #090909;
    text-align: center;
}
.testimonial-card {
    max-width: 800px;
    margin: auto;
    padding: 50px;
    background: #181818;
    border-radius: 20px;
}
.testimonial-card p {
    font-size: 22px;
    line-height: 40px;
    font-style: italic;
}
.testimonial-card h4 {
    margin-top: 30px;
    color: #FDBA2D;
}
.cta {
    padding: 120px 0;
    text-align: center;
    background:
        linear-gradient(
          135deg,
          #111,
          #222
        );
}
.cta h2 {
    font-size: 58px;
    margin-bottom: 20px;
}
.cta p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
    color: #ccc;
}
#top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    background: #FDBA2D;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 9999;
}
#loader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.spinner {
    width: 70px;
    height: 70px;
    border: 6px solid #333;
    border-top: 6px solid #FDBA2D;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}