/* Modern Website Redesign - Phazer TechnoFin */

/* CSS Variables for Consistent Design */
:root {
    /* Phazer TechnoFin Deep Blue & Gold Palette */
    --primary-color: #123a5d;       /* Deep navy (logo base) */
    --primary-dark: #0b2740;
    --primary-light: #1f5a8a;
    --secondary-color: #f5a623;    /* Warm gold (logo accent) */
    --secondary-dark: #d98c1a;
    --secondary-light: #ffd27a;
    --accent-color: #f5a623;
    --accent-dark: #d98c1a;
    --accent-light: #ffe2a8;
    --success-color: #27ae60;
    --warning-color: #f1c40f;
    --danger-color: #e74c3c;
    --info-color: #3498db;
    --dark-color: #2c3e50;
    --light-color: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Brand Color Variations */
    --blue-primary: #123a5d;
    --blue-secondary: #1f5a8a;
    --blue-tertiary: #0b2740;
    --yellow-primary: #f5a623;
    --yellow-secondary: #f2b01e;
    --yellow-tertiary: #d98c1a;
    --orange-primary: #f29c1f;
    --orange-secondary: #d9821a;
    --orange-tertiary: #bf6516;
    
    /* Soft Harmonious Colors */
    --blue-soft: #e8f4fd;
    --yellow-soft: #fef9e7;
    --orange-soft: #fdf2e9;
    --blue-light: #d6eaf8;
    --yellow-light: #fcf3cf;
    --orange-light: #fadbd8;
    
    /* Enhanced Brand Palette */
    --yellow-bright: #f5a623;
    --yellow-warm: #f2b01e;
    --yellow-soft: #fff5de;
    --orange-vibrant: #f29c1f;
    --orange-deep: #d9821a;
    --orange-soft: #fdf1e0;
    --blue-bright: #1f5a8a;
    --blue-deep: #123a5d;
    --blue-navy: #0b2740;
    --blue-soft: #e6edf5;
    
    /* Brand Gradients - Deep Blue & Gold */
    --gradient-primary: linear-gradient(135deg, #123a5d 0%, #f5a623 100%);
    --gradient-secondary: linear-gradient(135deg, #1f5a8a 0%, #f2b01e 100%);
    --gradient-accent: linear-gradient(135deg, #f5a623 0%, #f29c1f 100%);
    --gradient-success: linear-gradient(135deg, #27ae60 0%, #f5a623 100%);
    --gradient-warning: linear-gradient(135deg, #f2b01e 0%, #f29c1f 100%);
    --gradient-info: linear-gradient(135deg, #1f5a8a 0%, #123a5d 100%);
    --gradient-dark: linear-gradient(135deg, #0b2740 0%, #123a5d 100%);
    --gradient-sunset: linear-gradient(135deg, #f5a623 0%, #f29c1f 50%, #d9821a 100%);
    --gradient-ocean: linear-gradient(135deg, #1f5a8a 0%, #123a5d 50%, #0b2740 100%);
    --gradient-sunrise: linear-gradient(135deg, #f5a623 0%, #f29c1f 40%, #123a5d 100%);
    --gradient-aurora: linear-gradient(135deg, #123a5d 0%, #1f5a8a 25%, #f5a623 55%, #f29c1f 80%, #0b2740 100%);
    --gradient-warm: linear-gradient(135deg, #f5a623 0%, #f29c1f 100%);
    --gradient-cool: linear-gradient(135deg, #1f5a8a 0%, #123a5d 100%);
    --gradient-professional: linear-gradient(135deg, #123a5d 0%, #1f5a8a 40%, #f5a623 100%);
    --gradient-soft: linear-gradient(135deg, #e6edf5 0%, #fff5de 50%, #fdf1e0 100%);
    --gradient-elegant: linear-gradient(135deg, #0b2740 0%, #1f5a8a 40%, #f5a623 100%);
    --gradient-harmony: linear-gradient(135deg, #123a5d 0%, #1f5a8a 40%, #f5a623 100%);
    --gradient-triadic: linear-gradient(135deg, #123a5d 0%, #f5a623 50%, #1f5a8a 100%);
    
    /* Enhanced Shadows - Brand Colors */
    --shadow-sm: 0 1px 3px 0 rgba(18, 58, 93, 0.12), 0 1px 2px 0 rgba(18, 58, 93, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(18, 58, 93, 0.14), 0 2px 4px -1px rgba(18, 58, 93, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(18, 58, 93, 0.18), 0 4px 6px -2px rgba(18, 58, 93, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(18, 58, 93, 0.20), 0 10px 10px -5px rgba(18, 58, 93, 0.06);
    --shadow-2xl: 0 25px 50px -12px rgba(18, 58, 93, 0.35);
    --shadow-glow: 0 0 20px rgba(245, 166, 35, 0.35);
    --shadow-glow-blue: 0 0 20px rgba(18, 58, 93, 0.35);
    --shadow-glow-orange: 0 0 20px rgba(242, 156, 31, 0.35);
    --shadow-harmony: 0 0 30px rgba(52, 152, 219, 0.2), 0 0 20px rgba(241, 196, 15, 0.2), 0 0 10px rgba(255, 140, 66, 0.2);
    
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Modern CSS Reset */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Smooth transitions for all elements */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Smooth Scrolling */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-padding-top: 100px; /* Account for fixed navbar */
}

/* Smooth scrolling for all elements */
* {
    scroll-behavior: smooth;
}

/* Enhanced smooth scrolling animations */
.section {
    scroll-margin-top: 100px;
}

/* Smooth transitions for all interactive elements */
.btn, .card, .service-card, .nav-link, .navbar-brand {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth hover effects */
.btn:hover, .card:hover, .service-card:hover {
    transform: translateY(-2px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth scroll snap for better UX */
.scroll-container {
    scroll-snap-type: y mandatory;
}

.scroll-section {
    scroll-snap-align: start;
}

/* Mobile Viewport Optimization */
@viewport {
    width: device-width;
    initial-scale: 1;
    maximum-scale: 5;
    user-scalable: yes;
}

/* Mobile viewport height fix */
:root {
    --vh: 1vh;
}

.hero-section {
    min-height: calc(var(--vh, 1vh) * 100);
}

/* Prevent content overlapping */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Section spacing to prevent overlap */
section {
    position: relative;
    z-index: 1;
}

section + section {
    margin-top: 0;
}

/* Touch-friendly elements */
button, 
.btn, 
.messaging-btn, 
.quick-action-btn,
.navbar-toggler {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Smooth scrolling for all browsers with reduced motion support */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    * {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        scroll-behavior: auto;
    }
}

/* Add some beautiful floating elements */
/* Removed floating background elements for clean white background */

/* Enhanced Section Headers */
.section-header-icon {
    text-align: center;
    margin-bottom: 2rem;
}

/* Service Badge Styles */
.service-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 1);
}

.service-badge i {
    font-size: 1rem;
}

/* Business Illustration Styles */
.business-illustration {
    position: relative;
    padding: 2rem;
}

.dashboard-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.dashboard-screen {
    background: #1a1a2e;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    color: white;
    font-weight: 600;
    margin: 0;
}

.dashboard-controls {
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff6b6b;
}

.control-dot:nth-child(2) {
    background: #ffd93d;
}

.control-dot:nth-child(3) {
    background: #6bcf7f;
}

.dashboard-content {
    color: white;
}

.chart-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.chart-item {
    flex: 1;
    text-align: center;
}

.performance-chart {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.uptime-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#4ecdc4 0deg 359deg, rgba(78, 205, 196, 0.2) 359deg 360deg);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.uptime-circle::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: #1a1a2e;
    border-radius: 50%;
}

.uptime-value {
    color: #4ecdc4;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 1;
}

.uptime-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    z-index: 1;
}

.response-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 80px;
    justify-content: center;
}

.response-bar {
    width: 20px;
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    transition: all 0.3s ease;
}

.response-bar:hover {
    transform: scaleY(1.1);
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(78, 205, 196, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ecdc4;
    font-size: 1.2rem;
}

.metric-content {
    flex: 1;
}

.metric-value {
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.status-indicators {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.online {
    background: #4ecdc4;
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.status-dot.monitoring {
    background: #feca57;
    box-shadow: 0 0 10px rgba(254, 202, 87, 0.5);
}

.team-member {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.team-member-1 {
    top: -20px;
    right: -20px;
}

.team-member-2 {
    bottom: -20px;
    left: -20px;
}

.person-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.person-info h6 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.person-info small {
    color: #666;
    font-size: 0.75rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature-card h6 {
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-card p {
    margin: 0;
    line-height: 1.4;
}

/* Tech Consulting Section Styles */
.tech-consulting-content {
    padding: 2rem 0;
}

.text-gradient {
    background: var(--gradient-harmony);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consulting-features .feature-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
}

.consulting-features .feature-item:hover {
    background: rgba(52, 152, 219, 0.05);
    border-color: rgba(52, 152, 219, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.consulting-stats {
    background: var(--gradient-soft);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    box-shadow: var(--shadow-lg);
}

.consulting-stats h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tech-consulting-gallery {
    position: relative;
}

.consulting-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.consulting-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.consulting-image img {
    transition: all 0.3s ease;
}

.consulting-image:hover img {
    transform: scale(1.05);
}

.consulting-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(241, 196, 15, 0.1), rgba(255, 140, 66, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consulting-image:hover::after {
    opacity: 1;
}

.header-icon-container {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
    animation: headerIconFloat 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.header-icon-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: headerIconShine 3s ease-in-out infinite;
}

.header-icon-container i {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    z-index: 2;
    position: relative;
}

/* Enhanced Subsection Headers */
.subsection-header {
    text-align: center;
    margin-bottom: 3rem;
}

.subsection-icon {
    margin-bottom: 1.5rem;
}

.icon-container-large {
    display: inline-block;
    border-radius: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.icon-container-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.icon-container-large:hover::before {
    left: 100%;
}

.icon-container-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.subsection-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.subsection-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.subsection-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: dividerShine 2s ease-in-out infinite;
}

/* Enhanced Section Titles */
.section-title {
    position: relative;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd23f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    animation: titleUnderline 2s ease-in-out forwards;
}

/* Enhanced Section Subtitles */
.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    position: relative;
}

/* Section Dividers */
.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    margin: 2rem auto 0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: dividerShine 2s ease-in-out infinite;
}

/* Enhanced Typography */
.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Enhanced Animations */
@keyframes headerIconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes headerIconShine {
    0%, 100% { transform: rotate(45deg) translateX(-100%); }
    50% { transform: rotate(45deg) translateX(100%); }
}

@keyframes dividerShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

@keyframes titleUnderline {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Global Styles */
* {

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: #ffffff;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 66, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(241, 196, 15, 0.06) 0%, transparent 50%);
    background-attachment: fixed;
    background-size: 100% 100%;
    overflow-x: hidden;
    position: relative;
}

/* Enhanced Background Overlays */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(52, 152, 219, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, rgba(241, 196, 15, 0.03) 0%, transparent 50%),
        linear-gradient(225deg, rgba(255, 140, 66, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: subtleBackground 20s ease-in-out infinite;
}

@keyframes subtleBackground {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.02) rotate(0.5deg);
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 8% 15%, rgba(52, 152, 219, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 92% 85%, rgba(255, 140, 66, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 45% 8%, rgba(241, 196, 15, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 20% 70%, rgba(52, 152, 219, 0.04) 0%, transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(255, 140, 66, 0.04) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
    animation: floatingBackground 35s ease-in-out infinite;
}

@keyframes floatingBackground {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 1;
    }
    25% { 
        transform: translateY(-8px) rotate(0.5deg) scale(1.01);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(4px) rotate(-0.5deg) scale(0.99);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-4px) rotate(0.3deg) scale(1.005);
        opacity: 0.95;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.display-1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.display-2 {
    font-size: 3rem;
    font-weight: 800;
}

.display-3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.display-4 {
    font-size: 2rem;
    font-weight: 700;
}

.display-5 {
    font-size: 1.75rem;
    font-weight: 700;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gray-600);
}
.footer-logo{
    filter: drop-shadow(2px 2px 4px black);
}

/* Modern Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    transform: translateZ(0);
}

.navbar.scrolled {
    background: rgba(255, 248, 225, 0.98);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
}

.navbar .container {
    position: relative;
    z-index: 1;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--primary-dark);
}

.navbar-logo {
    height: 50px;
    margin-right: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-right: 10px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
}

.navbar-nav .nav-link:hover::before {
    left: 0;
}

.navbar-nav .nav-link:hover {
    color: white;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

/* Hero Section Redesign */
.hero-section {
    background: var(--gradient-harmony);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    margin-top: 80px;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 15%, rgba(52, 152, 219, 0.2) 0%, transparent 55%),
        radial-gradient(circle at 85% 85%, rgba(255, 140, 66, 0.2) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(241, 196, 15, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 25% 75%, rgba(52, 152, 219, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 75% 25%, rgba(255, 140, 66, 0.1) 0%, transparent 45%);
    background-size: cover;
    animation: heroBackground 25s ease-in-out infinite;
}

@keyframes heroBackground {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.hero-section h1 {
    color: white;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(241, 196, 15, 0.4),
        0 0 40px rgba(255, 140, 66, 0.3);
    animation: heroTitleSlide 1s ease-out;
    background: linear-gradient(45deg, #ffffff 0%, #f1c40f 50%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
}

.hero-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f1c40f, #ff8c42, #3498db);
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 0.5s both;
}

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

@keyframes underlineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: heroSubtitleSlide 1s ease-out 0.2s both;
}

@keyframes heroSubtitleSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: heroBadgeSlide 1s ease-out 0.4s both;
}

@keyframes heroBadgeSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: heroStatsSlide 1s ease-out 0.6s both;
}

@keyframes heroStatsSlide {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats h3 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hero-stats p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Modern Buttons */
.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: white;
    background: var(--gradient-sunset);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-md);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-yellow);
    color: white;
    background: var(--gradient-warm);
}

.btn-success {
    background: var(--gradient-success);
    color: white;
    box-shadow: var(--shadow-md);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-success:hover::before {
    left: 100%;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-yellow);
    color: white;
    background: var(--gradient-warm);
}

.btn-info {
    background: var(--gradient-info);
    color: white;
    box-shadow: var(--shadow-md);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-info:hover::before {
    left: 100%;
}

.btn-info:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-blue);
    color: white;
    background: var(--gradient-cool);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
}

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border: none;
}

.btn-outline-success{
    border:2px solid var(--success-color);
}

.btn-outline-warning{
    border:2px solid var(--warning-color);
}

.btn-outline-danger{
    border:2px solid var(--danger-color);
}

.btn-outline-info{
    border:2px solid var(--info-color);
}

.btn-outline-secondary{
    border:2px solid var(--dark-color);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

/* Section Styling */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Card Components */
.card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: none;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border: none;
}

.card-body {
    padding: 2rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(255, 215, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-elegant);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.service-card:hover .service-icon::before {
    transform: translateX(100%);
}

.service-card h4 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 2rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
font-weight: bold;
    font-size: 1.2rem;
}

/* Statistics Section */
.stats-section {
    background: var(--gradient-dark);
    color: white;
    padding: 80px 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    margin: 1rem;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
}

.testimonial-content {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.testimonial-author {
display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h6 {
    margin: 0;
    color: var(--gray-900);
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.form-control {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--gray-50);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
    background: white;
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer p {
    color: var(--gray-400);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--gray-400);
text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

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

/* Company Info Styling */
.company-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
}

.company-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.company-info .text-light-75 {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.company-info .text-light-75:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.company-info i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

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

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

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

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

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

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
    position: relative;
    z-index: 2;
}

/* Core Excellence Section specific styling */
#sss-pillars {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 80px;
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.bg-gradient-success {
    background: var(--gradient-success);
}

.bg-gradient-warning {
    background: var(--gradient-warning);
}

.bg-gradient-dark {
    background: var(--gradient-dark);
}

.shadow-custom {
    box-shadow: var(--shadow-xl);
}

.rounded-custom {
    border-radius: var(--border-radius-lg);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Typography */
    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-section .lead {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .display-1 {
        font-size: 2.5rem;
    }
    
    /* Layout Spacing */
    .section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 100px 0 60px;
        min-height: 90vh;
    }
    
    /* Navigation */
    .navbar-nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: var(--border-radius);
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-toggler {
        padding: 0.5rem;
        border: none;
        background: transparent;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    /* Cards and Components */
    .card-body {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px; /* Touch-friendly */
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Grid Adjustments */
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .col-md-6,
    .col-md-4,
    .col-md-3 {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 1rem;
    }
    
    /* Text Alignment */
    .text-md-start {
        text-align: center !important;
    }
    
    .text-md-end {
        text-align: center !important;
    }
    
    /* Hero Stats */
    .hero-stats {
        text-align: center;
    }
    
    .hero-stats h3 {
        font-size: 2rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    /* Typography */
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    /* Layout Spacing */
    .hero-section {
        padding: 80px 0 50px;
        min-height: 85vh;
    }
    
    .section {
        padding: 50px 0;
    }
    
    /* Cards and Components */
    .card-body {
        padding: 1.25rem;
    }
    
    .service-card {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        min-height: 48px; /* Extra touch-friendly */
    }
    
    .btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    /* Grid Adjustments */
    .row {
        margin-left: -8px;
        margin-right: -8px;
    }
    
    .col-md-6,
    .col-md-4,
    .col-md-3 {
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 0.75rem;
    }
    
    /* Navigation */
    .navbar-brand img {
        height: 35px;
    }
    
    .navbar-nav {
        padding: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Container Padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Smooth scrolling already defined above */

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Global Info Card - Physical Presence - Original Theme */
.global-info-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.global-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.global-info-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.global-info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: var(--shadow-lg);
    animation: presenceIconFloat 4s ease-in-out infinite;
}

@keyframes presenceIconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(8deg); }
}

.global-info-title h3 {
    color: var(--gray-900);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 800;
}

.global-info-title p {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.global-info-content {
    position: relative;
    z-index: 2;
}

.global-info-description {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.global-info-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(37, 99, 235, 0.01) 100%);
    border-radius: var(--border-radius);
    pointer-events: none;
}

.global-info-description p {
    margin: 0;
    line-height: 1.8;
    color: var(--gray-700);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.global-info-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: white;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    flex: 1;
    min-width: 120px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.countries-showcase {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.country-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.country-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.08), transparent);
    transition: left 0.6s ease;
}

.country-item:hover::before {
    left: 100%;
}

.country-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.country-flag {
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.country-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    position: relative;
    z-index: 1;
}

.global-info-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.global-info-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.global-info-features .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.08), transparent);
    transition: left 0.5s ease;
}

.global-info-features .feature-item:hover::before {
    left: 100%;
}

.global-info-features .feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.global-info-features .feature-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.global-info-features .feature-item span {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Responsive Design for Global Physical Presence */
@media (max-width: 768px) {
    .global-info-card {
        padding: 2rem;
    }
    
    .global-info-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .global-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .global-info-title h3 {
        font-size: 1.5rem;
    }
    
    .global-info-title p {
        font-size: 1rem;
    }
    
    .global-info-description {
        padding: 1.5rem;
    }
    
    .global-info-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stat-badge {
        min-width: auto;
    }
    
    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
    }
    
    .country-item {
        padding: 0.75rem;
    }
    
    .country-flag {
        font-size: 1.5rem;
    }
    
    .country-name {
        font-size: 0.8rem;
    }
    
    .global-info-features .feature-item {
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 576px) {
    .global-info-card {
        padding: 1.5rem;
    }
    
    .global-info-title h3 {
        font-size: 1.3rem;
    }
    
    .global-info-title p {
        font-size: 0.9rem;
    }
    
    .global-info-description {
        padding: 1.25rem;
    }
    
    .global-info-description p {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.5rem;
    }
    
    .country-item {
        padding: 0.5rem;
    }
    
    .country-flag {
        font-size: 1.25rem;
    }
    
    .country-name {
        font-size: 0.7rem;
    }
    
    .global-info-features .feature-item {
        padding: 0.75rem 0.875rem;
    }
    
    .global-info-features .feature-item span {
        font-size: 0.9rem;
    }
}

/* Global Reach Section - New Design */
.global-reach-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Global Physical Presence - Uses same styles as Global Virtual Presence */
.global-physical-presence {
    /* Inherits all styles from .global-reach-section */
    background: var(--gradient-soft);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Blue Highlighting for Specific Elements */
.blue-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
    font-weight: 900;
}

/* Both sections now use identical styling from .global-reach-section */

/* Blue highlighting for "Instant Global Access" text */
.blue-highlight-text {
    color: var(--primary-color) !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(37, 99, 235, 0.1);
}

.global-reach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.global-reach-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.global-reach-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: var(--shadow-lg);
    animation: globeFloat 4s ease-in-out infinite;
}

@keyframes globeFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(8deg); }
}

.global-reach-title h5 {
    color: var(--gray-900);
    font-size: 1.4rem;
    margin: 0;
    font-weight: 800;
}

.global-reach-title p {
    color: var(--gray-600);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.global-reach-content {
    position: relative;
    z-index: 2;
}

.reach-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.08), transparent);
    transition: left 0.6s ease;
}

.highlight-item:hover::before {
    left: 100%;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.highlight-content h6 {
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.reach-description {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.reach-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(37, 99, 235, 0.01) 100%);
    border-radius: var(--border-radius);
    pointer-events: none;
}

.reach-description p {
    margin: 0;
    line-height: 1.8;
    color: var(--gray-700);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.reach-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reach-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: var(--border-radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.reach-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.08), transparent);
    transition: left 0.5s ease;
}

.reach-feature:hover::before {
    left: 100%;
}

.reach-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.reach-feature i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.reach-feature span {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Countries Showcase within Global Reach Section */
.countries-showcase {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.country-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.country-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.08), transparent);
    transition: left 0.6s ease;
}

.country-item:hover::before {
    left: 100%;
}

.country-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.country-flag {
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.country-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    position: relative;
    z-index: 1;
}

/* Responsive Design for Global Reach */
@media (max-width: 768px) {
    .global-reach-section {
        padding: 2rem;
    }
    
    .global-reach-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .global-reach-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .global-reach-title h5 {
        font-size: 1.25rem;
    }
    
    .reach-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .highlight-item {
        padding: 1.25rem;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .reach-description {
        padding: 1.5rem;
    }
    
    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
    }
    
    .country-item {
        padding: 0.75rem;
    }
    
    .country-flag {
        font-size: 1.5rem;
    }
    
    .country-name {
        font-size: 0.8rem;
    }
    
    .reach-feature {
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .global-reach-section {
        padding: 1.5rem;
    }
    
    .global-reach-title h5 {
        font-size: 1.1rem;
    }
    
    .global-reach-title p {
        font-size: 0.9rem;
    }
    
    .highlight-content h6 {
        font-size: 1rem;
    }
    
    .highlight-content p {
        font-size: 0.9rem;
    }
    
    .reach-description {
        padding: 1.25rem;
    }
    
    .reach-description p {
        font-size: 0.95rem;
    }
    
    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.5rem;
    }
    
    .country-item {
        padding: 0.5rem;
    }
    
    .country-flag {
        font-size: 1.25rem;
    }
    
    .country-name {
        font-size: 0.7rem;
    }
    
    .reach-feature {
        padding: 0.875rem 1rem;
    }
    
    .reach-feature span {
        font-size: 0.95rem;
    }
}

/* About Us Section - Enhanced Styling */
#about {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

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

.about-content {
    position: relative;
    z-index: 2;
}

.about-content h6 {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.about-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Company Summary Styling */
.company-summary {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.company-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(37, 99, 235, 0.01) 100%);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
}

.company-summary h5 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.company-summary p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* What We Do Styling */
.what-we-do {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--success-color);
    position: relative;
    overflow: hidden;
}

.what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(16, 185, 129, 0.01) 100%);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
}

.what-we-do h5 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--success-color);
}

.what-we-do p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Global Reach Section */
.global-reach-section {
    background: linear-gradient(135deg, #fff8e1 0%, #ffeaa7 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    margin: 3rem 0;
}

.global-reach-header {
    margin-bottom: 3rem;
}

.global-reach-icon {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: globeFloat 3s ease-in-out infinite;
}

.global-reach-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.global-reach-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.reach-highlights {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.highlight-icon {
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.highlight-content h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.highlight-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.virtual-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.virtual-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #495057;
}

.physical-presence-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.presence-header {
    text-align: center;
    margin-bottom: 2rem;
}

.presence-icon {
    display: inline-block;
    background: linear-gradient(135deg, #4ecdc4, #00b894);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.presence-header h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.presence-subtitle {
    color: #4ecdc4;
    font-weight: 500;
    font-size: 1.1rem;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #fff8e1;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.country-item:hover {
    background: #ffeaa7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.country-flag {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.country-name {
    font-weight: 500;
    color: #495057;
}

.presence-description {
    background: #fff8e1;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.presence-description p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.presence-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.presence-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #495057;
}

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

/* About Features Styling */
.about-features {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.about-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.02) 0%, rgba(245, 158, 11, 0.01) 100%);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
}

.feature-item {
    position: relative;
    z-index: 1;
    transition: var(--transition);
    border-radius: var(--border-radius);
    padding: 1rem;
}

.feature-item:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateX(8px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.feature-item h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* About Image Grid Styling */
.about-image {
    position: relative;
    z-index: 2;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.image-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.image-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-item:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(16, 185, 129, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.image-item:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    transform: scale(0.8);
    transition: var(--transition);
}

.image-item:hover .image-overlay i {
    transform: scale(1);
}

/* Responsive Design for About Us */
@media (max-width: 1200px) {
    .about-content h2 {
        font-size: 2.8rem;
    }
    
    .about-image-grid {
        max-width: 450px;
    }
}

@media (max-width: 992px) {
    .about-content h2 {
        font-size: 2.5rem;
    }
    
    .about-content .lead {
        font-size: 1.15rem;
    }
    
    .company-summary,
    .what-we-do,
    .about-features {
        padding: 1.75rem;
    }
    
    .about-image-grid {
        max-width: 400px;
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .about-content .lead {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .about-content h6 {
        text-align: center;
    }
    
    .company-summary,
    .what-we-do,
    .about-features {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .company-summary h5,
    .what-we-do h5 {
        font-size: 1.25rem;
    }
    
    .company-summary p,
    .what-we-do p {
        font-size: 1rem;
    }
    
    .about-image-grid {
        max-width: 350px;
        gap: 1rem;
    }
    
    .image-item {
        aspect-ratio: 3/2;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .feature-item h6 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 1.9rem;
    }
    
    .about-content .lead {
        font-size: 1rem;
    }
    
    .company-summary,
    .what-we-do,
    .about-features {
        padding: 1.25rem;
    }
    
    .company-summary h5,
    .what-we-do h5 {
        font-size: 1.15rem;
    }
    
    .company-summary p,
    .what-we-do p {
        font-size: 0.95rem;
    }
    
    .about-image-grid {
        max-width: 300px;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.5rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-item h6 {
        font-size: 0.95rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
}

/* New Attractive Global Presence Design */
.global-presence-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

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

.presence-header-new {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.presence-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.presence-badge-new i {
    font-size: 1.2rem;
    color: white;
}

.presence-badge-new span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.presence-title-new {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.presence-subtitle-new {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.presence-content-new {
    position: relative;
    z-index: 2;
}

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

.presence-card-new {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.presence-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.presence-card-new:hover::before {
    left: 100%;
}

.presence-card-new:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.card-header-new {
    text-align: center;
    margin-bottom: 2rem;
}

.card-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--success-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-lg);
    animation: iconPulse 4s ease-in-out infinite;
}

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

.card-header-new h4 {
    color: var(--gray-900);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.card-header-new p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.card-features-new {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item-new:hover {
    background: white;
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.feature-item-new i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.feature-item-new span {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 1rem;
}

.card-highlights-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item-new {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight-item-new:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon-new {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--success-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.highlight-content-new h6 {
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.highlight-content-new p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.card-description-new {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
}

.card-description-new p {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.countries-showcase-new {
    margin-bottom: 2rem;
}

.countries-showcase-new h5 {
    color: var(--gray-900);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.countries-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}

.country-item-new {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.country-item-new:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.country-flag-new {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.country-name-new {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* Responsive Design for New Global Presence */
@media (max-width: 1200px) {
    .presence-grid-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .global-presence-new {
        padding: 2rem;
    }
    
    .presence-title-new {
        font-size: 2rem;
    }
    
    .presence-subtitle-new {
        font-size: 1rem;
    }
    
    .presence-card-new {
        padding: 2rem;
    }
    
    .card-highlights-new {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .countries-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.75rem;
    }
    
    .country-item-new {
        padding: 0.75rem;
    }
    
    .country-flag-new {
        font-size: 1.5rem;
    }
    
    .country-name-new {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .global-presence-new {
        padding: 1.5rem;
    }
    
    .presence-title-new {
        font-size: 1.75rem;
    }
    
    .presence-card-new {
        padding: 1.5rem;
    }
    
    .card-icon-new {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-header-new h4 {
        font-size: 1.25rem;
    }
    
    .feature-item-new {
        padding: 0.875rem 1rem;
    }
    
    .feature-item-new span {
        font-size: 0.9rem;
    }
    
    .highlight-item-new {
        padding: 1.25rem;
    }
    
    .highlight-icon-new {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .card-description-new {
        padding: 1.5rem;
    }
    
    .card-description-new p {
        font-size: 0.95rem;
    }
}

/* ========================================
   ENHANCED ABOUT US SECTION STYLES
======================================== */

/* Stats Showcase */
.stats-showcase {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-600);
    margin: 0;
}

/* About Tabs Container */
.about-tabs-container {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Tab Navigation */
.nav-pills .nav-link {
    background: transparent;
    border: 2px solid var(--gray-200);
    color: var(--gray-600);
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin: 0 0.25rem;
}

.nav-pills .nav-link:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-pills .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

/* Tab Content */
.tab-content {
    padding-top: 2rem;
}

/* Company Highlights */
.company-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateX(8px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.highlight-content h6 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.highlight-content p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Service Cards Enhanced */
.service-card-enhanced {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card-enhanced:hover::before {
    transform: scaleX(1);
}

.service-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

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

.service-card-enhanced:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card-enhanced h5 {
    color: var(--gray-900);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-card-enhanced p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1rem;
}

/* Global Presence Card */
.global-presence-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.presence-icon-large {
    text-align: center;
    margin-bottom: 1.5rem;
}

.presence-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.presence-content .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.virtual-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.virtual-features-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.virtual-features-grid .feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.virtual-features-grid .feature-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.virtual-features-grid .feature-item span {
    font-weight: 500;
    color: var(--gray-700);
}

/* World Map Visual */
.world-map-visual {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
}

.coverage-stats h5 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.coverage-stats p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

/* Physical Presence Card */
.physical-presence-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.presence-icon-large {
    text-align: center;
    margin-bottom: 1.5rem;
}

.presence-icon-large i {
    animation: iconPulse 3s ease-in-out infinite;
}

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

/* Countries Showcase */
.countries-showcase {
    margin-top: 2rem;
}

.country-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.country-card .country-flag {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.country-card .country-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.country-card .country-details {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-style: italic;
}

/* Values Content */
.values-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.values-content .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.values-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.values-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Enhanced About Us */
@media (max-width: 768px) {
    .stats-showcase {
        padding: 2rem 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-tabs-container {
        padding: 1.5rem;
    }
    
    .nav-pills .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        margin: 0.125rem;
    }
    
    .service-card-enhanced {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card-enhanced .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .global-presence-card,
    .physical-presence-card {
        padding: 2rem 1.5rem;
    }
    
    .virtual-features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .country-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .country-card .country-flag {
        font-size: 2rem;
    }
    
    .value-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .stats-showcase {
        padding: 1.5rem 0.75rem;
    }
    
    .stat-card {
        padding: 1.25rem 0.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .about-tabs-container {
        padding: 1rem;
    }
    
    .nav-pills .nav-link {
        padding: 0.625rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .service-card-enhanced {
        padding: 1.25rem;
    }
    
    .service-card-enhanced .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .global-presence-card,
    .physical-presence-card {
        padding: 1.5rem 1rem;
    }
    
    .presence-content h4 {
        font-size: 1.5rem;
    }
    
    .presence-content .lead {
        font-size: 1rem;
    }
    
    .country-card {
        padding: 0.875rem;
    }
    
    .country-card .country-flag {
        font-size: 1.75rem;
    }
    
    .country-card .country-name {
        font-size: 1rem;
    }
    
    .country-card .country-details {
        font-size: 0.8rem;
    }
    
    .value-card {
        padding: 1.25rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .value-card h5 {
        font-size: 1.1rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
}

/* ========================================
   MESSAGING COMPONENTS STYLES
======================================== */

/* Floating Messaging Buttons */
.floating-messaging-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.messaging-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.messaging-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-xl);
    color: white;
    text-decoration: none;
}

.messaging-btn:active {
    transform: translateY(-1px) scale(1.05);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: pulse-whatsapp 2s infinite;
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #005f8c 100%);
    animation: pulse-telegram 2s infinite 0.5s;
}

.live-chat-btn {
    background: var(--gradient-primary);
    animation: pulse-chat 2s infinite 1s;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: var(--shadow-lg); }
    50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.2); }
}

@keyframes pulse-telegram {
    0%, 100% { box-shadow: var(--shadow-lg); }
    50% { box-shadow: 0 0 0 10px rgba(0, 136, 204, 0.2); }
}

@keyframes pulse-chat {
    0%, 100% { box-shadow: var(--shadow-lg); }
    50% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0.2); }
}

/* Messaging Options Card */
.messaging-options-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.messaging-option {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.messaging-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.option-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.telegram-icon {
    background: linear-gradient(135deg, #0088cc 0%, #005f8c 100%);
}

.phone-icon {
    background: var(--gradient-primary);
}

.email-icon {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.messaging-option h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.messaging-option p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Live Chat Widget (legacy – now replaced by Crisp) */
.live-chat-widget {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 380px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
    z-index: 1001;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(10px);
}

.live-chat-widget.show {
    display: flex;
    animation: slideInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.live-chat-widget.minimized {
    height: 60px;
    width: 300px;
}

/* Hide custom chat UIs in favor of Crisp */
.unified-chat-widget,
.live-chat-widget {
    display: none !important;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.chat-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.agent-avatar {
    position: relative;
    width: 45px;
    height: 45px;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #4ade80;
    border: 2px solid white;
    border-radius: 50%;
    animation: pulse-online 2s infinite;
}

@keyframes pulse-online {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.agent-details {
    flex: 1;
}

.agent-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.agent-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-weight: 500;
}

.chat-controls {
    display: flex;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.chat-minimize,
.chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-minimize:hover,
.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.chat-messages {
    flex: 1;
    padding: 1.5rem 1rem;
    overflow-y: auto;
    background: transparent;
    scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.message {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-end;
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.agent-message {
    justify-content: flex-start;
    gap: 0.75rem;
}

.user-message {
    justify-content: flex-end;
    gap: 0.75rem;
}

.message-avatar {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.message-content {
    max-width: 75%;
    position: relative;
}

.message-bubble {
    padding: 0.875rem 1.125rem;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.agent-message .message-bubble {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 6px;
    position: relative;
}

.agent-message .message-bubble::before {
    content: '';
    position: absolute;
    left: -8px;
    bottom: 0;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-right-color: white;
    border-bottom: 8px solid white;
}

.user-message .message-bubble {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-right-radius: 6px;
    position: relative;
}

.user-message .message-bubble::before {
    content: '';
    position: absolute;
    right: -8px;
    bottom: 0;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-left-color: #667eea;
    border-bottom: 8px solid #667eea;
}

.message-bubble p {
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

.message-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding: 0 0.25rem;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.6;
    font-weight: 500;
}

.message-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Typing Indicator */
.typing-indicator {
    display: none;
    padding: 1rem;
    align-items: center;
    gap: 0.75rem;
    animation: fadeIn 0.3s ease-in;
}

.typing-indicator.show {
    display: flex;
}

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

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    animation: typingDot 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }
.typing-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes typingDot {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.typing-text {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.chat-actions {
    padding: 1.25rem;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.quick-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.quick-action-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #f1f3f4;
    background: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 90px;
    position: relative;
    overflow: hidden;
}

.quick-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.quick-action-btn:hover::before {
    left: 100%;
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.quick-action-btn[data-action="whatsapp"] {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.2);
}

.quick-action-btn[data-action="whatsapp"]:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.quick-action-btn[data-action="telegram"] {
    color: #0088cc;
    border-color: rgba(0, 136, 204, 0.2);
}

.quick-action-btn[data-action="telegram"]:hover {
    background: linear-gradient(135deg, #0088cc 0%, #005f8c 100%);
    color: white;
}

.quick-action-btn[data-action="call"] {
    color: #667eea;
    border-color: rgba(102, 126, 234, 0.2);
}

.quick-action-btn[data-action="call"]:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.quick-action-btn[data-action="email"] {
    color: #17a2b8;
    border-color: rgba(23, 162, 184, 0.2);
}

.quick-action-btn[data-action="email"]:hover {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
}

.chat-input {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 0.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.chat-input:focus-within {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.chat-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    color: #333;
}

.chat-input input::placeholder {
    color: #999;
    font-style: italic;
}

.send-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.send-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.send-btn:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.send-btn:hover:not(:disabled)::before {
    width: 100%;
    height: 100%;
}

.send-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Enhanced Mobile Responsive Design for Messaging */
@media (max-width: 768px) {
    .floating-messaging-buttons {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .messaging-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .live-chat-widget {
        right: 10px;
        bottom: 80px;
        width: calc(100vw - 20px);
        height: 400px;
        max-width: 350px;
    }
    
    .messaging-options-card {
        padding: 1.5rem;
    }
    
    .messaging-option {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .quick-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .quick-action-btn {
        min-width: auto;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Contact form mobile optimization */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-control,
    .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .floating-messaging-buttons {
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }
    
    .messaging-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .live-chat-widget {
        right: 5px;
        bottom: 70px;
        width: calc(100vw - 10px);
        height: 350px;
        max-width: none;
    }
    
    .messaging-options-card {
        padding: 1rem;
    }
    
    .messaging-option {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .option-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .quick-actions {
        gap: 0.375rem;
    }
    
    .quick-action-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
    }
    
    /* Contact form small mobile optimization */
    .contact-form {
        padding: 1rem;
    }
    
    .form-control,
    .form-select {
        font-size: 16px;
        padding: 0.625rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    /* Typography */
    .hero-section h1 {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .hero-section .lead {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    /* Layout Spacing */
    .hero-section {
        padding: 70px 0 40px;
        min-height: 80vh;
    }
    
    .section {
        padding: 40px 0;
    }
    
    /* Cards and Components */
    .card-body {
        padding: 1rem;
    }
    
    .service-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 0.875rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
        min-height: 50px;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Grid Adjustments */
    .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    
    .col-md-6,
    .col-md-4,
    .col-md-3 {
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 0.5rem;
    }
    
    /* Navigation */
    .navbar-brand img {
        height: 30px;
    }
    
    .navbar-nav {
        padding: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.375rem 0.5rem;
        font-size: 0.85rem;
    }
    
    /* Container Padding */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Messaging Components */
    .live-chat-widget {
        width: calc(100vw - 10px);
        right: 5px;
        bottom: 70px;
        height: 320px;
    }
    
    .messaging-options-card {
        padding: 0.875rem;
    }
    
    .messaging-option {
        padding: 0.625rem;
        margin-bottom: 0.625rem;
    }
    
    .option-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    .floating-messaging-buttons {
        right: 8px;
        bottom: 8px;
        gap: 6px;
    }
    
    .messaging-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .quick-actions {
        gap: 0.25rem;
    }
    
    .quick-action-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    /* Form Controls */
    .form-control,
    .form-select {
        font-size: 16px;
        padding: 0.5rem;
    }
}

}
