﻿/* =========================
   Root Variables
   ========================= */
:root {
    --font-family: "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --section-head-font-fam: "Poppins", "Roboto", sans-serif;
    --font-size-base: 1rem;
    --text-color: #212529;
    --bg-color: #eef8e6;
    /*--primary-color: #395224;*/
    --primary-color: linear-gradient(359deg,rgba(57, 82, 36, 1) 0%, rgba(69, 99, 42, 1) 80%, rgba(77, 117, 47, 1) 100%);
    --accent-color: #198754;
    --social-size: clamp(38px, 3.5vw, 36px);
    --icon-size: calc(var(--social-size) * 0.84);
    --section-bg: #d2efba;
    --section-heading: #1b1b1b;
    --section-font-color: #151515;
}

/* =========================
   Base Settings
   ========================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Links reset */
a {
    text-decoration: none;
    color: inherit;
}

    a:hover {
        color: #fdde91 !important;
        text-decoration: none !important;
    }

/* =========================
   Scrollbar Styling
   ========================= */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #7cb342;
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--accent-color);
    }

/* =========================
   Topbar
   ========================= */
.topbar {
    background: var(--primary-color);
    color: #fff;
    font-size: var(--font-size-base);
    padding: 0.3rem 0;
    border-bottom: 1px solid #a8a8a8;
}

    .topbar a {
        color: inherit;
        transition: color 0.3s ease;
    }

        .topbar a:hover {
            text-decoration: underline;
        }


.contactinfo {
    text-wrap: balance;
}

    .contactinfo a {
        display: inline-flex;
        align-items: center;
        margin: 0 8px;
        font-size: 0.95rem;
        font-weight: 500;
        color: #fff;
    }

    .contactinfo img {
        width: 30px;
        height: 30px;
        margin-right: 6px;
        object-fit: contain;
        vertical-align: middle;
        filter: drop-shadow(0 0 2px rgba(255,255,255,0.3));
        transition: transform 0.3s ease, opacity 0.3s ease;
        border-radius: 50%;
        padding: 2px;
        background: #fff;
    }

    .contactinfo a:hover img {
        transform: scale(1.1);
        opacity: 0.9;
    }

.contact-us-page img {
    width: 30px;
    height: 30px;
    margin-right: 2px;
    object-fit: contain;
    vertical-align: middle;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.3));
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 50%;
    padding: 2px;
    background: #fff;
}

.contact-us-page a:hover img {
    transform: scale(1.1);
    opacity: 0.9;
}

/* =========================
   Social Icons
   ========================= */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--social-size);
    height: var(--social-size);
    border-radius: 50%;
    margin-left: 6px;
    position: relative;
    background: white;
    box-shadow: 0 0 3px rgba(255, 255, 255, 1.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    overflow: hidden;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

    /* rotating background animation */
    .social-icons a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: linear-gradient(45deg, #fff9fb, #ffffff, #00c7ff, #ffffff, #ffd34e, #ffffff);
        animation: spinBG 4s linear infinite;
        filter: blur(4px);
        z-index: 0;
    }

    /* shine overlay effect only on hover */
    .social-icons a::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient( 120deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 60% );
        transform: rotate(25deg) translateX(-100%);
        transition: transform 0.8s ease;
        z-index: 1;
    }

    .social-icons a:hover::after {
        transform: rotate(25deg) translateX(100%);
    }

.social-icons img,
.social-icons i {
    width: var(--icon-size);
    height: var(--icon-size);
    font-size: var(--icon-size);
    z-index: 2;
}

.social-icons a:hover {
    transform: scale(1.08);
    -webkit-box-shadow: 0px 0px 10px 3px rgba(255,246,66,0.87);
    -moz-box-shadow: 0px 0px 10px 3px rgba(255,246,66,0.87);
    box-shadow: 0px 0px 10px 3px rgba(255,246,66,0.87);
}

/* keyframes */

@keyframes spinBG {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =========================
   Mid Header
   ========================= */
header {
    background: var(--primary-color);
    padding: 1rem 0;
}

.mid-header .logo-main {
    max-height: 116px;
    border-radius: 8px;
    border: 2px solid #ffc46f;
}

/* Logo Title */
.mid-header .logo-title {
    font-size: 2.27rem;
    font-weight: 700;
    text-align: center;
    animation: colorCycle 3s infinite alternate ease-in-out;
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .mid-header .logo-title::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100%;
        background: linear-gradient( 120deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 80% );
        transform: skewX(-20deg);
        animation: shineSweep 5s infinite;
    }

    .mid-header .logo-title:hover {
        color: #fff !important;
        transform: scale(1.1);
    }

.mid-header .logo-subtitle {
    font-size: 1rem;
    font-style: italic;
    color: #fff;
    animation: floatLR 4s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.logo-subtitle .dots {
    display: inline-flex;
}

    .logo-subtitle .dots span {
        opacity: 0.2;
        animation: dotBlink 1.5s infinite;
    }

        .logo-subtitle .dots span:nth-child(1) {
            animation-delay: 0s;
        }

        .logo-subtitle .dots span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .logo-subtitle .dots span:nth-child(3) {
            animation-delay: 0.4s;
        }

@keyframes dotBlink {
    0% {
        opacity: 0.2;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.2;
    }
}

@keyframes floatLR {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(4px);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(-4px);
    }

    100% {
        transform: translateX(0);
    }
}


@keyframes colorCycle {
    0% {
        color: #ffffff;
    }
    /*50% {
        color: #d8ffb8;
    }*/
    100% {
        color: #5eff4c;
    }
}

@keyframes shineSweep {
    0% {
        left: -100%;
    }

    40% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

@keyframes fadeLoop {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    25% {
        opacity: 1;
        transform: translateY(0);
    }

    75% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-8px);
    }
}

.rx-typing {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 4s steps(20) infinite;
}

@keyframes typing {
    0% {
        width: 0;
    }

    40% {
        width: 100%;
    }

    60% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}


.mid-header .card {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 12px;
    background: linear-gradient(182deg, rgb(145 255 160) 0%, rgb(230 255 248) 100%);
    color: var(--text-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

    .mid-header .card:hover {
        color: black !important;
        background: linear-gradient(80deg,rgba(107, 255, 127, 1) 0%, rgba(135, 255, 221, 1) 100%);
        box-shadow: 2px 1px 10px 5px rgba(255,255,255,0.54);
        -webkit-box-shadow: 2px 1px 10px 5px rgba(255,255,255,0.54);
        -moz-box-shadow: 2px 1px 10px 5px rgba(255,255,255,0.54);
    }


.mid-header .card-body {
    padding: 0.5rem;
    text-align: center;
}

.mid-header .card i {
    font-size: 24px;
    margin-right: 5px;
    color: black;
    transition: color 0.25s ease;
}

.mid-header .card:hover i {
    color: var(--primary-color);
}

.mid-header .card h4 {
    font-size: clamp(16px, 2vw, 23px);
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

.mid-header .card h5 {
    font-size: 16px;
    text-wrap-mode: nowrap;
    margin: 0;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.25s ease;
}

.mid-header .card:hover h5, .mid-header .card:hover h4 {
    color: var(--primary-color);
}

/* Back to Top Button */
#toTopBtn {
    position: fixed;
    right: 1rem;
    bottom: 2rem;
    width: 35px;
    height: 35px;
    border: 1px solid white;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    display: grid;
    place-items: center;
    font-size: 20px;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 9999;
}

    #toTopBtn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #toTopBtn:hover,
    #toTopBtn:focus-visible {
        box-shadow: 0 12px 30px rgba(0,0,0,.2);
    }

/* Go Back Button (same style, positioned above) */
#goBackBtn {
    position: fixed;
    right: 1rem;
    bottom: 4.5rem; /* puts it above the Back to Top button */
    width: 35px;
    height: 35px;
    border: 1px solid white;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    display: grid;
    place-items: center;
    font-size: 20px;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 9999;
}

    #goBackBtn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #goBackBtn:hover,
    #goBackBtn:focus-visible {
        box-shadow: 0 12px 30px rgba(0,0,0,.2);
    }




/* High contrast / dark mode friendly */
/*@media (prefers-color-scheme: dark) {
    #toTopBtn {
        background: #111;
        color: #fff;
    }
}*/

/* Navbar */
.navbar {
    background: linear-gradient(360deg,rgba(100, 130, 73, 1) 0%, rgba(107, 153, 61, 1) 80%, rgba(116, 163, 82, 1) 100%);
    z-index: 10000;
}

    .navbar button {
        border: 2px solid white;
    }

/* Links */
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 8px 10px;
    transition: color 0.25s ease, background 0.25s ease;
    border-radius: 5px;
}

    .navbar-nav .nav-link.active {
        border-bottom: 2px solid #fdde91;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active,
    .navbar-nav .show > .nav-link {
        background: rgba(255, 255, 255, 0.15);
        color: #fdde91 !important;
    }

/* Dropdown menu base */
.dropdown-menu {
    padding: 0px;
    margin-top: 0;
    background: #3a5a40;
    display: none;
    border: none;
}

    .dropdown-menu .dropdown-item {
        color: #ffffff !important;
        transition: background 0.2s ease, color 0.2s ease;
        border-bottom: 1px solid #fdde91;
    }

        .dropdown-menu .dropdown-item:hover {
            background: #f77f00;
            color: #fff;
            border-bottom: 1px solid #fdde91;
        }


.dropdown-item i {
    font-size: 20px;
    color: #fff;
    text-shadow: 0 0 6px rgba(255,255,255,0.6);
}


.dropdown-item.active, .dropdown-item:active {
    background: #f77f00 !important;
    color: white !important;
}
/* Desktop hover dropdowns */
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu, .dropdown-submenu:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }
}

/* Submenu */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
    }

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--primary-color);
        padding: 15px;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    }

    .navbar-nav {
        flex-direction: column;
        text-align: left;
    }

    .dropdown-menu {
        display: none;
        position: static;
        margin: 8px 0;
        background: #6e8b55;
        border-radius: 8px;
        box-shadow: none;
    }

    .dropdown.show > .dropdown-menu,
    .dropdown-submenu.show > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > .dropdown-menu {
        margin-left: 15px;
        position: static;
    }
}


.marquee-container {
    width: 100%;
    background: #f8f9fa;
    overflow: hidden;
    white-space: nowrap;
    border: 2px solid #ddd;
    padding: 5px 0;
}

.carousel-inner .carousel-item img {
    height: 500px;
    object-fit: cover;
}

.marquee {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 19s linear infinite;
    font-size: 15px;
    font-weight: bold;
    color: #333;
}

    .marquee img {
        margin-right: 5px;
        height: 35px;
    }

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* register background */
.register-section {
    background: linear-gradient(360deg, rgba(100, 130, 73, 1) 0%, rgba(107, 153, 61, 1) 80%, rgba(116, 163, 82, 1) 100%);
}

/* Custom Buttons */

.register-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
}

    .register-btn.user {
        background: #1b4332;
        color: #ffe24c;
        border: 1px solid white;
    }

    .register-btn i {
        font-size: large;
    }

    .register-btn.user:hover {
        background: #099c58;
        color: #fff !important;
    }

    .register-btn.provider {
        background: #ff7d00;
        border: 1px solid white;
        color: black;
    }

        .register-btn.provider:hover {
            background: #2d6a4f;
            color: #fff !important;
        }

/* why choose Section background */
.why-choose-section {
    background: var(--section-bg);
    font-family: var(--section-head-font-fam);
}

.why-choose-heading {
    color: var(--section-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.why-card {
    background: #ffffff;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

    .why-card:hover {
        transform: translateY(-3px);
        color: black !important;
        box-shadow: 0 8px 22px rgba(0,0,0,0.2);
        background: #ffd760;
    }

.icon-box img {
    height: 70px;
    padding: 5px;
    border: 1.2px solid #198754;
    border-radius: 10px;
    background: linear-gradient(135deg, #d2efba, #ffffff);
}

.whychose-title {
    color: #2d6a4f;
    font-size: 1.2rem;
}

.why-card p {
    font-size: 1rem;
    font-weight: 600 !important;
}

.features-section {
    /*background: linear-gradient(135deg, #eef8e6, #d6f5d6);*/
    text-align: center;
}

.feature-card {
    border-radius: 14px;
    background: #e2ffca;
    border: 1px solid #bababa;
}

    .feature-card .card-header {
        background: linear-gradient(359deg,rgba(57, 82, 36, 1) 0%, rgba(69, 99, 42, 1) 80%, rgba(77, 117, 47, 1) 100%) !important;
        color: #fff;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        border-radius: 14px 14px 0 0;
    }

    .feature-card .list-unstyled i {
        font-size: 1.1rem;
        font-weight: bold;
    }

.feature-text {
    font-family: var(--section-head-font-fam);
    font-size: 1em;
    font-weight: 600;
    color: #212121;
    text-shadow: 0 1px 1px rgba(255,255,255,0.6);
}

.highlight-box {
    background: linear-gradient(135deg, #ffb74d, #f57c00);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    border-radius: 14px;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .highlight-box:hover {
        transform: scale(1.05);
    }

/* Animated gradient background */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.highlight-box {
    background: linear-gradient(135deg, #ffb74d, #f57c00);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    border-radius: 14px;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 30px 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .highlight-box:hover {
        transform: scale(1.01);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }

/* Animated gradient background */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.highlight-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* align neatly like a list */
    gap: 2px;
}

.highlight-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-text {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    font-family: var(--section-head-font-fam);
}

/* Icons refined */
.highlight-line i {
    font-size: 1.6rem;
    color: #fff;
    flex-shrink: 0;
}

/* Animations (subtle now) */
.icon-secure {
    animation: pulse 3s infinite;
}

.icon-swift {
    animation: flash 2.5s infinite;
}

.icon-move {
    animation: slideTruck 4s infinite;
}

@keyframes pulse {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.9;
    }
}

@keyframes flash {
    0%,50%,100% {
        opacity: 1;
    }

    25%,75% {
        opacity: 0.5;
    }
}

@keyframes slideTruck {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0);
    }
}


.premium-title {
    font-size: 1.25rem;
    font-weight: 500;
    font-family: var(--section-head-font-fam);
    letter-spacing: 0.5px;
}

.howitworks-section {
    background: var(--section-bg);
    padding: 3rem 0;
    font-family: var(--section-head-font-fam);
}

.howitworks-title {
    color: var(--section-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.howitworks-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.howitworks-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: auto;
}

    .howitworks-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.18);
        background: #ffd760;
    }

.howitworks-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #7cb342, #388e3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.howitworks-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.howitworks-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 500;
    color: #444;
}

.howitworks-link {
    color: #2e7d32;
    font-weight: 600;
    text-decoration: none;
}

    .howitworks-link:hover {
        text-decoration: underline;
    }

.howitworks-arrow {
    width: 75px;
    height: 60px;
    background: url('../img/arrowright.png') no-repeat center center;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: moveArrow 1.5s infinite;
}

@keyframes moveArrow {
    0% {
        transform: translateX(0);
        opacity: 0.6;
    }

    50% {
        transform: translateX(10px);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 0.6;
    }
}

@media (max-width: 767px) {
    .howitworks-steps {
        flex-direction: column;
        align-items: center;
    }

    .howitworks-arrow {
        width: 50px;
        height: 50px;
        margin: 12px 0;
        background: url('../img/arrowdown.png') no-repeat center center;
        background-size: contain;
        animation: moveArrowMobile 1.5s infinite;
    }

    @keyframes moveArrowMobile {
        0% {
            transform: translateY(0);
            opacity: 0.6;
        }

        50% {
            transform: translateY(10px);
            opacity: 1;
        }

        100% {
            transform: translateY(0);
            opacity: 0.6;
        }
    }
}


.services-modern .service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease-in-out;
    padding: 2rem 1.5rem;
    font-family: var(--section-head-font-fam)
}

    .services-modern .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    }

.services-modern .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.services-modern h2 {
    color: var(--section-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.services-modern .service-icon i {
    font-size: 36px;
    color: #fff;
    transition: transform 0.3s ease-in-out;
}

.services-modern .service-card:hover .service-icon {
    transform: scale(1.02);
}

    .services-modern .service-card:hover .service-icon i {
        transform: scale(1.2);
        animation: bounce 0.6s;
    }

@keyframes bounce {
    0%, 100% {
        transform: scale(1.1) translateY(0);
    }

    50% {
        transform: scale(1.1) translateY(-2px);
    }
}

.service-green .service-icon {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.service-green .btn {
    background: #2e7d32;
    border: none;
}

.service-yellow .service-icon {
    background: linear-gradient(135deg, #ffca28, #f9a825);
}

.service-yellow .btn {
    background: #f9a825;
    border: none;
    color: #fff;
}

.service-red .service-icon {
    background: linear-gradient(135deg, #e53935, #b71c1c);
}

.service-red .btn {
    background: #d32f2f;
    border: none;
    color: #fff;
}

.service-blue .service-icon {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.service-blue .btn {
    background: #0072ff;
    border: none;
    color: #fff;
}

.testimonials-modern {
    background: var(--section-bg);
    padding: 3rem 0;
    font-family: var(--section-head-font-fam);
}

    .testimonials-modern h2 {
        color: var(--section-heading);
        font-size: 2rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .testimonials-modern .testimonial-card {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%; /* ensures equal card height */
        text-align: center;
        padding: 2rem 1.5rem;
    }

        .testimonials-modern .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        }

    /* Quote Icon */
    .testimonials-modern .quote-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #198754, #28a745);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem auto;
        color: #fff;
        font-size: 24px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        transition: transform 0.3s ease-in-out;
    }

    .testimonials-modern .testimonial-card:hover .quote-icon {
        transform: scale(1.1) rotate(-5deg);
    }

    /* Testimonial text */
    .testimonials-modern .testimonial-card p {
        font-size: 1rem;
        color: #444;
        line-height: 1.6;
        flex-grow: 1;
    }

    /* Name styling */
    .testimonials-modern .testimonial-card h6 {
        margin-top: 1.5rem;
        font-weight: 700;
        color: #222;
    }
/* ===== Footer ===== */
footer {
    background: var(--primary-color);
}

/* ===== Footer Menu as Outline Buttons ===== */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-nav li {
        list-style: none;
    }

    .footer-nav a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        padding: 4px 6px;
        border: 1px solid #f2f5ef;
        border-radius: 6px;
        background: transparent;
        color: #f2f5ef;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .footer-nav a i {
            width: 18px;
            text-align: center;
            transition: transform 0.25s ease;
        }

        .footer-nav a:hover {
            background: #ffc107;
            color: #222 !important;
            border-color: #ffc107;
            transform: translateY(-2px);
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }

            .footer-nav a:hover i {
                transform: scale(1.2);
            }

.footer h6 {
    letter-spacing: .5px;
}

/* ===== Slogan Flip Boxes ===== */
.slogan-box {
    perspective: 1000px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
}

.slogan-box:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: #f2c27b;
    color: #2b2b2b;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    padding: 20px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-back {
    transform: rotateY(180deg);
    background: #ffc107;
    color: #222;
}

.common-section {
    font-family: var(--section-head-font-fam);
}

.common-section-heading {
    color: var(--section-heading);
    font-size: clamp(2rem, 2.92826vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.25);
    margin-bottom: 2px;
}

.common-section-subheading {
    color: var(--section-heading);
    font-size: clamp(1.6rem, 2vw, 1.71rem);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.25);
    margin-bottom: 2px;
}

.common-section-heading i {
    font-size: 2.05rem;
}

strong {
    font-weight: 600 !important;
}

.fw-bold {
    font-weight: 600 !important;
}

.common-section-subtext, .common-section ul li {
    font-size: clamp(1rem, 1.2vw, 1rem);
    color: var(--section-subtext);
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 6px !important;
}

.common-card {
    font-family: var(--section-head-font-fam);
    background: #fff;
}

.common-card-header {
    background: linear-gradient(359deg,rgba(57, 82, 36, 1) 0%, rgba(69, 99, 42, 1) 80%, rgba(77, 117, 47, 1) 100%) !important;
}

    .common-card-header h3 {
        color: white !important;
        font-size: clamp(1rem, 2vw, 1.3rem);
        margin: 0;
    }

.text-justify {
    text-align: justify
}

.why-choose .why-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    min-height: 230px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .why-choose .why-box:hover {
        transform: translateY(-3px);
        color: black !important;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
        background: #ffd760 !important;
    }

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.why-box:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.why-choose .row.g-4 {
    row-gap: 0.5rem;
}

.feature-card-p .feature-card-p-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    min-height: 200px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .feature-card-p .feature-card-p-box:hover {
        transform: translateY(-5px);
        background: #ffd760 !important;
        box-shadow: 0 8px 22px rgba(0,0,0,0.2);
    }

.feature-card-p .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
}

.gallery-card img {
    transition: transform 0.4s ease;
    border-radius: 10px;
}

    .gallery-card img:hover {
        transform: scale(1.05);
    }

.media-card img {
    transition: transform 0.4s ease;
    border-radius: 10px;
}

    .media-card img:hover {
        transform: scale(1.05);
    }

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    border: none;
}

.btn {
    padding: 8px 15px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    }

.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        border-color: #28a745;
    }

.pricing-header h5 {
    font-weight: 600;
    margin-bottom: 9px;
    min-height: 50px;
}

.pricing-price {
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
    margin: 15px 0;
}

    .pricing-price span {
        font-size: 14px;
        color: #666;
    }

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

    .pricing-features li {
        padding: 2px 0;
        font-size: 14px;
    }

.featured-plan {
    border: 2px solid #28a745;
    background: #f9fff9;
}

    .featured-plan .pricing-price {
        color: #e67e22;
        font-size: 28px;
    }

.choose-btn {
    transition: all 0.3s ease-in-out;
}

    .choose-btn:hover {
        box-shadow: 0 0 12px 2px rgba(40, 167, 69, 0.6);
        transform: scale(1.03);
    }

.form-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #28a745;
    margin-bottom: 15px;
}

.input-group-text {
    background: #f8f9fa;
    border-right: none;
}

.form-control, .form-select {
    border-left: none;
}

.custom-submit {
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease-in-out;
}

    .custom-submit:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(40, 167, 69, 0.5);
    }


.vehicle-img {
    height: 160px;
    object-fit: cover;
    width: 100%;
}

.payment-card {
    max-width: 500px;
    margin: 20px auto;
    border-radius: 15px;
    overflow: hidden;
}

.payment-header {
    background: linear-gradient(90deg, #ffb400, #ff9900);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.qr-box {
    text-align: center;
    padding: 20px;
}

    .qr-box img {
        max-width: 180px;
        margin-bottom: 15px;
    }