/* Premium Modern OTI Website Styles */
:root {
    --primary: #2563EB;
    --primary-dark: #1E40AF;
    --primary-light: #3B82F6;
    --secondary: #10B981;
    --accent: #F59E0B;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    --gradient-3: linear-gradient(135deg, #0EA5E9 0%, #2563EB 100%);
    --dark: #1F2937;
    --light: #F9FAFB;
    --white: #FFFFFF;
    --text: #374151;
    --text-light: #6B7280;
    --border: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

/* Premium Navigation */
.modern-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}

.modern-header:hover {
    box-shadow: var(--shadow-lg);
}

.modern-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    max-width: 1320px;
    margin: 0 auto;
}

.modern-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.modern-logo:hover {
    transform: translateY(-2px);
}

.modern-logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.modern-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.modern-logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.modern-logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.modern-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.modern-menu a:hover, .modern-menu a.active {
    color: var(--primary);
}

.modern-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-2);
    transition: var(--transition);
    border-radius: 2px;
}

.modern-menu a:hover::after, .modern-menu a.active::after {
    width: 100%;
}

/* Premium Hero Section */
.modern-hero {
    background: var(--gradient-1);
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
}

.modern-hero > * {
    position: relative;
    z-index: 1;
}

.modern-hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -1px;
}

.modern-hero p {
    font-size: 1.35rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.modern-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 rgba(0,0,0,0.1);
}

.modern-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.modern-btn-primary {
    background: var(--gradient-2);
    color: var(--white);
}

.modern-btn-primary:hover {
    box-shadow: 0 12px 24px rgba(37,99,235,0.4);
}

.modern-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.modern-btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Container */
.modern-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.modern-section {
    padding: 6rem 0;
}

.modern-section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.modern-section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.modern-section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid System */
.modern-grid {
    display: grid;
    gap: 2rem;
}

.modern-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.modern-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Premium Cards */
.modern-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.modern-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.modern-card:hover .modern-card-img {
    transform: scale(1.05);
}

.modern-card-body {
    padding: 2rem;
}

.modern-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.875rem;
    line-height: 1.3;
}

.modern-card-text {
    color: var(--text);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.modern-card-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--gradient-2);
    color: var(--white);
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}

/* Premium Stats */
.modern-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    padding: 3rem 0;
}

.modern-stat {
    text-align: center;
    padding: 2.5rem;
    background: var(--gradient-2);
    border-radius: 16px;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 8px 16px rgba(37,99,235,0.2);
}

.modern-stat:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 16px 32px rgba(37,99,235,0.3);
}

.modern-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.modern-stat-label {
    font-size: 1.125rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Premium Services */
.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--white) 0%, #f8f9ff 100%);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-text {
    color: var(--text);
    line-height: 1.6;
}

/* Premium Footer */
.modern-footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: var(--white);
    padding: 4rem 2rem 1.5rem;
    border-top: 3px solid var(--primary);
}

.modern-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3.5rem;
    margin-bottom: 3rem;
}

.modern-footer-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.modern-footer-text {
    opacity: 0.85;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.modern-footer-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.modern-footer-link::before {
    content: '→';
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.modern-footer-link:hover {
    color: var(--white);
    padding-left: 2rem;
}

.modern-footer-link:hover::before {
    left: 0.5rem;
}

.modern-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Premium Form Styles */
.modern-form-group {
    margin-bottom: 1.75rem;
}

.modern-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.625rem;
    color: var(--dark);
    font-size: 0.95rem;
}

.modern-form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    background: var(--white);
}

.modern-form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.modern-form-input:hover {
    border-color: var(--primary-light);
}

.modern-form-textarea {
    min-height: 160px;
    resize: vertical;
}

/* Premium Alerts */
.modern-alert {
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    margin-bottom: 1.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modern-alert-success {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
    border-left: 5px solid var(--secondary);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.modern-alert-error {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #991B1B;
    border-left: 5px solid #EF4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Premium Responsive Design */
@media (max-width: 1024px) {
    .modern-nav {
        padding: 1rem 1.5rem;
    }
    
    .modern-logo img {
        height: 40px;
    }
    
    .modern-logo-title {
        font-size: 1.1rem;
    }
    
    .modern-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: 5rem 1.5rem;
    }
    
    .modern-hero h1 {
        font-size: 2.5rem;
    }
    
    .modern-hero p {
        font-size: 1.1rem;
    }
    
    .modern-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .modern-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .modern-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .modern-section {
        padding: 4rem 0;
    }
    
    .modern-section-title {
        font-size: 2.25rem;
    }
    
    .modern-stat-number {
        font-size: 2.5rem;
    }
    
    .modern-card-img {
        height: 200px;
    }
    
    .modern-footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .modern-hero h1 {
        font-size: 2rem;
    }
    
    .modern-section-title {
        font-size: 1.875rem;
    }
    
    .modern-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.p-4 { padding: 2rem; }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #F59E0B;
    font-size: 1.125rem;
}

.testimonial-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Client Logos Section */
.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.client-logo-item {
    flex: 0 0 auto;
}

.client-badge {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.client-badge:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

/* CTA Badge */
.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

/* Marketing Elements */
.value-proposition {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 0.9rem;
    margin: 0 0.5rem;
}

/* Subtle Animation for Trust Elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-icon:hover {
    animation: float 2s ease-in-out infinite;
}

.feature-icon:hover {
    animation: float 2s ease-in-out infinite;
}

/* Enhanced Mobile Responsive for New Elements */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .client-logos {
        gap: 1rem;
    }
    
    .client-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

/* ========================================
   ENHANCED HERO SECTION WITH ANIMATIONS
   ======================================== */

.modern-hero {
    position: relative;
    overflow: hidden;
}

/* Animated Background Particles */
.hero-particle {
    position: absolute;
    opacity: 0.1;
    animation: particleFloat 20s ease-in-out infinite;
}

.hero-particle.hexagon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particle.circle {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.hero-particle.square {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transform: rotate(45deg);
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-60px) rotate(180deg);
        opacity: 0.1;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.15;
    }
}

/* Pulsing Gradient Overlay */
.hero-gradient-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    animation: pulseGradient 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGradient {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

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

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

/* ========================================
   CUSTOM PAGINATION STYLES
   ======================================== */

/* Modern Bootstrap-style Pagination */
nav[role="navigation"] {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav[role="navigation"] > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav[role="navigation"] svg {
    width: 14px !important;
    height: 14px !important;
    display: inline-block;
}

nav[role="navigation"] span,
nav[role="navigation"] a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border: 2px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--white);
}

nav[role="navigation"] a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

nav[role="navigation"] span[aria-current="page"] {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

nav[role="navigation"] span[aria-disabled="true"] {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive Pagination */
@media (max-width: 640px) {
    nav[role="navigation"] a,
    nav[role="navigation"] span {
        min-width: 36px;
        height: 36px;
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    nav[role="navigation"] svg {
        width: 12px !important;
        height: 12px !important;
    }
}

/* ========================================
   CLIENT COMPANY CARDS
   ======================================== */

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

.client-company-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.client-company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
}

.client-logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.client-company-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.client-industry-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.client-company-description {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Client Cards */
@media (max-width: 768px) {
    .client-company-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .client-company-card {
        padding: 1.5rem;
    }
}

/* ========================================
   ENHANCED MODERN DESIGN ADDITIONS
   Floating WhatsApp, Scroll Buttons, Modern Layouts
   ======================================== */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-top-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.5);
}

/* Scroll Down Button in Hero */
.scroll-down-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-down-btn:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-down-btn i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Enhanced Hero Section */
.enhanced-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 2rem;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-content {
    z-index: 2;
    position: relative;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-main-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #FFF 0%, #E0E7FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-main-subtitle {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.hero-stats-mini {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-mini strong {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.stat-mini span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.modern-btn-gradient {
    background: linear-gradient(135deg, #FFF 0%, #E0E7FF 100%);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-logos-mini {
    display: flex;
    gap: 0.75rem;
}

.trust-logo-item {
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hero Visual Content - Floating Cards */
.hero-visual-content {
    position: relative;
    height: 500px;
    z-index: 2;
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 250px;
    animation: floatCard 6s ease-in-out infinite;
}

.hero-floating-card i {
    font-size: 2.5rem;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-floating-card strong {
    display: block;
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.hero-floating-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.hero-floating-card.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    top: 45%;
    right: 5%;
    animation-delay: 2s;
}

.hero-floating-card.card-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

/* Floating Tech Icons */
.tech-icon-float {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.15);
    animation: floatIcon 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(-50px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

.fade-in-right {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Section Modern Layout */
.about-modern {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.about-image-side {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
}

.about-logo-large {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.about-stats-overlay {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.stat-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-box strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-box span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-text-side {
    padding: 2rem 0;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title-alt {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
}

.about-feature-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

/* Innovation Showcase Section */
.innovation-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
    position: relative;
}

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

.innovation-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--border);
    transition: all 0.4s ease;
    text-align: center;
}

.innovation-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gradient-bg-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-bg-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.innovation-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.innovation-card p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.innovation-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.innovation-stats span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: var(--light);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.innovation-stats i {
    font-size: 1rem;
}

/* Responsive Design for Enhanced Elements */
@media (max-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual-content {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .enhanced-hero {
        min-height: auto;
        padding: 5rem 1.5rem;
    }
    
    .hero-main-title {
        font-size: 1.5rem;
    }
    
    .hero-main-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-stats-mini {
        gap: 1rem;
    }
    
    .stat-mini {
        padding: 0.75rem 1rem;
    }
    
    .stat-mini strong {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .modern-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .scroll-down-btn {
        display: none;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }
    
    .scroll-top-btn {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .about-logo-large {
        max-width: 150px;
    }
    
    .section-title-alt {
        font-size: 2rem;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.25rem;
    }
    
    .hero-main-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-stats-mini {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .section-title-alt {
        font-size: 1.75rem;
    }
}
