/* Critical CSS for Above the Fold Content - Optimized for production */

/* Universal box-sizing and viewport fix */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Prevent horizontal overflow and scrollbar flickering */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

div, section, article, main, header, footer, nav {
    overflow-x: visible;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --gray-color: #6b7280;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --body-font: 'Inter', sans-serif;
    --heading-font: 'Poppins', sans-serif;
    --arabic-font: 'Cairo', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

/* Prevent layout shift and scrollbar flickering */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: var(--body-font);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #ffffff;
    min-height: 100vh;
    padding-top: 80px;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.rtl {
    font-family: var(--arabic-font);
    direction: rtl;
    text-align: right;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--dark-color);
}

.navbar-brand .logo {
    height: 40px;
    margin-right: 0.5rem;
}

.rtl .navbar-brand .logo {
    margin-right: 0;
    margin-left: 0.5rem;
}

.navbar .nav-link {
    font-weight: 500;
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.navbar .nav-link:hover, 
.navbar .nav-link.active {
    color: var(--primary-color);
}

.navbar .nav-link.btn {
    background-color: var(--primary-color);
    color: white;
    border-radius: 0.5rem;
    padding: 0.5rem 1.25rem;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: visible;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 41, 55, 0.7);
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    margin-right: 0.5rem;
}

.rtl .hero-badge i {
    margin-right: 0;
    margin-left: 0.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.text-gradient {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Modern Style CSS for SND Website */

/* CSS Variables for consistent theming */
:root {
    /* Primary Colors */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    
    /* Secondary Colors */
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --secondary-light: #fbbf24;
    
    /* Neutral Colors */
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Text Colors */
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-light: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #1f2937;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Fonts */
    --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --heading-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --arabic-font: 'Noto Sans Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Container */
    --container-padding: 1rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-fast: all 0.15s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

/* Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* Ensure container has proper width on all screen sizes - override any conflicting rules */
.container,
div.container,
section .container {
    max-width: 1320px !important;
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

/* Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* Ensure container has proper width on all screen sizes - override any conflicting rules */
.container,
div.container,
section .container {
    max-width: 1320px !important;
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn i {
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.btn:hover i {
    transform: translateX(3px);
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

/* Force proper text colors for all navbar elements */
.navbar-light .navbar-nav .nav-link,
.navbar .navbar-nav .nav-link,
#mainNav .navbar-nav .nav-link {
    color: var(--text-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus,
#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link:focus {
    color: var(--primary-color) !important;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.active,
#mainNav .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-light .navbar-brand,
.navbar .navbar-brand,
#mainNav .navbar-brand {
    color: var(--text-primary) !important;
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus,
.navbar .navbar-brand:hover,
.navbar .navbar-brand:focus,
#mainNav .navbar-brand:hover,
#mainNav .navbar-brand:focus {
    color: var(--primary-color) !important;
}

/* Get Quote Button Spacing */
.navbar-nav .nav-link.btn {
    margin-left: 0.5rem;
    padding: 0.5rem 1.25rem;
    color: white !important;
}

.navbar-nav .nav-link.btn:hover {
    color: white !important;
}

.navbar .dropdown-menu {
    background-color: white;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.navbar .dropdown-item {
    color: var(--text-primary) !important;
    padding: 0.5rem 1rem;
}

.navbar .dropdown-item:hover {
    color: var(--primary-color) !important;
    background-color: rgba(37, 99, 235, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    text-decoration: none;
    max-width: 320px;
    white-space: nowrap;
    overflow: visible;
    margin-right: 2rem;
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.navbar-brand .brand-text {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    max-width: 280px;
    overflow: visible;
    white-space: nowrap;
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(37, 99, 235, 0.1);
}

.navbar-toggler {
    border: none !important;
    padding: 0.5rem;
    background: transparent !important;
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary) !important;
    position: relative;
    transition: var(--transition-normal);
    transform-origin: center;
    background-image: none !important;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    position: absolute;
    transition: var(--transition-normal);
    transform-origin: center;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Hamburger Animation - Active State */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Language Switcher - Styles moved to bottom of file */

/* RTL Support */
[dir="rtl"] .language-switcher {
    margin: 0 0.5rem 0 0;
}

[dir="rtl"] .navbar-brand .logo {
    margin-right: 0;
    margin-left: 0.5rem;
}

[dir="rtl"] .navbar-nav .nav-link {
    margin: 0 0.25rem 0 0;
}

[dir="rtl"] .hero-buttons {
    direction: rtl;
}

[dir="rtl"] .btn i {
    margin-left: 0;
    margin-right: 0.5rem;
}

[dir="rtl"] .contact-item i {
    margin-left: 1rem;
    margin-right: 0;
}

[dir="rtl"] .footer-social {
    direction: rtl;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 25%, #1e40af 50%, #3b82f6 75%, #60a5fa 100%);
    color: var(--text-light);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    z-index: 2;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    border: 2px solid #fbbf24;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.5);
    text-shadow: none;
    backdrop-filter: none;
}

.hero-badge i {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: bold;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-top: 0;
    clear: both;
    color: #fff;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-stats .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.hero-stats .stat-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.hero-stats .stat-content p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
    font-weight: 500;
}

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

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.hero-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

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

.image-container {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(15, 23, 42, 0.2) 100%);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
}

.safety-card {
    bottom: 2rem;
    left: 2rem;
}

.quality-card {
    top: 2rem;
    right: 2rem;
}

.floating-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.floating-card .card-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.floating-card .card-content p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.floating-card .card-content p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-light);
}

/* Equipment Cards */
.equipment-stat-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
}

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

.equipment-stat-card .stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
}

.equipment-stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.equipment-stat-card .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.equipment-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

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

.equipment-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.equipment-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.equipment-badge {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
}

.equipment-content {
    padding: 1.5rem;
}

.equipment-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.equipment-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.equipment-specs {
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.spec-item i {
    color: var(--primary-color);
    width: 16px;
}

.equipment-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Specialized Cards */
.specialized-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

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

.specialized-image {
    height: 200px;
    overflow: hidden;
}

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

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

.specialized-content {
    padding: 1.5rem;
}

.specialized-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.specialized-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.specialized-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.specialized-features li:last-child {
    border-bottom: none;
}

/* Service Feature Cards */
.service-feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--gray-200);
}

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

.service-feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 1.5rem;
}

.service-feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.process-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Advantage Cards */
.advantage-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--gray-200);
}

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

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.5rem;
}

.advantage-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

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

.advantage-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.5rem;
}

.advantage-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Recognition Cards */
.recognition-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--gray-200);
}

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

.recognition-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.5rem;
}

.recognition-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.certification-list {
    space-y: 0.75rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.cert-item:last-child {
    border-bottom: none;
}

.cert-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.cert-item span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--gray-200);
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.rating {
    color: var(--secondary-color);
}

/* Comparison Cards */
.comparison-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.comparison-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.advantage-list,
.disadvantage-list {
    space-y: 0.75rem;
}

.advantage-item,
.disadvantage-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.advantage-item i,
.disadvantage-item i {
    font-size: 1rem;
    flex-shrink: 0;
}

.advantage-item span,
.disadvantage-item span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.4;
}

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

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 1.5rem;
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* About Section */
.about-section {
    padding: var(--section-padding);
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-content p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.about-image {
    position: relative;
}

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

.experience-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    min-width: 120px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.experience-badge .badge-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
    background-color: var(--bg-secondary);
}

.service-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

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

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link i {
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Projects Section */
.projects-section {
    padding: var(--section-padding);
}

.project-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

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

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

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    color: var(--text-light);
}

.project-info .project-category {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.project-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.project-info p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

.project-stats {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-stats h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

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

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

.stats-grid .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stats-grid .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Project Stat Cards */
.project-stat-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
    height: 100%;
}

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

.project-stat-card .stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
}

.project-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.project-stat-card .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Category Cards */
.category-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
    height: 100%;
}

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

.category-card .category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
}

.category-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.category-card .category-stats {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.category-card .category-stats .stat {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.category-card .category-stats .stat small {
    color: var(--text-secondary);
    font-weight: 400;
}

/* Project Content */
.project-content {
    padding: 1.5rem;
    background: var(--bg-primary);
}

.project-content h3,
.project-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.project-details .detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.project-details .detail-item i {
    color: var(--primary-color);
    width: 16px;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.project-meta i {
    color: var(--primary-color);
}

/* Projects Overview Section */
.projects-overview {
    padding: 5rem 0;
}

.projects-overview .section-header {
    margin-bottom: 3rem;
}

/* Featured Projects Section */
.featured-projects {
    padding: 5rem 0;
}

.featured-projects .section-header {
    margin-bottom: 3rem;
}

/* Project Categories Section */
.project-categories {
    padding: 5rem 0;
}

.project-categories .section-header {
    margin-bottom: 3rem;
}

/* Recent Projects Section */
.recent-projects {
    padding: 5rem 0;
}

.recent-projects .section-header {
    margin-bottom: 3rem;
}

/* Client Testimonials Section */
.client-testimonials {
    padding: 5rem 0;
}

.client-testimonials .section-header {
    margin-bottom: 3rem;
}

/* Featured Project Cards */
.project-card.featured {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    height: 100%;
}

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

.project-card.featured .project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.project-card.featured .project-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.project-card.featured .project-overlay .project-category {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background-color: var(--bg-secondary);
}

.team-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
}

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

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

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center center;
    transition: var(--transition-slow);
    background-color: var(--gray-100);
}

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

.team-info {
    padding: 1.5rem;
}

.team-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
}

.contact-form-wrapper {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.form-floating {
    margin-bottom: 1rem;
}

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

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-floating label {
    color: var(--text-secondary);
}

.contact-info {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.social-links h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: var(--section-padding);
}

.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links-inline {
    display: flex;
    gap: 1.5rem;
}

.footer-links-inline a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (min-width: 1400px) {
    .navbar-brand {
        margin-right: 3rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1.25rem;
        margin: 0 0.3rem;
    }
    
    .language-switcher {
        margin: 0 1rem;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 4rem 0;
    }
    
    .navbar-brand {
        font-size: 1rem;
        max-width: 320px;
    }
    
    .navbar-brand .brand-text {
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.8rem;
        margin: 0 0.15rem;
        font-size: 0.9rem;
    }
    
    .navbar-brand {
        margin-right: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.8rem 1.5rem;
        margin-bottom: 2.5rem;
        font-weight: 700;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.3;
        margin-top: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 2rem 0;
    }
    
    /* Ensure all elements fit within viewport */
    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: visible;
    }
    
    /* Fix hero section height for mobile */
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    /* Adjust body padding for mobile navbar */
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 0.75rem 0 !important;
        min-height: 70px !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1030 !important;
        background-color: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        border-bottom: 1px solid #e5e7eb !important;
    }
    
    .navbar .container {
        position: relative !important;
        display: block !important;
        padding: 0 !important;
        height: 70px !important;
        width: 100% !important;
    }
    
    /* Fixed Brand Position */
    .navbar-brand {
        position: absolute !important;
        top: 50% !important;
        left: 1rem !important;
        transform: translateY(-50%) !important;
        z-index: 1032 !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        max-width: calc(100% - 70px) !important;
        margin: 0 !important;
        font-size: 0.85rem !important;
        text-decoration: none !important;
        color: #1f2937 !important;
    }
    
    .navbar-brand .brand-text {
        font-weight: 600 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 200px !important;
    }
    
    .navbar-brand .logo {
        width: 28px !important;
        height: 28px !important;
        flex-shrink: 0 !important;
    }
    
    /* Hamburger Toggler */
    .navbar-toggler {
        position: absolute !important;
        top: 50% !important;
        right: 1rem !important;
        transform: translateY(-50%) !important;
        z-index: 1032 !important;
        width: 40px !important;
        height: 40px !important;
        border: none !important;
        background: transparent !important;
        margin: 0 !important;
        padding: 0.5rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 4px !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: none !important;
        outline: none !important;
    }
    
    .navbar-toggler-icon {
        background-image: none !important;
        width: 20px !important;
        height: 2px !important;
        background-color: #1f2937 !important;
        position: relative !important;
        transition: all 0.3s ease !important;
        border-radius: 1px !important;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '' !important;
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        background-color: #1f2937 !important;
        position: absolute !important;
        transition: all 0.3s ease !important;
        border-radius: 1px !important;
        left: 0 !important;
    }
    
    .navbar-toggler-icon::before {
        top: -6px !important;
    }
    
    .navbar-toggler-icon::after {
        top: 6px !important;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent !important;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg) !important;
        top: 0 !important;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg) !important;
        top: 0 !important;
    }
    
    /* Improved Mobile Menu */
    .navbar-collapse {
        position: absolute !important;
        top: 100% !important;
        left: 0.75rem !important;
        right: 0.75rem !important;
        background: white !important;
        border: 1px solid #e5e7eb !important;
        border-radius: 0.75rem !important;
        padding: 1.25rem !important;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15) !important;
        z-index: 1030 !important;
        margin-top: 0.25rem !important;
        width: calc(100% - 1.5rem) !important;
        transform: none !important;
        float: none !important;
        max-height: calc(100vh - 100px) !important;
        overflow-y: auto !important;
    }
    
    /* Mobile Navigation Items */
    .navbar-nav {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 0.5rem !important;
        color: #1f2937 !important;
        font-weight: 500 !important;
        display: block !important;
        text-decoration: none !important;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: #f3f4f6 !important;
        color: #2563eb !important;
    }
    
    .navbar-nav .nav-link.btn {
        background-color: #2563eb !important;
        color: white !important;
        margin-top: 0.5rem !important;
        text-align: center !important;
    }
    
    .navbar-nav .nav-link.btn:hover {
        background-color: #1d4ed8 !important;
        color: white !important;
    }
    
    /* Mobile Dropdown Menu */
    .navbar-nav .dropdown-menu {
        position: static;
        transform: none;
        border: none;
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
        background: #ffffff;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        padding: 0.5rem;
        width: 100%;
        display: none;
        float: none;
    }
    
    .navbar-nav .dropdown-menu.show {
        display: block !important;
        position: static !important;
    }
    
    .navbar-nav .dropdown.show .dropdown-menu {
        display: block !important;
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.5rem 1rem;
        border-radius: 0.25rem;
        color: #1f2937;
        font-weight: 500;
        text-decoration: none;
    }
    
    .navbar-nav .dropdown-item:hover {
        background-color: #e5e7eb;
        color: #2563eb;
    }
    
    /* Language Switcher in Mobile */
    .language-switcher {
        display: flex !important;
        gap: 0.5rem !important;
        justify-content: center !important;
        margin: 1rem 0 !important;
        padding: 0.5rem !important;
        background: #f8f9fa !important;
        border-radius: 0.5rem !important;
    }
    
    .lang-btn {
        flex: 1 !important;
        padding: 0.5rem 1rem !important;
        border: 1px solid #e5e7eb !important;
        border-radius: 0.375rem !important;
        background: white !important;
        color: #1f2937 !important;
        font-size: 0.875rem !important;
        font-weight: 500 !important;
        transition: all 0.2s ease !important;
    }
    
    .lang-btn:hover,
    .lang-btn.active {
        background: #2563eb !important;
        color: white !important;
        border-color: #2563eb !important;
    }
    
    /* Additional Mobile Styles - cleaned up */
    
    /* Hero section adjustment for fixed navbar */
    .hero-section {
        padding-top: 80px;
    }
    
    /* Rest of mobile styles remain the same */
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.7rem 1.3rem;
        margin-bottom: 2rem;
        max-width: fit-content;
        white-space: nowrap;
        font-weight: 700;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-top: 0;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-features {
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .hero-stats .stat-item {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .floating-card {
        position: static;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .safety-card,
    .quality-card {
        position: static;
        margin: 1rem 0;
    }
    
    .experience-badge {
        position: static;
        margin: 2rem auto 0;
        min-width: 100px;
        min-height: 100px;
    }
    
    .experience-badge .badge-number {
        font-size: 1.5rem;
    }
    
    .experience-badge .badge-text {
        font-size: 0.75rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .project-image img {
        height: 250px;
    }
    
    .project-stat-card {
        margin-bottom: 2rem;
    }
    
    .category-card {
        margin-bottom: 2rem;
    }
    
    .project-card {
        margin-bottom: 2rem;
    }
    
    .team-image img {
        height: 250px;
    }
    
    .contact-form-wrapper,
    .contact-info {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-links-inline {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    /* Ensure full width display on small screens */
    .container {
        padding: 0 0.75rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .navbar {
        padding: 0.5rem 0;
        min-height: 60px;
        width: 100%;
    }
    
    .navbar-brand {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .navbar-brand .brand-text {
        font-size: 0.8rem;
        max-width: 160px;
    }
    
    .navbar-brand .logo {
        width: 30px;
        height: 30px;
    }
    
    .navbar-toggler {
        padding: 0.4rem;
        width: 40px;
        height: 40px;
    }
    
    .navbar-toggler-icon {
        width: 20px;
        height: 2px;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 20px;
    }
    
    .navbar-collapse {
        left: 0.5rem;
        right: 0.5rem;
        padding: 1rem;
        border-radius: var(--radius-md);
    }
    
    .navbar-collapse.collapsing {
        left: 0.5rem;
        right: 0.5rem;
        padding: 1rem;
        border-radius: var(--radius-md);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0.75rem;
        font-size: 0.95rem;
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.625rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .language-switcher {
        margin: 1rem 0 0.5rem 0;
    }
    
    .hero-section {
        padding: 2rem 0 1rem;
        min-height: auto;
    }
    
    /* Adjust body padding for small screens */
    body {
        padding-top: 60px;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-badge i {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 1.25rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .contact-icon,
    .feature-icon,
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .project-stat-card .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .project-stat-card .stat-number {
        font-size: 1.25rem;
    }
    
    .category-card .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .project-details {
        text-align: center;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Optimize for very small screens */
@media (max-width: 400px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar .container {
        padding: 0 0.75rem;
    }
    
    .navbar-brand {
        gap: 0.4rem;
        font-size: 0.8rem;
    }
    
    .navbar-brand .brand-text {
        font-size: 0.75rem;
        max-width: 120px;
    }
    
    .navbar-brand .logo {
        width: 28px;
        height: 28px;
    }
    
    .navbar-toggler {
        width: 38px;
        height: 38px;
        padding: 0.3rem;
    }
    
    .navbar-toggler-icon {
        width: 18px;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 18px;
    }
    
    .navbar-collapse {
        left: 0.25rem;
        right: 0.25rem;
        padding: 0.75rem;
    }
    
    .navbar-collapse.collapsing {
        left: 0.25rem;
        right: 0.25rem;
        padding: 0.75rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.625rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* Animation Classes for AOS */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

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

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Explore More Section */
.explore-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.explore-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.explore-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.explore-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.explore-card:hover .explore-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.explore-card h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.explore-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.explore-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.explore-link:hover {
    color: var(--primary-color);
    background: white;
    border-color: white;
    transform: translateY(-2px);
}

/* Language Switcher Improvements */
.language-switcher {
    display: flex;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 20px;
    padding: 2px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    margin: 0 0.75rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 50px;
    justify-content: center;
}

.lang-btn:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.lang-btn i {
    font-size: 0.8rem;
}

/* RTL Support for Language Switcher */
.rtl .language-switcher {
    flex-direction: row-reverse;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 500;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease-in-out;
    box-shadow: var(--shadow-lg);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background-color: #10b981;
}

.notification-error {
    background-color: #ef4444;
}

.notification-info {
    background-color: var(--primary-color);
}

.notification-warning {
    background-color: #f59e0b;
}

/* Admin Login Modal Styles */
#adminLoginModal .modal-content {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-xl);
}

#adminLoginModal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

#adminLoginModal .btn-close {
    filter: invert(1);
}

/* Bootstrap Override for Hamburger Icon - CRITICAL FIX */
.navbar-light .navbar-toggler {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.navbar-light .navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-light .navbar-toggler-icon {
    background-image: none !important;
    width: 20px !important;
    height: 2px !important;
    background-color: #1f2937 !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    border-radius: 1px !important;
}

.navbar-light .navbar-toggler-icon::before,
.navbar-light .navbar-toggler-icon::after {
    content: '' !important;
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background-color: #1f2937 !important;
    position: absolute !important;
    transition: all 0.3s ease !important;
    border-radius: 1px !important;
    left: 0 !important;
}

.navbar-light .navbar-toggler-icon::before {
    top: -6px !important;
}

.navbar-light .navbar-toggler-icon::after {
    top: 6px !important;
}

/* Force hamburger animation to work */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon,
.navbar-toggler.collapsed .navbar-toggler-icon {
    background-color: #1f2937 !important;
    background-image: none !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg) !important;
    top: 0 !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg) !important;
    top: 0 !important;
}

/* Ensure full content visibility */
.row, .col, [class*="col-"] {
    max-width: 100%;
    overflow-x: visible;
}

/* Prevent content cutoff on all screen sizes */
@media screen {
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    /*
    .container, .container-fluid {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    */
    section, main, div {
        max-width: 100%;
        overflow-x: visible;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    .floating-card,
    .notification {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    * {
        box-shadow: none !important;
    }
}

/* AOS Fallback - Ensure content is always visible */
[data-aos] {
    opacity: 1;
    transform: none;
    transition: none;
}

/* When AOS is properly loaded, it will override these styles */
.aos-init[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.aos-animate {
    opacity: 1 !important;
    transform: none !important;
}

/* Ensure disabled AOS elements are visible */
.aos-disabled {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
} 