.banner-section{
    background-image: url("assets/images/banner/banner-img.png");
}


/* =======================
   GLOBAL STYLES
======================= */
body {
    margin: 0;
    font-family: sans-serif;
}

/* =======================
   NAVBAR
======================= */
.navbar {
    /* navbar styles */
}

/* =======================
   HERO SECTION
======================= */
.hero {
    /* hero styles */
}

/* =======================
   ABOUT PAGE
======================= */
.about-section {
    /* about page styles */
}

/* =======================
   FOOTER SECTION
======================= */
      /* =======================
   FOOTER SECTION
======================= */
.footer-section {
    padding-top: 30px;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}

.footer-card {
    display: flex;
    flex-direction: column;
    width: 34%;
}

.footer-card:nth-child(1n) {
    align-items: flex-start;
}

.footer-card:nth-child(2n) {
    align-items: center;
}

.footer-card:nth-child(2n) h6 {
    width: 37%;
}

/* =======================
   FOOTER RESPONSIVE
======================= */
@media screen and (max-width:678px) {
    .footer-section {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-card:nth-child(1n) {
        width: 100%;
        align-items: center;
        gap: 5px;
    }

    .footer-card:nth-child(1n) p {
        margin-bottom: 0px;
    }

    .footer-card:nth-child(2n) {
        margin-top: 10px;
        width: 33%;
        align-items: flex-start;
        gap: 5px;
    }

    .footer-card:nth-child(2n) ul li a {
        font-size: 14px;
    }

    .footer-card:nth-child(2n) h6 {
        width: unset;
        margin-bottom: 2px;
        font-weight: bold;
    }

    .footer-card:nth-child(3n) {
        width: 58%;
        gap: 3px;
        align-items: flex-end;
    }

    .footer-card:nth-child(3n) div {
        flex-direction: column;
        align-items: center;
    }

    .footer-card:nth-child(3n) div .text-box p,
    .footer-card:nth-child(3n) div .text-box a {
        font-size: 16px;
        text-align: center;
    }
}

/* =======================
   FEATURE BLOCK
======================= */
.feature-block {
    transition: all 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-10px);
}

/* =======================
   LINK HOVER EFFECT
======================= */
a:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

/* =======================
   ANIMATIONS
======================= */
@keyframes floatY {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-float-y {
    animation: floatY 3s ease-in-out infinite;
}

.floating-shape {
    animation: floatY 6s ease-in-out infinite;
}

/* =======================
   FADE UP ANIMATION
======================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-2 {
    animation-delay: 0.3s;
}

/* =======================
   GOLD GLOW EFFECT
======================= */
.gold-glow {
    position: relative;
    z-index: 1;
}

.gold-glow::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,215,0,0.25) 0%, transparent 70%);
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
}

.gold-glow:hover::after {
    opacity: 1;
}

/* =======================
   SCROLL REVEAL
======================= */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.feature-block {
    transition: all 0.4s ease;
}

.feature-block:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

/* =======================
   GOLD BUTTON SHIMMER
======================= */
.btn-gold {
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: 0.6s;
}

.btn-gold:hover::before {
    left: 100%;
}

/* =======================
   FLOATING PARTICLES
======================= */
.gold-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: gold;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatGold 6s infinite ease-in-out;
}

@keyframes floatGold {
    0% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-40px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.3; }
}

.image img {
    transition: transform 0.5s ease;
}

.image:hover img {
    transform: scale(1.08);
}

.gold-text {
    background: linear-gradient(90deg, #FFD700, #FFB800, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =======================
   GOLD CURSOR GLOW
======================= */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,215,0,0.35) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out;
    z-index: 9999;
}

a:hover ~ .cursor-glow,
button:hover ~ .cursor-glow {
    transform: translate(-50%, -50%) scale(1.4);
}

/* =======================
   INPUT GOLD FOCUS
======================= */
input:focus, textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: 0.3s;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* =======================
   CONTACT CARD HOVER
======================= */
.contact-card {
    transition: all 0.4s ease;
    background: #fff;
}

.contact-card:hover {
    background: #5a4634; /* brown shade */
    border-color: #5a4634;
    transform: translateY(-10px);
}

/* TEXT COLOR CHANGE ON HOVER */
.contact-card:hover h3,
.contact-card:hover p,
.contact-card:hover a {
    color: #fff !important;
}

/* ICON COLOR */
.contact-card:hover i {
    color: #FFD700; /* gold icon on brown */
}

.contact-card:hover {
    box-shadow: 0 20px 40px rgba(90, 70, 52, 0.3);
}

.footer-card ul li a {
    position: relative;
    transition: 0.3s;
}

.footer-card ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: 0.3s;
}

.footer-card ul li a:hover::after {
    width: 100%;
}