.dashboard_card {
    width: 100%;
    background-color: #b3e5fc;
    position: relative;
    border-radius: 10px;
    padding: 25px;
    height: 140px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    /* overflow: hidden; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dashboard_card.bg_1 {
    background-color: #BEFFBC;
}

.dashboard_card.bg_1 .corner i {
    background-color: #BEFFBC;
    color: #2AA129;
}

.dashboard_card.bg_2 {
    background-color: #FFEAB9;
}

.dashboard_card.bg_2 .corner i {
    background-color: #FFEAB9;
    color: #C8961D;
}

.dashboard_card.bg_3 {
    background-color: #F6FFC0;
}

.dashboard_card.bg_3 .corner i {
    background-color: #F6FFC0;
    color: #9BAE26;
}

.dashboard_card .corner {
    background-color: #F7F7F7;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    position: absolute;
    right: -2px;
    bottom: -2px;
    border-radius: 20px 0px 10px 0px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
}


.dashboard_card .chat_icons {
    position: absolute;
    bottom: 0;
    right: 0;
}

.dashboard_card .corner i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #147487;
    background-color: #b3e5fc;
    border-radius: 50px;
    text-align: center;
    font-size: 12px;
}

.dashboard_card h4 {
    color: #686868;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard_card h4 img {
    width: 35px;
}

.dashboard_card h3 {
    color: #147487;
    margin-bottom: 0;
}

.dashboard_card.bg_1 h3 {
    color: #2AA129;
}

.dashboard_card.bg_2 h3 {
    color: #C8961D;
}


.dashboard_card.bg_3 h3 {
    color: #9BAE26;
}


.dashboard_card_map {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 10px;
}

.dashboard_card_map h4 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.dashboard_card_map h4 span {
    font-size: 12px;
    font-weight: 500;
    color: #565656;
}

.dashboard_card_map h4 span i {
    font-size: 6px;
    margin-right: 5px;
    color: #5CC65B;
}

.dashboard_card_map h4 span i.yellow {
    color: #EFBE44;

}

.dashboard_card_map h4 span a {
    color: #2AA129;

}

.dashboard_card_map .table {
    margin-bottom: 5px;
}

.dashboard_card_map .btn_more {
    color: #2AA129;
    font-weight: 500;
}

:root {
    --primary-orange: #f15400;
    --dark-bg: #141414;
    --light-gray: #f7f7f7;
    --text-gray: #656565;
}

body {
    font-family: 'Inter Tight', sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 933px;
    position: relative;
    color: white;
}

.hero-content {
    padding-top: 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1.7px;
}

.nav-links {
    font-size: 1.55rem;
    gap: 1.5rem;
}

.btn-primary-custom {
    background-color: var(--primary-orange);
    border: none;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 9px;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: #d94900;
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
}

.stat-item h2 {
    font-size: 5.3rem;
    font-weight: 600;
    letter-spacing: -3.4px;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.375rem;
    color: #a7a7a7;
}

/* Section Headers */
.section-label {
    color: var(--primary-orange);
    font-size: 1.25rem;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background-color: var(--primary-orange);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -1.1px;
    line-height: 1.3;
}

/* Feature Cards */
.feature-card {
    background: #f2f2f2;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 57px;
    height: 57px;
    background: #f2f2f2;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-orange);
}

/* Vehicle Card */
.vehicle-card {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.vehicle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
}

/* Services Section */
.services-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
    color: white;
}

.service-card {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    height: 297px;
    margin-bottom: 1.5rem;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.service-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 2rem;
    font-weight: 700;
    z-index: 2;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-item {
    border-bottom: 1px solid #e8e8e8;
    padding: 1.5rem 0;
}

.faq-question {
    font-size: 1.56rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.faq-answer {
    font-size: 1.375rem;
    color: #999;
    margin-top: 1rem;
    line-height: 1.8;
    display: none;
}

.faq-answer.show {
    display: block;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-icon.rotate {
    transform: rotate(180deg);
}

/* Testimonials */
.testimonial-card {
    background: #fff1e9;
    border: 0.734px solid #d8d8d8;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.testimonial-inner {
    background: white;
    border: 0.734px solid #d8d8d8;
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
}

.testimonial-text {
    font-size: 1.44rem;
    color: #2b2b2b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 61px;
    height: 61px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-name {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 600;
    font-size: 1.375rem;
}

/* Blog Cards */
.blog-card {
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-image {
    width: 100%;
    height: 362px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem 1.5rem;
}

.blog-title {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.blog-excerpt {
    font-size: 18px;
    font-weight: 500;
    color: #898989;
    line-height: 1.5;
}

/* Footer */
.footer-section {
    background-color: #f4f4f4;
    padding: 60px 0 30px;
}

.footer-top {
    align-items: center;
}

.footer-heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.footer-cta {
    min-width: 180px;
}

.footer-logo-section {
    text-align: left;
}

.footer-description {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    max-width: 520px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.75rem;
    position: relative;
    padding-left: 0.5rem;
}

.footer-title::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 4px;
    height: 30px;
    background-color: var(--primary-orange);
}

.footer-link {
    color: #1f1f1f;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-orange);
}

.footer-contact-label,
.footer-contact-text {
    margin: 0;
}

.footer-contact-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #1f1f1f;
    margin-bottom: 0.5rem;
}

.footer-contact-text {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.8;
}

.copyright {
    border-top: 1px solid #e3e3e3;
    padding-top: 1.5rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 1.06rem;
    color: black;
}

/* Logo */
.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-top: 0.5rem;
}

.logo-subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .footer-top {
        text-align: left;
    }

    .footer-heading {
        font-size: 2rem;
    }

    .footer-cta {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .stat-item h2 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-label::before {
        left: 0;
        position: relative;
        display: block;
        margin-bottom: 0.5rem;
    }
}

:root {
    --primary-orange: #f15400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter Tight', sans-serif;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    color: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Top Logo Area */
.header-logo {
    text-align: center;
    padding-top: 2.5rem;
    z-index: 2;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 0.2rem;
}

.logo-sub {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    z-index: 2;
}

.hero-text-wrapper {
    max-width: 900px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 780px;
    margin: 0 auto 2.5rem auto;
    color: #e6e6e6;
}

/* Primary Button */
.btn-primary {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 1.1rem 2.5rem;
    font-family: inherit;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d94900;
    transform: translateY(-2px);
}

/* Right Aligned Navigation */
.side-nav {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
}

.side-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 400;
    text-align: start;
    transition: color 0.3s ease;
}

.side-nav a:hover {
    color: var(--primary-orange);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .side-nav {
        right: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .side-nav {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 3rem;
    }
}

.section-header {
    margin-bottom: 3rem;
}

.section-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
    margin-left: 45px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 50%;
    width: 35px;
    height: 2px;
    background-color: var(--primary-orange);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.text-orange {
    color: var(--primary-orange);
}

:root {
    --primary-orange: #f15400;
    --text-gray: #656565;
    --card-outer-bg: #fff5f0;
    /* Soft peach color */
    --card-border: #f0e4df;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
    margin-left: 45px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 50%;
    width: 35px;
    height: 2px;
    background-color: var(--primary-orange);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.text-orange {
    color: var(--primary-orange);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}


.testimonial-card {
    background-color: var(--card-outer-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
}

.testimonial-inner {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 2rem 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
}

.testimonial-author-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #141414;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
        font-weight: 500;
    }
}

.accordion-button:not(.collapsed) {
    color: black;
    background-color: #ffffff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

/* --- Vehicle Accordion Gallery --- */
.vehicle-accordion-row {
    display: flex;
    gap: 1.5rem;
    height: 518px;
    /* Matches your exact design height */
    width: 100%;
}

.vehicle-accordion-col {
    flex: 1;
    /* Default shrink state */
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

/* Forces the first card to mimic col-lg-6 when nothing is hovered */
.vehicle-accordion-col.active-start {
    flex: 2;
}

/* When the user hovers anywhere in the row, cancel the default start size */
.vehicle-accordion-row:hover .vehicle-accordion-col.active-start {
    flex: 1;
}

/* The Magic: The specifically hovered card expands to dominate the width */
.vehicle-accordion-row .vehicle-accordion-col:hover {
    flex: 4;
}

/* Keep images covering the stretching space */
.vehicle-accordion-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Fallback: Stack them normally */
@media (max-width: 992px) {
    .vehicle-accordion-row {
        flex-direction: column;
        height: auto;
    }

    .vehicle-accordion-col {
        height: 350px;
        flex: auto !important;
        /* Disables hover stretching on mobile */
        margin-bottom: 1.5rem;
    }
}

/* --- Vehicle Accordion Layout --- */
.vehicle-accordion-row {
    display: flex;
    gap: 1.5rem;
    height: 518px;
    width: 100%;
}

.vehicle-accordion-col {
    flex: 1;
    /* Default shrink state */
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

/* First card starts slightly larger */
.vehicle-accordion-col.active-start {
    flex: 2;
}

/* Cancel start size when row is hovered */
.vehicle-accordion-row:hover .vehicle-accordion-col.active-start {
    flex: 1;
}

/* Expand the hovered card */
.vehicle-accordion-row .vehicle-accordion-col:hover {
    flex: 3;
    /* Expands to show the full slide-up bar */
}

/* --- Vehicle Card & Hover Animations --- */
.vehicle-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.vehicle-card>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Zoom image slightly on hover */
.vehicle-accordion-col:hover .vehicle-card>img {
    transform: scale(1.05);
}

/* Fade out the center logo on hover */
.vehicle-overlay {
    transition: opacity 0.4s ease;
    z-index: 2;
}

.vehicle-accordion-col:hover .vehicle-overlay {
    opacity: 0;
}

/* --- Slide-Up Details Bar --- */
.vehicle-details-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    z-index: 5;

    /* Pushes the bar down out of sight initially */
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Prevents text wrapping while the column is animating its width */
    white-space: nowrap;
}

/* Slide the bar up when hovering */
.vehicle-accordion-col:hover .vehicle-details-bar {
    transform: translateY(0);
}

.details-left h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #141414;
    margin-bottom: 0.2rem;
    letter-spacing: -0.5px;
}

.details-left p {
    font-size: 1rem;
    color: #a3a3a3;
    margin-bottom: 0;
    font-weight: 500;
}

.details-left p .divider {
    color: #e0e0e0;
    margin: 0 0.4rem;
}

.btn-contact-small {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-contact-small:hover {
    background-color: #d94900;
    transform: scale(1.05);
}

/* Mobile Fallback */
@media (max-width: 992px) {
    .vehicle-accordion-row {
        flex-direction: column;
        height: auto;
    }

    .vehicle-accordion-col {
        height: 350px;
        flex: auto !important;
        margin-bottom: 1.5rem;
    }
}