/* Global Styles */

/* Performance optimizations */
* {
    box-sizing: border-box;
}

/* Prevent layout shifts during image loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimize image loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Prevent unwanted animations during page load */
body {
    overflow-x: hidden;
}

/* Smooth scrolling for better mobile experience */
html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Enhanced Vibrant Styling */
:root {
    --primary-red: #8B0000;
    --primary-red-light: #a52a2a;
    --primary-red-dark: #660000;
    --accent-orange: #ff6b35;
    --accent-gold: #ffd700;
    --accent-blue: #1e90ff;
    --accent-green: #32cd32;
    --gradient-primary: linear-gradient(135deg, #8B0000 0%, #a52a2a 50%, #8B0000 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #ffd700 50%, #ff6b35 100%);
    --gradient-accent: linear-gradient(135deg, #1e90ff 0%, #32cd32 50%, #1e90ff 100%);
    --shadow-primary: 0 8px 25px rgba(139, 0, 0, 0.3);
    --shadow-secondary: 0 10px 30px rgba(255, 107, 53, 0.25);
    --shadow-accent: 0 12px 35px rgba(30, 144, 255, 0.2);
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

@media (max-width: 768px) {
    header {
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    }
}

/* Top Contact Bar */
.top-contact-bar {
    background-color: #fff;
    padding: 0.3rem 1rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 999;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    flex-shrink: 0;
}

.contact-info-item i {
    color: #8B0000;
    font-size: 1rem;
}

.contact-info-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #8B0000;
}

/* Main Header */
.main-header {
    padding: 0.6rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 1rem;
}

nav ul li {
    margin: 0;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: block;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8B0000;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: #8B0000;
}

.language-switch a {
    background-color: #8B0000;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.language-switch a:hover {
    background-color: #660000;
    color: #fff;
}

/* New Styles for Country Cards */
.country-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.country-card h4 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.country-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.country-card .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

/* Profile Section Styles */
.profile-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B0000 0%, #660000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.profile-content h4 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.profile-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Expertise Card Styles */
.expertise-card {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.expertise-card h3 {
    color: #8B0000;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.expertise-card .lead {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.expertise-card p {
    color: #666;
    line-height: 1.8;
}

/* Enhanced Statistics Section */
.stat-item {
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 215, 0, 0.1) 50%, rgba(30, 144, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-secondary);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.stat-item p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Mission Section Enhancement */
.mission-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8B0000 0%, #660000 50%, #8B0000 100%);
}

.mission-card h4 {
    color: #8B0000;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.8rem;
    text-shadow: 0 1px 2px rgba(139, 0, 0, 0.1);
}

.mission-card ul {
    text-align: start;
}

.mission-card li {
    margin-bottom: 1.2rem;
    color: #2c3e50;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(102, 0, 0, 0.05) 100%);
    border-radius: 8px;
    border-left: 4px solid #8B0000;
    transition: all 0.3s ease;
}

.mission-card li:hover {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(102, 0, 0, 0.1) 100%);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.15);
}

.mission-card li i {
    color: #8B0000;
    margin-left: 0.5rem;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(139, 0, 0, 0.2);
}

/* Enhanced mission section background */
.mission-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.mission-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="%238B0000" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%238B0000" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%238B0000" opacity="0.02"/><circle cx="10" cy="60" r="0.5" fill="%238B0000" opacity="0.02"/><circle cx="90" cy="40" r="0.5" fill="%238B0000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

/* Main Content */
main {
    margin-top: 90px;
    min-height: calc(100vh - 90px);
}

@media (max-width: 768px) {
    main {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
    }
}

@media (max-width: 480px) {
    main {
        margin-top: 50px;
        min-height: calc(100vh - 50px);
    }
}

/* Enhanced Hero Section */
.hero {
    text-align: left;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9) 0%, rgba(165, 42, 42, 0.8) 50%, rgba(102, 0, 0, 0.9) 100%);
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: var(--shadow-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/home-hero-1.jpg') center/cover;
    opacity: 0.6;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3) 0%, rgba(255, 215, 0, 0.2) 50%, rgba(30, 144, 255, 0.3) 100%);
    z-index: 2;
}

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

.hero h1 {
    font-size: clamp(2rem, 5vw, 5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: left;
}

.hero-logo {
    max-height: clamp(4rem, 8vw, 8rem);
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.section-logo {
    max-height: clamp(2.5rem, 4vw, 4rem);
    width: auto;
    margin-bottom: 1rem;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    max-width: 600px;
    margin: 0 0 2rem 0;
    opacity: 0.95;
    line-height: 1.6;
    color: #fff;
    text-align: left;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-buttons .btn-primary {
    background-color: #8B0000;
    color: #fff;
    border: 2px solid #8B0000;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
    white-space: nowrap;
}

.hero-buttons .btn-primary:hover {
    background-color: #660000;
    border-color: #660000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.4);
    color: #fff;
}

.hero-buttons .btn-primary[style*="transparent"] {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-buttons .btn-primary[style*="transparent"]:hover {
    background-color: #fff;
    color: #8B0000;
    border-color: #fff;
}

/* Section Styles */
.section {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

/* Enhanced section backgrounds for better text visibility */
.section:not(.statistics-section):not(.services-section):not(.latest-projects):not(.client-satisfaction):not(.equipment-maintenance):not(.safety-standards) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.section:not(.statistics-section):not(.services-section):not(.latest-projects):not(.client-satisfaction):not(.equipment-maintenance):not(.safety-standards) p,
.section:not(.statistics-section):not(.services-section):not(.latest-projects):not(.client-satisfaction):not(.equipment-maintenance):not(.safety-standards) h1,
.section:not(.statistics-section):not(.services-section):not(.latest-projects):not(.client-satisfaction):not(.equipment-maintenance):not(.safety-standards) h2,
.section:not(.statistics-section):not(.services-section):not(.latest-projects):not(.client-satisfaction):not(.equipment-maintenance):not(.safety-standards) h3,
.section:not(.statistics-section):not(.services-section):not(.latest-projects):not(.client-satisfaction):not(.equipment-maintenance):not(.safety-standards) h4,
.section:not(.statistics-section):not(.services-section):not(.latest-projects):not(.client-satisfaction):not(.equipment-maintenance):not(.safety-standards) h5,
.section:not(.statistics-section):not(.services-section):not(.latest-projects):not(.client-satisfaction):not(.equipment-maintenance):not(.safety-standards) h6,
.section:not(.statistics-section):not(.services-section):not(.latest-projects):not(.client-satisfaction):not(.equipment-maintenance):not(.safety-standards) li,
.section:not(.statistics-section):not(.services-section):not(.latest-projects):not(.client-satisfaction):not(.equipment-maintenance):not(.safety-standards) span,
.section:not(.statistics-section):not(.services-section):not(.latest-projects):not(.client-satisfaction):not(.equipment-maintenance):not(.safety-standards) div {
    color: #333333 !important;
    font-weight: 600 !important;
    text-shadow: none !important;
}

/* Enhanced section backgrounds for better visibility */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 50%, rgba(255, 255, 255, 0.95) 100%);
    z-index: 1;
}

.section > * {
    position: relative;
    z-index: 2;
}

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

.section h1,
.section h2 {
    margin-bottom: 2rem;
    color: var(--primary-red);
    text-align: center;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(139, 0, 0, 0.1);
}

.section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
}

/* Force white text in all sections for better visibility */
.section h1,
.section h2,
.section h3,
.section h4,
.section h5,
.section h6,
.section li,
.section span,
.section div {
    color: #ffffff !important;
}

/* Ensure specific text elements are white */
.section .text-center,
.section .container p,
.section .row p,
.section .col-lg-6 p,
.section .col-md-4 p,
.section .col-md-3 p {
    color: #ffffff !important;
}

/* Enhanced text contrast for better readability */
p, h1, h2, h3, h4, h5, h6, span, div, li {
    color: #333333 !important;
    font-weight: 500 !important;
}

/* Force dark text on light backgrounds */
.section p,
.section h1,
.section h2,
.section h3,
.section h4,
.section h5,
.section h6,
.section li,
.section span,
.section div {
    color: #333333 !important;
    font-weight: 600 !important;
    text-shadow: none !important;
}

/* Fix for sections with dark backgrounds - ensure white text */
.statistics-section p,
.statistics-section h1,
.statistics-section h2,
.statistics-section h3,
.statistics-section h4,
.statistics-section h5,
.statistics-section h6,
.statistics-section li,
.statistics-section span,
.statistics-section div,
.services-section p,
.services-section h1,
.services-section h2,
.services-section h3,
.services-section h4,
.services-section h5,
.services-section h6,
.services-section li,
.services-section span,
.services-section div,
.latest-projects p,
.latest-projects h1,
.latest-projects h2,
.latest-projects h3,
.latest-projects h4,
.latest-projects h5,
.latest-projects h6,
.latest-projects li,
.latest-projects span,
.latest-projects div,
.client-satisfaction p,
.client-satisfaction h1,
.client-satisfaction h2,
.client-satisfaction h3,
.client-satisfaction h4,
.client-satisfaction h5,
.client-satisfaction h6,
.client-satisfaction li,
.client-satisfaction span,
.client-satisfaction div,
.equipment-maintenance p,
.equipment-maintenance h1,
.equipment-maintenance h2,
.equipment-maintenance h3,
.equipment-maintenance h4,
.equipment-maintenance h5,
.equipment-maintenance h6,
.equipment-maintenance li,
.equipment-maintenance span,
.equipment-maintenance div,
.safety-standards p,
.safety-standards h1,
.safety-standards h2,
.safety-standards h3,
.safety-standards h4,
.safety-standards h5,
.safety-standards h6,
.safety-standards li,
.safety-standards span,
.safety-standards div {
    color: #ffffff !important;
    font-weight: 600 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Ensure white text only on dark backgrounds */
.hero p,
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6,
.footer p,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
    color: #ffffff !important;
}

/* Grid Layouts */
.services-grid,
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Enhanced Service Cards */
.service-card,
.project-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

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

.service-card::after,
.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 215, 0, 0.03) 50%, rgba(30, 144, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover,
.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-secondary);
    border-color: var(--accent-orange);
}

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

.service-card:hover::after,
.project-card:hover::after {
    opacity: 1;
}

.service-card h3,
.project-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-card i {
    font-size: 3.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 2;
}

.service-card p,
.project-card p {
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Project Cards */
.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.project-card-content {
    padding: 1rem 0;
}

.project-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.project-card p {
    color: #666;
    line-height: 1.5;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: #8B0000;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Enhanced Contact Items */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-red);
}

.contact-item:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.contact-item i {
    color: var(--primary-red);
    margin-top: 0.25rem;
    flex-shrink: 0;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(139, 0, 0, 0.2);
}

.contact-item h5 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.social-media h5 {
    color: #8B0000;
    margin-bottom: 1rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: #8B0000;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Enhanced Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
    color: #fff;
}

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

.btn-outline-primary {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    display: inline-block;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

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

/* Map and FAQ Styles */
.map-container {
    margin-top: 3rem;
}

.map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: #fff;
    color: #8B0000;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: #8B0000;
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: #f8f9fa;
    padding: 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 0;
    }

    .top-contact-bar {
        padding: 0.3rem 0.5rem;
        flex-direction: row;
        gap: 0.3rem;
        text-align: center;
        font-size: 0.7rem;
        min-height: auto;
    }

    .contact-info-item {
        font-size: 0.7rem;
        justify-content: center;
        flex: 1;
        min-width: 0;
    }

    .contact-info-item span {
        display: none;
    }

    .contact-info-item a {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
        background: #8B0000;
        color: #ffffff !important;
        border-radius: 3px;
        text-decoration: none;
        white-space: nowrap;
    }

    .main-header {
        padding: 0.3rem 0.5rem;
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .logo img {
        max-height: 40px;
    }

    .logo {
        flex: 1;
        text-align: center;
    }

    /* Show mobile menu button on mobile */
    .mobile-menu-btn {
        display: flex;
        visibility: visible;
        opacity: 1;
        background: #ffffff;
        color: #8B0000;
        border: 3px solid #8B0000;
        font-size: 1.5rem;
        padding: 0.8rem 1rem;
        min-width: 50px;
        min-height: 50px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: 9999;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-btn i {
        color: #8B0000 !important;
        font-size: 1.5rem !important;
        font-weight: bold !important;
    }

    /* Mobile Navigation - FIXED */
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        padding: 60px 20px 20px 20px;
    }

    nav.mobile-open {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Mobile nav content */
    nav ul {
        background: #ffffff;
        border-radius: 10px;
        padding: 1rem 0;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        text-align: center;
        width: 100%;
        padding: 1rem 0;
    }

    nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        padding: 1rem 1.5rem;
        color: #333333 !important;
        font-weight: 600 !important;
        font-size: 1.1rem !important;
        background: #ffffff !important;
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
        text-decoration: none;
        margin: 0;
    }

    nav ul li a:hover,
    nav ul li a.active {
        background: #8B0000 !important;
        color: #ffffff !important;
        transform: none;
        font-weight: 700 !important;
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    /* Mobile Menu Button Hover Effects */
    .mobile-menu-btn:hover {
        background: #f8f9fa;
        border-color: #660000;
        color: #660000;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }

    .mobile-menu-btn i {
        color: #8B0000;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .language-switch {
        margin: 0;
        flex-shrink: 0;
    }

    .language-switch a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: 1.5rem 1rem;
        min-height: 40vh;
        text-align: center;
        margin-top: 0;
    }

    .hero h1 {
        text-align: center;
    }

    .hero-logo {
        max-height: clamp(3rem, 6vw, 5rem);
        margin: 0 auto;
        display: block;
    }

    .section-logo {
        max-height: clamp(2rem, 4vw, 3rem);
        margin: 0 auto 0.5rem auto;
        display: block;
    }

    .hero p {
        text-align: center;
        margin: 0 auto 1.5rem auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn-primary {
        width: 100%;
        max-width: 250px;
        margin: 0;
    }

    .section {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
        border-radius: 10px;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .project-card {
        padding: 1.5rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .contact-item i {
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 1rem;
    }

    .certification-card,
    .testimonial-card,
    .news-card {
        padding: 1.5rem;
    }

    .news-image img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    /* Enhanced mobile typography for better readability */
    .hero h1 {
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .section h1 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #333333 !important;
    }

    .section h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #333333 !important;
    }

    .section h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #333333 !important;
    }

    .section h4 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #333333 !important;
    }

    /* Enhanced mobile text readability */
    p, span, div, li {
        font-size: 1rem !important;
        font-weight: 500 !important;
        color: #333333 !important;
        line-height: 1.6 !important;
    }

    .hero p {
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        color: #ffffff !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Enhanced mobile buttons */
    .hero-buttons .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 50px;
        background: #8B0000 !important;
        color: #ffffff !important;
        border: 2px solid #8B0000 !important;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        min-width: 120px;
    }

    .hero-buttons .btn-primary:hover {
        background: #660000 !important;
        border-color: #660000 !important;
        color: #ffffff !important;
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        background: #8B0000 !important;
        color: #ffffff !important;
        border: 2px solid #8B0000 !important;
    }

    .btn-primary:hover {
        background: #660000 !important;
        border-color: #660000 !important;
        color: #ffffff !important;
    }

    /* Enhanced mobile contact items */
    .contact-item {
        padding: 1.5rem;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .contact-item i {
        font-size: 2rem;
        color: #8B0000;
    }

    .contact-item h4 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #333333 !important;
    }

    .contact-item p {
        font-size: 1rem;
        color: #333333 !important;
    }

    /* Enhanced mobile containers */
    .contact-container {
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    /* Enhanced mobile form elements */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        background: #ffffff;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #8B0000;
        box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
    }

    /* Enhanced mobile social icons */
    .social-icons {
        gap: 1.5rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Enhanced mobile logo sizing - Reduced for better mobile experience */
    .logo img {
        max-height: 40px;
        filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
    }

    .hero-logo {
        max-height: 60px !important;
        filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
    }

    .section-logo {
        max-height: 50px !important;
        filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
    }

    /* Enhanced mobile navigation - More compact */
    .main-header {
        padding: 0.5rem 1rem;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        min-height: auto;
    }

    .top-contact-bar {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        background: #f8f9fa;
        min-height: auto;
    }

    /* Compact mobile header elements */
    .main-header .logo {
        max-width: 120px;
    }

    .main-header nav {
        display: none; /* Hide navigation on mobile for now */
    }

    .main-header .language-switch {
        margin-left: auto;
    }

    .contact-info-item {
        margin: 0 0.8rem;
        color: #333333 !important;
    }

    .contact-info-item i {
        color: #8B0000;
    }

    /* Enhanced mobile sections - Better spacing */
    .section {
        padding: 2rem 1rem;
        margin: 1rem 0.5rem;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: 1px solid #e9ecef;
    }

    /* Better mobile content spacing */
    .container {
        padding: 0 1rem;
    }

    .row {
        margin: 0 -0.5rem;
    }

    .col-md-4, .col-md-3, .col-lg-6 {
        padding: 0 0.5rem;
    }

    /* Enhanced mobile cards */
    .service-card,
    .project-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .service-card h3,
    .project-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #333333 !important;
    }

    .service-card p,
    .project-card p {
        font-size: 1rem;
        color: #333333 !important;
    }

    /* Enhanced mobile grids */
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Enhanced mobile hero section - More compact */
.hero {
    padding: 2rem 1rem;
    min-height: 50vh;
    background-attachment: scroll; /* Prevent parallax on mobile */
}

.hero-content {
    text-align: center;
    padding: 1rem 0;
}

/* Compact mobile hero content */
.hero h1 {
    margin-bottom: 1rem;
}

.hero p {
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.hero-buttons {
    margin-top: 1.5rem;
}

/* Mobile performance optimizations */
@media (max-width: 480px) {
    /* Disable animations on mobile for better performance */
    * {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        transition-duration: 0.2s !important;
    }
    
    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
        display: block;
        animation: none !important;
        transform: none !important;
    }
    
    /* Prevent layout shifts */
    .hero, .section, .service-card, .project-card {
        min-height: auto;
        overflow: hidden;
    }
    
    /* Optimize text rendering */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
}

    /* Enhanced mobile profile images - More proportional */
    .profile-image {
        width: 120px;
        height: 120px;
        border: 3px solid #ffffff;
        box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
        margin: 0 auto 1rem auto;
    }

    /* Compact mobile profile text */
    .profile-image + h3,
    .profile-image + h4,
    .profile-image + p {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    /* Enhanced mobile country cards */
    .country-card {
        padding: 2rem;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .country-card h4 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #333333 !important;
    }

    .country-card p {
        font-size: 1rem;
        color: #333333 !important;
    }
}

/* Utility Classes */
.text-primary {
    color: #8B0000 !important;
}

.bg-primary {
    background-color: #8B0000 !important;
}

.shadow {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.rounded {
    border-radius: 10px !important;
}

/* Enhanced Footer */
footer {
    background: var(--gradient-primary);
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    position: relative;
}

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

footer p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.social-media {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Enhanced Social Icons */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-icon:hover {
    background: var(--gradient-secondary);
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-secondary);
    border-color: var(--accent-orange);
}

/* Client Cards Styling */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.client-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #8B0000 0%, #660000 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.client-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.client-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

/* Testimonials Styling */
.testimonials {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.testimonials h2 {
    text-align: center;
    color: #8B0000;
    margin-bottom: 2rem;
    font-weight: 600;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-left: 4px solid #8B0000;
}

.testimonial blockquote {
    font-style: italic;
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: #8B0000;
    font-weight: 600;
    font-style: normal;
}

/* RTL Support */
.rtl {
    direction: rtl;
    text-align: right;
}

.rtl nav ul li a::after {
    left: auto;
    right: 0;
}

.rtl .language-switch a {
    margin-right: 0;
    margin-left: 1rem;
}

.rtl .top-contact-bar {
    justify-content: flex-start;
}

.rtl .contact-info-item {
    margin-left: 0;
    margin-right: 2rem;
}

.rtl .contact-info-item i {
    margin-left: 0;
    margin-right: 0.5rem;
}

.rtl .contact-container {
    direction: rtl;
}

.rtl .contact-item {
    text-align: right;
}

.rtl .form-group label {
    text-align: right;
}

.rtl .social-icons {
    direction: rtl;
}

/* Enhanced RTL support for better Arabic experience */
.rtl .hero {
    text-align: right;
}

.rtl .hero h1 {
    text-align: right;
}

.rtl .hero p {
    text-align: right;
}

.rtl .hero-buttons {
    justify-content: flex-start;
}

.rtl .section h1,
.rtl .section h2 {
    text-align: center;
}

.rtl .section p {
    text-align: right;
}

.rtl .service-card,
.rtl .project-card {
    text-align: right;
}

.rtl .contact-item i {
    margin-left: 0;
    margin-right: 0.5rem;
}

.rtl .form-group input,
.rtl .form-group select,
.rtl .form-group textarea {
    text-align: right;
}

.rtl .btn-primary {
    text-align: center;
}

/* RTL mobile optimizations */
@media (max-width: 768px) {
    .rtl .hero-buttons {
        justify-content: center;
    }
    
    .rtl .contact-info-item {
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .rtl .hero h1 {
        text-align: center;
    }
    
    .rtl .hero p {
        text-align: center;
    }
    
    .rtl .section p {
        text-align: center;
    }
}

/* Profile Image Styles */
.profile-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.profile-image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B0000 0%, #660000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    margin: 0 auto;
}

/* Country Image Styles */
.country-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.country-image img {
    transition: transform 0.3s ease;
}

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

/* Image Fallback Handling */
.profile-image:not([src]), 
.profile-image[src=""],
.profile-image[src*="undefined"] {
    display: none;
}

.profile-image:not([src]) + .profile-image-placeholder,
.profile-image[src=""] + .profile-image-placeholder,
.profile-image[src*="undefined"] + .profile-image-placeholder {
    display: flex;
}

/* Responsive Image Handling */
@media (max-width: 768px) {
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .profile-image-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .country-image img {
        height: 150px !important;
    }
}

/* Enhanced Equipment Statistics Background */
.equipment-stats {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 50%, var(--primary-red-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.equipment-stats::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="equipment-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ffffff" opacity="0.1"/><rect x="10" y="10" width="30" height="30" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23equipment-pattern)"/></svg>');
    pointer-events: none;
}

.equipment-stats h2 {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: #fff !important;
    background: none !important;
}

/* Enhanced Equipment Maintenance and Safety Sections */
.equipment-maintenance,
.safety-standards {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 50%, var(--primary-red-dark) 100%);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-primary);
}

.equipment-maintenance::before,
.safety-standards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 215, 0, 0.1) 50%, rgba(30, 144, 255, 0.2) 100%);
    z-index: 1;
}

.equipment-maintenance > *,
.safety-standards > * {
    position: relative;
    z-index: 2;
}

.equipment-maintenance h3,
.safety-standards h3 {
    color: var(--accent-orange);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.equipment-maintenance p,
.safety-standards p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.equipment-maintenance ul,
.safety-standards ul {
    list-style: none;
    padding: 0;
}

.equipment-maintenance li,
.safety-standards li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-orange);
    font-weight: 500;
    transition: all 0.3s ease;
}

.equipment-maintenance li:hover,
.safety-standards li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.equipment-maintenance li::before,
.safety-standards li::before {
    content: '✓';
    color: var(--accent-orange);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Enhanced Project Cards */
.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-card:hover img {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.project-card-content {
    padding: 1.5rem 0;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
    font-weight: 700;
}

.project-card p {
    color: #2c3e50;
    line-height: 1.7;
    font-weight: 500;
}

/* Enhanced Navigation Hover Effects */
nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.8rem 1rem;
    display: block;
    position: relative;
    border-radius: 8px;
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

nav ul li a:hover::before,
nav ul li a.active::before {
    opacity: 0.1;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 80%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* Enhanced Logo Animation */
.logo img {
    max-height: 100px;
    width: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(2px 2px 4px rgba(139, 0, 0, 0.2));
    /* Prevent image rotation during loading */
    transform: none;
    animation: none;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(4px 4px 8px rgba(139, 0, 0, 0.3));
}

/* Enhanced logo sizing for better visibility */
.hero-logo {
    max-height: 150px !important;
    width: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
    /* Prevent rotation and ensure stable loading */
    transform: none;
    animation: none;
}

.section-logo {
    max-height: 120px !important;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    /* Prevent rotation and ensure stable loading */
    transform: none;
    animation: none;
}

/* Image loading optimization */
img {
    /* Prevent image rotation during loading */
    transform: none !important;
    animation: none !important;
    /* Ensure proper loading */
    object-fit: cover;
    max-width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Image loading states */
img:not([src]), 
img[src=""],
img[src*="undefined"] {
    display: none;
}

/* Prevent any unwanted animations on images */
img, .logo img, .hero-logo, .section-logo {
    animation: none !important;
    transform: none !important;
}

/* Only allow hover effects, no loading animations */
.logo img:hover,
.hero-logo:hover,
.section-logo:hover {
    transform: scale(1.05) !important;
    transition: transform 0.3s ease !important;
}

/* Remove image loader after loading */
.image-loader {
    display: none !important;
}

/* Ensure images are visible after loading */
img[src]:not([src=""]) {
    opacity: 1;
}

/* Enhanced Language Switch Button */
.language-switch a {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.4s ease;
    font-weight: 600;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

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

.language-switch a:hover {
    background: var(--gradient-secondary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
}

.language-switch a:hover::before {
    left: 100%;
}

/* Enhanced Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-primary);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--gradient-secondary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-secondary);
}

/* Enhanced Form Styling */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

/* Enhanced Badge Styling */
.badge {
    background: var(--gradient-secondary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-secondary);
}

/* Enhanced Card Shadows and Animations */
.card {
    transition: all 0.4s ease;
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

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

.card-body {
    padding: 2rem;
}

/* Enhanced Text Gradients */
.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;
}

/* Enhanced Core Values Banner */
.core-values-banner {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 50%, var(--primary-red-dark) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.core-values-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(30, 144, 255, 0.1) 100%);
    z-index: 1;
}

.core-values-banner .container {
    position: relative;
    z-index: 2;
}

.core-value-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.4s ease;
    position: relative;
}

.core-value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.core-value-item:hover::before {
    opacity: 1;
}

.core-value-item i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.core-value-item h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.core-value-item p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Enhanced Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 50%, var(--primary-red-dark) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.statistics-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="stats-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><rect x="10" y="10" width="20" height="20" fill="none" stroke="%23ffffff" stroke-width="0.3" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
    pointer-events: none;
}

.statistics-section h2 {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: #fff !important;
    background: none !important;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 215, 0, 0.1) 50%, rgba(30, 144, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-secondary);
}

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

.stat-card i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.stat-card h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.stat-card p {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Enhanced Latest Projects Section */
.latest-projects {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 50%, var(--primary-red-dark) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.latest-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(30, 144, 255, 0.1) 100%);
    z-index: 1;
}

.latest-projects .container {
    position: relative;
    z-index: 2;
}

.latest-projects h2 {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: #fff !important;
    background: none !important;
}

.project-card-enhanced {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 2rem;
}

.project-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-secondary);
}

.project-card-enhanced img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card-enhanced:hover img {
    transform: scale(1.1);
}

.project-card-content {
    padding: 2rem;
}

.project-card-enhanced h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.project-card-enhanced p {
    color: #2c3e50;
    line-height: 1.7;
    font-weight: 500;
    font-size: 1.1rem;
}

.view-all-projects-btn {
    background: var(--gradient-secondary);
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-secondary);
    position: relative;
    overflow: hidden;
}

.view-all-projects-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 ease;
}

.view-all-projects-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.view-all-projects-btn:hover::before {
    left: 100%;
}

/* Enhanced Services Section */
.services-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 50%, var(--primary-red-dark) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(30, 144, 255, 0.1) 100%);
    z-index: 1;
}

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

.services-section h2 {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: #fff !important;
    background: none !important;
}

.service-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(30, 144, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-secondary);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.service-item h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.service-item p {
    color: #fff;
    line-height: 1.7;
    font-weight: 500;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-item li {
    color: #fff;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.service-item li::before {
    content: '✓';
    color: var(--accent-orange);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

/* Enhanced FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    padding: 4rem 0;
    position: relative;
}

.faq-section h2 {
    color: var(--primary-red) !important;
    text-shadow: 1px 1px 2px rgba(139, 0, 0, 0.1);
    -webkit-text-fill-color: var(--primary-red) !important;
    background: none !important;
}

.accordion-item {
    border: none;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

/* Force white text on ALL accordion buttons - ULTRA AGGRESSIVE */
.accordion-button,
.accordion-button:not(.collapsed),
.accordion-button.collapsed,
.accordion-button:focus,
.accordion-button:hover,
.accordion-button:active,
.accordion-button:visited,
.accordion-button:link {
    background: var(--gradient-primary) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 1.5rem 2rem !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-secondary) !important;
    color: #ffffff !important;
    box-shadow: var(--shadow-secondary) !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border: none !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
}

.accordion-button::after {
    color: #ffffff !important;
    font-size: 1.2rem !important;
}

/* Additional force for any remaining dark text */
.faq-section .accordion-button *,
.faq-section .accordion-button span,
.faq-section .accordion-button div,
.faq-section .accordion-button p,
.faq-section .accordion-button strong,
.faq-section .accordion-button em {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
}

/* Override any Bootstrap or other framework styles */
.accordion-button[style*="color"] {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-fill-color: #ffffff !important;
}

.accordion-body {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2rem;
    color: #2c3e50;
    line-height: 1.8;
    font-weight: 500;
    font-size: 1.1rem;
    border-left: 4px solid var(--accent-orange);
}

/* Enhanced Client Satisfaction Section */
.client-satisfaction {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 50%, var(--primary-red-dark) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.client-satisfaction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(30, 144, 255, 0.1) 100%);
    z-index: 1;
}

.client-satisfaction .container {
    position: relative;
    z-index: 2;
}

.client-satisfaction h2 {
    color: var(--accent-orange) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: var(--accent-orange) !important;
    background: none !important;
    font-weight: 700;
}

.client-stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.client-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 215, 0, 0.1) 50%, rgba(30, 144, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-secondary);
}

.client-stat-card:hover::before {
    opacity: 1;
}

.client-stat-card i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.client-stat-card h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.client-stat-card p {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Enhanced Equipment Maintenance and Safety Sections */
.equipment-maintenance,
.safety-standards {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 50%, var(--primary-red-dark) 100%);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-primary);
}

.equipment-maintenance::before,
.safety-standards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 215, 0, 0.1) 50%, rgba(30, 144, 255, 0.2) 100%);
    z-index: 1;
}

.equipment-maintenance > *,
.safety-standards > * {
    position: relative;
    z-index: 2;
}

.equipment-maintenance h3,
.safety-standards h3 {
    color: var(--accent-orange);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.equipment-maintenance p,
.safety-standards p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.equipment-maintenance ul,
.safety-standards ul {
    list-style: none;
    padding: 0;
}

.equipment-maintenance li,
.safety-standards li {
    color: #fff;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-orange);
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.equipment-maintenance li:hover,
.safety-standards li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.equipment-maintenance li::before,
.safety-standards li::before {
    content: '✓';
    color: var(--accent-orange);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Enhanced Section Separators */
.section-separator {
    height: 4px;
    background: var(--gradient-secondary);
    margin: 2rem 0;
    border-radius: 2px;
    box-shadow: var(--shadow-secondary);
}

/* Enhanced Background Text */
.background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

/* Enhanced Project Management Tools Section */
.project-management-tools {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 50%, var(--primary-red-dark) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.project-management-tools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(30, 144, 255, 0.1) 100%);
    z-index: 1;
}

.project-management-tools .container {
    position: relative;
    z-index: 2;
}

.project-management-tools h2 {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: #fff !important;
    background: none !important;
}

.tool-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.4s ease;
    position: relative;
}

.tool-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-item:hover::before {
    opacity: 1;
}

.tool-item i {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.tool-item h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.tool-item p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Enhanced Advanced Technology Section */
.advanced-technology {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 50%, var(--primary-red-dark) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.advanced-technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(30, 144, 255, 0.1) 100%);
    z-index: 1;
}

.advanced-technology .container {
    position: relative;
    z-index: 2;
}

.advanced-technology h2 {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: #fff !important;
    background: none !important;
}

.tech-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(30, 144, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-secondary);
}

.tech-item:hover::before {
    opacity: 1;
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.tech-item h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.tech-item p {
    color: #fff;
    line-height: 1.7;
    font-weight: 500;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Enhanced Our Values Section */
.our-values {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 50%, var(--primary-red-dark) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.our-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(30, 144, 255, 0.1) 100%);
    z-index: 1;
}

.our-values .container {
    position: relative;
    z-index: 2;
}

.our-values h2 {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: #fff !important;
    background: none !important;
}

.value-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.4s ease;
    position: relative;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-item:hover::before {
    opacity: 1;
}

.value-item i {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.value-item h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.value-item p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Enhanced Heavy Equipment Section */
.heavy-equipment {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 50%, var(--primary-red-dark) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.heavy-equipment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(30, 144, 255, 0.1) 100%);
    z-index: 1;
}

.heavy-equipment .container {
    position: relative;
    z-index: 2;
}

.heavy-equipment h2 {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: #fff !important;
    background: none !important;
}

.equipment-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.equipment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(30, 144, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-secondary);
}

.equipment-item:hover::before {
    opacity: 1;
}

.equipment-item i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.equipment-item h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.equipment-item p {
    color: #fff;
    line-height: 1.7;
    font-weight: 500;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Enhanced Additional Services Section */
.additional-services {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 50%, var(--primary-red-dark) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.additional-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(30, 144, 255, 0.1) 100%);
    z-index: 1;
}

.additional-services .container {
    position: relative;
    z-index: 2;
}

.additional-services h2 {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: #fff !important;
    background: none !important;
}