:root {
    --bg-base: #f8fafc;
    --bg-darker: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.78);
    --bg-card-hover: rgba(255, 255, 255, 0.94);
    --glass-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(241, 245, 249, 0.65));
    --glass-border: rgba(14, 165, 233, 0.2);
    --glass-glow: 0 10px 30px -5px rgba(14, 165, 233, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --glass-glow-hover: 0 20px 45px -10px rgba(14, 165, 233, 0.28), 0 0 25px rgba(14, 165, 233, 0.15);
    --text-main: #0f172a;
    --text-muted: #475569;
    --accent-glow: rgba(14, 165, 233, 0.35);
    --accent-color: #0ea5e9;
    --accent-hover: #0284c7;
    --border-color: rgba(15, 23, 42, 0.12);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background Glass Mesh Glows */
body::before {
    content: '';
    position: fixed;
    top: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, rgba(79, 70, 229, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(14, 165, 233, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    z-index: -2;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

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

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

.text-accent {
    color: var(--accent-color);
    background: linear-gradient(90deg, #0ea5e9, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Reusable Glassmorphism Utilities */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    box-shadow: var(--glass-glow);
    position: relative;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: var(--glass-glow-hover);
    border-color: rgba(14, 165, 233, 0.45);
    background: rgba(255, 255, 255, 0.92);
}

/* Glass Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    box-shadow: 0 6px 20px var(--accent-glow);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: white;
    box-shadow: 0 10px 30px var(--accent-glow);
    transform: translateY(-3px) scale(1.04);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.65);
    color: var(--text-main);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(14, 165, 233, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.25);
    transform: translateY(-3px) scale(1.04);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(14, 165, 233, 0.12);
    color: var(--accent-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

/* Navbar Glass */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    color: var(--text-main);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-main);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 9px; }
.mobile-menu-btn span:nth-child(3) { top: 18px; }

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.text-center {
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.7) 100%);
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #0f172a, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    transition: transform 0.5s ease;
}

.decorative-card {
    position: relative;
    overflow: hidden;
}

.decorative-card:hover .rounded-image {
    transform: scale(1.05);
}

.decorative-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.decorative-card:hover::before {
    top: -10px;
    left: -10px;
    opacity: 0.6;
}

/* Services Section */
.dark-bg {
    background-color: var(--bg-darker);
    position: relative;
}

.dark-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(14, 165, 233, 0.15), transparent 70%);
    z-index: 0;
}

.dark-bg > .container {
    position: relative;
    z-index: 1;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease, background 0.4s ease;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(14, 165, 233, 0.2);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Workflow */
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.step-card {
    position: relative;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-glow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-glow-hover);
    border-color: rgba(14, 165, 233, 0.4);
}

.step-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(14, 165, 233, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    transition: color 0.4s ease;
}

.step-card:hover .step-number {
    color: rgba(14, 165, 233, 0.25);
}

.step-card h3 {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

/* CTA Section Glass */
.cta-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(241, 245, 249, 0.68));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.22);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.12), 0 4px 10px rgba(0, 0, 0, 0.03);
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2), 0 4px 15px rgba(14, 165, 233, 0.15);
}

/* Footer Glass */
.footer {
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.82) 0%, rgba(226, 232, 240, 0.92) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(14, 165, 233, 0.2);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 75px;
    max-height: 85px;
    width: auto;
    margin-bottom: 1.25rem;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

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

.footer-links h4 {
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

/* Inner Pages */
.inner-hero {
    min-height: 40vh;
    padding-top: 8rem;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #0f172a, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-glow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-glow-hover);
    border-color: rgba(14, 165, 233, 0.45);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid rgba(14, 165, 233, 0.15);
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.06);
}

.blog-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
    position: relative;
    z-index: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.blog-content p {
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, #0ea5e9, #4f46e5);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #ffffff;
    border: 4px solid var(--accent-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 12px var(--accent-glow);
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.timeline-item:hover::after {
    transform: scale(1.3);
    background-color: var(--accent-color);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-glow);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-6px);
    box-shadow: var(--glass-glow-hover);
    border-color: rgba(14, 165, 233, 0.4);
}

@media screen and (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-box {
        grid-template-columns: 1fr;
        padding: 3rem;
    }
    
    .hero {
        padding-top: 6rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-item::after {
    left: 21px;
  }
  .right {
    left: 0;
  }
  .page-title {
    font-size: 2.5rem;
  }
  
  .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border-left: 1px solid var(--border-color);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 4rem 0;
    }
    
    .stats {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .marquee-item {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
    
    .floating-shape {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-box {
        padding: 1.5rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    }
    
    .quote-icon {
        top: 0.5rem;
        left: 1rem;
        font-size: 4rem;
    }
}

/* --- New Animations & Sections --- */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    opacity: 0.6;
    animation: float 10s infinite ease-in-out alternate;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(14, 165, 233, 0.2);
    top: 50px;
    left: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(79, 70, 229, 0.15);
    bottom: 50px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

.marquee-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(241, 245, 249, 0.55));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(14, 165, 233, 0.15);
    border-bottom: 1px solid rgba(14, 165, 233, 0.15);
    overflow: hidden;
    position: relative;
}

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

.marquee-container:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0 3rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    position: relative;
    padding: 3.5rem 2rem 2rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-glow);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-glow-hover);
    border-color: rgba(14, 165, 233, 0.45);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    color: rgba(14, 165, 233, 0.15);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Equipment Section */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media screen and (max-width: 992px) {
    .equipment-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media screen and (max-width: 600px) {
    .equipment-grid {
        grid-template-columns: 1fr;
    }
}

.equipment-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(241, 245, 249, 0.65));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 30px -5px rgba(14, 165, 233, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(14, 165, 233, 0.25), 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    border-color: rgba(14, 165, 233, 0.45);
}

.equipment-image-wrapper {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(14, 165, 233, 0.15);
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.08) 0%, rgba(241, 245, 249, 0.4) 75%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-image {
    width: 90%;
    height: 85%;
    object-fit: contain;
    padding: 10px;
    filter: drop-shadow(0 12px 24px rgba(14, 165, 233, 0.25)) drop-shadow(0 4px 8px rgba(15, 23, 42, 0.12));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.5s ease;
}

.equipment-card:hover .equipment-image {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 18px 32px rgba(14, 165, 233, 0.38)) drop-shadow(0 6px 12px rgba(15, 23, 42, 0.18));
}

.equipment-brand-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.12), 0 0 12px rgba(14, 165, 233, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border: 1.5px solid rgba(14, 165, 233, 0.25);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.equipment-card:hover .equipment-brand-badge {
    transform: scale(1.05);
    border-color: rgba(14, 165, 233, 0.5);
}

.equipment-brand-badge img {
    height: 52px;
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.equipment-header-logo {
    height: 48px;
    max-height: 56px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    padding: 8px 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 245, 249, 0.75));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(14, 165, 233, 0.3);
    border-radius: 14px;
    box-shadow: 0 8px 24px -4px rgba(14, 165, 233, 0.18), 0 2px 6px rgba(15, 23, 42, 0.04);
    margin-bottom: 1.25rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.equipment-card:hover .equipment-header-logo {
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(14, 165, 233, 0.6);
    box-shadow: 0 12px 30px -4px rgba(14, 165, 233, 0.3), 0 0 20px rgba(14, 165, 233, 0.22);
    background: rgba(255, 255, 255, 0.98);
}

.equipment-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.equipment-info h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.equipment-features {
    list-style: none;
    margin-top: 1.5rem;
    flex: 1;
}

.equipment-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}
