:root {
    --primary-blue: #242c64;
    --primary-yellow: #f8c510;
    --text-dark: #2a2b33;
    --text-light: #73848e;
    --bg-light: #f7f8fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-section {
    height: 600px;
}

@media screen and (max-width: 600px) {
    .hero-section {
        height: 450px;
    }

    .hero-section .input-group-lg>.btn {
        padding: .5rem 1rem;
        font-size: 1rem;
        border-radius: var(--bs-border-radius-lg);
    }
}

/* Header Styling */
.navbar-custom {
    background-color: var(--primary-blue);
    padding: 10px 0;
}

.navbar-brand img {
    max-height: 40px;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--primary-yellow) !important;
}

.btn-theme {
    background-color: var(--primary-yellow);
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 24px;
    border: none;
}

.btn-theme:hover {
    background-color: #e0b00e;
    color: #000;
}

/* Footer Styling */
footer {
    background-color: #212529;
    /* Dark background */
    color: #f8f9fa;
    /* Light text */
    padding: 60px 0 40px;
    border-top: none;
}

footer h5 {
    color: #fff;
    /* White headers */
    font-weight: 600;
}

footer a {
    color: #e9ecef;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-yellow);
}

.copy {
    background-color: #1a1e21;
    /* Slightly darker */
    color: #6c757d;
    padding: 20px 0;
    font-size: 0.85rem;
    border-top: 1px solid #343a40;
}

/* General Utilities */
.section-padding {
    padding: 80px 0;
}

.card-custom {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    background: #fff;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hover-shadow:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Listing Image Fix */
.listing-img-container img {
    object-fit: contain !important;
    background-color: #f8f9fa;
}

/* Hiding Slick Controls in Hero specifically */
.home-slider .slick-prev,
.home-slider .slick-next,
.home-slider .slick-arrow {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

/* Enhancing Hero Overlay */
.home-slider img {
    object-position: center;
}

/* Pagination Theme Overrides */
.page-link {
    color: var(--primary-blue);
    border-color: #dee2e6;
}

.page-link:hover {
    color: var(--primary-yellow);
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.page-item.active .page-link {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #000;
    font-weight: bold;
}

.page-item.disabled .page-link {
    color: #6c757d;
}