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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 40, 80, 0.95));
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 168, 255, 0.2);
    box-shadow: 0 2px 20px rgba(0, 168, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 255, 0.5), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: logoGlow 2s infinite alternate;
}

@keyframes logoGlow {
    from { filter: drop-shadow(0 0 5px rgba(0, 168, 255, 0.3)); }
    to { filter: drop-shadow(0 0 15px rgba(0, 168, 255, 0.6)); }
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1) rotate(2deg);
}

.logo-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    display: block;
    white-space: nowrap;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover {
    color: #00a8ff;
    background: rgba(0, 168, 255, 0.1);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.8);
}

.nav-menu a:not([href="#samband"]):hover {
    transform: none;
    color: #00a8ff;
    background: rgba(0, 168, 255, 0.1);
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.8);
}

.nav-menu a[href="#samband"] {
    background: linear-gradient(45deg, #00a8ff, #0078ff);
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
    animation: pulse 2s infinite;
    margin-left: 10px;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 168, 255, 0.5);
    }
}

.nav-menu a[href="#samband"]:hover {
    background: linear-gradient(45deg, #0078ff, #00a8ff);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 168, 255, 0.6);
    color: #fff;
}

.nav-menu a[href="#samband"]::before {
    display: none;
}

.mobile-menu {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,168,255,0.3)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23222" width="1200" height="800"/><g fill="none" stroke="%23333" stroke-width="1"><path d="M0 400h1200M400 0v800M800 0v800"/></g></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #00a8ff, #0078ff);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,168,255,0.3);
}

.btn:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
}

/* Services Section */
.services {
    padding: 140px 0 100px 0;
    background: #f8f9fa;
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 100px;
}

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

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #00a8ff, #0078ff);
    transition: left 0.3s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.service-icon {
    font-size: 3rem;
    color: #00a8ff;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

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

/* About Section */
.about {
    padding: 140px 0 100px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 100px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.1rem;
}

.about-features {
    list-style: none;
    margin: 30px 0;
}

.about-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-features i {
    color: #00a8ff;
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #00a8ff, #0078ff);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00a8ff, #0078ff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    color: #666;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.testimonials-container {
    position: relative;
    margin-top: 50px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.testimonials-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    position: relative;
    width: 100%;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-slide-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    padding: 20px 0;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    border: 1px solid rgba(0, 168, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: rgba(0, 168, 255, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 25px;
    font-size: 4rem;
    color: #00a8ff;
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    margin-bottom: 25px;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
    padding-top: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 168, 255, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00a8ff, #0078ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 168, 255, 0.3);
}

.author-info {
    flex: 1;
}

.author-info h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

.star-rating {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.star-rating i {
    color: #ffc107;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #00a8ff, #0078ff);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(0, 168, 255, 0.4);
}

.testimonial-nav:hover {
    background: linear-gradient(135deg, #0078ff, #00a8ff);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 168, 255, 0.6);
}

.testimonial-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-prev {
    left: -30px;
}

.testimonial-next {
    right: -30px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
    padding: 0 20px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot:hover {
    background: #00a8ff;
    opacity: 0.7;
    transform: scale(1.1);
}

.dot.active {
    background: #00a8ff;
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.2);
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 20px;
    font-size: 3.5rem;
    color: #00a8ff;
    opacity: 0.3;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #00a8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1rem;
    line-height: 1.3;
}

.star-rating {
    display: flex;
    gap: 2px;
    margin-top: 5px;
}

.star-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Before/After Gallery */
.gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.gallery-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
    pointer-events: none;
}

.before-image {
    z-index: 2;
}

.after-image {
    z-index: 1;
}

.slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #00a8ff;
    z-index: 3;
    cursor: ew-resize;
    user-select: none;
    transform: translateX(-50%);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #00a8ff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: ew-resize;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    user-select: none;
}

.gallery-item h3 {
    padding: 20px 20px 10px;
    color: #333;
    font-size: 1.3rem;
}

.gallery-item p {
    padding: 0 20px 20px;
    color: #666;
}

.image-labels {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.before-label,
.after-label {
    font-weight: bold;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.before-label {
    background: #6c757d;
    color: #fff;
}

.after-label {
    background: #00a8ff;
    color: #fff;
}

/* Contact Section */
.contact {
    padding: 140px 0 100px 0;
    background: linear-gradient(135deg, #333, #666);
    color: #fff;
}

.contact .section-title {
    padding-top: 100px;
}

.contact .section-title h2 {
    color: #fff;
}

.contact .section-title p {
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info p {
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #00a8ff;
}

.contact-item strong {
    color: #fff;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: #fff;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #fff;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00a8ff;
    background: rgba(255,255,255,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group select option {
    background: #333;
    color: #fff;
}

.contact-form .btn {
    width: 100%;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #00a8ff;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #00a8ff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #00a8ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #00a8ff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0078ff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-slide {
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(0,0,0,0.98);
        padding: 20px;
        gap: 10px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .services {
        padding: 120px 0 80px 0;
    }

    .about {
        padding: 120px 0 80px 0;
    }

    .about-content {
        padding-top: 80px;
    }

    .contact {
        padding: 120px 0 80px 0;
    }

    .contact .section-title {
        padding-top: 80px;
    }

    .section-title {
        padding-top: 80px;
    }

    .nav-menu a[href="#samband"] {
        margin-top: 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .image-container {
        height: 200px;
    }

    .testimonials {
        padding: 80px 0;
    }

    .section-title {
        padding-top: 60px;
    }

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

    .testimonial-slide-inner {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 10px;
    }

    .testimonial-card {
        min-height: 220px;
        padding: 25px 20px;
    }

    .testimonial-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .testimonial-prev {
        left: -22px;
    }

    .testimonial-next {
        right: -22px;
    }

    .testimonial-dots {
        margin-top: 35px;
        gap: 10px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }
}

    .testimonial-card {
        padding: 20px;
        min-height: 180px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }


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

    .testimonial-card {
        padding: 15px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .star-rating i {
        font-size: 0.8rem;
    }
}