.theme-bg-secondary{
    background-color: #011828;
}
.theme-text-secondary{
    color: #011828;
}

.theme-bg-primary{
    background-color: #caa769;
}
.theme-text-primary{
    color: #caa769;
}

/* Footer vertical lines styling */
.footer-section .lines span {
    background-color: #caa769 !important;
    opacity: 0.3;
}

/* Apply Now button - static hover (no background color change) */
.join-with-us .btn.theme-bg-primary:hover,
.join-with-us .btn.theme-bg-primary:focus,
.join-with-us .btn.theme-bg-primary:active {
    background-color: #caa769 !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

/* Mobile Menu Enhancements */
.mobile-menu-area .mobile-menu-main {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu-area .mobile-menu-main.active {
    transform: translateX(0);
}

.mobile-menu-area .mobile-menu-overlay {
    transition: all 0.3s ease-in-out;
}

.mobile-menu-area .mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Mobile menu bars button styling */
.mobile-menu-area .bars {
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-area .bars:hover {
    transform: scale(1.1);
}

/* Mobile menu close button styling */
.mobile-menu-area .close-mobile-menu {
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-area .close-mobile-menu:hover {
    transform: scale(1.1);
}

/* Mobile menu links styling */
.mobile-menu-area .menu-list ul li a {
    transition: all 0.3s ease;
    display: block;
    padding: 15px 20px;
}

.mobile-menu-area .menu-list ul li a:hover {
    background-color: #f8f9fa;
    color: #caa769;
}

/* Ensure mobile menu is properly positioned */
@media (max-width: 1199.98px) {
    .mobile-menu-area {
        display: block !important;
    }
    
    .header-section .navbar {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .mobile-menu-area {
        display: none !important;
    }
    
    .header-section .navbar {
        display: flex !important;
    }
}

/* ===================================
   Hero Section Styles
   =================================== */

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
}

/* Hero Title Styling */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Hero Badge Animation */
.hero-badge .badge {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(202, 167, 105, 0.3);
}

.hero-badge .badge:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 20px rgba(202, 167, 105, 0.4); */
}

/* Button Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hover-lift::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hover-lift:hover::before {
    width: 300px;
    height: 300px;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #caa769;
    color: #caa769;
}

/* Floating Badge Animation */
.floating-badge {
    animation: float 3s ease-in-out infinite;
}

/* Image Frame Hover */
.image-frame {
    transition: all 0.4s ease;
}

.hero-image:hover .image-frame {
    transform: translateY(-5px);
}

/* Decorative Circles Animation */
.decorative-circle {
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Stats Counter Animation */
.stat-item h3 {
    transition: all 0.3s ease;
}

.stat-item:hover h3 {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(202, 167, 105, 0.5);
}

/* Text Shadow for Better Readability */
.hero-title {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .floating-badge {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Brand Slider Improvements */
.brand-slider-section .slider-main .slider-item {
    animation: scroll 15s linear infinite !important;
    animation-fill-mode: none;
}

.brand-slider-section .slider-main .slider-item:nth-child(2) {
    animation-delay: -7.5s;
}

/* Ensure continuous sliding without gaps */
.brand-slider-section .slider-main {
    overflow: hidden;
    width: 100%;
}

.brand-slider-section .slider-main .slider-item {
    display: flex;
    width: max-content;
    will-change: transform;
}

/* Faster animation for better user experience */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 1.5rem));
    }
}
