/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7f6;
}

a {
    text-decoration: none !important;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: auto;
}

/* ================= HEADER ================= */

/* STICKY HEADER */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 10002;
    border-bottom: 1px solid #1c7c3c;
}

/* OPTIONAL: ADD SHADOW ON SCROLL LOOK */
/* .header.scrolled {
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }*/

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* LOGO */
.logo-wrap {
    flex-shrink: 0;
}

.logo-wrap img {
    height: 70px;
    display: block;
}

.nav {
    display: flex;
    flex-wrap: nowrap !important;
    gap: 22px;
    z-index: 10001;
}

.nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
}

.nav a.active {
    color: #1c7c3c;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: #1c7c3c;
    border-radius: 2px;
}

.nav-cta {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* CTA */
.btn-primary {
    background: #1c7c3c;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary.large {
    padding: 14px 28px;
}

.btn-outline {
    border: 1px solid #1c7c3c;
    color: #333;
    padding: 14px 28px;
    border-radius: 6px;
    background: #fff;
    margin-left: 10px;
}

/* ================= HERO ================= */

.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #fff;
}

/* ROAD BACKGROUND */
.hero-bg {
    position: relative;
    z-index: 1;
    inset: 0;
    background: url('/images/road-bg.jpg') no-repeat center right;
    background-size: cover;
}

/* LEFT FADE EFFECT */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 4;
    pointer-events: none;
}

/* CONTENT */
.hero-inner {
    position: relative;
    z-index: 99;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 50%;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.hero-content span {
    color: #3ae573;
}

.hero-content p {
    margin: 8px 0 15px;
    color: #555;
    max-width: 285px;
    padding: 1px 5px;
    border-radius: 20px;
}

/* BUTTONS */
.hero-buttons {
    margin-bottom: 20px;
}

/* CITY BOX */
.city-box {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 280px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.city-box select {
    border: none;
    flex: 1;
    outline: none;
    background: transparent;
}

/* STATS */
.stats {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    width: fit-content;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat strong {
    font-size: 18px;
}

.stat p {
    font-size: 12px;
    margin: 0;
}

.icon {
    color: #1c7c3c;
    font-size: 20px;
}

.divider {
    width: 1px;
    height: 30px;
    background: #ddd;
    margin: 0 20px;
}

.hero-car {
    position: absolute;
    right: 0;
    bottom: -80px;
    width: 100%;
    z-index: 3;
    transition: right 0.3s ease, width 0.3s ease;
}

@media (min-width: 993px) and (max-width: 1366px) {
    .hero-car {
        right: -12%;
        width: 112%;
    }
}

/* GREEN SHAPE */
.hero-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 320px;
    height: 100%;
    background: #0f6a32;
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 2;
}




/* ================= WHY SECTION ================= */
.why-section {
    padding: 60px 0;
    background: #fff;
}

/* HEADER */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-header .line {
    width: 60px;
    height: 2px;
    background: #1c7c3c;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.why-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
    /*box-shadow: 0 10px 25px rgba(0,0,0,0.08);*/
    box-shadow: 15px 25px 25px 15px rgba(0, 0, 0, 0.08);
}

.why-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.icon-box {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 15px;
}

.icon-box img {
    width: 100%;
}

/* TEXT */
.why-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* UNDERLINE */
.underline {
    display: block;
    width: 30px;
    height: 3px;
    background: #1c7c3c;
    margin: auto;
    border-radius: 2px;
}




/* ================= COURSES ================= */

/* SECTION */
.home-plans-cta {
    background: linear-gradient(135deg, #022d16, #045b24);
    color: #fff;
    /*border-radius: 20px;*/
    margin: 40px 0;
    overflow: hidden;
}

/* LEFT */
.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
}

.cta-content p {
    opacity: 0.9;
    margin: 15px 0;
}

.cta-points div {
    margin-bottom: 8px;
    font-size: 14px;
}

/* BUTTON */
.cta-content .btn {
    font-weight: 600;
    padding: 12px 25px;
}

/* RIGHT SIDE CARDS */
.cta-cards {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* MINI CARD */
.mini-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.mini-card h6 {
    margin: 0;
    font-size: 14px;
}

.mini-card span {
    font-weight: 600;
}

/* MAIN CARD */
.main-card {
    background: #fff;
    color: #045b24;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* BADGE */
.main-card .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #045b24;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* PRICE */
.main-card .price {
    font-size: 22px;
    font-weight: 700;
}

/* HOVER EFFECT */
.main-card:hover {
    transform: scale(1.15);
    transition: 0.3s;
}

/* RESPONSIVE */
.insurance-highlight {
    margin-top: 15px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #00ff88;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(6px);
    animation: fadeInUp 0.8s ease;
}

/* icon */
.insurance-highlight span {
    font-size: 18px;
}

/* subtle animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.insurance-highlight {
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.cta-content {
    margin-bottom: 30px;
}

.cta-content .btn {
    margin-top: 20px;
}

.btn {
    padding: 12px 16px;
    font-size: 15px;
}




/* ================= HOW IT WORKS ================= */

.how-section {
    padding: 60px 0;
    background: #fff;
}

/* WRAPPER */
.steps-wrapper {
    position: relative;
    margin-top: 40px;
}

/* CONNECTOR LINE */
.steps-wrapper::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 8%;
    width: 84%;
    height: 2px;
    background: repeating-linear-gradient(to right, #ccc, #ccc 6px, transparent 6px, transparent 12px);
    z-index: 0;
}

/* STEPS GRID */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    position: relative;
    z-index: 1;
}

/* STEP */
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* CIRCLE */
.circle {
    width: 100px;
    height: 100px;
    background: #f5f7f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 10px;
    border: 1px solid #eee;
}

/* ICON */
.circle img {
    width: 40px;
}

/* STEP NUMBER */
.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #1c7c3c;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 20px;
}

/* TEXT */
.step p {
    font-size: 14px;
    font-weight: 600;
}




/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section {
    padding: 0px 0;
    background: #fff;
    /* keep this */
}

.testimonial-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 60px 10px;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

/* CARD */
.testimonial-card {
    height: 100%;
    flex: 0 0 calc((100% - 40px) / 3);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.testimonial-card p {
    font-size: 14px;
    color: #555;
    /* softer grey like design */
    line-height: 1.6;
    margin-bottom: 15px;
}

/* INNER */
/* FIX HEIGHT ISSUE */
.carousel-item {
    min-height: 260px;
}


/* STARS */
.stars {
    color: #1c7c3c;
}

/* QUOTE */
.quote {
    font-size: 24px;
    color: #1c7c3c;
}

/* ================= PREMIUM TESTIMONIAL ================= */

/* CARD */
.testimonial-card-inner {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    position: relative;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    /* smoother GPU */
}

/*  REAL HOVER */
.testimonial-card-inner:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    z-index: 10;
    /* IMPORTANT */
}

.testimonial-card-inner:hover p {
    color: #111;
}

.carousel-item {
    overflow: visible !important;
}

.carousel-item,
.carousel-inner {
    pointer-events: auto;
}



/* QUOTE */
.quote {
    font-size: 40px;
    color: #1c7c3c;
    opacity: 0.2;
    position: absolute;
    top: 15px;
    right: 20px;
}

/* TEXT */
.testimonial-card-inner p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* STARS */
.stars {
    color: #1c7c3c;
    font-size: 14px;
    margin-bottom: 15px;
}

/* USER */
.user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.user h4 {
    font-size: 16px;
    margin: 0;
    color: #111;
}

.user span {
    font-size: 12px;
    color: #777;
}

/* INDICATORS STYLE */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
}

.carousel-indicators .active {
    background-color: #1c7c3c;
}

/*.testimonial-section {
    background: linear-gradient(180deg, #f5f7f6 0%, #ffffff 100%);
}*/




/* ================= LOCATION SERVICE AREA ================= */
/* ================= SERVICE AREA ================= */

.service-area {
    padding: 30px 0;
    background: #fff;
}

/* LEFT */
.service-left h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-left p {
    color: #666;
    margin-bottom: 25px;
}

/* CITY GRID */
.city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
}

/* CITY ITEM */
.city {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #333;
    transition: all 0.2s ease;
}

.city i {
    color: #e63946;
}

/* HOVER */
.city:hover {
    transform: translateX(4px);
    color: #1c7c3c;
}

/* MAP */
.service-map iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 12px;
}

.service-left h3 {
    position: relative;
}

.service-left h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #1c7c3c;
    display: block;
    margin-top: 8px;
}





/*Driver Poster*/
/* CTA BOX */
.cta-box {
    position: relative;
    padding: 35px 50px;
    /* border-radius: 20px;*/
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #045b24;
    /* solid color ONLY */
}

/* LEFT IMAGE (no gradient, no fade) */
.cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: url('/images/driver.png') left center / cover no-repeat;
    z-index: 1;
}


/* TEXT */
.cta-text {
    position: relative;
    z-index: 2;
    max-width: 55%;
    margin-left: 40%;
    /* pushes text away from image */
}

.cta-text h2 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 26px;
}

.cta-text p {
    margin: 0;
    opacity: 0.9;
}

/* BUTTON */
.cta-btn {
    position: relative;
    z-index: 2;
    background: #fff;
    color: #045b24;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
}





/*Bootstrap Model*/
.modal-dialog {
    margin: auto;
}

.modal {
    transform: none !important;
}






/*Founder Journey*/
.founder-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.founder-img-wrapper img {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.founder-img-wrapper img:hover {
    transform: scale(1.03);
}

.highlight-box {
    background: #e9f7ef;
    border-left: 5px solid #28a745;
    padding: 15px 20px;
    font-weight: 600;
    border-radius: 8px;
    color: #155724;
}

.founder-section h2 {
    color: #1c1c1c;
}

.founder-section p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
}





/* SOCIAL ICONS WRAPPER */
.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

/* BASE STYLE */
.social {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    /* bigger icon */
    transition: all 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    /*  depth */
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.05), 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* ICON CENTER FIX */
.social i {
    transform: translateY(13px);
    /* optical alignment */
    margin-left: 13px;
}

/* HOVER EFFECT */
.social:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 12px rgba(28, 124, 60, 0.5);
    /* green glow */
}

/* BRAND COLORS */
.social.fb:hover {
    background: #1877f2;
}

.social.ig:hover {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.social.yt:hover {
    background: #ff0000;
}

.social.tw:hover {
    background: #1da1f2;
}



/* TOOGLE WHATSAPP */
.wa-widget {
    position: fixed;
    bottom: 25px;
    right: 10px;
    z-index: 9999;
}

/* FLOAT BUTTON */
.wa-btn {
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    float: right;
}

.wa-btn:hover {
    transform: scale(1.1);
}

/* CHAT BOX */
.wa-box {
    width: 150px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: 0.3s;
    display: none;
}

/* ACTIVE STATE */
.wa-box.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 99;
    display: block;
}

/* HEADER */
.wa-header {
    background: #1c7c3c;
    color: #fff;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BODY */
.wa-body {
    padding: 15px;
    font-size: 14px;
    color: #333;
}

/* BUTTON */
.wa-start {
    display: block;
    background: #25D366;
    color: #fff;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-weight: 500;
}

.wa-start:hover {
    background: #1ebe5d;
}


.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-name {
    font-weight: 500;
}


.user-dropdown {
    position: relative;
    display: inline-block;
}

/* Trigger */
.user-trigger {
    cursor: pointer;
    font-weight: 500;
    padding: 8px 12px;
}

/* Dropdown hidden by default */
.dropdown-menu {
    position: absolute;
    top: 110%;
    right: 0;
    min-width: 160px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 999;
}

/* Show on hover */
.user-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Items */
.dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

/* Hover effect */
.dropdown-item:hover {
    background: #f5f5f5;
}

/* Logout button styling */
.logout-btn {
    color: red;
}


.nav a {
    position: relative;
    display: inline-block;
    transition: transform 0.2s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #007bff;
    transition: width 0.2s ease;
}

/*.nav a:hover {
        transform: scale(1.5);
    }

        .nav a:hover::after {
            width: 100%;
        }*/


.btn-primary {
    background-color: #1c7c3c !important;
}




/*Button loader*/
.btn-primary.booking-btn {
    position: relative;
    min-width: 160px;
    height: 50px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.5s ease;
}

.btn-primary.booking-btn.loading {
    pointer-events: none;
    opacity: 0.9;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.min-ht {
    min-height: 50vh;
}

/* DMV License Badges */
.license-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    padding: 8px 14px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px dashed #cbd5e1;
    transition: all 0.2s ease;
}

.license-badge:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

.hero-license-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1c7c3c;
    background: #eaf7ec;
    padding: 6px 16px;
    border-radius: 20px;
    margin-top: 12px;
    margin-bottom: 5px;
    border: 1px solid #c8e6c9;
    box-shadow: 0 2px 4px rgba(28, 124, 60, 0.05);
    transition: all 0.3s ease;
}

.hero-license-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(28, 124, 60, 0.12);
    background: #dff0e2;
}

.why-card-license {
    font-size: 12px;
    color: #64748b;
    margin-top: -4px;
    margin-bottom: 8px;
    font-weight: 500;
}

/* ================= GOOGLE REVIEW DESIGN ================= */
.google-rating-summary {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #e2e8f0 !important;
}

.google-rating-summary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.google-review-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #e2e8f0 !important;
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.google-logo-wrapper img {
    transition: transform 0.5s ease;
}

.google-rating-summary:hover .google-logo-wrapper img {
    transform: scale(1.1) rotate(5deg);
}

.letter-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.avatar-green {
    background: linear-gradient(135deg, #1c7c3c 0%, #045b24 100%);
    border: 2px solid #1c7c3c;
}

.avatar-dark {
    background: linear-gradient(135deg, #334155 0%, #0f172a 100%);
    border: 2px solid #334155;
}

.avatar-blue {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    border: 2px solid #1d4ed8;
}

#testimonialCarousel {
    padding: 0 10px !important;
    overflow: hidden !important;
}

#testimonialCarousel .carousel-inner {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
    margin-top: -25px !important;
    margin-bottom: -25px !important;
    overflow: hidden !important;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10002;
    padding: 8px 0;
    border: 1px solid #eee;
}

/* Desktop Hover */
@media (min-width: 993px) {
    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.nav-dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 20px;
    text-decoration: none;
    color: #333 !important;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
    border-bottom: none !important;
}

.nav-dropdown-item:hover {
    background: #f5f5f5;
    color: #1c7c3c !important;
}

/* Mobile Styling */
@media (max-width: 992px) {
    .nav-dropdown {
        width: 100%;
        display: block;
    }

    .nav-dropdown-trigger {
        display: block;
        width: 100%;
        padding: 14px 40px;
        border-bottom: 1px solid #eee;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        display: none;
        background: #fcfcfc;
        padding: 0;
        transition: none;
        border: none;
    }

    .nav-dropdown-menu.active {
        opacity: 1;
        visibility: visible;
        display: block;
    }

    .nav-dropdown-item {
        padding: 12px 60px;
        border-bottom: 1px solid #f5f5f5 !important;
    }
}