:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #C5A028;
    --dark-gold: #B8860B;
    --light-gold: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--light-gold);
}

.navbar {
    background: #FFFFFF;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(212, 175, 55, 0.2);
}

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.center-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-logo img {
    height: 80px;
    transition: transform 0.3s ease;
}

.center-logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    margin-left: auto;
    margin-right: 2rem;
    display: flex;
    align-items: center;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: var(--light-gold);
    color: var(--primary-gold);
    padding: 12px 25px;
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.dropbtn:hover {
    background: var(--primary-gold);
    color: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--light-gold);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.dropdown-content a {
    color: var(--primary-gold);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-content a:hover {
    background: var(--primary-gold);
    color: var(--light-gold);
    transform: translateX(10px);
}

.dropdown:hover .dropdown-content {
    display: block;
    transform: translateY(0);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--primary-gold);
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--dark-gold);
    transform: scale(1.2);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .social-icons {
        gap: 10px;
        margin-right: 15px;
        margin-left: auto;
        display: flex;
        align-items: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-gold);
        padding: 20px;
    }

    .nav-links.active {
        display: block;
    }

    .dropdown {
        width: 100%;
    }

    .dropbtn {
        width: 100%;
        justify-content: center;
    }

    .dropdown-content {
        position: relative;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

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

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

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

    .center-logo {
        display: none;
    }
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 115%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.15);
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .hero-video {
        height: 115%;
        object-position: center 35%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
}

.decoration-categories {
    padding: 4rem 5%;
    background: #fff;
}

.section-title {
    text-align: center;
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.category-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card h3 {
    padding: 1rem;
    text-align: center;
    color: #000000;
    font-size: 1.4rem;
    margin: 0;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.9), rgba(218, 165, 32, 0.95));
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    font-weight: 700;
    letter-spacing: 0.5px;
    backdrop-filter: blur(2px);
    border-top: 1px solid rgba(255, 215, 0, 0.5);
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .category-card {
        aspect-ratio: 16/10;
    }

    .category-card h3 {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
}

.hero-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}


.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-section {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    min-width: 300px;
    margin-right: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.client-info p {
    font-size: 0.9rem;
    color: #666;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 1.1rem;
    animation: marquee 30s linear infinite;
    margin-right: 50px;
}

.left-to-right span {
    animation-name: marquee-left-to-right;
}

.right-to-left span {
    animation-name: marquee-right-to-left;
}

@keyframes marquee-left-to-right {
    0% { transform: translateX(-100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0.9; }
}

@keyframes marquee-right-to-left {
    0% { transform: translateX(100%); opacity: 0.9; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0.9; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&display=swap');

.footer {
    background-color: #fff;
    padding: 3rem 5%;
    border-top: 2px solid var(--primary-gold);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 80px;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item a {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--dark-gold);
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.instagram-link i {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--dark-gold);
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }
}

.contact-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #fff8e8 0%, #fff 100%);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 5px;
    color: #666;
    font-size: 0.9rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group textarea ~ label {
    top: 12px;
    transform: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group input:focus ~ label,
.form-group select:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group select:valid ~ label,
.form-group textarea:valid ~ label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--primary-gold);
}

.submit-btn {
    background: var(--primary-gold);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.submit-btn i {
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .contact-container {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
    }
}