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

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

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(-180deg);
        opacity: 0;
    }
    to {
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 102, 204, 0.8), 0 0 30px rgba(0, 102, 204, 0.4);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-5px);
    }
    75% {
        transform: translateY(5px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set default zoom to 100% across all browsers */
html {
    zoom: 100%;
    -moz-transform: scale(1);
    -moz-transform-origin: 0 0;
    transform: scale(1);
    transform-origin: 0 0;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    zoom: 1;
    -moz-transform: scale(1);
    -moz-transform-origin: 0 0;
    transform: scale(1);
    transform-origin: 0 0;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    min-width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    --primary-color: #0066CC;
    --secondary-color: #CC0000;
    --accent-color: #FF6B35;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --hero-overlay: rgba(0, 0, 0, 0.4);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #404040;
    --text-color: #ffffff;
    --text-light: #b0b0b0;
    --border-color: #404040;
    --light-color: #2d2d2d;
    --hero-overlay: rgba(0, 0, 0, 0.6);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.5);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--dark-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.top-bar .contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
}

.top-bar .contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Header */
.header {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

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

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

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 102, 204, 0.1);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Selector */
.language-selector select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.language-selector select:hover {
    border-color: var(--primary-color);
    background: var(--bg-primary);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: rotate(180deg);
}

[data-theme="dark"] .theme-toggle {
    color: var(--text-color);
    border-color: var(--border-color);
}

[data-theme="dark"] .theme-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-quote {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-quote:hover {
    background: #990000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Desktop: language in header; mobile: language in slide-out menu only */
.mobile-menu-item {
    display: none;
}

.language-selector--desktop .language-select-input {
    min-width: 72px;
}

@media (min-width: 769px) {
    .language-selector--desktop {
        display: block;
    }
}

@media (max-width: 768px) {
    .language-selector--desktop {
        display: none;
    }

    .mobile-menu-item {
        display: list-item;
    }
}

button.mobile-menu-toggle {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 10001;
    padding: 12px 20px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
}

.skip-link:focus {
    left: 12px;
    top: 12px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html.reduce-motion *,
html.reduce-motion *::before,
html.reduce-motion *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }

.hero h1 {
    animation: fadeInUp 1s ease forwards, float 6s ease-in-out infinite;
    animation-delay: 0.2s, 1s;
    opacity: 0;
}

.hero p {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-buttons {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-visual {
    animation: scaleIn 1s ease forwards, float 6s ease-in-out infinite;
    animation-delay: 0.5s, 1.5s;
    opacity: 0;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    display: block;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay);
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.floating-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

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

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

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

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

/* Adjust header position to account for top bar */
.header {
    margin-top: 40px;
}

/* Team Image Section Styles */
.team-image-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.team-image-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.team-image-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    margin-bottom: 25px;
}

.team-image {
    width: 100%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.2));
    pointer-events: none;
}

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

.team-image-caption {
    font-size: 1.1rem;
    color: var(--text-color);
    font-style: italic;
    opacity: 0.8;
}

/* Dark mode for team image section */
[data-theme="dark"] .team-image-section {
    background: var(--bg-primary);
}

[data-theme="dark"] .image-overlay {
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4));
}

/* Company Profile Download Styles */
.profile-download {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-color);
}

.profile-download h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.profile-download p {
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.profile-download .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.profile-download .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.profile-download .btn i {
    font-size: 1.2rem;
}

/* Dark mode for profile download */
[data-theme="dark"] .profile-download {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

/* Section Headers */
.section-header {
    text-align: left;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

[data-theme="dark"] .section-header h2 {
    color: #f0f0f0;
}

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

[data-theme="dark"] .section-header p {
    color: #b0b0b0;
}

/* Capabilities Section */
.capabilities {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.capability-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.capability-card:nth-child(1) { animation-delay: 0.1s; }
.capability-card:nth-child(2) { animation-delay: 0.2s; }
.capability-card:nth-child(3) { animation-delay: 0.3s; }
.capability-card:nth-child(4) { animation-delay: 0.4s; }
.capability-card:nth-child(5) { animation-delay: 0.5s; }
.capability-card:nth-child(6) { animation-delay: 0.6s; }

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

.capability-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-bounce);
    animation: bounceIn 0.8s ease forwards;
    opacity: 0;
}

.capability-icon i {
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.capability-card:hover .capability-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.capability-card:hover .capability-icon i {
    transform: scale(1.2);
}

.capability-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

[data-theme="dark"] .capability-card h3 {
    color: #f0f0f0;
}

.capability-card p {
    color: var(--text-light);
    line-height: 1.6;
}

[data-theme="dark"] .capability-card p {
    color: #b0b0b0;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
}

 .hq-map {
     position: relative;
     width: 100%;
     min-height: 380px;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: var(--shadow-lg);
 }

 .hq-map-iframe {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     border: 0;
     filter: saturate(1.05) contrast(1.05);
 }

 .hq-map-label {
     position: absolute;
     left: 18px;
     bottom: 18px;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 10px 14px;
     border-radius: 999px;
     background: rgba(0, 0, 0, 0.55);
     color: #ffffff;
     font-weight: 600;
     backdrop-filter: blur(6px);
 }

.about-section.about-story-bg {
    position: relative;
    background-image: url('Images/20220310_154043.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-section.about-story-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
}

[data-theme="dark"] .about-section.about-story-bg::before {
    background: rgba(0, 0, 0, 0.55);
}

.about-section.about-story-bg .container {
    position: relative;
    z-index: 1;
}

.about-section.about-story-bg .about-text {
    background: rgba(255, 255, 255, 0.78);
    border-radius: 16px;
    padding: 60px;
}

[data-theme="dark"] .about-section.about-story-bg .about-text {
    background: rgba(0, 0, 0, 0.58);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

[data-theme="dark"] .about-text h2 {
    color: #f0f0f0;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

[data-theme="dark"] .about-text p {
    color: #b0b0b0;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

[data-theme="dark"] .stat-item p {
    color: #b0b0b0;
}

/* Safety Stats Section */
.safety-stats {
    padding: 80px 0;
    background: var(--bg-primary);
}

.safety-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .safety-stats .stats-grid {
        grid-template-columns: 1fr;
    }
}

.safety-stats .stat-item {
    text-align: center;
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.safety-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.safety-stats .stat-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.safety-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.safety-stats .stat-item p {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

/* Project Stats Section */
.project-stats {
    padding: 80px 0;
    background: var(--bg-primary);
}

.project-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.project-stats .stat-item {
    text-align: center;
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.project-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.project-stats .stat-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.project-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.project-stats .stat-item p {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

[data-theme="dark"] .project-stats .stat-item p {
    color: #b0b0b0;
}

.image-placeholder {
    background: var(--light-color);
    border-radius: 12px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

.safety-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.safety-img:hover {
    transform: scale(1.02);
}

.image-placeholder i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.image-placeholder span {
    color: var(--text-light);
    font-weight: 500;
}

[data-theme="dark"] .image-placeholder span {
    color: #b0b0b0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

[data-theme="dark"] .service-card {
    background: var(--bg-primary);
    border-color: var(--border-color);
}

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

.service-image {
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image i {
    font-size: 3rem;
    color: white;
    transition: var(--transition-bounce);
    animation: rotateIn 0.6s ease forwards;
}

.service-card:hover .service-image i {
    transform: scale(1.2) rotate(15deg);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

[data-theme="dark"] .service-content h3 {
    color: #f0f0f0;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

[data-theme="dark"] .service-content p {
    color: #b0b0b0;
}

.service-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-content li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

[data-theme="dark"] .service-content li {
    color: #b0b0b0;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.leader-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

[data-theme="dark"] .leader-card {
    background: var(--bg-primary);
    border-color: var(--border-color);
}

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

.leader-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.leader-avatar i {
    font-size: 2.5rem;
    color: white;
}

.leader-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.leader-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

[data-theme="dark"] .leader-name {
    color: #f0f0f0;
}

.org-structure {
    background: var(--light-color);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.org-structure h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

[data-theme="dark"] .org-structure h3 {
    color: #f0f0f0;
}

/* Safety Section */
.safety-section {
    padding: 80px 0;
    background: var(--light-color);
}

.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.safety-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

[data-theme="dark"] .safety-text h3 {
    color: #f0f0f0;
}

.safety-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

[data-theme="dark"] .safety-text p {
    color: #b0b0b0;
}

.safety-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.safety-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

[data-theme="dark"] .safety-feature {
    background: var(--bg-primary);
}

.safety-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.safety-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.safety-feature span {
    font-weight: 600;
    color: var(--dark-color);
}

[data-theme="dark"] .safety-feature span {
    color: #f0f0f0;
}

.safety-section#safety {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.safety-section#safety .safety-content {
    gap: 70px;
}

.safety-section#safety .safety-text h3 {
    font-size: 2.2rem;
    letter-spacing: -0.02em;
}

.safety-section#safety .safety-features {
    grid-template-columns: 1fr;
    gap: 16px;
}

.safety-section#safety .safety-feature {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 18px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition-bounce);
}

[data-theme="dark"] .safety-section#safety .safety-feature {
    background: rgba(26, 26, 26, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
}

.safety-section#safety .safety-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.safety-section#safety .safety-feature i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(204, 0, 0, 0.12));
    color: var(--primary-color);
    transition: var(--transition-bounce);
}

.safety-section#safety .safety-feature:hover i {
    transform: scale(1.08) rotate(6deg);
}

.safety-section#safety .safety-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.safety-section#safety .safety-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(204, 0, 0, 0.08));
    pointer-events: none;
}

.safety-section#safety .safety-img {
    height: 520px;
    border-radius: 0;
    box-shadow: none;
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .safety-section#safety .safety-img {
        height: 420px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 12px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.contact-section#contact {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.contact-section#contact .contact-content {
    gap: 70px;
    align-items: start;
}

.contact-section#contact .contact-info {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .contact-section#contact .contact-info {
    background: rgba(26, 26, 26, 0.55);
    border-color: rgba(255, 255, 255, 0.08);
}

.contact-section#contact .contact-item {
    padding: 18px;
    border-radius: 14px;
    transition: var(--transition-bounce);
}

.contact-section#contact .contact-item:hover {
    transform: translateY(-3px);
    background: rgba(0, 102, 204, 0.06);
}

[data-theme="dark"] .contact-section#contact .contact-item:hover {
    background: rgba(0, 102, 204, 0.12);
}

.contact-section#contact .contact-icon {
    border-radius: 14px;
    width: 54px;
    height: 54px;
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.25);
}

.contact-section#contact .contact-form {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .contact-section#contact .contact-form {
    background: rgba(26, 26, 26, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
}

.contact-section#contact .form-group input,
.contact-section#contact .form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .contact-section#contact .form-group input,
[data-theme="dark"] .contact-section#contact .form-group textarea {
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.10);
    color: #f0f0f0;
}

.contact-section#contact .form-group input::placeholder,
.contact-section#contact .form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.55);
}

[data-theme="dark"] .contact-section#contact .form-group input::placeholder,
[data-theme="dark"] .contact-section#contact .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.image-placeholder {
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--text-light);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.philosophy-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

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

.philosophy-card h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Services Section */
.service-intro {
    padding: 60px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.service-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
}

.services-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.service-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.service-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    overflow: hidden;
}

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

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

.service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-content ul li {
    padding: 8px 0;
    color: var(--text-color);
    position: relative;
    padding-left: 25px;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-items {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-color);
    line-height: 1.6;
}

.social-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

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

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-form p {
    color: var(--text-color);
    margin-bottom: 30px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Projects Section */
.projects-intro {
    padding: 60px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.projects-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.projects-intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
}

.project-categories {
    padding: 40px 0;
    background: var(--bg-primary);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: white;
}

.projects-grid-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }
.project-card:nth-child(6) { animation-delay: 0.6s; }

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

.project-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    overflow: hidden;
}

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

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

.project-image {
    position: relative;
    overflow: hidden;
}

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

.project-card:hover .project-image::after {
    left: 100%;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    padding: 8px 0;
    color: white;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-bar-item:hover {
    opacity: 0.8;
}

.top-bar-item i {
    font-size: 0.9rem;
}

.top-bar-center {
    text-align: center;
}

.current-date {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right .social-icon {
    color: white;
    text-decoration: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.top-bar-right .social-icon:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Mobile Responsive Top Bar */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .top-bar-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        flex: 1;
    }

    .top-bar-center {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 5px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 5px;
    }

    .top-bar-right {
        order: 2;
        gap: 10px;
    }
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.founder-image {
    text-align: center;
    animation: fadeInLeft 0.8s ease forwards;
    opacity: 0;
}

.founder-photo {
    width: 300px;
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-bounce);
    animation: scaleIn 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.founder-photo:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.founder-info {
    padding: 20px;
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.founder-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.founder-experience {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.founder-statement {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-secondary);
    padding: 20px;
    background: var(--bg-primary);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-top: 20px;
}

.founder-achievements {
    margin-top: 30px;
}

.founder-achievements h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.founder-achievements ul {
    list-style: none;
    padding: 0;
}

.founder-achievements li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.founder-achievements li:last-child {
    border-bottom: none;
}

.founder-achievements li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.project-content {
    padding: 30px;
}

.project-category {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.project-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.project-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.project-detail {
    text-align: center;
    padding: 10px;
    background: var(--bg-secondary);
    border-radius: 6px;
}

.project-detail i {
    color: var(--primary-color);
    margin-bottom: 5px;
    display: block;
}

.project-detail span {
    font-size: 0.9rem;
    color: var(--text-color);
}

.project-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.project-link:hover {
    gap: 12px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #0d0d0d 50%, #0a0a0a 100%);
    color: white;
}

[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 50%, #080808 100%);
    color: white;
}

.footer-top {
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 1;
    color: white;
}

[data-theme="dark"] .footer-about p {
    opacity: 0.9;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

[data-theme="dark"] .footer-links h4,
[data-theme="dark"] .footer-services h4,
[data-theme="dark"] .footer-contact h4 {
    color: #f0f0f0;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: white;
    text-decoration: none;
    opacity: 1;
    transition: var(--transition);
}

[data-theme="dark"] .footer-links a,
[data-theme="dark"] .footer-services a {
    color: #f0f0f0;
    opacity: 0.85;
}

.footer-links a:hover,
.footer-services a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 1;
}

[data-theme="dark"] .footer-contact li {
    opacity: 0.85;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

[data-theme="dark"] .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

 .footer-bottom-right {
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     gap: 6px;
 }

 .footer-developer {
     color: white;
     font-size: 0.9rem;
     line-height: 1.4;
 }

 [data-theme="dark"] .footer-developer {
     color: #d0d0d0;
 }

 .footer-developer a {
     color: #0066cc;
     text-decoration: none;
     font-weight: 600;
 }

 .footer-developer a:hover {
     text-decoration: underline;
 }

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}

[data-theme="dark"] .legal-links a {
    color: #d0d0d0;
}

.legal-links a:hover {
    color: var(--primary-color);
}

.footer-description {
    margin: 15px 0;
}

.footer-description p {
    color: white;
    line-height: 1.6;
    font-size: 0.95rem;
}

[data-theme="dark"] .footer-description p {
    color: #74c0fc;
}

.social-links h5 {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

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

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer .contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 20px;
}

.footer .contact-details h5 {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.footer .contact-details p {
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
}

[data-theme="dark"] .footer .contact-details p {
    color: #4dabf7;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

[data-theme="dark"] .footer-copyright p {
    color: #f0f0f0;
}

.footer-tagline {
    color: white;
    font-size: 0.85rem;
    font-style: italic;
}

/* Page Headers */
.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
    background: var(--bg-primary);
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.document-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.document-section {
    margin-bottom: 40px;
}

.document-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.document-section h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.document-section p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.document-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.document-section li {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 8px;
}

.company-info-box,
.contact-info-box {
    background: var(--bg-primary);
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

.company-info-box p,
.contact-info-box p {
    margin-bottom: 8px;
}

.company-info-box strong,
.contact-info-box strong {
    color: var(--primary-color);
}

/* Sitemap Styles */
.sitemap-content {
    padding: 80px 0;
    background: var(--bg-primary);
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.sitemap-section {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.sitemap-section h2 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sitemap-section h2 i {
    font-size: 1.2rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 10px;
}

.sitemap-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
}

.sitemap-list a:hover {
    color: var(--primary-color);
    padding-left: 10px;
    border-bottom-color: var(--border-color);
}

.sub-list {
    list-style: none;
    padding-left: 20px;
    margin-top: 8px;
}

.sub-list li {
    margin-bottom: 6px;
}

.sub-list a {
    font-size: 0.9rem;
    color: var(--text-light);
}

.sub-list a:hover {
    color: var(--secondary-color);
}

/* Quick Navigation */
.quick-nav {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.quick-nav h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--bg-primary);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.quick-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

.quick-nav-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.quick-nav-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .safety-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Removed duplicate mobile top-bar styles for better alignment */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }
    
    .logo {
        flex: 1;
    }
    
    .logo-img {
        max-height: 40px;
        width: auto;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .theme-toggle {
        padding: 8px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-primary);
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 80px 20px 20px;
        display: flex;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
    }
    
    .nav-link:hover {
        background: var(--bg-secondary);
        color: var(--primary-color);
    }
    
    .nav-link.active {
        background: var(--primary-color);
        color: white;
    }
    
    .mobile-menu-item {
        padding: 20px;
        border-top: 1px solid var(--border-color);
    }
    
    .mobile-menu-item .language-selector {
        width: 100%;
    }
    
    .mobile-menu-item .language-selector select {
        width: 100%;
        padding: 12px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        background: var(--bg-secondary);
        color: var(--text-color);
    }
    
    .mobile-menu-item .btn-quote {
        width: 100%;
        padding: 15px;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }
    
    .mobile-menu-item .btn-quote:hover {
        background: #0052a3;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-secondary);
        margin: 0;
        border-radius: 0;
        border: none;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 30px;
        height: 30px;
        justify-content: center;
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background: var(--text-color);
        transition: var(--transition);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .hero {
        padding: 80px 0;
        min-height: 60vh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-video {
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Services Section Mobile */
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .service-card {
        display: flex;
        flex-direction: column !important; /* Force vertical stack */
        text-align: left;
        padding: 0;
        overflow: hidden;
        border-radius: 12px;
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
    }
    
    .service-image {
        width: 100% !important;
        height: 250px !important;
        margin-bottom: 0;
        order: 1; /* Image first */
    }
    
    .service-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0; /* Square edges to match card top */
    }
    
    .service-content {
        padding: 20px;
        order: 2; /* Content second */
    }
    
    .service-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .service-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .service-link {
        display: inline-block;
        padding: 12px 25px;
        background: var(--primary-color);
        color: white;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 500;
        transition: var(--transition);
    }
    
    .service-link:hover {
        background: #0052a3;
        transform: translateY(-2px);
    }
    
    /* Capabilities Section Mobile */
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .capability-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .capability-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
    }
    
    .capability-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .capability-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        text-align: left;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .contact-form .form-group {
        margin-bottom: 20px;
    }
    
    .contact-form label {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .contact-form .btn {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }

     .footer-bottom-right {
         align-items: flex-start;
     }
    
    .social-links {
        justify-content: flex-start;
        gap: 15px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    /* Button Mobile */
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
        border-radius: 6px;
    }
    
    .btn-primary {
        background: var(--primary-color);
        color: white;
    }
    
    .btn-secondary {
        background: transparent;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }
    
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    
    /* Container Mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Spacing Mobile */
    section {
        padding: 60px 0;
    }
    
    /* Typography Mobile */
    h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        max-width: 240px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .capability-card {
        padding: 20px 15px;
    }
    
    .capability-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .main-nav {
        width: 250px;
    }
    
    .nav-menu {
        padding: 70px 15px 15px;
    }
    
    .nav-link {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .mobile-menu-item {
        padding: 15px;
    }
}

/* Management Philosophy */
.management-philosophy {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.philosophy-content {
    text-align: center;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.philosophy-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-color);
}

.philosophy-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.philosophy-value {
    text-align: center;
}

.philosophy-value i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.philosophy-value h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Core Values Section */
.core-values {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.value-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

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

.value-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Leadership Section */
.leadership-intro {
    padding: 60px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.leadership-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Organizational Structure Section */
.org-structure-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.org-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: white;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.org-structure-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.org-image-wrapper:hover .org-structure-img {
    transform: scale(1.02);
}

.org-description {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.description-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition-bounce);
}

.description-card:hover {
    transform: translateX(10px);
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
}

.description-card i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.desc-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.desc-content p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

[data-theme="dark"] .org-image-wrapper {
    background: #1a1a1a;
}

@media (max-width: 992px) {
    .org-structure-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .org-structure-container {
        gap: 25px;
        margin-top: 25px;
    }

    .org-image-wrapper {
        padding: 12px;
        border-radius: 14px;
    }

    .org-description {
        gap: 18px;
    }

    .description-card {
        padding: 18px;
        gap: 12px;
    }

    .description-card:hover {
        transform: none;
    }
}

.leadership-team {
    padding: 80px 0;
    background: var(--bg-primary);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.leader-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
}

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

.leader-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

[data-theme="dark"] .leader-desc {
    color: #b0b0b0;
}

/* Leader image styles removed as requested */

.leader-info {
    padding: 20px 25px;
    position: relative;
    width: 100%;
}

.leader-info h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
    text-align: left;
}

.leader-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leader-social {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 10px;
}

.leader-social a {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.leader-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(153,0,0,0.3);
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.certification-item {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.certification-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Quality Process */
.quality-process {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 30px;
    margin-top: 5px;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: var(--bg-primary);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-primary);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 800px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    height: 400px;
    background: var(--bg-tertiary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Safety Page Specific Styles */
.safety-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.safety-intro h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.safety-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.safety-intro p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.8;
}

.safety-standards {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.standard-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.standard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.standard-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.standard-icon i {
    font-size: 1.75rem;
    color: white;
}

.standard-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.standard-card > p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.standard-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.standard-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

[data-theme="dark"] .standard-card ul li {
    color: #b0b0b0;
}

.standard-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.standard-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--secondary-color), #a30000);
}

.standard-card:nth-child(2) .standard-icon {
    background: linear-gradient(135deg, var(--secondary-color), #a30000);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.standard-card:nth-child(3)::before {
    background: linear-gradient(90deg, #28a745, #1e7e34);
}

.standard-card:nth-child(3) .standard-icon {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

@media (max-width: 992px) {
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .safety-intro h2 {
        font-size: 2rem;
    }
    
    .safety-intro p {
        font-size: 1.1rem;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
    }
    
    .standard-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .capabilities-grid,
    .services-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-features {
        grid-template-columns: 1fr;
    }
}
