@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #ffffff;
    --bg-alt: #f1f8ff;
    /* Soft Blue tint */
    --primary-color: #0e84ef;
    /* Logo Blue */
    --secondary-color: #0066cc;
    /* Deeper Blue */
    --text-color: #2d3748;
    --text-dim: #4a5568;
    --accent-glow: rgba(14, 132, 239, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 10px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--accent-glow);
}

.btn-accent {
    background: linear-gradient(135deg, #FF6B00, #FF3D00);
    color: white !important;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
    color: white !important;
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Header */
header {
    height: 100px;
    position: fixed;
    width: 100%;
    max-width: 100vw;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 70px;
    display: block;
    transition: var(--transition);
}

.logo img:hover {
    transform: translateY(-3px) scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Language Selector (Floating Pill) */
.language-selector {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    padding: 6px 10px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    height: fit-content;
}

.language-selector a {
    display: block !important;
    transition: all 0.3s ease;
    opacity: 0.5;
    filter: grayscale(100%);
    transform: scale(0.9);
    line-height: 0;
}

.language-selector a.active,
.language-selector a:hover {
    transform: scale(1.1);
    opacity: 1;
    filter: grayscale(0%);
}

.language-selector img {
    border-radius: 3px;
    display: block;
    width: 24px;
    height: auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.8)), url('img/hero_teal.png');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        gap: 1.2rem;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

/* Philosophy / Human Side */
.philosophy {
    background-color: var(--bg-alt);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    filter: brightness(1.02) contrast(0.95) saturate(0.9) hue-rotate(20deg);
    /* Adjust hue slightly towards blue */
}

.philosophy-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.philosophy-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Human Tech Banner */
.human-tech-banner {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.human-tech-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.human-tech-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -50px;
    left: 10%;
}

.manifesto-brand {
    margin-top: 3rem;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

.manifesto-brand .p-letter {
    font-weight: 700;
    font-size: 2.2rem;
    color: #ffffff;
    vertical-align: middle;
}

.manifesto-brand .on-word {
    background: #ffffff;
    color: var(--primary-color);
    padding: 0px 10px;
    border-radius: 5px;
    font-weight: 800;
    margin: 0 2px;
    display: inline-block;
}

/* Partner Model */
.partner-section {
    position: relative;
    background-color: var(--bg-color);
}

.model-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.model-type-item {
    background: var(--bg-alt);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: inherit;
    cursor: pointer;
}

.model-type-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.model-type-item.highlight {
    border: 2px solid var(--primary-color);
    background: #ffffff;
    box-shadow: 0 15px 30px var(--accent-glow);
}

.view-more {
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.model-type-item:hover .view-more {
    gap: 0.8rem;
}

.star-badge {
    position: absolute;
    top: -18px;
    right: 20px;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.4);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    animation: float-stars 3s infinite ease-in-out;
}

.star-badge::after,
.flagship-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    animation: shimmer-badge 3s infinite;
}

@keyframes shimmer-badge {
    0% {
        left: -60%;
    }

    100% {
        left: 160%;
    }
}

@keyframes float-stars {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.type-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.model-type-item h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.partner-card {
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 40px;
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.partner-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.partner-card-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.partner-card-content p {
    text-align: justify;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-dim);
}

.partner-benefits {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    text-align: left;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit i {
    color: var(--primary-color);
    margin-top: 5px;
}

.partner-card-img {
    flex-shrink: 0;
    position: relative;
    text-align: center;
}

.partner-card-img img {
    width: 350px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-caption {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 600;
    font-style: italic;
}

/* Flagship Solution Highlights */
.partner-card.flagship {
    border: 2px solid var(--primary-color);
    box-shadow: 0 30px 60px rgba(14, 132, 239, 0.15);
    background: linear-gradient(to bottom right, #ffffff, #f9fbff);
    animation: pulse-soft 4s infinite ease-in-out;
    scroll-margin-top: 120px;
}

.flagship-badge {
    position: absolute;
    top: 35px;
    right: -65px;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: #fff;
    width: 260px;
    padding: 10px 0;
    text-align: center;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
    z-index: 10;
}

.partner-card.flagship .partner-label {
    background: var(--accent-glow);
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
        box-shadow: 0 30px 60px rgba(14, 132, 239, 0.15);
    }

    50% {
        transform: scale(1.01);
        box-shadow: 0 35px 70px rgba(14, 132, 239, 0.25);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 30px 60px rgba(14, 132, 239, 0.15);
    }
}

.win-win-highlight {
    display: inline-block;
    padding: 0.70rem 2rem;
    background: linear-gradient(135deg, #2d3436 0%, #000000 100%);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-color);
}

@media (max-width: 992px) {
    .partner-card {
        flex-direction: column;
        padding: 3rem 2rem;
    }

    .model-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-alt);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(14, 132, 239, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo img {
    height: 120px;
    margin: 0 auto 2rem auto;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.socials a {
    color: var(--text-dim);
    font-size: 1.5rem;
    transition: var(--transition);
}

.socials a:hover {
    color: var(--primary-color);
}

/* Experience Section */
.experience-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.experience-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25px;
}

.experience-badge {
    background: var(--bg-alt);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

/* Contact Form */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.iti {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Video Section */
.video-section {
    background-color: var(--bg-color);
}

.video-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 50px 100px rgba(14, 132, 239, 0.25);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background-color: #000;
}

.video-container iframe,
.video-container .video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.video-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    background-image: linear-gradient(135deg, rgba(14, 132, 239, 0.4), rgba(45, 55, 72, 0.6)), url('img/vision.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s ease;
    z-index: 1;
}

.video-placeholder:hover .video-overlay-bg {
    background: linear-gradient(135deg, rgba(14, 132, 239, 1), rgba(45, 55, 72, 1));
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 0 0 0px rgba(14, 132, 239, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.play-button i {
    margin-left: 5px;
}

.video-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--secondary-color);
    box-shadow: 0 0 0 25px rgba(14, 132, 239, 0);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0px rgba(14, 132, 239, 0.6);
    }

    100% {
        box-shadow: 0 0 0 30px rgba(14, 132, 239, 0);
    }
}

@media (max-width: 768px) {
    .play-button {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .video-wrapper {
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
        overflow: hidden !important;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    header {
        height: 80px;
    }

    nav {
        padding: 0 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: 0.4s ease-in-out;
        z-index: 999;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        display: flex;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links .btn-primary {
        margin-left: 0 !important;
    }

    .logo {
        width: 100px;
    }

    .logo img {
        height: 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partner-card {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        text-align: center;
    }

    .partner-card-content {
        order: 2;
    }

    .partner-card-img {
        order: 1;
        margin-bottom: 2rem;
    }

    .partner-card-content p,
    .partner-card-content h3 {
        text-align: center;
    }

    .partner-benefits {
        text-align: left;
        max-width: 450px;
        margin: 2rem auto 0;
    }

    .partner-card img {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .experience-badge {
        padding: 2rem;
    }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 60%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-dim);
}

.modal-body p {
    margin-bottom: 1.5rem;
}

.modal-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.modal-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    color: var(--text-dim);
}

.modal-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.modal-body th,
.modal-body td {
    padding: 10px;
    border: 1px solid var(--glass-border);
    text-align: left;
    color: var(--text-dim);
}

.modal-body th {
    background-color: var(--bg-alt);
    font-weight: 600;
    color: var(--primary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    z-index: 1500;
    transition: 0.5s ease-in-out;
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-btns {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        margin: 20% auto;
        padding: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 0;
}

.faq-question {
    padding: 0.8rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover h3 {
    color: var(--primary-color);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding-bottom: 0;
    color: var(--text-dim);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Testimonials Section Slider */
.testimonials-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 2rem 1rem;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.334rem);
    min-height: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .testimonial-track {
        gap: 1.5rem;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card i.fa-quote-left {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-content {
    font-style: italic;
    color: var(--text-dim);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin: 0;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}