
/* Corrected Dark Theme CSS */
body, .page-wrapper {
    background-color: white;
    color: black;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4af37;
    text-decoration: none;
}

.nav-links li a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .nav-links li a:hover {
        color: #d4af37;
    }

/* Headings */
h1, h2, h3, h4, h5 {
    color: #d4af37 !important;
}

/* Buttons */
.btn-primary, .theme-btn {
    background-color: #d4af37;
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-primary:hover, .theme-btn:hover {
        background-color: black;
        color: white;
    }

/* Slider */
.hero-slider, .main-slider {
    background: transparent !important;
}

.main-slider .slide img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        opacity: 1 !important;
    }

/* Preserve portfolio images */
.portfolio-section img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

/* Sections */
section, .auto-container, .features-section, .services-section-four, .news-section, .faqs-section, .testimonial-section-four, .clients-section {
    /*background-color: white !important;*/
    color: black !important;
}

/* Footer */
footer {
    /*background-color: white;*/
    color: black;
    text-align: center;
    padding: 20px;
}
.counter-title{
    color:white !important;
}