/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: #ffffff;
    padding: 5px 8px;
    border-radius: 8px;
    overflow: hidden;
}

.nav-logo {
    height: 34px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #c50c16;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #c50c16;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 680px;
    background:
        radial-gradient(circle at 78% 45%, rgba(38, 63, 91, 0.58) 0, rgba(38, 63, 91, 0.18) 26%, transparent 54%),
        linear-gradient(115deg, #071a30 0%, #0b2542 54%, #102e4d 100%);
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(4, 13, 24, 0.24), transparent 65%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 690px;
    padding: 5.5rem 0 5rem;
}

.hero-eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c50c16;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.025em;
    margin-bottom: 1.35rem;
    color: #ffffff;
    max-width: 650px;
}

.hero-subtitle {
    font-size: 1.18rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.88);
    max-width: 560px;
}

.hero-subtitle strong {
    color: #c50c16;
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
    min-height: 56px;
    padding: 1rem 1.6rem;
    border-radius: 8px;
}

.hero-whatsapp-button {
    border-color: rgba(255,255,255,0.7);
}

.hero-whatsapp-button i {
    color: #25d366;
}

.hero-services-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding-bottom: 3px;
    transition: color 0.25s, border-color 0.25s;
    margin-bottom: 2rem;
}

.hero-services-link:hover {
    color: #ffffff;
    border-color: rgba(255,255,255,0.75);
}

.hero-areas {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1.15rem 0;
    border-top: 1px solid rgba(255,255,255,0.16);
    border-bottom: 1px solid rgba(255,255,255,0.16);
    margin-bottom: 1.35rem;
    max-width: 650px;
}

.hero-areas-label {
    color: #c50c16;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-areas-list {
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    line-height: 1.6;
}

.hero-trust {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    padding: 0 1.4rem 0 0;
    margin-right: 1.4rem;
    border-right: 1px solid rgba(255,255,255,0.25);
}

.trust-item:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.trust-item i {
    color: #c50c16;
    font-size: 0.9rem;
}

.trust-item-highlight {
    color: #ffffff;
}

.trust-item-highlight i {
    color: #c50c16;
}

.hero-watermark {
    position: absolute;
    z-index: 1;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: min(42vw, 560px);
    height: min(42vw, 560px);
    border: 1px solid rgba(255,255,255,0.055);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-watermark::before,
.hero-watermark::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(197,12,22,0.12);
    border-radius: 50%;
}

.hero-watermark::before {
    inset: 10%;
}

.hero-watermark::after {
    inset: 22%;
}

.hero-watermark-lines {
    position: absolute;
    z-index: 1;
    inset: 24% 18%;
    border-top: 1px solid rgba(197,12,22,0.30);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.hero-watermark-lines::before,
.hero-watermark-lines::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-watermark-lines::before {
    inset: 18% -4% 6% 12%;
    border-bottom: 1px solid rgba(197,12,22,0.24);
    transform: rotate(32deg);
}

.hero-watermark-lines::after {
    inset: 8% 18% 24% -8%;
    border-right: 1px solid rgba(197,12,22,0.22);
    transform: rotate(-28deg);
}

.hero-watermark img {
    position: relative;
    z-index: 2;
    width: 58%;
    height: auto;
    max-height: 82%;
    object-fit: contain;
    opacity: 0.78;
    transform: translateX(28%);
    filter: drop-shadow(0 14px 24px rgba(0,0,0,0.22));
}

.hero-linework {
    position: absolute;
    z-index: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,12,22,0.32), transparent);
    transform: rotate(-28deg);
    pointer-events: none;
}

.hero-linework-one {
    width: 340px;
    right: 15%;
    top: 26%;
}

.hero-linework-two {
    width: 260px;
    right: 6%;
    bottom: 23%;
    transform: rotate(28deg);
    opacity: 0.55;
}

.btn-primary {
    background: #c50c16;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(197, 12, 22, 0.3);
}

.btn-primary:hover {
    background: #a30911;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 12, 22, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    border: 2px solid #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1e3a8a;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c50c16;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.about-features {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: #c50c16;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Services Section */
.services {
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    background: #f9fafb;
}

.reviews-content {
    text-align: center;
}

.google-rating {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.rating-badge i {
    font-size: 2rem;
    color: #4285f4;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
}

.btn-google-reviews {
    background: #4285f4;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-google-reviews:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

/* Carousel */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.carousel-track {
    display: flex;
    align-items: stretch;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-track.no-transition {
    transition: none;
}

.carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #1e3a8a;
    background: #ffffff;
    color: #1e3a8a;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
    background: #1e3a8a;
    color: #ffffff;
    outline: 2px solid #c50c16;
    outline-offset: 2px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
    background: #1e3a8a;
    transform: scale(1.3);
}

.carousel-dot:focus-visible {
    outline: 2px solid #c50c16;
    outline-offset: 2px;
}

/* Review card (testimonial) */
.testimonial {
    background: #ffffff;
    padding: 1.75rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    flex-shrink: 0;
}

.testimonial-meta {
    flex: 1;
    min-width: 0;
}

.testimonial-name {
    font-weight: 600;
    color: #1e3a8a;
    font-size: 0.95rem;
    margin: 0 0 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-age {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.92rem;
    margin: 0 0 0.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
}

.testimonial-text.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.read-more-btn {
    background: none;
    border: none;
    color: #c50c16;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: color 0.2s;
}

.read-more-btn:hover {
    color: #a30911;
}

.testimonial-google {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f3f4f6;
    font-size: 0.75rem;
    color: #9ca3af;
}

.testimonial-google i {
    color: #4285f4;
    font-size: 0.85rem;
}

/* Contact Section */
.contact {
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 10px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: #4b5563;
    margin: 0;
}

.contact-details a {
    color: #c50c16;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: #ffffff;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 6px 10px;
    border-radius: 9px;
    overflow: hidden;
}

.footer-logo {
    height: 38px;
    width: auto;
    display: block;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c50c16;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #c50c16;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-phone:hover {
    background: #a30911;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(30, 58, 138, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero tablet */
    .hero {
        min-height: 620px;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(4, 13, 24, 0.28), transparent 78%);
    }

    .hero-content {
        max-width: 590px;
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: clamp(2.65rem, 5.2vw, 3.6rem);
    }

    .hero-cta {
        flex-wrap: wrap;
    }

    .hero-areas {
        display: block;
    }

    .hero-areas-label {
        display: block;
        margin-bottom: 0.35rem;
    }

    .trust-item {
        padding: 0 1rem 0 0;
        margin-right: 1rem;
        font-size: 0.85rem;
    }

    .hero-watermark {
        right: -12%;
        width: 420px;
        height: 420px;
    }

    .hero-linework-one {
        right: -4%;
    }

    .hero-linework-two {
        right: -10%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .image-placeholder {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 22px;
    }

    /* Hero mobile */
    .hero {
        min-height: 0;
    }

    .hero-overlay {
        background: linear-gradient(145deg, rgba(4, 13, 24, 0.24), transparent 82%);
    }

    .hero-content {
        max-width: 100%;
        padding: 5.5rem 0 3.5rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3rem);
        line-height: 1.08;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem 1rem;
    }

    .trust-item {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        font-size: 0.88rem;
    }

    .trust-item:last-child {
        grid-column: 1 / -1;
    }

    .hero-areas {
        padding: 1rem 0;
        margin-bottom: 1.2rem;
    }

    .hero-areas-list {
        display: block;
        font-size: 0.84rem;
    }

    .hero-watermark {
        width: 190px;
        height: 190px;
        right: -38px;
        top: auto;
        bottom: 18px;
        opacity: 0.62;
    }

    .hero-watermark img {
        width: 78%;
        transform: none;
    }

    .hero-linework {
        display: none;
    }

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

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

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.nav-link:focus,
.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid #c50c16;
    outline-offset: 2px;
}

/* Loading animation for iframe */
.contact-map iframe {
    transition: opacity 0.3s ease;
}

/* Additional hover effects */
.contact-item:hover {
    background: #e5e7eb;
    transition: background 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}
