
.hero-banner{
    background:rgb(0, 94, 47); 
    height:360px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-overlay{
    width:100%;
    text-align:center;
}

.hero-content{
    color:#ffffff;
    animation:fadeUp 1.2s ease forwards;
    opacity:0;
}

.hero-content h1{
    font-size:38px;
    font-weight:800;
    margin-bottom:12px;
    position:relative;
    display:inline-block;
}

.hero-content h1::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    margin:12px auto 0;
    background:linear-gradient(90deg,#FFD700,#f5c518);
    border-radius:5px;
}

.hero-content p{
    font-size:16px;
    margin-bottom:18px;
    letter-spacing:1px;
    opacity:0.9;
}

.breadcrumb-box{
    font-size:14px;
}

.breadcrumb-box a{
    color:#ffffff;
    text-decoration:none;
    opacity:0.9;
}

.breadcrumb-box span{
    margin:0 6px;
    opacity:0.8;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@media(max-width:992px){
    .hero-banner{
        min-height:300px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:15px;
    }
}

@media(max-width:576px){
    .hero-banner{
        min-height:250px;
        padding:30px 15px;
    }

    .hero-content h1{
        font-size:24px;
    }

    .hero-content p{
        font-size:14px;
    }

    .breadcrumb-box{
        font-size:12px;
    }
}
.contact-map-section {
    width: 100%;
    height: 350px;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .contact-map-section {
        height: 300px;
    }
}
/* ===== Testimonial Section – Refined & Professional ===== */

.testimonial-wrapper {
    overflow: hidden;
    padding: 70px 0;
    position: relative;
    background: linear-gradient(135deg, #f8faf8 0%, #f1f6f1 100%);
}

/* Subtle decorative blobs */
.testimonial-wrapper::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -40px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(100, 160, 120, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.testimonial-wrapper::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(70, 150, 200, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Soft fade edges for marquee */
.testimonial-wrapper .container {
    position: relative;
    z-index: 5;
}

.testimonial-wrapper .container::before,
.testimonial-wrapper .container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.testimonial-wrapper .container::before {
    left: 0;
    background: linear-gradient(to right, #f1f6f1, transparent);
}

.testimonial-wrapper .container::after {
    right: 0;
    background: linear-gradient(to left, #f1f6f1, transparent);
}

/* Marquee animation */
.testimonial-marquee {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: marqueeMove 80s linear infinite;
    will-change: transform;
    position: relative;
    z-index: 5;
}

.testimonial-marquee:hover {
    animation-play-state: paused;
}

@keyframes marqueeMove {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===== Testimonial Card – Enhanced ===== */
.testimonial-card {
    min-width: 320px;
    max-width: 320px;
    background: #ffffff;
    border-radius: 28px;
    padding: 30px 25px 30px;
    text-align: center;
    box-shadow: 0 15px 30px -8px rgba(30, 60, 40, 0.12),
                0 6px 12px -4px rgba(0, 30, 0, 0.05);
    border: 1px solid rgba(170, 210, 170, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: none; /* removed blur for cleaner look */
}

/* Subtle inner glow */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.9);
    pointer-events: none;
}

/* Decorative quote mark */
.testimonial-card::after {
    content: "“";
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(100, 150, 100, 0.12);
    position: absolute;
    top: -5px;
    right: 15px;
    line-height: 1;
    z-index: 0;
    transform: rotate(10deg);
    font-weight: 700;
}

/* Image styling */
.testimonial-card .testimonial-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 20px;
    background: #f4f9f4;
    padding: 15px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 18px -6px rgba(40, 80, 40, 0.15);
    border: 1px solid #e0f0e0;
}

.testimonial-card:hover .testimonial-img {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 25px -8px rgba(40, 100, 40, 0.2);
}

/* Name */
.testimonial-card h5 {
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0 0 8px;
    color: #1b4a2b;
    position: relative;
    z-index: 2;
}

/* Role (optional) – if you add it */
.testimonial-card .role {
    font-size: 0.9rem;
    color: #6f8f6f;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 500;
    z-index: 2;
    position: relative;
}

/* Star rating – pure CSS, no extra HTML */
.testimonial-card .rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 15px;
    color: #f9b83c;
    font-size: 1.2rem;
    letter-spacing: 2px;
    z-index: 2;
    position: relative;
}

.testimonial-card .rating::before {
    content: "★★★★★";
    text-shadow: 0 2px 4px rgba(255, 180, 0, 0.2);
}

/* Message */
.testimonial-card p {
    font-size: 1rem;
    color: #2f4632;
    line-height: 1.7;
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin: 10px 0 5px;
    z-index: 2;
    position: relative;
    padding: 0 5px;
    quotes: "“" "”";
}

.testimonial-card p::before {
    content: "“";
    font-size: 1.5rem;
    color: #9bbf9b;
    opacity: 0.6;
    margin-right: 4px;
    vertical-align: middle;
}

.testimonial-card p::after {
    content: "”";
    font-size: 1.5rem;
    color: #9bbf9b;
    opacity: 0.6;
    margin-left: 4px;
    vertical-align: middle;
}

/* Card hover */
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -12px rgba(30, 80, 40, 0.25),
                0 10px 20px -6px rgba(0, 30, 0, 0.1);
    border-color: #b5d2b5;
}

/* Section title */
.testimonial-title {
    font-size: 48px !important;
    font-weight: 700;
    color: #1c452c;
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 10;
    letter-spacing: -0.5px;
}

.testimonial-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #8bb88b, #4f7a4f, #8bb88b);
    border-radius: 4px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 25px 20px;
    }
    .testimonial-wrapper .container::before,
    .testimonial-wrapper .container::after {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .testimonial-title {
        font-size: 38px !important;
    }
    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
    }
    .testimonial-img {
        height: 180px;
    }
    .testimonial-wrapper .container::before,
    .testimonial-wrapper .container::after {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .testimonial-title {
        font-size: 32px !important;
    }
    .testimonial-card {
        min-width: 230px;
        max-width: 230px;
        padding: 20px 15px;
    }
    .testimonial-img {
        height: 150px;
        padding: 10px;
    }
    .testimonial-card h5 {
        font-size: 1.2rem;
    }
    .testimonial-card p {
        font-size: 0.9rem;
    }
}