/* General styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    background-color: #f2f2f2;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Favicon styling */
link[rel="icon"] {
    border-radius: 50%;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid #F0B90B;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(240, 185, 11, 0.05) 50%, 
        transparent 100%);
    pointer-events: none;
}

.logo img {
    max-height: 50px;
    width: 50px;
    height: 50px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

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

/* Navigation */
.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li {
    margin-left: 1.5rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    letter-spacing: 0.5px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.nav a:hover {
    color: #F0B90B;
    background: rgba(240, 185, 11, 0.1);
    transform: translateY(-2px);
}

.nav a.active {
    color: #000;
    background: #F0B90B;
    font-weight: 600;
}

.nav a.active::after {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scaleX(0); }
    to { opacity: 1; transform: scaleX(1); }
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

/* Show toggle button on mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        visibility: hidden;
        z-index: 999;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav li {
        margin: 0.75rem 0;
    }
    
    .nav a {
        padding: 0.5rem 1rem;
    }
    
    .nav a.active::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 40px;
    background-color: #000;
    color: white;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

.hero h2 {
    font-size: 4rem;
    margin: 10px 0;
    font-weight: 800;
    color: #F0B90B;
    letter-spacing: -1px;
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: white;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* About Me Section */
.about-me {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
    text-align: center;
}

.about-me h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Feature Cards Section */
.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 5%;
    margin: 0 auto;
    max-width: 1400px;
}

.feature-card {
    width: 320px;
    height: 220px;
    perspective: 1000px;
    position: relative;
    margin: 10px;
}

.feature-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    border-radius: 15px;
}

.feature-card:hover .feature-card-inner,
.feature-card.flipped .feature-card-inner,
.feature-card:active .feature-card-inner {
    transform: rotateY(180deg);
}

/* Touch devices - ensure cards flip on tap */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover .feature-card-inner {
        transform: rotateY(0deg);
    }
    
    .feature-card.flipped .feature-card-inner,
    .feature-card:active .feature-card-inner {
        transform: rotateY(180deg);
    }
}

.feature-card-front,
.feature-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
}

.feature-card-front {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

.feature-card-front i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #F0B90B;
}

.feature-card-front h3 {
    font-size: 1.6rem;
    margin: 0;
    text-align: center;
    font-weight: 600;
}

.feature-card-back {
    background-color: #ffffff;
    color: #333;
    transform: rotateY(180deg);
    text-align: center;
    border: 2px solid #F0B90B;
}

.feature-card-back h3 {
    color: #000;
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.feature-card-back p {
    margin: 0 0 20px 0;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

.feature-badge {
    background: #F0B90B;
    color: #000;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: #ffffff;
    padding: 40px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #F0B90B 20%, 
        #FFD700 50%, 
        #F0B90B 80%, 
        transparent 100%);
    box-shadow: 0 0 20px rgba(240, 185, 11, 0.5);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(240, 185, 11, 0.3), 
        transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(0); opacity: 1; }
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Footer Social (moved to left) */
.footer-social {
    justify-self: start;
    text-align: left;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

/* Footer Brand */
.footer-brand {
    text-align: center;
    justify-self: center;
    padding: 15px 0;
}

.footer-brand .footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-brand .footer-tagline {
    font-size: 0.9rem;
    color: #999;
    font-weight: 300;
    line-height: 1.4;
    max-width: 250px;
    margin: 0 auto;
}

.footer-brand .footer-description {
    display: none;
}

/* Footer Navigation (moved to right) */
.footer-nav {
    justify-self: end;
    text-align: right;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 6px 0;
    position: relative;
    display: inline-block;
}

.footer-nav a::before {
    content: '←';
    position: absolute;
    right: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #F0B90B;
}

.footer-nav a:hover {
    color: #F0B90B;
    transform: translateX(-15px);
}

.footer-nav a:hover::before {
    opacity: 1;
    right: -15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: flex-start;
}

.footer-social a i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.footer-social a:hover {
    color: #F0B90B;
    transform: translateX(-5px);
}

.footer-social a.instagram:hover {
    color: #E1306C;
}

.footer-social a.tiktok:hover {
    color: #ff0050;
}

.footer-social a.email:hover {
    color: #F0B90B;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F0B90B, transparent);
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        order: -1;
    }
    
    .footer-nav,
    .footer-social {
        justify-self: center;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .footer-social-links {
        align-items: center;
        justify-content: center;
    }
    
    .footer-nav {
        text-align: center;
    }
    
    .footer-nav a::before {
        display: none;
    }
    
    .footer-nav a:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-nav,
    .footer-brand,
    .footer-social {
        justify-self: center;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-nav a::before {
        display: none;
    }
    
    .footer-nav a:hover {
        transform: translateY(-2px);
    }
    
    .footer-social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    
    .footer-social a {
        min-width: auto;
        padding: 8px 0;
        justify-content: center;
    }
    
    .footer-social a span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-brand .footer-logo {
        font-size: 1.8rem;
    }
    
    .footer-social-links {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social a {
        padding: 6px 0;
        min-width: 100px;
    }
    
    .footer-nav ul {
        gap: 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features {
        gap: 30px;
    }
    .feature-card {
        width: 300px;
    }
}

@media (max-width: 900px) {
    .features {
        gap: 30px;
    }
    .feature-card {
        width: 280px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.8rem 1rem;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .logo {
        display: flex;
        align-items: center;
        z-index: 1002;
    }
    
    .logo img {
        max-height: 45px;
        width: 45px;
        height: 45px;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        visibility: hidden;
        z-index: 999;
        border-bottom: 2px solid #F0B90B;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        margin: 0;
    }
    
    .nav li {
        margin: 0.75rem 0;
    }
    
    .nav a {
        padding: 0.75rem 1.5rem;
        font-size: 1.1rem;
        min-width: 120px;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1002;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .features {
        gap: 30px;
        padding: 40px 5%;
    }
    
    .feature-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto 30px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.6rem 0.8rem;
    }
    
    .logo img {
        max-height: 40px;
        width: 40px;
        height: 40px;
    }
    
    .hero {
        padding: 60px 15px 30px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero .tagline {
        font-size: 1.1rem;
    }
    
    .features {
        padding: 40px 3%;
    }
    
    .feature-card {
        height: 200px;
        margin: 0 auto 20px;
    }
    
    .feature-card-front,
    .feature-card-back {
        padding: 20px 15px;
    }
    
    .feature-card-front h3,
    .feature-card-back h3 {
        font-size: 1.4rem;
    }
    
    .feature-card-back p {
        font-size: 0.95rem;
    }
}

/* Info Section */
.info-section {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}

.info-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #000;
    font-weight: 700;
}

.info-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.info-box {
    width: 280px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-10px);
}

.info-box h4 {
    margin-bottom: 15px;
    color: #000;
    font-weight: 600;
}



.portfolio-preview h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.image-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.image-grid img {
    width: 300px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.image-grid img:hover {
    transform: scale(1.05);
}

/* Why Choose Us */
.why-choose-us {
    background: #F0B90B;
    color: #000;
    padding: 50px 20px;
    text-align: center;
}

.why-choose-us h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.why-choose-us li {
    font-weight: 600;
    font-size: 1.1rem;
}

.why-choose-us i {
    color: #000;
    margin-right: 10px;
}

/* CTA Section */
.cta {
    background: linear-gradient(to right, #000, #111);
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #F0B90B;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-btn {
    display: inline-block;
    background-color: #F0B90B;
    color: #000;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    background-color: #d9a20a;
}

/* Main Content Styling */
.about-section {
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.about-header h1 {
    font-size: 3rem;
    color: #F0B90B;
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-header .tagline {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    font-weight: 300;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    color: black;
    flex: 1 1 400px;
    background: rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    transition: transform 0.3s ease;
    text-align: left;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.about-content:hover {
    transform: translateY(-10px);
}

.about-content h2 {
    color: #F0B90B;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-content p {
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
}

/* Social Cards */
.social-display {
    flex: 1 1 400px;
    text-align: center;
}

.social-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(240, 185, 11, 0.15);
    position: relative;
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-6px);
}

.social-icon i {
    font-size: 2rem;
    color: #F0B90B;
}

.social-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

.social-info p {
    margin: 5px 0;
    font-size: 0.95rem;
    color: #cccccc;
    font-weight: 300;
}

.social-link {
    display: inline-block;
    margin-top: 5px;
    color: #F0B90B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.social-link i {
    margin-left: 5px;
}

.social-link:hover {
    color: #ffffff;
}

.back-button:hover {
    color: #ffffff;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: #888;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    border-top: 1px solid #222;
    font-weight: 300;
}

.footer-social {
    margin-top: 10px;
}

.footer-social a {
    margin: 0 10px;
    color: #F0B90B;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
        gap: 40px;
    }

    .social-cards {
        flex-direction: column;
    }
}

/* Contact Section Styling */
.contact-section {
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.contact-section h1 {
    font-size: 3rem;
    color: #F0B90B;
    margin-bottom: 40px;
    font-weight: 800;
    letter-spacing: -1px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(240, 185, 11, 0.15);
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #F0B90B;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s, box-shadow 0.3s;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #F0B90B;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    accent-color: #F0B90B;
}

.cta-button {
    background-color: #F0B90B;
    color: #000;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1.1rem;
    display: block;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #d9a20a;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: #ffffff;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.testimonials-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.testimonials-scroll {
    display: flex;
    gap: 30px;
    animation: scroll-testimonials 60s linear infinite;
    width: fit-content;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex-shrink: 0;
    width: 400px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #F0B90B;
    position: relative;
    transition: transform 0.3s ease;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #F0B90B;
    font-weight: bold;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #000;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Star ratings styling */
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.testimonial-stars i {
    color: #F0B90B;
    font-size: 1.2rem;
}

/* Ensure animation never pauses */
.testimonials-scroll {
    animation-play-state: running !important;
}

.testimonials-container * {
    pointer-events: none;
}

.testimonials-container {
    user-select: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        width: 320px;
        padding: 25px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonials-scroll {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        width: 280px;
        padding: 20px;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
}

/* Add this to your HTML head to load Inter font from Google Fonts */
/*
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
*/