/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary: #42a173;
    --primary-dark: #2d7555;
    --secondary: #2d7555;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #42a173 0%, #2d7555 100%);
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Bootstrap Overrides */
    --bs-primary: #42a173;
    --bs-primary-rgb: 66, 161, 115;
    --bs-link-color: #42a173;
    --bs-link-hover-color: #2d7555;
    --bs-primary-bg-subtle: #d9f2e6;
    --bs-primary-text-emphasis: #2d7555;
    --bs-primary-border-subtle: #b3e6cc;
}

/* Force Bootstrap Utilities to use Green */
.text-primary {
    color: var(--primary) !important;
}


.bg-primary-subtle {
    background-color: var(--bs-primary-bg-subtle) !important;
    color: var(--bs-primary-text-emphasis) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

* {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
    color: var(--dark);
    overflow-x: hidden;
}

/* Utilities */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient) !important;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.heading-bdr {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto;
    border-radius: 2px;
}

/* Header Styles */
.top-bar {
    background-color: var(--white);
    font-size: 14px;
}

.top-bar a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar.shrink {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    padding: 10px 20px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary) !important;
    background: rgba(66, 161, 115, 0.1);
}

/* Banner Styles */
.rsp-banner-img {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.diagonal-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(135deg, #42a173 0%, #42a173 60%, #96c93d 100%);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.rsp-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.banner-txt {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.banner-txt h2 {
    font-size: 56px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.banner-txt p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.bnnr-cntnt {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bnnr-cntnt li {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
}

/* Button Styles */
.btn {
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    color: var(--white);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d7555 0%, #2d7555 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 161, 115, 0.4);
}

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 161, 115, 0.3);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    border: none;
}

.btn-dark:hover {
    background: #000;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tab-car-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tab-car-box:hover img {
    transform: scale(1.05);
}

.tab-car-box-content {
    padding: 25px;
}

.tab-car-box h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.tab-car-box h2 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tab-car-box h2 a:hover {
    color: var(--primary);
}

.price-tag {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0;
    display: block;
}

/* Footer Styles */
.contact-dtl-bg {
    background: #fff;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.contact-icon {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-icon:hover {
    transform: translateY(-5px);
}

.contact-icon img {
    width: 60px;
    margin-bottom: 25px;
}

.footer-bg {
    background: var(--dark);
    padding: 80px 0 30px 0;
    color: rgba(255, 255, 255, 0.7);
}

.foot-sectn ul li a:hover {
    color: var(--primary) !important;
    padding-left: 10px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(66, 161, 115, 0.3);
    border-color: var(--primary);
}

/* WhatsApp Button */
.joinchat__button {
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-txt h2 {
        font-size: 36px;
    }

    .srvc-car-img {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: var(--shadow-lg);
        margin-top: 10px;
    }
}

/* Additional Utilities */
.object-fit-cover {
    object-fit: cover;
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
}

.icon-box {
    transition: all 0.3s ease;
}

.hover-card:hover .icon-box {
    background-color: var(--primary) !important;
}

.hover-card:hover .icon-box i {
    color: var(--white) !important;
}

.page-header-section {
    margin-top: 100px;
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

/* Banner Overlay Styles */
.banner-overlay-box {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: var(--gradient);
    padding: 30px;
    width: 400px;
    max-width: 90%;
    z-index: 10;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.banner-overlay-box.about-box {
    border-bottom-right-radius: 50px;
    padding-bottom: 50px;
}

.banner-overlay-box h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.banner-overlay-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.banner-form .form-control {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    margin-bottom: 15px;
    border-radius: 4px;
}

.banner-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.banner-form .btn-submit {
    background: #fff;
    color: var(--primary);
    border: none;
    border-radius: 25px;
    padding: 10px 40px;
    font-weight: 700;
    width: auto;
    display: inline-block;
    margin-top: 10px;
}

.banner-form .btn-submit:hover {
    background: #f0f0f0;
    color: var(--primary-dark);
}

.rent-btn {
    background: var(--gradient);
    color: #fff;
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.rent-btn:hover {
    background: linear-gradient(135deg, #2d7555 0%, #2d7555 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
/* Nice Select Customization */
.nice-select {
    width: 100%;
    height: 48px;
    line-height: 46px;
    background-color: #f8f9fa; /* bg-light */
    border: none;
    border-radius: 0.375rem; /* rounded */
    padding-left: 18px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(66, 161, 115, 0.25);
}

.nice-select:after {
    border-bottom: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    height: 8px;
    width: 8px;
    right: 20px;
}

.nice-select .list {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-top: 5px;
    border: none;
}

.nice-select .option {
    line-height: 40px;
    min-height: 40px;
    font-weight: 500;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: rgba(66, 161, 115, 0.1);
    color: var(--primary);
}

.nice-select .option.selected {
    font-weight: 700;
    color: var(--primary);
}

/* Ensure nice-select respects grid layout */
.nice-select .current {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-right: 20px;
}


/* Nice Select Fixes */
.nice-select {
    float: none !important;
    width: 100% !important;
    padding-right: 40px; /* Space for arrow */
}

.nice-select .list {
    width: 100% !important;
    margin-top: 4px;
    max-height: 300px;
    overflow-y: auto;
}

.nice-select .option {
    line-height: 40px;
    min-height: 40px;
}

