/* CSS Variables for Theme */
:root {
    /* Light Theme (default) */
    --bg-primary: #f9f9f9;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --bg-card: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #4a5568;
    --text-heading: #1a365d;
    --accent-primary: #2b6cb0;
    --accent-secondary: #1a365d;
    --border-color: #dddddd;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --icon-bg: #e6f2ff;
    --footer-bg: #1a365d;
    --footer-text: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] {
    /* Dark Theme */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: #1e293b;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-heading: #f1f5f9;
    --accent-primary: #3b82f6;
    --accent-secondary: #60a5fa;
    --border-color: #475569;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --icon-bg: #1e3a5f;
    --footer-bg: #020617;
    --footer-text: rgba(255, 255, 255, 0.7);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s, color 0.3s;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-heading);
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-secondary);
}

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

/* Header Styles */
header {
    background-color: var(--bg-secondary);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.logo-text h1 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 0;
}

.logo-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent-primary);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-primary);
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    margin-left: 20px;
}

.theme-toggle:hover {
    background-color: var(--accent-primary);
    color: white;
}

.cta-button {
    background-color: var(--accent-primary);
    color: white !important;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--accent-secondary);
}

/* Hero Section with Particles */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    color: white;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero .cta-button {
    background-color: white;
    color: var(--accent-primary) !important;
    padding: 15px 35px;
    font-size: 18px;
}

.hero .cta-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Page Header (for inner pages) */
.page-header {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

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

.section-light {
    background-color: var(--bg-secondary);
}

.section-dark {
    background-color: var(--bg-tertiary);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--accent-primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--text-secondary);
    margin-top: 15px;
    font-size: 18px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--accent-primary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-primary);
    font-size: 28px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    color: var(--text-secondary);
}

/* About Content */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.highlight-box {
    background-color: var(--bg-card);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 5px 15px var(--shadow-color);
    border-left: 5px solid var(--accent-primary);
}

.highlight-box h3 {
    margin-bottom: 15px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-card);
    border-radius: 10px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-primary);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: 10px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--accent-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 15px;
    height: 15px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    border: 3px solid var(--bg-secondary);
}

.timeline-date {
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.timeline-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-content {
    color: var(--text-secondary);
}

/* Clients Section */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.client-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.client-icon {
    width: 60px;
    height: 60px;
    background-color: var(--icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--accent-primary);
    font-size: 24px;
}

.client-card h4 {
    margin-bottom: 10px;
}

.client-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.team-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 60px;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    margin-bottom: 5px;
}

.team-info .position {
    color: var(--accent-primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

.contact-details {
    margin-top: 30px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-form {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    transition: border-color 0.3s, background-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Map Container */
.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    background-color: var(--bg-card);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo .logo-icon {
    background: white;
    color: var(--accent-secondary);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.footer-logo h3 {
    color: white;
    margin-top: 15px;
}

.footer-logo p {
    color: var(--footer-text);
    margin-top: 10px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-services a:hover {
    color: white;
}

.footer-contact p {
    color: var(--footer-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-primary);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--accent-primary);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--footer-text);
    font-size: 14px;
}

/* Service Detail Cards */
.service-detail {
    background-color: var(--bg-card);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.service-detail .service-icon {
    margin: 0;
}

.service-detail h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.service-detail p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.service-detail ul {
    list-style: none;
    margin-top: 15px;
}

.service-detail ul li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail ul li i {
    color: var(--accent-primary);
}

/* Technologies Section */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.tech-item {
    background-color: var(--bg-card);
    padding: 25px 15px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 36px;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.tech-item span {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
        padding: 15px 0;
    }

    .logo-img {
        height: 40px;
    }

    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 15px;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail .service-icon {
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .header-container {
        justify-content: space-between;
        padding: 10px 0;
    }

    .logo-img {
        height: 35px;
    }

    .cta-button.header-cta,
    .header-container > .cta-button {
        display: none;
    }

    .hero {
        padding: 80px 0;
        min-height: 500px;
    }

    .hero h2 {
        font-size: 30px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

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

    .page-header {
        padding: 60px 0;
    }

    .page-header h2 {
        font-size: 32px;
    }

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

    .footer-logo-img {
        height: 50px;
    }

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

    .footer-links ul,
    .footer-services ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .footer-links ul li,
    .footer-services ul li {
        margin: 5px 10px;
    }

    .footer-contact p {
        justify-content: center;
    }
}

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

    .logo-img {
        height: 40px;
    }

    .hero h2 {
        font-size: 22px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .section-title p {
        font-size: 14px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .stat-number {
        font-size: 36px;
    }

    .highlight-box {
        padding: 20px 15px;
    }

    .highlight-box h3 {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .footer-logo-img {
        height: 35px;
    }

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

    nav ul {
        padding: 15px 20px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
}

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

    .header-container {
        padding: 15px 0;
    }

    .logo-img {
        height: 45px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--bg-secondary);
        box-shadow: 0 5px 10px var(--shadow-color);
        z-index: 1000;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 25px 30px;
    }

    nav ul li {
        margin: 12px 0;
        padding: 8px 0;
        border-bottom: 1px solid var(--border-color);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        font-size: 16px;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Trusted By Marquee Section */
.trusted-by-section {
    background-color: var(--footer-bg);
    padding: 60px 0;
    overflow: hidden;
}

.trusted-by-title {
    text-align: center;
    color: white;
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 600;
}

.marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
}

.marquee-item img {
    height: 80px !important;
    width: auto;
    max-width: 250px;
    min-height: 80px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.marquee-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

/* Pause animation on hover */
.marquee:hover .marquee-content {
    animation-play-state: paused;
}

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

/* Responsive for Marquee */
@media (max-width: 768px) {
    .trusted-by-section {
        padding: 40px 0;
    }

    .trusted-by-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .marquee-item {
        padding: 0 40px;
    }

    .marquee-item img {
        height: 70px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .trusted-by-title {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .marquee-item {
        padding: 0 30px;
    }

    .marquee-item img {
        height: 60px;
        max-width: 180px;
    }
}

/* Testimonials Carousel */
.testimonials-section {
    background-color: var(--footer-bg);
    padding: 80px 0;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 60px;
}

.testimonial-track {
    position: relative;
    min-height: 400px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-content {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow-color);
    position: relative;
}

.quote-icon {
    font-size: 48px;
    color: var(--accent-primary);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--border-color);
    padding-top: 25px;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-heading);
}

.author-info p {
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 500;
}

.company-logo {
    display: flex;
    align-items: center;
}

.company-logo img {
    max-width: 150px;
    max-height: 50px;
    object-fit: contain;
    transition: all 0.3s;
}

.company-name {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--accent-primary);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.carousel-btn:hover {
    background-color: var(--accent-secondary);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Carousel Dots Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background-color: var(--accent-secondary);
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--accent-primary);
    width: 30px;
    border-radius: 6px;
}

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

.testimonial-card.active .testimonial-content {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Styles for Testimonials */
@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 20px 40px;
    }

    .testimonial-content {
        padding: 30px 25px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .company-logo {
        width: 100%;
    }

    .company-logo img {
        max-width: 120px;
        max-height: 40px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .testimonial-track {
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel {
        padding: 20px 10px;
    }

    .testimonial-content {
        padding: 25px 20px;
    }

    .quote-icon {
        font-size: 36px;
    }

    .testimonial-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .author-info h4 {
        font-size: 16px;
    }

    .author-info p {
        font-size: 13px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .prev-btn {
        left: -5px;
    }

    .next-btn {
        right: -5px;
    }

    .testimonial-track {
        min-height: 550px;
    }
}
