/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    z-index: -1;
}

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar-brand {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

/* Custom Logo */
.logo {
    position: relative;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.08);
}

.brand-text h4 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    margin-bottom: 2px;
}

.brand-text small {
    color: #666 !important;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.navbar-nav {
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: #1a1a1a !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
    background: rgba(0, 123, 255, 0.08);
    transform: translateY(-1px);
}

.navbar-nav .nav-link:hover::before {
    width: 70%;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1171&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    z-index: 0;
}

/* Background Effects */
.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.effect-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    top: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.effect-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #00ff88, #44aa44);
    bottom: -50px;
    right: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* CEO Card */
.ceo-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.ceo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

/* CEO Image Container */
.ceo-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ceo-image {
    position: relative;
    width: 280px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #44aa44, #ffd700) border-box;
    padding: 3px;
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
}

/* CEO Badge */
.ceo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffd700;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ceo-badge i {
    font-size: 0.7rem;
}

/* CEO Content */
.ceo-content {
    padding-left: 2rem;
}

.ceo-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #ffd700;
}

.ceo-name {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.position-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.position-badge i {
    font-size: 0.8rem;
}

.ceo-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 2rem;
}

.ceo-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #ffd700;
    font-family: serif;
}

.accent-line {
    width: 60px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .ceo-card {
        padding: 2rem;
    }
    
    .ceo-content {
        padding-left: 0;
        padding-top: 2rem;
        text-align: center;
    }
    
    .ceo-title {
        font-size: 2rem;
    }
    
    .ceo-image {
        width: 220px;
        height: 280px;
    }
}

@media (max-width: 767.98px) {
    .clients-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .clients-description {
        font-size: 1.1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .clients-slider {
        height: 180px;
        width: 540px; /* Fixed width to show exactly 3 items (3 * 180px) */
    }
    
    .client-item {
        flex: 0 0 180px;
    }
    
    .slider-controls {
        gap: 1rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .client-logo-container {
        padding: 2rem 1.5rem;
    }
    
    .logo-frame {
        width: 80px;
        height: 80px;
    }
    
    .logo-frame i {
        font-size: 2rem;
    }
    
    .client-info h4 {
        font-size: 1.3rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .partnership-badge {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-card {
        max-width: 100%;
        padding: 2.5rem 2rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .service-card-detailed {
        padding: 2rem;
    }
    
    .service-icon-large {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-card-detailed h4 {
        font-size: 1.3rem;
    }
    
    .service-card-detailed p {
        font-size: 0.95rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
    
    .navbar-brand {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .brand-text {
        margin-left: 0 !important;
        margin-top: 0.5rem;
    }
    
    .ceo-card {
        padding: 1.5rem;
    }
    
    .ceo-title {
        font-size: 1.8rem;
    }
    
    .ceo-name {
        font-size: 1.3rem;
    }
    
    .ceo-quote {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    .ceo-quote::before {
        font-size: 2.5rem;
        top: -5px;
    }
}

@media (max-width: 575.98px) {
    .clients-slider {
        width: 480px; /* Fixed width to show exactly 3 items (3 * 160px) */
        height: 160px;
    }
    
    .client-item {
        flex: 0 0 160px;
    }
    
    .ceo-image {
        width: 180px;
        height: 230px;
    }
    
    .ceo-title {
        font-size: 1.5rem;
    }
    
    .ceo-name {
        font-size: 1.2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Executive Team Section */
.team-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: #ffd700;
}

.team-image {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.role-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.role-badge.cto {
    background: #007bff;
    color: white;
}

.role-badge.cfo {
    background: #28a745;
    color: white;
}

.role-badge.cmo {
    background: #6f42c1;
    color: white;
}

.role-badge i {
    font-size: 0.7rem;
}

.team-content h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-content h5 {
    color: #ffd700;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Additional background effects for team section */
.effect-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    top: 20%;
    left: 10%;
    animation: float 7s ease-in-out infinite;
}

.effect-4 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #28a745, #20c997);
    top: 60%;
    right: 15%;
    animation: float 9s ease-in-out infinite reverse;
}

.effect-5 {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    bottom: 20%;
    left: 20%;
    animation: float 8s ease-in-out infinite;
}

/* Services Section */
.service-card-detailed {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: #ffd700;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-icon-large.hr {
    background: #ff6b35;
}

.service-icon-large.it {
    background: #28a745;
}

.service-icon-large.real-estate {
    background: #ffd700;
    color: #000;
}

.service-card-detailed:hover .service-icon-large {
    transform: scale(1.1);
}

.service-card-detailed h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card-detailed p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1rem;
}

/* Crystal Effect for All Cards */
.crystal-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.crystal-card:hover {
    border-color: #ffd700;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Clients Section - Redesigned */
#clients {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

#clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.partnership-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
}

.partnership-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.partnership-badge:hover::before {
    left: 100%;
}

.partnership-badge i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.clients-title {
    color: #1a1a1a;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
    position: relative;
}

.highlight-blue {
    background: linear-gradient(135deg, #007bff, #00d4ff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-blue::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d4ff, #ff6b35);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.clients-title:hover .highlight-blue::after {
    transform: scaleX(1);
}

.clients-description {
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    position: relative;
}

.accent-line-gradient {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #00d4ff, #ff6b35, #ffd700);
    border-radius: 3px;
    margin: 0 auto 4rem auto;
    position: relative;
    overflow: hidden;
    transform: scaleX(0);
    animation: expandLine 1.5s ease forwards 0.5s;
}

@keyframes expandLine {
    to { transform: scaleX(1); }
}

.accent-line-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Clients Slider */
.clients-slider-container {
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.clients-slider {
    position: relative;
    overflow: hidden;
    height: 200px;
    width: 600px; /* Fixed width to show exactly 3 items (3 * 200px) */
    margin: 0 auto;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.clients-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.client-item {
    flex: 0 0 200px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.client-logo-container {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.08),
        0 4px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.client-logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.client-logo-container:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.08);
}

.client-logo-container:hover::before {
    opacity: 1;
}

.logo-frame {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.logo-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-logo-container:hover .logo-frame {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.client-logo-container:hover .logo-frame::before {
    opacity: 1;
}

.logo-frame i {
    font-size: 2.5rem;
    color: #007bff;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.client-info {
    position: relative;
    z-index: 2;
}

.client-info h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.client-info span {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

/* Client-specific styling */
.client-item:nth-child(1) .logo-frame {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.client-item:nth-child(1) .logo-frame i {
    color: #1d4ed8;
}

.client-item:nth-child(2) .logo-frame {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}
.client-item:nth-child(2) .logo-frame i {
    color: #15803d;
}

.client-item:nth-child(3) .logo-frame {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
}
.client-item:nth-child(3) .logo-frame i {
    color: #dc2626;
}

.client-item:nth-child(4) .logo-frame {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}
.client-item:nth-child(4) .logo-frame i {
    color: #15803d;
}

.client-item:nth-child(5) .logo-frame {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.client-item:nth-child(5) .logo-frame i {
    color: #d97706;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #64748b;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    color: #007bff;
    transform: translateY(-2px);
}

.trust-item i {
    font-size: 1.2rem;
    color: #007bff;
    transition: all 0.3s ease;
}

.trust-item:hover i {
    transform: scale(1.2);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #004085);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #007bff;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(0, 123, 255, 0.6);
}

 /* Statistics Section */
 #statistics {
     background: white;
     color: #1a1a1a;
 }
 
 .stats-grid {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 3rem;
     margin: 2rem 0;
 }
 
 .stat-card {
     flex: 1;
     max-width: 300px;
     padding: 3rem 2rem;
     border-radius: 24px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     overflow: hidden;
 }
 
 .stat-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
     opacity: 0;
     transition: opacity 0.3s ease;
 }
 
 .stat-card:hover {
     transform: translateY(-15px) scale(1.05);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }
 
 .stat-card:hover::before {
     opacity: 1;
 }
 
 .stat-number {
     font-size: 4rem;
     font-weight: 800;
     color: white;
     margin-bottom: 1rem;
     line-height: 1;
     position: relative;
     z-index: 2;
 }
 
 .stat-label {
     font-size: 1.2rem;
     font-weight: 600;
     color: white;
     position: relative;
     z-index: 2;
 }
 
 .stat-blue {
     background: linear-gradient(135deg, #007bff, #0056b3);
 }
 
 .stat-orange {
     background: linear-gradient(135deg, #ff6b35, #e55a2b);
 }
 
 .stat-green {
     background: linear-gradient(135deg, #28a745, #20c997);
 }
 
 /* Custom scrollbar */
 ::-webkit-scrollbar {
     width: 8px;
 }

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}
