:root {
    --primary-color: #9EB71D;
    --secondary-color: #060402;
    --white-color: #ffffff;
    --button-background-color: #9EB71D;
}

@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "PT Serif", serif;
    font-weight: 800;
}


body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* --- ABOUT SECTION STYLES --- */
.about-section {
    padding: 30px 0;
    background-color: var(--white-color);
    position: relative;
}

/* Image Side */
.image-wrapper {
    position: relative;
    z-index: 1;
    padding-right: 30px;
    /* Space for floating box */
}

.main-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    /* Slide In Animation */
    animation: slideInLeft 1s ease-out;
}

/* The Floating Black Box (Like in your reference) */
.experience-box {
    position: absolute;
    bottom: -30px;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 30px;
    width: 220px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Zoom Animation */
    animation: zoomIn 1.2s ease-out 0.5s both;
    /* Delayed start */
}

/* Green Corner Accents for the box */
.experience-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-top: 3px solid var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

.experience-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-bottom: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.count-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    display: block;
}

.count-text {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

/* Text Content Side */
.content-wrapper {
    padding-left: 40px;
}

.sub-badge {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Mission & Vision Styling */
.info-card {
    background-color: var(--light-bg);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 20px;
    transition: 0.3s;
}

.info-card:hover {
    transform: translateX(10px);
    background-color: #f0f0f0;
}

.info-title {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-title i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.info-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Button */
.btn-brand {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    /* Black text on green btn */
    padding: 12px 35px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

.btn-brand:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .content-wrapper {
        padding-left: 0;
        margin-top: 60px;
    }

    .experience-box {
        right: 20px;
        bottom: -40px;
        width: 180px;
        padding: 20px;
    }

    .count-number {
        font-size: 2.5rem;
    }

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


/* --- SECTION STYLING --- */
.benefits-section {
    padding: 30px 0;
    background-color: var(--white-color);
}

/* Headings */
.sub-heading {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

/* Small line above sub-heading like in the image */
.sub-heading::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    /* Car shape stylized line */
    margin: 0 auto 10px auto;
    border-radius: 2px;
}

.main-heading {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* --- CARD DESIGN --- */
.benefit-card {
    background: var(--white-color);
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.377);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hover Effect: Lift Up */
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-body-custom {
    padding: 40px 30px 60px 30px;
    /* Extra bottom padding for icon space */
    position: relative;
    z-index: 1;
}

.card-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-text {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Background Watermark Icon */
.watermark-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 100px;
    color: rgba(0, 0, 0, 0.03);
    /* Very light gray */
    z-index: 0;
    transition: 0.4s;
}

.benefit-card:hover .watermark-icon {
    transform: rotate(-10deg) scale(1.1);
    /* Subtle movement on hover */
    color: rgba(158, 183, 29, 0.1);
    /* Change to faint green on hover */
}

/* --- THE FLOATING CIRCLE ICON --- */
.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #0d4281;
    /* Default blue in your image, changing to theme green? No, let's keep specific icons distinct or use theme color */
    /* Using Theme Green based on request */
    background-color: #0c5ca8;
    /* Using a blue variant like image or use var(--primary-color) if you want strict branding. Let's use Theme Primary Green */
    background-color: var(--primary-color);

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    position: absolute;
    bottom: 45px;
    /* Positions it overlapping the footer line */
    left: 30px;
    z-index: 2;
    border: 5px solid var(--white-color);
    /* White border to separate from bg */
    box-shadow: 0 5px 15px rgba(158, 183, 29, 0.4);
    transition: 0.4s;
}

.benefit-card:hover .icon-circle {
    background-color: var(--secondary-color);
    /* Turns Black on hover */
    transform: scale(1.1);
}

/* --- CARD FOOTER --- */
.card-footer-custom {
    background-color: var(--footer-bg);
    padding: 20px 30px;
    text-align: right;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    position: relative;
}

.view-more-link {
    text-decoration: none;
    color: #888;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.view-more-link i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.benefit-card:hover .view-more-link {
    color: var(--primary-color);
    padding-right: 10px;
    /* Moves arrow slightly */
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeUp 1s ease-out both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

:root {
    --primary-color: #9EB71D;
    --secondary-color: #060402;
    --white-color: #ffffff;
    --button-background-color: #9EB71D;
}

/* --- SECTION STYLES --- */
.fleet-section {
    padding: 30px 0;
    background-color: var(--white-color);
}

.section-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.section-title span {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

/* --- TAB NAV STYLES --- */
.nav-pills .nav-link {
    background-color: transparent;
    color: var(--secondary-color);
    font-weight: 700;
    border: 2px solid var(--primary-color) !important;
    margin: 0 10px;
    border-radius: 30px;
    padding: 10px 30px;
    transition: 0.3s;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    border-color: var(--primary-color);
}


/* --- VEHICLE CARD DESIGN --- */
.vehicle-card {
    background: #fff;
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.281);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 30px;
}

.vehicle-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.card-img-top-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
    background-color: var(--light-bg);
}

.card-img-top-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .card-img-top-wrapper img {
    transform: scale(1.1);
}

/* =========================================
   HIGHLIGHTED BADGES (4 LEFT / BOOKED)
========================================= */
.brand-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: var(--white-color);
    padding: 6px 15px;
    font-size: 0.85rem;
    font-weight: 900;
    border-radius: 30px; /* Pill Shape */
    text-transform: uppercase;
    font-family: "PT Serif", serif;
    letter-spacing: 0.5px;
}

.badge-left {
    background-color: var(--button-background-color); /* Bright Orange */
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
}

.badge-booked {
    background-color: #dc3545; /* Bright Red */
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.brand-badge i {
    margin-right: 4px;
}

/* Card Body */
.card-body {
    padding: 20px !important;
}

.vehicle-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "PT Serif", serif;
}

/* =========================================
   HIGHLIGHTED TRIPS COUNT
========================================= */
.trip-count {
    background-color: #f4f4f4; /* Light Gray Bg */
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px; /* Pill Shape */
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.trip-count i {
    color: var(--primary-color);
    margin-right: 6px;
    font-size: 1rem;
}

/* Specs Grid (Deposit & Extra) */
.specs-container {
    background-color: #e2e2e2;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.spec-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 5px;
}

.spec-item i {
    color: var(--primary-color);
    width: 25px;
    text-align: center;
    margin-right: 8px;
}

.spec-item:last-child {
    margin-bottom: 0;
}

/* Footer (Price & Button) */
.card-footer-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.price-section h5 {
    margin: 0;
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.3rem;
}

.price-section small {
    color: #888;
    font-size: 0.8rem;
}

.ride-btn {
    background-color: var(--button-background-color);
    color: var(--white-color);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.ride-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* =========================================
   HIGHLIGHTED "AVAILABLE FROM" BOX
========================================= */
.available-highlight {
    background-color: #fff4f4; /* Light red tint background */
    border: 1px solid #ffcdd2;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
}

.available-highlight .label {
    display: block;
    font-size: 0.7rem;
    color: #dc3545; /* Red text */
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.available-highlight .date {
    display: block;
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--secondary-color);
}

/* =========================================
   PREBOOK BUTTON
========================================= */
.btn-prebook {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px; /* Pill shape */
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-prebook:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.footer-actions-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* --- COUNTER SECTION STYLES --- */
.stats-section {
    background-color: var(--bg-black);
    /* padding: 10px 0; */
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

.stat-box {
    text-align: center;
    padding: 20px 10px;
    position: relative;
}

/* The Big White Number */
.stat-number {
    font-size: 3rem;
    /* Big and Bold */
    font-weight: 900;
    /* Extra Bold */
    color: var(--white-color);
    margin-bottom: 15px;
    display: inline-block;
    font-family: sans-serif;
    /* Clean font like image */
}

/* The Horizontal Separator Line */
.stat-divider {
    height: 3px;
    background: linear-gradient(90deg, rgba(121, 185, 48, 0) 0%, rgb(79, 146, 24) 50%, rgba(133, 173, 38, 0) 100%);
    /* Fades out at ends */
    width: 100%;
    max-width: 300px;
    /* Limits width like image */
    margin: 0 auto 20px auto;
    opacity: 0.6;
}

/* The Gray Subtitle Text */
.stat-label {
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: capitalize;
    /* Or none, based on preference */
    letter-spacing: 0.5px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2.2rem;
    }

    .stat-divider {
        max-width: 120px;
    }

    .stat-box {
        margin-bottom: 30px;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* --- VIDEO BANNER SECTION --- */
.video-banner-section {
    position: relative;
    height: 500px;
    /* Adjust height as needed */
    width: 100%;
    /* Fixed Background Image for Parallax Effect */
    background: url('../all-images/images/others-imges/2.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.281);
    z-index: 1;
}

/* Content Wrapper */
.video-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

/* --- DIVIDER WITH PLAY BUTTON --- */
.video-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    width: 90%;
}

.divider-line {
    height: 2px;
    background-color: var(--white-color);
    flex-grow: 1;
    opacity: 0.7;
}

/* Play Button Container */
.play-btn-wrapper {
    margin: 0 25px;
    position: relative;
}

/* The Play Button */
.play-btn {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
    /* Vibration Animation */
    animation: pulse-green 2s infinite;
}

.play-btn i {
    margin-left: 5px;
    /* Adjust icon center */
}

.play-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: scale(1.1);
}

/* --- VIBRATION/PULSE ANIMATION KEYFRAMES --- */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(158, 183, 29, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(158, 183, 29, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(158, 183, 29, 0);
    }
}

/* Modal Customization */
.modal-content {
    background-color: #000;
    border: 1px solid var(--primary-color);
}

.btn-close-white {
    filter: invert(1);
}

/* --- TESTIMONIAL SECTION --- */
.testimonial-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    overflow: hidden;
}

/* Header Styles */
.sub-heading {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: inline-block;
    border-bottom: 2px solid var(--primary-color);
}

.section-title {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 2.5rem;
    /* margin-bottom: 50px; */
}

/* --- SWIPER SLIDE STYLES --- */
.swiper {
    width: 100%;
    padding-bottom: 50px !important;
    /* Space for pagination dots */
    padding-top: 30px !important;
    /* Space for floating icon */
}

.swiper-slide {
    padding: 10px;
    /* Slight padding for shadow visibility */
}

/* Testimonial Box (Speech Bubble) */
.testimonial-box {
    background-color: var(--primary-color);
    padding: 40px 30px 30px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    color: var(--white-color);
}

.testimonial-box:hover {
    transform: translateY(-5px);
    /* Lift effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Floating Quote Icon */
.quote-icon {
    position: absolute;
    top: -25px;
    /* Floats half inside half outside */
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    /* Green BG */
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(158, 183, 29, 0.4);
}

/* Speech Bubble Tail (Triangle at bottom) */
.testimonial-box::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 40px;
    border-width: 20px 20px 0 0;
    border-style: solid;
    border-color: var(--light-bg) transparent transparent transparent;
}

/* Content Text */
.review-text {
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stars {
    color: #FFD700;
    /* Gold Color */
    font-size: 0.9rem;
}

/* User Profile Area */
.user-profile {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white-color);
    box-shadow: 0 0 0 2px var(--primary-color);
    /* Green ring border */
    margin-right: 15px;
}

.user-info h5 {
    margin: 0;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.user-info span {
    font-size: 0.85rem;
    color: #888;
}

/* Swiper Pagination Dots Customization */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    /* Green Active Dot */
    width: 30px;
    border-radius: 10px;
    transition: 0.3s;
}

/* --- HOME CONTACT SECTION STYLES --- */
.home-contact-section {
    position: relative;
    padding: 50px 0;
    background: url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?q=80&w=1920&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    /* FIXED BACKGROUND */
    display: flex;
    align-items: center;
}

.home-contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 4, 2, 0.541);
    /* Overlay Color from theme */
}

/* --- MAIN CARD WRAPPER --- */
.home-contact-card {
    background-color: transparent;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.815) !important;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

/* --- LEFT COLUMN: INFO PANEL (Black BG) --- */
.hc-info-panel {
    background-color: var(--primary-color);
    padding: 50px 40px !important;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hc-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hc-subtitle {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Info Items */
.hc-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: 0.3s;
}

.hc-item:hover {
    transform: translateX(10px);
}

/* Icon Box */
.hc-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgb(238, 238, 237);
    /* Transparent Green */
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: 0.3s;
}

.hc-item:hover .hc-icon-box {
    background-color: var(--secondary-color);
    color: var(--white-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.hc-text h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.hc-text p,
.hc-text a {
    color: var(--secondary-color);
    margin: 0;
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1.6;
}

.hc-text a:hover {
    color: var(--secondary-color);
}

/* --- RIGHT COLUMN: FORM PANEL (White BG) --- */
.hc-form-panel {
    background-color: var(--white-color);
    padding: 50px 40px !important;
}

.hc-form-header {
    margin-bottom: 30px;
}

.hc-form-header h3 {
    color: var(--primary-color);
    font-weight: 800;
}

/* Custom Input Styles */
.hc-input {
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    padding: 15px 10px;
    background: transparent;
    transition: 0.3s;
}

.hc-input:focus {
    box-shadow: none;
    border-bottom-color: var(--primary-color);
    background-color: #fafafa;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 10px;
}

.form-control {
    padding: 15px !important;
}

/* Submit Button */
.hc-btn-submit {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: all 0.3s ease;
    width: 100%;
}

.hc-btn-submit:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    /* Green Text */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .home-contact-card {
        margin: 0 15px;
    }

    .hc-info-panel {
        padding: 40px 30px !important;
    }

    .hc-form-panel {
        padding: 40px 30px !important;
    }
}

/* --- CALL TO ACTION (CTA) STYLES --- */
.abi-cta-section {
    padding: 30px 0;
    background-color: var(--white-color);
    /* Section BG */
}

/* Main CTA Card */
.abi-cta-wrapper {
    background-color: var(--secondary-color);
    /* Black BG */
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    /* To keep moving text inside */
    box-shadow: 0 20px 40px rgba(6, 4, 2, 0.2);
    border: 1px solid rgba(158, 183, 29, 0.3);
    /* Subtle Green Border */
    transition: transform 0.3s ease;
}

.abi-cta-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(158, 183, 29, 0.15);
    /* Green Glow on Hover */
}

/* Background Moving Text Animation */
.cta-moving-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    white-space: nowrap;
    opacity: 0.04;
    /* Very faint */
    font-size: 5rem;
    font-weight: 900;
    color: var(--white-color) !important;
    pointer-events: none;
    /* User can't select this text */
    display: flex;
    width: 200%;
    /* Double width for seamless loop */
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, -50%);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

/* Typography */
.cta-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.cta-title {
    color: var(--white-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

/* Underline effect for highlight text */
.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(158, 183, 29, 0.3);
    z-index: -1;
}

.cta-desc {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 0;
}

/* --- BUTTONS --- */
/* 1. Filled Button (Green) */
.abi-btn-filled {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.abi-btn-filled i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.abi-btn-filled:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.abi-btn-filled:hover i {
    transform: translateX(5px);
    /* Arrow moves right */
}

/* 2. Outline Button (Transparent with White Border) */
.abi-btn-outline {
    background-color: transparent;
    color: var(--white-color);
    padding: 15px 55px !important;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.abi-btn-outline i {
    margin-right: 10px;
}

.abi-btn-outline:hover {
    background-color: var(--white-color);
    color: var(--secondary-color);
    border-color: var(--white-color);
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-desc {
        margin: 0 auto 30px auto;
    }
}