:root {
    --primary-color: #10b981;
    --secondary-color: #059669;
    --accent-color: #ef4444;
    --dark-color: #111827;
    --light-color: #ffffff;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --text-dark: #111827;
    --text-light: #6b7280;
    --primary-light: #d1fae5;
    --primary-dark: #047857;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-color);
}

/* Navigation */
.navbar {
    background: rgba(16, 185, 129, 0.85);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(15px);
}

.navbar-brand {
    font-weight: 700;
    color: white !important;
}

.nav-link {
    font-weight: 500;
    color: white !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--secondary-color);
    color: white !important;
}

.navbar-nav .btn {
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-nav .btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 160px 0 120px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero image loading states */
.hero-section.hero-image-loaded {
    transition: all 0.5s ease;
}

.hero-section.hero-image-loading {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.hero-section.hero-image-loading::before {
    opacity: 0 !important;
}

.hero-section.hero-image-fallback {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.hero-section.hero-image-fallback::before {
    display: none;
}

/* Ensure hero background image is properly displayed */
.hero-section[style*="background-image"] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(5, 150, 105, 0.9) 100%);
}

.hero-section[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Hero background image loading animation */
.hero-section[style*="background-image"].hero-image-loaded::before {
    opacity: 0.8;
}

.hero-section[style*="background-image"]:not(.hero-image-loaded)::before {
    opacity: 0;
}

.hero-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255,255,255,0.1), transparent);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 50%);
}

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

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}

.hero-section .lead {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}



/* Statistics Section Styling - Enhanced version below */

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

/* Hero section h1 and lead styling - Enhanced version above */

/* Buttons */
.btn {
    border-radius: 6px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--gray-100);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-danger {
    background-color: var(--accent-color);
    border: none;
}

.btn-danger:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-warning {
    background-color: #f59e0b;
    border: none;
    color: white;
}

.btn-warning:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

section h5 {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Cards */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    background: white;
    border: 1px solid var(--gray-100);
}

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

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

/* Fish image styling for services page */
.fish-image {
    height: 180px !important;
    width: 180px !important;
    object-fit: contain;
    background: transparent !important;
    filter: contrast(1.1) brightness(1.05);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.fish-image:hover {
    transform: scale(1.05);
    filter: contrast(1.2) brightness(1.1);
}

/* Quality Assurance Section Styling */
.quality-assurance-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.quality-assurance-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.quality-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.quality-icon {
    display: inline-block;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.quality-icon i {
    color: white !important;
}

.card-body {
    padding: 1.5rem;
    text-align: center;
}

.card-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Background Sections */
.bg-primary {
    background-color: var(--primary-color) !important;
    color: white;
}

.bg-dark {
    background-color: var(--dark-color) !important;
    color: white;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 2rem 0;
}

footer h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

footer a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

/* KMJ Group Badge */
.kmj-group-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Form Styling */
.form-control {
    border-radius: 6px;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

/* Image Styling */
.img-fluid {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px 0;
        min-height: 80vh;
        background-attachment: scroll !important;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 60px 0;
        min-height: 70vh;
        background-attachment: scroll !important;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 50px 0;
        min-height: 60vh;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section .lead {
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Simple Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

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

/* Railway Fix - Ensure proper background colors */
body, html {
    background-color: var(--light-color) !important;
}

.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

footer {
    background-color: var(--dark-color) !important;
}

/* Modern Logo Styling */
.navbar-brand img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    display: block !important;
    max-width: 60px !important;
    height: auto !important;
    object-fit: contain !important;
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Ensure logo is visible */
.navbar-brand {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
}

.navbar-brand img {
    flex-shrink: 0 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 2px !important;
}

/* Debug logo visibility */
.navbar-brand img::before {
    content: 'LOGO' !important;
    display: block !important;
    color: white !important;
    font-size: 12px !important;
    text-align: center !important;
}

/* Logo fallback styling */
.logo-fallback {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    font-weight: bold !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    margin-right: 15px !important;
}

/* Ensure logo image is visible */
.navbar-brand img {
    min-width: 40px !important;
    min-height: 40px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Force logo display */
.navbar-brand img[src*="logo.png"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Modern Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Modern Card Enhancements */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
    border-color: var(--primary-color);
}

/* Modern Button Enhancements */
.btn {
    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: left 0.5s;
}

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

/* Modern Form Styling */
.form-control {
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    transform: translateY(-1px);
}

/* Modern Footer Enhancements */
footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

/* Hero Background Image - Remove fixed attachment on mobile */
.hero-section {
    position: relative;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1,
.hero-section .lead,
.hero-section .btn,
.hero-section .hero-badge {
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll !important;
    }
}

/* Vision & Mission Section Styling */
.vision-mission-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    position: relative;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    z-index: 1;
}

.vision-card,
.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
    border-color: var(--primary-color);
}

.vision-icon,
.mission-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.vision-card h2,
.mission-card h2 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.vision-card .lead,
.mission-card .lead {
    color: var(--text-light);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Page Hero Sections (smaller than main hero) */
.page-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.page-hero-section .container {
    position: relative;
    z-index: 2;
}

/* About Page Specific Styling */
.about-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.about-image-card:hover .image-overlay {
    transform: translateY(0);
}

.company-details-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    text-align: center;
}

/* 404 Page Specific Styling */
.error-404 .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.error-404 .hero-section h1 {
    font-size: 8rem;
    font-weight: 900;
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.error-404 .card {
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.error-404 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
    border-color: var(--primary-color);
}

.error-404 .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.error-404 .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Logo in Footer */
footer .navbar-brand img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Modern Navigation Enhancements */
.navbar-nav .nav-link {
    position: relative;
    font-weight: 500;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
} 

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 0.9rem;
    }
    
    .navbar-brand .fw-bold {
        font-size: 1rem !important;
    }
    
    .navbar-brand small {
        font-size: 0.7rem;
    }
    
    .navbar-nav .btn {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    .navbar-collapse {
        background: rgba(16, 185, 129, 0.95);
        border-radius: 8px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
}

/* Statistics Section Mobile Improvements */
@media (max-width: 576px) {
    .stats-section {
        padding: 2rem 0;
    }
    
    .stats-section .row {
        margin: 0 -5px;
    }
    
    .stats-section .col-6 {
        padding: 0 5px;
        margin-bottom: 1.5rem;
    }
    
    .stats-section .h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        word-break: keep-all;
        white-space: nowrap;
    }
    
    .stats-section small {
        font-size: 0.7rem;
        line-height: 1.3;
        display: block;
        margin-top: 0.25rem;
        word-break: keep-all;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .stats-section .h2 {
        font-size: 1.4rem;
    }
    
    .stats-section small {
        font-size: 0.65rem;
    }
    
    .stats-section .col-6 {
        margin-bottom: 1rem;
    }
    
    /* Ensure stats section is smaller on very small screens */
    .stats-section {
        padding: 1.5rem 0;
    }
    
    .stats-section .row {
        margin: 0 -3px;
    }
    
    .stats-section .col-6 {
        padding: 0 3px;
    }
} 

/* Hero Section Mobile Content Improvements */
@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px 0;
        min-height: 80vh;
        background-attachment: scroll !important;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-badge {
        margin-top: 1.5rem;
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    /* Statistics section mobile improvements */
    .stats-section .h2 {
        font-size: 2.5rem;
    }
    
    .stats-section small {
        font-size: 0.8rem;
    }
    
    .stats-section .col-md-3 {
        margin-bottom: 2rem;
    }
} 

/* Statistics Section - Completely Redesigned */
.stats-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(5, 150, 105, 0.03) 100%);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

/* Stat Card Styling */
.stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
    border-color: var(--primary-color);
}

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

/* Stat Number Styling */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    word-break: keep-all;
    white-space: nowrap;
    overflow: visible;
}

/* Stat Label Styling */
.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    line-height: 1.3;
    word-break: keep-all;
    white-space: nowrap;
    overflow: visible;
}

/* Responsive Design for Stats */
@media (max-width: 1200px) {
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .stats-section {
        padding: 3rem 0;
    }
    
    .stat-card {
        padding: 1.75rem 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 2.5rem 0;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stats-section .row {
        margin: 0 -0.5rem;
    }
    
    .stats-section .col-6 {
        padding: 0 0.5rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 2rem 0;
    }
    
    .stat-card {
        padding: 1.25rem 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }
    
    .stats-section .row {
        margin: 0 -0.25rem;
    }
    
    .stats-section .col-6 {
        padding: 0 0.25rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 1.5rem 0;
    }
    
    .stat-card {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
} 

/* Old About Page CSS removed - using new enhanced styling above */

/* Additional Stats Section Enhancements */
.stats-section .row {
    align-items: stretch;
}

.stat-card {
    position: relative;
    z-index: 1;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(5, 150, 105, 0.02) 100%);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

/* Ensure stats work well on very small screens */
@media (max-width: 360px) {
    .stats-section {
        padding: 1.5rem 0;
    }
    
    .stat-card {
        padding: 0.75rem 0.25rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.2px;
    }
    
    .stats-section .row {
        margin: 0 -0.125rem;
    }
    
    .stats-section .col-6 {
        padding: 0 0.125rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .stats-section {
        padding: 2rem 0;
    }
    
    .stat-card {
        padding: 1.25rem 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
} 

/* About Section Enhanced Styling */
.logo-showcase {
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.logo-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    opacity: 0.1;
    z-index: 1;
}

.company-main-logo {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    display: block;
    max-width: 100%;
    height: auto;
    opacity: 1;
    visibility: visible;
    will-change: transform;
    min-height: 280px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.company-main-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

.about-content {
    padding: 1rem 0;
}

.company-header {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
}

.company-name {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
}

.company-subtitle {
    font-size: 1rem;
    font-weight: 500;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .logo-showcase {
        min-height: 350px;
        padding: 1.5rem;
    }
    
    .company-main-logo {
        width: 240px;
        height: 240px;
    }
    
    .company-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .logo-showcase {
        min-height: 300px;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .company-main-logo {
        width: 200px;
        height: 200px;
    }
    
    .company-header {
        text-align: center;
        border-bottom: none;
        padding-bottom: 0.5rem;
    }
    
    .company-name {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .about-content {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .logo-showcase {
        min-height: 250px;
        padding: 0.75rem;
    }
    
    .company-main-logo {
        width: 180px;
        height: 180px;
        padding: 12px;
    }
    
    .company-name {
        font-size: 1.6rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .logo-showcase {
        min-height: 220px;
        padding: 0.5rem;
    }
    
    .company-main-logo {
        width: 160px;
        height: 160px;
        padding: 10px;
    }
    
    .company-name {
        font-size: 1.4rem;
    }
    
    .about-content p {
        font-size: 0.9rem;
    }
} 