    /* ===== RESET & BASE STYLES ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f8fafc;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #1e293b;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: #64748b;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .highlight {
        color: #3b82f6;
        font-weight: 700;
    }

    /* ===== BUTTONS ===== */
    .btn {
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        border: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Inter', sans-serif;
        text-decoration: none;
    }

    .btn i {
        font-size: 0.9rem;
    }

    .btn-primary {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        color: white;
        box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
    }

    .btn-primary:hover {
        background: linear-gradient(135deg, #2563eb, #1e40af);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
    }

    .btn-secondary {
        background: white;
        color: #3b82f6;
        border: 2px solid #3b82f6;
    }

    .btn-secondary:hover {
        background: #f0f9ff;
        transform: translateY(-2px);
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1.1rem;
    }

    /* ===== NAVBAR FIXED ===== */
    .navbar {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
        padding: 0;
        height: 80px;
        overflow: hidden;
        max-width: 100vw;
    }

    .nav-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        min-height: 80px;
        position: relative;
        z-index: 1000;
        height: 80px;
    }

    /* ===== LOGO FIXED SIZE ===== */
    .logo {
        display: flex;
        align-items: center;
        height: 80px;
        overflow: hidden;
    }

    .logo-link {
        display: flex;
        align-items: center;
        text-decoration: none;
        height: 100%;
    }

    .logo-icon {
        width: 250px !important;
        height: 250px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        flex-shrink: 0;
        margin: 0;
        transform: scale(0.85);
        position: relative;
        top: 5px;
    }

    .logo-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .logo-text {
        display: none;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .nav-links a {
        text-decoration: none;
        color: #475569;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
        font-size: 0.95rem;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #3b82f6;
    }

    .nav-links a.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #3b82f6;
        border-radius: 2px;
    }

    .mobile-menu-btn {
        display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #374151;
    }

    .mobile-menu {
        display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    padding: 1.25rem;
    z-index: 1000;
    border-top: 1px solid #e5e7eb;
    }
    
.mobile-menu.show {
    display: block;
} 
.mobile-menu.active {
        display: block;
    }

    /* ===== DROPDOWN MENU STYLES ===== */
    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-toggle {
        text-decoration: none;
        color: #475569;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
        font-size: 0.95rem;
        background: none;
        border: none;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .dropdown-toggle i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .dropdown:hover .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: white;
        min-width: 240px;
        border-radius: 12px;
        padding: 10px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border: 1px solid #e2e8f0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        margin-top: 10px;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: white;
        border-left: 1px solid #e2e8f0;
        border-top: 1px solid #e2e8f0;
    }

    .dropdown-item {
        display: block;
        padding: 12px 20px;
        color: #475569;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

    .dropdown-item:hover {
        background: #f0f9ff;
        color: #3b82f6;
        border-left-color: #3b82f6;
    }

    .dropdown-item i {
        width: 20px;
        margin-right: 10px;
        color: #3b82f6;
    }

    /* Mobile Dropdown Styles */
    .mobile-dropdown {
        width: 100%;
    }

    .mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem 0;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    }

    .mobile-dropdown-menu {
        display: none;
        padding-left: 30px;
        background: #f8fafc;
    }
    .mobile-dropdown-menu.show {
    display: block;
}

    .mobile-dropdown-menu.active {
        display: block;
    }

    .mobile-dropdown-item {
        display: block;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: #6b7280;
    text-decoration: none;
    }

    .mobile-dropdown-item:hover {
        background: #f1f5f9;
        border-left-color: #3b82f6;
    }

    /* ===== HERO SECTION FIXED ===== */
    .hero {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        padding: 120px 0 60px;
        position: relative;
        overflow: hidden;
        margin-top: 80px;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,0 L100,0 L100,100 Q50,80 0,100 Z" fill="%233b82f6" opacity="0.05"/></svg>') no-repeat;
        background-size: cover;
    }

    .hero-content {
        text-align: center;
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .main-title {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.2;
        color: #1e293b;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        color: #475569;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .trust-badges {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .badge {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        background: white;
        border-radius: 50px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        font-weight: 500;
        color: #475569;
        border: 1px solid #e2e8f0;
        font-size: 0.9rem;
    }

    .badge i {
        color: #3b82f6;
        font-size: 1rem;
    }

    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        animation: bounce 2s infinite;
    }

    .scroll-indicator i {
        font-size: 1.5rem;
        color: #3b82f6;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0) translateX(-50%);
        }
        40% {
            transform: translateY(-10px) translateX(-50%);
        }
        60% {
            transform: translateY(-5px) translateX(-50%);
        }
    }
    

    /* ===== SERVICES SECTION ===== */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .service-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        color: #1e293b;
        margin-bottom: 15px;
    }

    .service-card p {
        color: #64748b;
        margin-bottom: 20px;
        line-height: 1.6;
        flex-grow: 1;
        font-size: 0.95rem;
    }

    .service-features {
        list-style: none;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .service-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
        color: #475569;
        font-size: 0.9rem;
    }

    .service-features li i {
        color: #10b981;
        font-size: 0.9rem;
    }

    .service-link {
        background: none;
        border: none;
        color: #3b82f6;
        font-weight: 600;
        cursor: pointer;
        padding: 0;
        font-size: 0.95rem;
        transition: color 0.3s ease;
        margin-top: auto;
        text-align: left;
    }

    .service-link:hover {
        color: #2563eb;
    }

    /* ===== WORK IN ACTION SECTION ===== */
    .action-carousel {
        margin-top: 30px;
        position: relative;
    }

    .carousel-container {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        background: white;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        max-width: 1000px;
        margin: 0 auto;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.8s ease;
    }

    .action-slide {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    @media (min-width: 768px) {
        .action-slide {
            flex-direction: row;
            align-items: stretch;
        }
    }

    .action-image {
        position: relative;
        flex: 1;
        min-height: 300px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .action-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    @media (min-width: 768px) {
        .action-image {
            min-height: 400px;
        }
    }

    .action-content {
        flex: 1;
        padding: 30px;
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .action-content h3 {
        font-size: 1.6rem;
        color: #1e293b;
        margin-bottom: 15px;
    }

    .action-content p {
        color: #64748b;
        margin-bottom: 20px;
        line-height: 1.6;
        font-size: 1rem;
    }

    .action-features {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }

    .action-features span {
        display: flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        padding: 10px 15px;
        border-radius: 50px;
        font-size: 0.9rem;
        color: #1e40af;
        font-weight: 500;
        border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .carousel-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;
        background: white;
        border-top: 1px solid #e2e8f0;
    }

    .carousel-prev,
    .carousel-next {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: white;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .carousel-prev:hover,
    .carousel-next:hover {
        transform: scale(1.1);
    }

    .carousel-dots {
        display: flex;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        background: #cbd5e1;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .dot.active {
        background: #3b82f6;
    }

    /* ===== PERFORMANCE METRICS SECTION ===== */
    #performance {
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        padding: 60px 0;
    }

    .performance-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .performance-card {
        background: white;
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 220px;
        transition: transform 0.3s ease;
    }

    .performance-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .performance-icon {
        font-size: 2.5rem;
        height: 70px;
        width: 70px;
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .performance-value {
        font-size: 2.2rem;
        font-weight: 700;
        color: #1e293b;
        line-height: 1;
        margin-bottom: 10px;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .performance-label {
        font-size: 1rem;
        color: #475569;
        font-weight: 600;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .performance-description {
        color: #64748b;
        font-size: 0.85rem;
        line-height: 1.6;
        max-width: 180px;
        margin: 0 auto;
    }

    /* ===== CREDENTIALS SECTION ===== */
    /* .credentials-section {
        text-align: center;
        margin-top: 50px;
        padding: 25px;
        background: white;
        border-radius: 15px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .credentials-section h4 {
        font-size: 1.3rem;
        color: #1e293b;
        margin-bottom: 20px;
        font-weight: 600;
        position: relative;
        padding-bottom: 10px;
    }

    .credentials-section h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        border-radius: 2px;
    }

    .credentials-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
        justify-content: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .credential-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        background: #f8fafc;
        border-radius: 50px;
        font-weight: 500;
        color: #475569;
        font-size: 0.9rem;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        justify-content: center;
    }

    .credential-badge:hover {
        background: #f0f9ff;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        border-color: #3b82f6;
    }

    .credential-badge i {
        font-size: 1rem;
        transition: color 0.3s ease;
    } */

    /* ===== SPECIALTIES SECTION ===== */
    .specialties-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .specialty-category {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .category-icon {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .specialty-category h3 {
        font-size: 1.2rem;
        color: #1e293b;
        margin-bottom: 15px;
    }

    .specialty-category ul {
        list-style: none;
        flex-grow: 1;
    }

    .specialty-category li {
        padding: 6px 0;
        color: #475569;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.9rem;
    }

    .specialty-category li:last-child {
        border-bottom: none;
    }

    /* ===== FREE TRIAL POSTER SECTION ===== */
    .trial {
        background: linear-gradient(rgba(59, 130, 246, 0.9), rgba(59, 130, 246, 0.9)), 
                    url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 100px 0;
        color: white;
        text-align: center;
    }

    .trial-poster {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        padding: 60px 40px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }

    .trial-poster::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
        animation: shine 3s infinite linear;
    }

    @keyframes shine {
        0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }

    .poster-content {
        position: relative;
        z-index: 1;
    }

    .poster-title {
        font-size: 2.1rem;
        color: #1e293b;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
        line-height: 1.3;
    }

    .poster-subtitle {
        font-size: 1.3rem;
        color: #64748b;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .poster-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    .feature {
        background: white;
        padding: 30px 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
        border: 2px solid rgba(59, 130, 246, 0.2);
        transition: transform 0.3s ease;
    }

    .feature:hover {
        transform: translateY(-10px);
        border-color: #3b82f6;
    }

    .feature i {
        font-size: 3rem;
        color: #3b82f6;
        margin-bottom: 15px;
    }

    .feature h4 {
        font-size: 1.3rem;
        color: #1e293b;
        margin-bottom: 10px;
    }

    .feature p {
        color: #64748b;
        font-size: 0.95rem;
    }

    .poster-cta {
        text-align: center;
    }

    .poster-cta .btn-primary {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        padding: 18px 40px;
        font-size: 1.2rem;
        font-weight: 700;
        border-radius: 50px;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    }

    .poster-cta .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
    }

    .risk-free {
        color: #64748b;
        margin-top: 20px;
        font-size: 1.1rem;
    }

    .risk-free i {
        color: #10b981;
        margin-right: 10px;
    }

    /* ===== PARTNERS AUTO-SCROLLING SLIDER ===== */
    .partners-slider-container {
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    /* .partners {
        padding: 60px 0;
        background: #f7f9fc;
        overflow: hidden;
    } */
    /* .partner {
        flex: 0 0 auto;
        width: 180px;
        margin: 0 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    } */
    /* .partner img {
        width: 100%;
        max-width: 140px;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: 0.3s ease;
    } */
    /* .partner img:hover {
        filter: grayscale(0%);
        opacity: 1;
    } */

    /* .partners-slider-track {
        display: flex;
        width: max-content;
        animation: scrollPartners 25s linear infinite;
        gap: 80px;
    } */

    .partners-slider-track:hover {
        animation-play-state: paused;
    }

    .partner-slide-item {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 200px;
        transition: transform 0.3s ease;
    }

    .partner-logo-circle {
        width: 300px;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 25px;
        transition: all 0.3s ease;
    }

    .partner-logo-img {
        width: 100%;
        height: 100%;
        filter: grayscale(0%) !important;
        opacity: 1 !important;
        transition: transform 0.3s ease;
        overflow: hidden;
    }

    .partner-slide-item:hover .partner-logo-img {
        filter: grayscale(0%) !important;
        opacity: 1 !important;
        transform: scale(1.2);
        overflow: hidden;
    }

    .partner-slide-item:hover .partner-logo-circle {
        transform: scale(1.05);
        border-color: #3b82f6;
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    }
    .partner-slide-item:hover .partner-name {
    background: #f8fafc !important;
    color: #475569 !important;
    border-color: #e2e8f0 !important;
}

    .partner-name {
        font-size: 1.1rem;
        font-weight: 600;
        color: #475569;
        margin-top: 15px;
        padding: 8px 20px;
        background: #f8fafc;
        border-radius: 20px;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }

    @keyframes scrollPartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    .partners-note {
        text-align: center;
        margin-top: 30px;
        color: #64748b;
        font-size: 1rem;
    }

    /* ===== CONTACT CTA SECTION ===== */
    .contact-cta {
        text-align: center;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .contact-info-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .info-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 180px;
    }

    .info-card i {
        margin-bottom: 15px;
    }

    .info-card h4 {
        font-size: 1.1rem;
        color: #1e293b;
        margin-bottom: 8px;
    }

    .info-card p {
        color: #64748b;
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .contact-email {
        color: #3b82f6 !important;
        font-weight: 500;
    }

    .contact-time {
        color: #f59e0b !important;
        font-weight: 500;
    }

    /* ===== FOOTER ===== */
    .footer {
        background: #1e293b;
        color: white;
        padding: 50px 0 15px;
        margin-top: 0;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
    }

    .footer-logo-text h3 {
        font-size: 1.8rem;
        font-weight: 800;
        color: white;
        margin-bottom: 5px;
        line-height: 1;
    }

    .logo-subtitle {
        color: #94a3b8;
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .footer-description {
        color: #94a3b8;
        line-height: 1.6;
        margin-bottom: 20px;
        font-size: 0.85rem;
    }

    .footer-social {
        display: flex;
        gap: 10px;
        margin-top: 20px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-icon:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 8px;
        color: white;
    }

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: #3b82f6;
    }

    .footer-col a {
        color: #cbd5e1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.85rem;
    }

    .footer-col a:hover {
        color: #3b82f6;
    }

    .footer-link {
        background: none;
        border: none;
        color: #cbd5e1;
        text-align: left;
        padding: 0;
        font-size: 0.85rem;
        cursor: pointer;
        transition: color 0.3s ease;
        text-decoration: none;
        font-family: 'Inter', sans-serif;
    }

    .footer-link:hover {
        color: #3b82f6;
    }

    .footer-contact h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 8px;
        color: white;
    }

    .footer-contact h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: #3b82f6;
    }

    .contact-emails p {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        color: #cbd5e1;
        font-size: 0.85rem;
    }

    .contact-emails i {
        color: #3b82f6;
        font-size: 0.9rem;
    }

    .footer-newsletter {
        margin-top: 15px;
    }

    .footer-newsletter p {
        color: #94a3b8;
        margin-bottom: 10px;
        font-size: 0.8rem;
    }

    .newsletter-form input {
        flex: 1;
        padding: 8px 12px;
        border: 1px solid #334155;
        background: #0f172a;
        border-radius: 6px;
        color: white;
        font-family: 'Inter', sans-serif;
        font-size: 0.8rem;
    }

    .newsletter-form input::placeholder {
        color: #64748b;
    }

    .newsletter-form button {
        background: #3b82f6;
        color: white;
        border: none;
        width: 35px;
        border-radius: 6px;
        cursor: pointer;
    }

    .contact-info {
        margin-top: 15px;
    }

    .contact-info p {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #cbd5e1;
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .contact-info i {
        color: #3b82f6;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-copyright {
        margin-bottom: 15px;
    }

    .footer-copyright p {
        color: #94a3b8;
        font-size: 0.75rem;
        margin-bottom: 5px;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .footer-legal a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.75rem;
        transition: color 0.3s ease;
    }

    .footer-legal a:hover {
        color: #3b82f6;
    }

    /* ===== FORM POPUP STYLES - NO SCROLLING ===== */
    .popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        padding: 20px;
    }
.popup-overlay.active{
    display: flex;
}
    .popup-container {
        background: white;
        border-radius: 20px;
        width: 100%;
        max-width: 450px;
        animation: popupFadeIn 0.3s ease;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        overflow: hidden;
        max-height: 550px !important;
        overflow-y: hidden !important;
    }

    @keyframes popupFadeIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .popup-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid #e2e8f0;
        background: linear-gradient(135deg, #f8fafc, #f1f5f9);
        position: relative;
        z-index: 1;
        min-height: 60px;
    }

    .popup-header h3 {
        font-size: 1.2rem;
        color: #1e293b;
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
        font-family: 'Inter', sans-serif;
    }

    .popup-header h3 i {
        color: #3b82f6;
    }

    .popup-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #64748b;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        font-family: 'Inter', sans-serif;
    }

    .popup-close:hover {
        /*color: #1e293b;*/
        /*background: #f1f5f9;*/
    }

    .popup-content {
        height: 100%;
        width: 100%;
        padding-right: 12px;
        padding-left: 12px;
        padding-bottom: 20px;
        overflow: hidden !important;
    }

    .popup-subtitle {
        color: #64748b;
        margin-bottom: 15px;
        font-size: 0.85rem;
        line-height: 1.5;
        text-align: center;
        font-family: 'Inter', sans-serif;
    }

    .universal-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        overflow: visible !important;
        max-height: none !important;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .form-row-3 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .form-group input,
    .form-group select {
        padding: 8px 10px !important;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        background: white;
        width: 100%;
        transition: border 0.3s ease;
        height: 50px !important;
        margin: 0;
    }

    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
    }

    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 8px center;
        background-size: 16px;
        padding-right: 35px;
    }

    .form-error {
        color: #ef4444;
        font-size: 0.7rem;
        margin-top: 2px;
        min-height: 16px;
        font-family: 'Inter', sans-serif;
    }

    .form-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin: 5px 0;
        padding: 8px;
        background: #f8fafc;
        border-radius: 6px;
        border: 1px solid #e2e8f0;
    }

    .form-checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: #3b82f6;
        margin-top: 2px;
    }

    .form-checkbox label {
        font-size: 0.8rem;
        color: #475569;
        line-height: 1.4;
        font-family: 'Inter', sans-serif;
    }

    .popup-content .btn-primary {
        width: 100%;
        padding: 10px;
        font-size: 0.95rem;
        font-weight: 600;
        margin-top: 10px;
        font-family: 'Inter', sans-serif;
        height: 42px;
    }

    .popup-success {
        display: none;
        text-align: center;
        padding: 20px;
    }

    .success-icon {
        font-size: 2.5rem;
        color: #10b981;
        margin-bottom: 15px;
    }

    .popup-success h4 {
        font-size: 1.2rem;
        color: #1e293b;
        margin-bottom: 10px;
        font-family: 'Inter', sans-serif;
    }

    .popup-success p {
        color: #64748b;
        line-height: 1.6;
        font-size: 0.85rem;
        font-family: 'Inter', sans-serif;
    }

    /* ===== CHATBOT STYLES ===== */
    .chatbot-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1001;
        font-family: 'Inter', sans-serif;
    }
    /* Chatbot Widget Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

/* Chat Window - Initially Hidden */
.chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    display: none !important;  /* Initially hidden */
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    border: 1px solid #e2e8f0;
}

/* When active - Show Chat Window */
.chat-window.active {
    display: flex !important;
}

/* Chat Window Closing Animation */
.chat-window.closing {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100px);
        opacity: 0;
        display: none;
    }
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-header h3 i {
    margin-right: 8px;
}

.chat-header-buttons {
    display: flex;
    gap: 10px;
}

.header-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.header-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8fafc;
}

/* Message Bubbles */
.message {
    margin-bottom: 15px;
    display: flex;
}

.message.user {
    justify-content: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
}

.message.bot .message-content {
    background: white;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    border-bottom-left-radius: 4px;
}

.message.user .message-content {
    background: #3b82f6;
    color: white;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 0.7rem;
    margin-top: 5px;
    opacity: 0.7;
}

.message.user .message-time {
    text-align: right;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 10px 14px;
    background: white;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    width: 60px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
    background: white;
}

.quick-action-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    color: #3b82f6;
    transition: all 0.2s;
}

.quick-action-btn:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* Chat Input Area */
.chat-input-area {
    display: flex;
    padding: 12px;
    border-top: 1px solid #e2e8f0;
    background: white;
    gap: 8px;
}

.chat-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.chat-input:focus {
    border-color: #3b82f6;
}

.send-btn {
    background: #3b82f6;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.send-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
}

/* Chatbot Toggle Button */
.chatbot-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(59,130,246,0.4);
    z-index: 9998;
    transition: all 0.3s;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59,130,246,0.5);
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

    .chatbot-button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: white;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        position: relative;
    }

    .chatbot-button:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .chatbot-button i {
        font-size: 24px;
    }

    .notification-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background: #ef4444;
        color: white;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .chat-window {
        position: absolute;
        bottom: 40px;
        right: 0;
        width: 380px;
        height: 500px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        display: none;
        flex-direction: column;
        overflow: hidden;
    }

    .chat-window.active {
        display: flex;
    }

    .chat-header {
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: white;
        padding: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .chat-header h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }

    .chat-header-buttons {
        display: flex;
        gap: 8px;
    }

    .header-btn {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s;
    }

    .header-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .chat-messages {
        flex: 1;
        padding: 16px;
        overflow-y: auto;
        background: #f8fafc;
    }

    .message {
        margin-bottom: 12px;
        display: flex;
    }

    .message.bot {
        justify-content: flex-start;
    }

    .message.user {
        justify-content: flex-end;
    }

    .message-content {
        max-width: 80%;
        padding: 10px 14px;
        border-radius: 18px;
        font-size: 14px;
        line-height: 1.4;
    }

    .bot .message-content {
        background: white;
        color: #1e293b;
        border: 1px solid #e2e8f0;
        border-bottom-left-radius: 4px;
    }

    .user .message-content {
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: white;
        border-bottom-right-radius: 4px;
    }

    .message-time {
        font-size: 11px;
        color: #94a3b8;
        margin-top: 4px;
        text-align: right;
    }

    .quick-actions {
        padding: 12px 16px;
        border-top: 1px solid #e2e8f0;
        background: white;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .quick-action-btn {
        padding: 6px 12px;
        background: #f1f5f9;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        font-size: 12px;
        color: #475569;
        cursor: pointer;
        transition: all 0.2s;
    }

    .quick-action-btn:hover {
        background: #e2e8f0;
    }

    .chat-input-area {
        padding: 16px;
        border-top: 1px solid #e2e8f0;
        background: white;
        display: flex;
        gap: 8px;
    }

    .chat-input {
        flex: 1;
        padding: 10px 14px;
        border: 1px solid #e2e8f0;
        border-radius: 24px;
        font-size: 14px;
        outline: none;
        transition: border 0.3s;
    }

    .chat-input:focus {
        border-color: #3b82f6;
    }

    .send-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        border: none;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .send-btn:hover {
        transform: scale(1.05);
    }

    .chat-form-container {
        padding: 20px;
        background: white;
        max-height: 400px;
        overflow-y: auto;
    }

    .chat-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .chat-form input,
    .chat-form select,
    .chat-form textarea {
        padding: 10px 12px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 14px;
        font-family: 'Inter', sans-serif;
    }

    .chat-form input:focus,
    .chat-form select:focus,
    .chat-form textarea:focus {
        outline: none;
        border-color: #3b82f6;
    }

    .form-buttons {
        display: flex;
        gap: 8px;
        margin-top: 10px;
    }

    .typing-indicator {
        display: inline-flex;
        gap: 4px;
        padding: 10px 14px;
        background: white;
        border-radius: 18px;
        border: 1px solid #e2e8f0;
    }

    .typing-dot {
        width: 6px;
        height: 6px;
        background: #94a3b8;
        border-radius: 50%;
        animation: typing 1.4s infinite;
    }

    .typing-dot:nth-child(1) { animation-delay: 0s; }
    .typing-dot:nth-child(2) { animation-delay: 0.2s; }
    .typing-dot:nth-child(3) { animation-delay: 0.4s; }

    @keyframes typing {
        0%, 60%, 100% { transform: translateY(0); }
        30% { transform: translateY(-6px); }
    }

    .chatbot-quick-links {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 10px;
    }

    .chatbot-link-btn {
        background: #f0f9ff;
        border: 1px solid #e0f2fe;
        color: #0369a1;
        padding: 4px 8px;
        border-radius: 12px;
        font-size: 11px;
        cursor: pointer;
        transition: all 0.2s;
    }

    .chatbot-link-btn:hover {
        background: #e0f2fe;
        transform: translateY(-1px);
    }

    /* ===== SERVICE DETAIL PAGE STYLES ===== */
    .service-detail {
        padding: 60px 0;
        background: #f8fafc;
        min-height: calc(100vh - 80px);
    }

    .service-detail-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .service-detail-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .service-detail-header h1 {
        font-size: 2.5rem;
        color: #1e293b;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .service-detail-content {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid #e2e8f0;
    }

    .service-detail-content h2 {
        color: #1e293b;
        font-size: 1.8rem;
        margin: 30px 0 20px;
    }

    .service-detail-content h2:first-of-type {
        margin-top: 0;
    }

    .service-detail-content h3 {
        color: #1e293b;
        font-size: 1.3rem;
        margin: 25px 0 15px;
    }

    .service-detail-content p {
        color: #475569;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .service-detail-content ul,
    .service-detail-content ol {
        margin: 20px 0;
        padding-left: 30px;
    }

    .service-detail-content li {
        color: #475569;
        margin-bottom: 10px;
        line-height: 1.6;
    }

    .service-detail-content .highlight-box {
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        border-radius: 12px;
        padding: 25px;
        margin: 30px 0;
        border-left: 4px solid #3b82f6;
    }

    .service-detail-content .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }

    .service-detail-content .stat-card {
        background: white;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
    }

    .service-detail-content .stat-value {
        font-size: 2rem;
        font-weight: 700;
        color: #3b82f6;
        margin-bottom: 5px;
    }

    .service-detail-content .stat-label {
        color: #64748b;
        font-size: 0.9rem;
    }

    .service-cta {
        text-align: center;
        margin-top: 40px;
        padding: 40px;
        background: linear-gradient(135deg, #f8fafc, #f1f5f9);
        border-radius: 12px;
    }

    /* ===== BLOG DETAIL PAGE STYLES ===== */
    .blog-detail {
        padding: 60px 0;
        background: #f8fafc;
    }

    .blog-detail-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .blog-article {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid #e2e8f0;
    }

    .blog-article h1 {
        font-size: 2.5rem;
        color: #1e293b;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .blog-article-meta {
        display: flex;
        align-items: center;
        gap: 20px;
        color: #64748b;
        font-size: 0.9rem;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e2e8f0;
    }

    .blog-article-image {
        width: 100%;
        height: 400px;
        border-radius: 12px;
        overflow: hidden;
        margin: 30px 0;
    }

    .blog-article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog-article-content {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #334155;
    }

    .blog-article-content h2 {
        color: #1e293b;
        margin: 40px 0 20px;
        font-size: 1.8rem;
    }

    .blog-article-content h3 {
        color: #1e293b;
        margin: 30px 0 15px;
        font-size: 1.4rem;
    }

    .blog-article-content p {
        margin-bottom: 20px;
    }

    .blog-article-content ul,
    .blog-article-content ol {
        margin: 20px 0;
        padding-left: 30px;
    }

    .blog-article-content li {
        margin-bottom: 10px;
    }

    .blog-article-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 40px 0 20px;
        padding-top: 30px;
        border-top: 1px solid #e2e8f0;
    }

    .blog-article-tag {
        background: #f0f9ff;
        color: #3b82f6;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .blog-share {
        display: flex;
        align-items: center;
        gap: 15px;
        margin: 30px 0;
        padding: 20px 0;
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .share-btn:hover {
        transform: translateY(-3px);
    }

    .blog-related {
        margin-top: 50px;
    }

    .related-title {
        font-size: 1.5rem;
        color: #1e293b;
        margin-bottom: 30px;
        text-align: center;
    }

    .related-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    /* ===== SITEMAP PAGE STYLES ===== */
    .sitemap-page {
        padding: 60px 0;
        background: #f8fafc;
        min-height: calc(100vh - 80px);
        margin-top: 80px;
    }

    .sitemap-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .sitemap-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .sitemap-header h1 {
        font-size: 2.5rem;
        color: #1e293b;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .sitemap-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .sitemap-section {
        background: white;
        border-radius: 16px;
        padding: 25px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        transition: transform 0.3s ease;
    }

    .sitemap-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .sitemap-section h2 {
        color: #1e293b;
        font-size: 1.3rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #3b82f6;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sitemap-section h2 i {
        color: #3b82f6;
    }

    .sitemap-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sitemap-section li {
        margin-bottom: 12px;
    }

    .sitemap-section a {
        color: #475569;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 8px;
    }

    .sitemap-section a:hover {
        color: #3b82f6;
        background: #f0f9ff;
        transform: translateX(5px);
    }

    .sitemap-section a i {
        width: 20px;
        color: #3b82f6;
        font-size: 0.9rem;
    }

    .sitemap-note {
        text-align: center;
        margin-top: 50px;
        padding: 20px;
        background: white;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
    }

    .sitemap-note p {
        color: #64748b;
        margin-bottom: 15px;
    }

    .xml-sitemap-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #3b82f6;
        text-decoration: none;
        font-weight: 600;
        padding: 10px 20px;
        border: 2px solid #3b82f6;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .xml-sitemap-link:hover {
        background: #3b82f6;
        color: white;
    }

    /* ===== RESPONSIVE STYLES ===== */
    @media (max-width: 1200px) {
        .container {
            max-width: 960px;
        }
        
        .main-title {
            font-size: 2.5rem;
        }
        
        .performance-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .form-row-3 {
            grid-template-columns: 1fr 1fr;
        }
        
        .chat-window {
            width: 350px;
            height: 450px;
        }
    }

    @media (max-width: 992px) {
        .container {
            max-width: 720px;
        }
        
        .main-title {
            font-size: 2.2rem;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
        
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .specialties-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .partner-logo-circle {
            width: 140px;
            height: 140px;
            padding: 20px;
        }
        
        .form-row-3 {
            grid-template-columns: 1fr;
        }
        
        .popup-container {
            max-width: 400px;
        }
    }

    @media (max-width: 768px) {
        .container {
            max-width: 540px;
        }
    .nav-links {
            display: block;
        }
        
        .logo-icon {
            width: 220px !important;
            height: 120px !important;
            margin: 0;
            transform: scale(0.75);
            top: 0;
        }
        
        .navbar {
            height: 70px;
        }
        
        .nav-content {
            min-height: 70px;
            height: 70px;
        }
        
        .logo {
            height: 100px;
        }
        
        .main-title {
            font-size: 2rem;
        }
        
        .hero {
            padding: 100px 0 50px;
            margin-top: 70px;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .section {
            padding: 50px 0;
        }
        
        .section-header h2 {
            font-size: 1.8rem;
        }
        
        .poster-title {
            font-size: 1.5rem;
        }
        
        .poster-subtitle {
            font-size: 1.1rem;
        }
        
        .poster-features {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .btn {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
        
        .carousel-controls {
            padding: 15px 20px;
        }
        
        .performance-value {
            font-size: 2rem;
        }
        
        .form-row {
            grid-template-columns: 1fr;
        }
        
        .partner-slide-item {
            min-width: 150px;
            margin: 0 20px;
        }
        
        .partner-logo-circle {
            width: 120px;
            height: 120px;
            padding: 15px;
        }
        
        .partner-name {
            font-size: 0.9rem;
        }
        
        .credentials-list {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .credential-badge {
            padding: 8px 12px;
            font-size: 0.85rem;
        }
        
        .footer {
            padding: 40px 0 15px;
        }
        
        .footer-content {
            gap: 25px;
        }
        
        .popup-container {
            max-width: 350px;
            max-height: 500px !important;
        }
        
        .popup-content {
            padding: 15px;
            max-height: 400px;
        }
        
        .chat-window {
            width: calc(100vw - 40px);
            height: 400px;
            right: 20px;
            left: 20px;
        }
        
        .chatbot-button {
            width: 50px;
            height: 50px;
        }
        
        .chatbot-button i {
            font-size: 20px;
        }
        
        .dropdown-menu {
            position: static;
            transform: none;
            box-shadow: none;
            border: none;
            opacity: 1;
            visibility: visible;
            display: none;
            padding: 0 0 0 20px;
            margin: 0;
            min-width: 100%;
        }
        
        .dropdown:hover .dropdown-menu {
            transform: none;
        }
        
        .dropdown-menu::before {
            display: none;
        }
        
        .service-detail-header h1 {
            font-size: 2rem;
        }
        
        .service-detail-content {
            padding: 25px;
        }
        
        .blog-article {
            padding: 25px;
        }
        
        .blog-article h1 {
            font-size: 2rem;
        }
        
        .blog-article-image {
            height: 250px;
        }
        
        .sitemap-header h1 {
            font-size: 2rem;
        }
    }

    @media (max-width: 576px) {
        .container {
            padding: 0 15px;
        }
        
        .main-title {
            font-size: 1.8rem;
        }
        
        .section-header h2 {
            font-size: 1.6rem;
        }
        
        .section-subtitle {
            font-size: 1rem;
        }
        
        .poster-title {
            font-size: 1.35rem;
        }
        
        .performance-value {
            font-size: 1.8rem;
        }
        
        .trust-badges {
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
        
        .badge {
            width: 100%;
            max-width: 250px;
            justify-content: center;
        }
        
        .carousel-controls {
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .footer-content {
            grid-template-columns: 1fr;
        }
        
        .footer-legal {
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }
        
        .newsletter-form {
            flex-direction: column;
        }
        
        .newsletter-form button {
            width: 100%;
            padding: 8px;
        }
        
        .logo-icon {
            width: 100% !important;
            height: 100% !important;
            transform: scale(0.65);
        }
        
        .navbar {
            height: 65px;
        }
        
        .nav-content {
            height: 65px;
            min-height: 65px;
        }
        
        .logo {
            height: 65px;
        }
        
        .hero {
            padding: 90px 0 40px;
            margin-top: 65px;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .specialties-grid {
            grid-template-columns: 1fr;
        }
        
        .performance-grid {
            grid-template-columns: 1fr;
        }
        
        .popup-container {
            margin: 10px;
            width: calc(100% - 20px);
            max-height: 450px !important;
        }
        
        .popup-content {
            padding: 15px;
            max-height: 350px;
        }
        
        .credentials-list {
            grid-template-columns: 1fr;
        }
        
        .credential-badge {
            width: 100%;
        }
        
        .footer {
            padding: 30px 0 15px;
        }
        
        .partner-slide-item {
            min-width: 120px;
            margin: 0 15px;
        }
        
        .partner-logo-circle {
            width: 100px;
            height: 100px;
            padding: 15px;
        }
        
        .chat-window {
            width: calc(100vw - 30px);
            height: 350px;
            right: 15px;
            left: 15px;
        }
        
        .chat-header {
            padding: 12px;
        }
        
        .chat-messages {
            padding: 12px;
        }
        
        .chat-input-area {
            padding: 12px;
        }
        
        .quick-actions {
            padding: 10px 12px;
        }
        
        .quick-action-btn {
            padding: 5px 10px;
            font-size: 11px;
        }
        
        .chatbot-button {
            width: 45px;
            height: 45px;
            bottom: 15px;
            right: 15px;
        }
    }

    @media (max-width: 480px) {
        .hero {
            padding: 80px 0 30px;
            margin-top: 65px;
        }
        
        .section {
            padding: 40px 0;
        }
        
        .partner-logo-circle {
            width: 200px;
            height: 110px;
            padding: 12px;
        }

        
        .form-row-3 {
            gap: 8px;
        }
        
        .popup-header {
            padding: 12px 15px;
            min-height: 100%;
        }
        
        .popup-content {
            padding: 12px;
        }
        
        .footer {
            padding: 25px 0 15px;
        }
        
        .logo-icon {
            width: 20vw !important;
            height: 10vh !important;
            transform: scale(0.6);
        }
    }

    input:invalid, select:invalid {
        border-color: #fca5a5;
    }

    input:valid, select:valid {
        border-color: #86efac;
    }

    .popup-container {
        display: flex;
        flex-direction: column;
         max-height: 95vh;
        border-radius: 28px;
    }

    .popup-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .universal-form {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .popup-content .btn-primary {
        margin-top: auto;
    }

    .navbar .container {
        overflow: hidden;
    }

    /* Drop down */
    /* DROPDOWN STYLES */
    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown > .nav-link {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .dropdown > .nav-link::after {
        content: '▾';
        display: inline-block;
        margin-left: 4px;
        transition: transform 0.3s ease;
    }

    .dropdown:hover > .nav-link::after {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%);
        min-width: 220px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9999;
        border: 1px solid #e2e8f0;
        padding: 8px 0;
        list-style: none;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }

    .dropdown-menu a {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        color: #475569;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.2s ease;
        white-space: nowrap;
        border-left: 3px solid transparent;
    }

    .dropdown-menu a:hover {
        background: #f0f9ff;
        color: #3b82f6;
        border-left-color: #3b82f6;
    }

    /* .dropdown-menu a[href="authorization.html"]::before {
        content: '🔑';
        margin-right: 10px;
        font-size: 1rem;
    }

    .dropdown-menu a[href="claims-management.html"]::before {
        content: '📋';
        margin-right: 10px;
        font-size: 1rem;
    }

    .dropdown-menu a[href="ar-followup.html"]::before {
        content: '💰';
        margin-right: 10px;
        font-size: 1rem;
    } */

    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: white;
        border-left: 1px solid #e2e8f0;
        border-top: 1px solid #e2e8f0;
        z-index: -1;
    }

    @media (min-width: 769px) {
        .dropdown {
            padding-bottom: 15px;
            margin-bottom: -15px;
        }
    }



    .mobile-menu .nav-link {
        display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    }

    .mobile-menu .btn {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    }

    .mobile-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* New style added here */
    /* ===== RESET & BASE STYLES ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f8fafc;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #1e293b;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: #64748b;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .highlight {
        color: #3b82f6;
        font-weight: 700;
    }

    /* ===== BUTTONS ===== */
    .btn {
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        border: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Inter', sans-serif;
        text-decoration: none;
    }

    .btn i {
        font-size: 0.9rem;
    }

    .btn-primary {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        color: white;
        box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
    }

    .btn-primary:hover {
        background: linear-gradient(135deg, #2563eb, #1e40af);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
    }

    .btn-secondary {
        background: white;
        color: #3b82f6;
        border: 2px solid #3b82f6;
    }

    .btn-secondary:hover {
        background: #f0f9ff;
        transform: translateY(-2px);
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1.1rem;
    }

    /* ===== NAVBAR ===== */
    .navbar {
        background: #ffffff;
        height: 80px;
        display: flex;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow: visible;
    }

    .navbar .container {
        overflow: visible;
        position: relative;
        height: 100%;
    }

    .nav-content {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: visible;
        height: 80px;
    }

    .logo {
        display: flex;
        align-items: center;
        height: 80px;
    }

    .logo-link {
        display: flex;
        align-items: center;
        text-decoration: none;
        height: 100%;
    }

    .logo-icon {
        width: 250px !important;
        height: 250px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        flex-shrink: 0;
        margin: 0;
        transform: scale(0.85);
        position: relative;
        top: 5px;
    }

    .logo-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 25px;
        list-style: none;
    }

    .nav-links a {
        text-decoration: none;
        color: #475569;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
        font-size: 0.95rem;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #3b82f6;
    }

    .nav-links a.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #3b82f6;
        border-radius: 2px;
    }

    /* DROPDOWN STYLES */
    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown > .nav-link {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .dropdown > .nav-link::after {
        content: '▾';
        display: inline-block;
        margin-left: 4px;
        transition: transform 0.3s ease;
    }

    .dropdown:hover > .nav-link::after {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%);
        min-width: 220px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9999;
        border: 1px solid #e2e8f0;
        padding: 8px 0;
        list-style: none;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }

    .dropdown-menu a {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        color: #475569;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.2s ease;
        white-space: nowrap;
        border-left: 3px solid transparent;
    }

    .dropdown-menu a:hover {
        background: #f0f9ff;
        color: #3b82f6;
        border-left-color: #3b82f6;
    }

    /* .dropdown-menu a[href="authorization.html"]::before {
        content: '🔑';
        margin-right: 10px;
        font-size: 1rem;
    }

    .dropdown-menu a[href="claims-management.html"]::before {
        content: '📋';
        margin-right: 10px;
        font-size: 1rem;
    }

    .dropdown-menu a[href="ar-followup.html"]::before {
        content: '💰';
        margin-right: 10px;
        font-size: 1rem;
    } */

    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: white;
        border-left: 1px solid #e2e8f0;
        border-top: 1px solid #e2e8f0;
        z-index: -1;
    }

    @media (min-width: 769px) {
        .dropdown {
            padding-bottom: 15px;
            margin-bottom: -15px;
        }
    }


    .mobile-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ===== BREADCRUMB NAVIGATION ===== */
    .breadcrumb-nav {
        background: #f8fafc;
        padding: 15px 0;
        margin-top: 80px;
        border-bottom: 1px solid #e2e8f0;
    }

    .breadcrumb-list {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 0.9rem;
    }

    .breadcrumb-item {
        display: flex;
        align-items: center;
    }

    .breadcrumb-item:not(:last-child)::after {
        content: '/';
        margin: 0 10px;
        color: #94a3b8;
    }

    .breadcrumb-item a {
        color: #3b82f6;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .breadcrumb-item a:hover {
        color: #1d4ed8;
        text-decoration: underline;
    }

    .breadcrumb-item.active {
        color: #64748b;
        font-weight: 500;
    }

    /* ===== HERO SECTION ===== */
    .hero {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        padding: 120px 0 60px;
        position: relative;
        overflow: hidden;
        margin-top: 80px;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,0 L100,0 L100,100 Q50,80 0,100 Z" fill="%233b82f6" opacity="0.05"/></svg>') no-repeat;
        background-size: cover;
    }

    .hero-content {
        text-align: center;
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .main-title {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.2;
        color: #1e293b;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        color: #475569;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .trust-badges {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .badge {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        background: white;
        border-radius: 50px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        font-weight: 500;
        color: #475569;
        border: 1px solid #e2e8f0;
        font-size: 0.9rem;
    }

    .badge i {
        color: #3b82f6;
        font-size: 1rem;
    }

    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        animation: bounce 2s infinite;
    }

    .scroll-indicator i {
        font-size: 1.5rem;
        color: #3b82f6;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0) translateX(-50%);
        }
        40% {
            transform: translateY(-10px) translateX(-50%);
        }
        60% {
            transform: translateY(-5px) translateX(-50%);
        }
    }

    /* ===== SERVICES SECTION ===== */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .service-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        color: #1e293b;
        margin-bottom: 15px;
    }

    .service-card p {
        color: #64748b;
        margin-bottom: 20px;
        line-height: 1.6;
        flex-grow: 1;
        font-size: 0.95rem;
    }

    .service-features {
        list-style: none;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .service-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
        color: #475569;
        font-size: 0.9rem;
    }

    .service-features li i {
        color: #10b981;
        font-size: 0.9rem;
    }

    .service-link {
        color: #3b82f6;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: color 0.3s ease;
        margin-top: auto;
    }

    .service-link:hover {
        color: #2563eb;
        gap: 8px;
    }

    .service-title-link {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .service-title-link:hover {
        color: #3b82f6;
    }

    /* ===== WORK IN ACTION SECTION ===== */
    .action-carousel {
        margin-top: 30px;
        position: relative;
    }

    .carousel-container {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        background: white;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        max-width: 1000px;
        margin: 0 auto;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.8s ease;
    }

    .action-slide {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    @media (min-width: 768px) {
        .action-slide {
            flex-direction: row;
            align-items: stretch;
        }
    }

    .action-image {
        position: relative;
        flex: 1;
        min-height: 300px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .action-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    @media (min-width: 768px) {
        .action-image {
            min-height: 400px;
        }
    }

    .action-content {
        flex: 1;
        padding: 30px;
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .action-content h3 {
        font-size: 1.6rem;
        color: #1e293b;
        margin-bottom: 15px;
    }

    .action-content p {
        color: #64748b;
        margin-bottom: 20px;
        line-height: 1.6;
        font-size: 1rem;
    }

    .action-features {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }

    .action-features span {
        display: flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        padding: 10px 15px;
        border-radius: 50px;
        font-size: 0.9rem;
        color: #1e40af;
        font-weight: 500;
        border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .carousel-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;
        background: white;
        border-top: 1px solid #e2e8f0;
    }

    .carousel-prev,
    .carousel-next {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: white;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .carousel-prev:hover,
    .carousel-next:hover {
        transform: scale(1.1);
    }

    .carousel-dots {
        display: flex;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        background: #cbd5e1;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .dot.active {
        background: #3b82f6;
    }

    /* ===== PERFORMANCE METRICS SECTION ===== */
    #performance {
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        padding: 60px 0;
    }

    .performance-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .performance-card {
        background: white;
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 220px;
        transition: transform 0.3s ease;
    }

    .performance-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .performance-icon {
        font-size: 2.5rem;
        height: 70px;
        width: 70px;
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .performance-value {
        font-size: 2.2rem;
        font-weight: 700;
        color: #1e293b;
        line-height: 1;
        margin-bottom: 10px;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .performance-label {
        font-size: 1rem;
        color: #475569;
        font-weight: 600;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .performance-description {
        color: #64748b;
        font-size: 0.85rem;
        line-height: 1.6;
        max-width: 180px;
        margin: 0 auto;
    }

    /* ===== CREDENTIALS SECTION ===== */
    .credentials-section {
        text-align: center;
        margin-top: 50px;
        padding: 25px;
        background: white;
        border-radius: 15px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .credentials-section h4 {
        font-size: 1.3rem;
        color: #1e293b;
        margin-bottom: 20px;
        font-weight: 600;
        position: relative;
        padding-bottom: 10px;
    }

    .credentials-section h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        border-radius: 2px;
    }

    .credentials-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
        justify-content: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .credential-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        background: #f8fafc;
        border-radius: 50px;
        font-weight: 500;
        color: #475569;
        font-size: 0.9rem;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        justify-content: center;
    }

    .credential-badge:hover {
        background: #f0f9ff;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        border-color: #3b82f6;
    }

    .credential-badge i {
        font-size: 1rem;
        transition: color 0.3s ease;
    }

    /* ===== SPECIALTIES SECTION ===== */
    .specialties-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .specialty-category {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .category-icon {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .specialty-category h3 {
        font-size: 1.2rem;
        color: #1e293b;
        margin-bottom: 15px;
    }

    .specialty-category ul {
        list-style: none;
        flex-grow: 1;
    }

    .specialty-category li {
        padding: 6px 0;
        color: #475569;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.9rem;
    }

    .specialty-category li:last-child {
        border-bottom: none;
    }

    /* ===== FREE TRIAL POSTER SECTION ===== */
    .trial {
        background: linear-gradient(rgba(59, 130, 246, 0.9), rgba(59, 130, 246, 0.9)), 
                    url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 100px 0;
        color: white;
        text-align: center;
    }

    .trial-poster {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        padding: 60px 40px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }

    .trial-poster::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
        animation: shine 3s infinite linear;
    }

    @keyframes shine {
        0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }

    .poster-content {
        position: relative;
        z-index: 1;
    }

    .poster-title {
        font-size: 2.1rem;
        color: #1e293b;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
        line-height: 1.3;
    }

    .poster-subtitle {
        font-size: 1.3rem;
        color: #64748b;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .poster-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    .feature {
        background: white;
        padding: 30px 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
        border: 2px solid rgba(59, 130, 246, 0.2);
        transition: transform 0.3s ease;
    }

    .feature:hover {
        transform: translateY(-10px);
        border-color: #3b82f6;
    }

    .feature i {
        font-size: 3rem;
        color: #3b82f6;
        margin-bottom: 15px;
    }

    .feature h4 {
        font-size: 1.3rem;
        color: #1e293b;
        margin-bottom: 10px;
    }

    .feature p {
        color: #64748b;
        font-size: 0.95rem;
    }

    .poster-cta {
        text-align: center;
    }

    .poster-cta .btn-primary {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        padding: 18px 40px;
        font-size: 1.2rem;
        font-weight: 700;
        border-radius: 50px;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    }

    .poster-cta .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
    }

    .risk-free {
        color: #64748b;
        margin-top: 20px;
        font-size: 1.1rem;
    }

    .risk-free i {
        color: #10b981;
        margin-right: 10px;
    }

    /* ===== PARTNERS AUTO-SCROLLING SLIDER ===== */
    .partners-slider-container {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .partners-slider-container::before,
    .partners-slider-container::after {
        content: '';
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .partners-slider-container::before {
        left: 0;
        background: linear-gradient(90deg, rgba(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0) 100%);
    }

    .partners-slider-container::after {
        right: 0;
        background: linear-gradient(90deg, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 1) 100%);
    }

    .partners-slider-track {
        display: flex;
        width: max-content;
        animation: scrollPartners 25s linear infinite;
    }

    .partners-slider-track:hover {
        animation-play-state: paused;
    }

    .partner-slide-item {
        flex: 0 0 auto;
        margin: 0 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 200px;
        transition: transform 0.3s ease;
    }

    .partner-slide-item:hover {
        transform: translateY(-10px);
    }

    .partner-logo-circle {
        width: 200px;
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 25px;
        transition: all 0.3s ease;
        transform: scale(1.4);
    }

    .partner-logo-img {
        width: 100%;
        height: 100%;
        filter: grayscale(0%) !important;
        opacity: 1 !important;
        transition: transform 0.3s ease;
    }

    .partner-slide-item:hover .partner-logo-img {
        filter: grayscale(0%) !important;
        opacity: 1 !important;
        transform: scale(1.2);
    }

    .partner-slide-item:hover .partner-logo-circle {
        transform: scale(1.05);
        border-color: #3b82f6;
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    }

    @keyframes scrollPartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    .partners-note {
        text-align: center;
        margin-top: 30px;
        color: #64748b;
        font-size: 1rem;
    }

    /* ===== PAGE HEADER ===== */
    .page-header {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        padding: 60px 0;
        text-align: center;
        margin-top: 80px;
    }

    .page-header h1 {
        font-size: 2.5rem;
        color: #1e293b;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .page-header p {
        font-size: 1.1rem;
        color: #475569;
        max-width: 600px;
        margin: 0 auto;
    }

    /* ===== SERVICE DETAIL PAGE ===== */
    .service-detail-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }

    .service-detail-content h2 {
        font-size: 2rem;
        color: #1e293b;
        margin-bottom: 20px;
    }

    .service-detail-content h3 {
        font-size: 1.3rem;
        color: #1e293b;
        margin: 30px 0 20px;
    }

    .service-detail-content p {
        color: #475569;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .service-feature-box {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
        padding: 20px;
        background: #f8fafc;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
        transition: transform 0.3s ease;
    }

    .service-feature-box:hover {
        transform: translateX(5px);
        border-color: #3b82f6;
    }

    .service-feature-box i {
        font-size: 1.5rem;
        color: #10b981;
        flex-shrink: 0;
    }

    .service-feature-box h4 {
        font-size: 1.1rem;
        color: #1e293b;
        margin-bottom: 5px;
    }

    .service-feature-box p {
        margin: 0;
        color: #64748b;
    }

    /* ===== SIDEBAR ===== */
    .service-sidebar {
        position: sticky;
        top: 100px;
    }

    .sidebar-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        margin-bottom: 25px;
    }

    .sidebar-card h3 {
        font-size: 1.2rem;
        color: #1e293b;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #e2e8f0;
    }

    .sidebar-card ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
    }

    .sidebar-card li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        border-bottom: 1px dashed #e2e8f0;
        color: #475569;
    }

    .sidebar-card li:last-child {
        border-bottom: none;
    }

    .sidebar-card li i {
        color: #3b82f6;
        width: 20px;
    }

    .specialty-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .specialty-list li {
        border: none;
        padding: 5px 0;
        font-size: 0.9rem;
    }

    /* ===== PROCESS SECTION ===== */
    .process-section {
        background: #f8fafc;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    .process-step {
        text-align: center;
        padding: 30px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        position: relative;
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 auto 20px;
    }

    .process-step h3 {
        font-size: 1.1rem;
        color: #1e293b;
        margin-bottom: 10px;
    }

    .process-step p {
        color: #64748b;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* ===== STATS SECTION ===== */
    .stats-section {
        background: white;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }

    .stat-item {
        padding: 30px;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 800;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 10px;
    }

    .stat-label {
        color: #64748b;
        font-size: 1rem;
    }

    /* ===== TIMELINE SECTION ===== */
    .timeline-section {
        background: #f8fafc;
    }

    .timeline {
        max-width: 800px;
        margin: 50px auto 0;
        position: relative;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 120px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #e2e8f0;
    }

    .timeline-item {
        display: flex;
        margin-bottom: 30px;
        position: relative;
    }

    .timeline-marker {
        width: 120px;
        padding-right: 30px;
        text-align: right;
        font-weight: 600;
        color: #3b82f6;
        position: relative;
    }

    .timeline-marker::after {
        content: '';
        position: absolute;
        right: -5px;
        top: 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #3b82f6;
        border: 2px solid white;
    }

    .timeline-content {
        flex: 1;
        padding-left: 30px;
    }

    .timeline-content h4 {
        font-size: 1.1rem;
        color: #1e293b;
        margin-bottom: 5px;
    }

    .timeline-content p {
        color: #64748b;
        font-size: 0.9rem;
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        color: white;
    }

    .cta-box {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .cta-box h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        color: white;
    }

    .cta-box p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .cta-box .btn-primary {
        background: white;
        color: #3b82f6;
        border: 2px solid white;
    }

    .cta-box .btn-primary:hover {
        background: transparent;
        color: white;
    }

    /* ===== CONTACT CTA SECTION ===== */
    .contact-cta {
        text-align: center;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .contact-info-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .info-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 180px;
    }

    .info-card i {
        margin-bottom: 15px;
    }

    .info-card h4 {
        font-size: 1.1rem;
        color: #1e293b;
        margin-bottom: 8px;
    }

    .info-card p {
        color: #64748b;
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .info-card a {
        color: #3b82f6;
        text-decoration: none;
    }

    .info-card a:hover {
        text-decoration: underline;
    }

    .contact-time {
        color: #f59e0b !important;
        font-weight: 500;
    }

    /* ===== FOOTER ===== */
    .footer {
        background: #1e293b;
        color: white;
        padding: 50px 0 15px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
    }

    .footer-logo-text h3 {
        font-size: 1.8rem;
        font-weight: 800;
        color: white;
        margin-bottom: 5px;
        line-height: 1;
    }

    .logo-subtitle {
        color: #94a3b8;
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .footer-description {
        color: #94a3b8;
        line-height: 1.6;
        margin-bottom: 20px;
        font-size: 0.85rem;
    }

    .footer-social {
        display: flex;
        gap: 10px;
        margin-top: 20px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-icon:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 8px;
        color: white;
    }

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: #3b82f6;
    }

    .footer-col a {
        color: #cbd5e1;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.85rem;
    }

    .footer-col a:hover {
        color: #3b82f6;
    }

    .footer-contact h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 8px;
        color: white;
    }

    .footer-contact h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: #3b82f6;
    }

    .contact-emails p {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        color: #cbd5e1;
        font-size: 0.85rem;
    }

    .contact-emails i {
        color: #3b82f6;
        font-size: 0.9rem;
    }

    .contact-emails a {
        color: #cbd5e1;
        text-decoration: none;
    }

    .contact-emails a:hover {
        color: #3b82f6;
    }

    .footer-newsletter {
        margin-top: 15px;
    }

    .footer-newsletter p {
        color: #94a3b8;
        margin-bottom: 10px;
        font-size: 0.8rem;
    }

    .newsletter-form {
        display: flex;
        gap: 5px;
    }

    .newsletter-form input {
        flex: 1;
        padding: 8px 12px;
        border: 1px solid #334155;
        background: #0f172a;
        border-radius: 6px;
        color: white;
        font-family: 'Inter', sans-serif;
        font-size: 0.8rem;
    }

    .newsletter-form input::placeholder {
        color: #64748b;
    }

    .newsletter-form button {
        background: #3b82f6;
        color: white;
        border: none;
        width: 35px;
        border-radius: 6px;
        cursor: pointer;
    }

    .contact-info {
        margin-top: 15px;
    }

    .contact-info p {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #cbd5e1;
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .contact-info i {
        color: #3b82f6;
    }

    .contact-info a {
        color: #cbd5e1;
        text-decoration: none;
    }

    .contact-info a:hover {
        color: #3b82f6;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-copyright {
        margin-bottom: 15px;
    }

    .footer-copyright p {
        color: #94a3b8;
        font-size: 0.75rem;
        margin-bottom: 5px;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .footer-legal a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.75rem;
        transition: color 0.3s ease;
    }

    .footer-legal a:hover {
        color: #3b82f6;
    }

    /* ===== RESPONSIVE STYLES ===== */
    @media (max-width: 1200px) {
        .container {
            max-width: 960px;
        }
        
        .main-title {
            font-size: 2.5rem;
        }
        
        .performance-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .process-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .form-group input, .form-group select {
            padding: 5px 3px !important;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            background: white;
            width: 100%;
            transition: border 0.3s ease;
            height: 26px !important;
            margin: 0;
            
        }
    }

    @media (max-width: 992px) {
        .container {
            max-width: 720px;
        }
        
        .main-title {
            font-size: 2.2rem;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
        
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .specialties-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .service-detail-grid {
            grid-template-columns: 1fr;
        }
        
        .service-sidebar {
            position: static;
        }
        
        .partner-logo-circle {
            width: 140px;
            height: 140px;
            padding: 20px;
        }
        
        .timeline::before {
            left: 80px;
        }
        
        .timeline-marker {
            width: 80px;
            font-size: 0.9rem;
        }
        .form-group input, .form-group select {
            padding: 5px 3px !important;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            background: white;
            width: 100%;
            transition: border 0.3s ease;
            height: 25px !important;
            margin: 0;
            
        }
    }

  
    @media (max-width: 576px) {
        .container {
            padding: 0 15px;
        }
        
        .main-title {
            font-size: 1.8rem;
        }
        
        .section-header h2 {
            font-size: 1.6rem;
        }
        
        .section-subtitle {
            font-size: 1rem;
        }
        
        .poster-title {
            font-size: 1.35rem;
        }
        
        .performance-value {
            font-size: 1.8rem;
        }
        
        .trust-badges {
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
        
        .badge {
            width: 100%;
            max-width: 250px;
            justify-content: center;
        }
        
        .carousel-controls {
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .footer-content {
            grid-template-columns: 1fr;
        }
        
        .footer-legal {
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }
        
        .newsletter-form {
            flex-direction: column;
        }
        
        .newsletter-form button {
            width: 100%;
            padding: 8px;
        }
        
        .logo-icon {
            width: 100px !important;
            height: 100px !important;
            transform: scale(0.65);
        }
        
        .navbar {
            height: 65px;
        }
        
        .nav-content {
            height: 65px;
        }
        
        .logo {
            height: 65px;
        }
        
        .mobile-menu {
            top: 65px;
        }
        
        .breadcrumb-nav {
            margin-top: 65px;
        }
        
        .hero {
            padding: 90px 0 40px;
            margin-top: 65px;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .specialties-grid {
            grid-template-columns: 1fr;
        }
        
        .performance-grid {
            grid-template-columns: 1fr;
        }
        
        .credentials-list {
            grid-template-columns: 1fr;
        }
        
        
        .credential-badge {
            width: 100%;
        }
        
        .footer {
            padding: 30px 0 15px;
        }
        
        .partner-slide-item {
            min-width: 120px;
            margin: 0 15px;
        }
        
        
        .partner-logo-circle {
            width: 100px;
            height: 100px;
            padding: 15px;
        }
        
        .specialty-list {
            grid-template-columns: 1fr;
        }
        
        .service-feature-box {
            flex-direction: column;
            align-items: flex-start;
        }
        .form-group input, .form-group select {
            padding: 5px 3px !important;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            background: white;
            width: 100%;
            transition: border 0.3s ease;
            height: 25px !important;
            margin: 0;
            
        }
    }

    @media (max-width: 480px) {
        .hero {
            padding: 80px 0 30px;
        }
        
        .section {
            padding: 40px 0;
        }
        
        .partner-logo-circle {
            width: 90px;
            height: 90px;
            padding: 12px;
        }
        
        .footer {
            padding: 25px 0 15px;
        }
        
        .logo-icon {
            width: 90px !important;
            height: 90px !important;
            transform: scale(0.6);
        }
        .form-group input, .form-group select {
            padding: 5px 3px !important;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            background: white;
            width: 100%;
            transition: border 0.3s ease;
            height: 25px !important;
            margin: 0;
            
        }
    }
    /* ===== SIMPLE MOBILE FIXES - ADD AT END OF YOUR CSS ===== */

/* Mobile menu fix */
@media (max-width: 991px) {
    .mobile-menu-btn { display: block; }
    .nav-links { display: none; }
    .mobile-menu.show { display: block; }
    .mobile-dropdown-menu { display: none; }
    .mobile-dropdown-menu.show { display: block; }
}

/* Popup fix for mobile */
@media (max-width: 576px) {
    .popup-container { width: 95%; max-height: 90vh; }
    .popup-content { max-height: 70vh; overflow-y: auto; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .services-grid, .specialties-grid, .performance-grid { grid-template-columns: 2fr; }

}

/* Buttons and cards fix */
@media (max-width: 640px) {
    .hero-buttons, .cta-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn, .cta-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
    .services-grid, .specialties-grid, .performance-grid { grid-template-columns: 2fr; }
    .contact-info-cards { grid-template-columns: 1fr; }
    .trust-badges { flex-direction: column; align-items: center; }
    .badge { width: 100%; max-width: 220px; justify-content: center; }
    .poster-features { flex-direction: column; }
}

/* Footer fix */
@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-social, .contact-emails p, .contact-info p { justify-content: center; }
        .services-grid, .specialties-grid, .performance-grid { grid-template-columns: 2fr; }

}

/* Carousel fix */
@media (max-width: 768px) {
    .action-content { padding: 20px; }
    .action-content h3 { font-size: 18px; }
    .carousel-prev, .carousel-next { width: 35px; height: 35px; }
}

/* Chatbot fix */
@media (max-width: 480px) {
    .chat-window { width: calc(100vw - 40px); height: 450px; }
}

/* General */
input, select, textarea { font-size: 16px !important; }
button { min-height: 44px; }
img { max-width: 100%; height: auto; }
body { overflow-x: hidden; }