/* Custom Golden Background for Top Bar */
.bg-custom-golden {
    background-color: #DAA520 !important; /* Goldenrod color from your image */
    height: 45px; /* Added a fixed height to prevent overlap */
    display: flex; /* Ensure flex properties work correctly for height */
    align-items: center; /* Vertically align content */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Subtle shadow for premium feel */
    transition: all 0.3s ease;
}

/* Rest of your existing CSS */

        :root {
    --primary: #000000; /* Black */
    --secondary: #FFD700; /* Gold/Yellow */
    --accent: #b8860b; /* Dark Gold */
    --light: #f8f8f8;
    --dark: #333;
    --white: #fff;
    --gray: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}
.topbar {
  background-color: #daa520; /* gold */
  color: white;
  padding: 8px 0;
  text-align: center;
  font-size: 14px;
  position: relative;
  z-index: 999;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.sticky-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}
@media screen and (max-width: 768px) {
    .topbar {
        display: none;
    }
    
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
#header {
    position: sticky; /* Make header sticky */
    /* top: 45px; Adjusted top to move it below the new top bar */
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    margin-bottom: 0px; /* Remove margin to prevent overlap with top bar */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0; /* Added padding for premium feel */
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    display: none;
    margin-left: auto;
    padding-right: 20px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

nav ul {
    display: flex;
    list-style: none;
    
    align-items: center;
}

nav ul li {
    margin-left: 30px;
    justify-content: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0; /* Added padding for better hit area */
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s;
}

.nav-link:hover:after {
    width: 100%;
}

.btn {
    display: inline-block;
    background-color: var(--accent)!important;
    color: var(--primary)!important;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid var(--secondary);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: transparent !important; /* Ensure hover background is transparent */
    color: var(--primary) !important; /* Ensure hover color is primary */
    border-color: var(--primary) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn:hover:before {
    left: 100%;
}

.nav-btn {
    padding: 8px 20px;
}

/* Hero Section */
.hero{
    /* Adjusted padding-top to account for both fixed header and top bar */
   padding: 0; /* 45px (top bar) + ~80px (header) = 125px */
    height: auto;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .hero {
        /* Adjusted for smaller screens too, consider mobile menu height */
        padding-top: 100px; /* Adjust if mobile header is different height */
        margin-top: 0px;
    }
    
}
/* Ongoing Projects Section - Enhanced */
.ongoing-projects {
    padding: 30 0; /* Increased padding */
    background-color: var(--light);
    position: relative;
}

.ongoing-projects:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
    opacity: 0.03;
    pointer-events: none;
}
/* Ensure the image container is a positioning context */
.project-img {
    position: relative; /* This is crucial! */
    overflow: hidden; /* Helps if content overflows, though less likely with this specific overlay */
}

/* Style and position the property type overlay */
.property-type-overlay {
    position: absolute;
    top: 10px;        /* Adjust vertical position as needed */
    left: 10px;       /* Adjust horizontal position as needed */
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background */
    color: white;     /* White text color */
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em; /* Smaller font size for overlay */
    font-weight: bold; /* Make the text bold */
    z-index: 1;       /* Ensure it's above the image */
    text-transform: uppercase; /* Optional: Make text uppercase */
}
.rera-badge {
    position: absolute;
    bottom: 10px; /* Adjust as needed */
    right: 10px; /* Adjust as needed */
    /* background-color: rgba(255, 215, 0, 0.8); Semi-transparent gold background */
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em; /* Smaller font size for badge */
    font-weight: bold; /* Make the text bold */
    z-index: 1; /* Ensure it's above the image */
    width: 150px; /* Fixed width for consistency */
}
.section-title {
    margin-top: 20px; /* Adjusted margin-top */
    text-align: center;
    margin-bottom: 40px; /* Adjusted margin-bottom */
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 3px;
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}
.projects-grid a {
    text-decoration: none;
    color: inherit;
}

.project-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
    opacity: 0;
    animation: cardEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
   
    /* ➕ Add this for layout */
    display: flex;
    flex-direction: column;
    height: 100%;
}
.project-buttons {
    margin-top: auto;
    padding: 12px 16px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.project-img {
  width: 100%;
  height: 200px; /* or whatever fits your layout */
  background-size: cover;
  background-position: center;
  pointer-events: auto;
  cursor: pointer; /* gives visual feedback */
}


@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }
.project-card:nth-child(6) { animation-delay: 0.6s; }

.project-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.project-card:hover::before {
    opacity: 1;
}

.project-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
    position: relative;
    z-index: 2;
    background: var(--white);
    transition: all 0.4s ease;
}

.project-card:hover .project-info {
    background: rgba(255,255,255,0.98);
}

.project-info h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.project-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.4s ease;
}

.project-card:hover .project-info h3::after {
    width: 50px;
}

.project-info p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.project-card:hover .project-info p {
    color: var(--dark);
}

.progress-container {
    margin-bottom: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--dark);
}

.progress-bar {
    height: 6px;
    background-color: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.8) 50%, 
        rgba(255,255,255,0) 100%);
    animation: progressShine 2.5s infinite linear;
    transform: translateX(-100%);
}

@keyframes progressShine {
    100% { transform: translateX(100%); }
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    width: var(--progress);
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.project-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: var(--primary);
    padding: 6px 35px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 3;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.project-card:hover .project-badge {
    right: -40px;
    padding: 6px 40px;
    background: linear-gradient(45deg, var(--primary), var(--dark));
    color: var(--secondary);
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.753)), url('../IMAGES/projects-running/imperia.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
    opacity: 0.05;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 30px 20px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,215,0,0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255,255,255,0.15);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.stat-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,215,0,0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.stat-item:hover:before {
    transform: translateX(100%);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-text {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-text {
    letter-spacing: 1px;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/dark-geometric.png');
    opacity: 0.05;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-column p, 
.footer-column a {
    color: #ddd;
    margin-bottom: 15px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.copyright a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright a:hover {
    text-decoration: underline;
    letter-spacing: 0.5px;
}

/* Form Popup */
.el-form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeInOverlay 0.3s;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.el-form-container {
    background-color: var(--white);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    padding: 35px;
    position: relative;
    animation: fadeInUp 0.4s;
    color: var(--dark);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px) rotateX(10deg); }
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.el-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: all 0.3s ease;
}

.el-close-btn:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.el-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.el-form-header img {
    max-width: 200px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.el-form-header img:hover {
    transform: scale(1.05);
}

.el-form-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.el-form-group {
    margin-bottom: 20px;
    position: relative;
}

.el-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 500;
}

.el-form-group input,
.el-form-group select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background-color: rgba(0,0,0,0.02);
}

.el-form-group input:focus,
.el-form-group select:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,215,0,0.2);
    background-color: var(--white);
}

.el-form-row {
    display: flex;
    gap: 15px;
}

.half-width {
    flex: 1;
}

.el-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.el-submit-btn:hover {
    background: linear-gradient(45deg, #e6c200, #a67c00);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transform: translateY(-3px);
}

.el-submit-btn:active {
    transform: translateY(0);
}

.el-submit-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.el-submit-btn:hover:before {
    left: 100%;
}

/* Coming Soon Popup */
.coming-soon-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeInOverlay 0.3s;
}

.coming-soon-container {
    background-color: var(--white);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    padding: 35px;
    position: relative;
    animation: fadeInUp 0.4s;
    color: var(--dark);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    text-align: center;
}

.coming-soon-container h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.coming-soon-container p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.coming-soon-btn {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.coming-soon-btn:hover {
    background: linear-gradient(45deg, #e6c200, #a67c00);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Adjusted for smaller screens */
    #header {
        top: 0; /* Header sticks to top on mobile */
    }

    .hero {
        padding-top: 80px; /* Adjust for fixed header height (approx) */
        text-align: center;
    }
    nav ul {
        position: fixed;
        top: 80px; /* Header height */
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px); /* Remaining height */
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: right 0.3s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 10px 0;
    }
    
    
    
    .project-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .bg-custom-golden {
        display: none !important; /* Hide top bar on mobile */
    }
    /* Adjust for mobile specific overlap issues */
    .hero {
        padding-top: 80px; /* Still needs to clear fixed elements */
        text-align: center;
    }
    .section-title h2 {
        font-size: 2.2rem;
        padding-bottom: 2px;
    }
    
    .el-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .half-width {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 80px; /* Consistent padding top */
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }
    
    nav ul {
        width: 100%;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.custom-link {
    text-decoration: none;
    color: inherit;
}
  .google-map {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 15px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.google-map iframe {
  width: 100%;
  height: 250px; /* Adjust height as needed */
  border: 0;
  display: block;
}
/* Sticky Mobile Footer */
.mobile-fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #030303; /* Dark green footer background */
  padding: 10px 16px;
  z-index: 999;
  display: none;
  justify-content: center;
  gap: 12px; /* Space between buttons */
}
.mobile-fixed-footer a {
  text-decoration: none; 
  font-weight: 600;
}
.mobile-footer-btn {
  background: var(--secondary); /* Bright yellow buttons */
  color: #000 !important;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 24px; /* Curved button edges */
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  min-width: 130px;
  justify-content: center;
  text-align: center;
  border: none;
}

/* Optional Hover Effect */
.mobile-footer-btn:hover {
  background: #947a05;
}

/* Mobile only */
@media (max-width: 768px) {
  .mobile-fixed-footer {
    display: flex;
  }

  body {
    padding-bottom: 60px; /* Prevent content overlap */
  }
}