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

:root {
    --primary-color: #1a2847;
    --primary-dark: #0f1c3f;
    --primary-light: #2a3a5a;
    --secondary-color: #c9a961;
    --secondary-dark: #b8956a;
    --secondary-light: #d4b87a;
    --accent-color: #c9a961;
    --accent-dark: #b8956a;
    --dark-color: #2d3436;
    --dark-light: #3d4446;
    --light-color: #f8f6f3;
    --light-dark: #e8e6e3;
    --text-color: #2d3436;
    --text-light: #5d6466;
    --text-lighter: #8d9496;
    --white: #f8f6f3;
    --success: #28A745;
    --warning: #FFC107;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, #1a2847 0%, #0f1c3f 100%);
    --gradient-secondary: linear-gradient(135deg, #c9a961 0%, #b8956a 100%);
    --gradient-accent: linear-gradient(135deg, #c9a961 0%, #b8956a 100%);
    --gradient-hero: linear-gradient(135deg, #1a2847 0%, #0f1c3f 50%, #1a2847 100%);
}

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

body {
    font-family: 'Cairo', 'Tajawal', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* RTL/LTR Text Direction Support */
html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

html[dir="rtl"] body,
html[dir="rtl"] p,
html[dir="rtl"] div,
html[dir="rtl"] span,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] li,
html[dir="rtl"] ul,
html[dir="rtl"] ol {
    text-align: right;
    direction: rtl;
}

html[dir="ltr"] body,
html[dir="ltr"] p,
html[dir="ltr"] div,
html[dir="ltr"] span,
html[dir="ltr"] h1,
html[dir="ltr"] h2,
html[dir="ltr"] h3,
html[dir="ltr"] h4,
html[dir="ltr"] h5,
html[dir="ltr"] h6,
html[dir="ltr"] li,
html[dir="ltr"] ul,
html[dir="ltr"] ol {
    text-align: left;
    direction: ltr;
}

/* Override for centered elements - keep center alignment */
html[dir="rtl"] .section-header,
html[dir="ltr"] .section-header,
html[dir="rtl"] [class*="center"],
html[dir="ltr"] [class*="center"],
html[dir="rtl"] .text-center,
html[dir="ltr"] .text-center {
    text-align: center !important;
}

/* Elements with explicit dir attribute should respect their own direction */
[dir="ltr"] {
    direction: ltr !important;
    text-align: left !important;
}

[dir="rtl"] {
    direction: rtl !important;
    text-align: right !important;
}

/* RTL/LTR padding adjustments for list items */
html[dir="rtl"] .compact-list li,
html[dir="rtl"] .service-features li,
html[dir="rtl"] .about-features li {
    padding-right: 0 !important;
    padding-left: 1.5rem !important;
}

html[dir="ltr"] .compact-list li,
html[dir="ltr"] .service-features li,
html[dir="ltr"] .about-features li {
    padding-left: 0 !important;
    padding-right: 1.5rem !important;
}

html[dir="rtl"] .mubasher-section .compact-list li {
    padding-right: 0 !important;
    padding-left: 1.2rem !important;
}

html[dir="ltr"] .mubasher-section .compact-list li {
    padding-left: 0 !important;
    padding-right: 1.2rem !important;
}

html[dir="rtl"] .service-features li {
    padding-right: 0 !important;
    padding-left: 1.8rem !important;
}

html[dir="ltr"] .service-features li {
    padding-left: 0 !important;
    padding-right: 1.8rem !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Force container inside navbar to not move */
.main-header-nav .container,
#mainHeaderNav .container {
    position: relative !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    transition: none !important;
    transform: none !important;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1001;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

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

.language-selector {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.lang-flag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.lang-flag:hover,
.lang-flag.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.contact-info-top {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.contact-item-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.contact-item-top:hover {
    opacity: 1;
    color: var(--accent-color);
}

.contact-item-top i {
    font-size: 0.85rem;
}

/* Main Header Nav - SIMPLE FIXED HEADER */
.main-header-nav,
#mainHeaderNav {
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: none;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: none !important;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0.7rem 0 !important;
    position: relative !important;
    margin: 0 !important;
    transition: none !important;
    transform: none !important;
}

/* .navbar.scrolled .nav-wrapper REMOVED to prevent header movement */

.logo {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    transition: none !important;
    position: absolute !important;
    right: 40px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
}

.logo:hover {
    transform: translateY(-50%) scale(1.05);
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: none !important;
    transform: none !important;
}

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

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.logo:hover .logo-circle {
    transform: rotate(360deg);
    box-shadow: var(--shadow-lg);
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-accent);
    border-radius: 50%;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-weight: 900;
    letter-spacing: -0.5px;
}

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

/* Hide mobile lang selector on desktop - will be shown in mobile menu */
.nav-menu .mobile-lang-selector,
ul.nav-menu .mobile-lang-selector,
#navMenu .mobile-lang-selector {
    display: none;
}

/* Force show on mobile - placed early to override */
@media screen and (max-width: 768px) {
    .nav-menu .mobile-lang-selector,
    .nav-menu.active .mobile-lang-selector,
    ul.nav-menu .mobile-lang-selector,
    ul.nav-menu li.mobile-lang-selector,
    #navMenu .mobile-lang-selector,
    #navMenu li.mobile-lang-selector {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-lang-dropdown-wrapper {
        display: block !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-lang-dropdown,
    #mobileLangSelect {
        display: block !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.4rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--accent-color);
}

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

/* .nav-link.active removed to prevent header movement */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
    z-index: 1001;
    position: absolute;
    left: 0;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 100px;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.4;
    z-index: 1;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.15) 0%, transparent 50%);
    opacity: 0.3;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center !important;
    color: var(--white);
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0 auto 1.2rem auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 1s ease-out 0.3s both;
    text-align: center;
}

.hero-badge i {
    color: var(--accent-color);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin: 0 auto 1rem auto;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.5s both;
    text-align: center !important;
    width: 100%;
    display: block;
}

.title-line {
    display: block;
    text-align: center !important;
    width: 100%;
}

.title-line.highlight {
    background: linear-gradient(135deg, #b8956a 0%, #9a7a4f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-size: 0.85em;
}

.title-line.highlight::after {
    display: none !important;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin: 0 auto 0.8rem auto;
    opacity: 0.95;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.7s both;
    text-align: center !important;
    width: 100%;
    display: block;
}

.hero-description {
    font-size: 0.9rem;
    margin: 0 auto 1.8rem auto;
    opacity: 0.9;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.9s both;
    text-align: center !important;
    width: 100%;
    display: block;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.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, height 0.6s;
}

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

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.3s both;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out 1.5s both;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
    font-weight: 600;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 3rem 0;
    position: relative;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    position: relative;
    display: block;
    text-align: center;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1a2847 0%, #c9a961 100%);
    margin: 0 auto 1rem auto;
    border-radius: 3px;
    display: block;
}

.section-description {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-color) 100%);
    position: relative;
    padding: 3rem 0;
}

.about-section .section-header {
    margin-bottom: 1.5rem;
}

.about-section .section-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
    display: block;
    width: 100%;
}

.about-section .section-description {
    font-size: 0.8rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.about-section .title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1a2847 0%, #c9a961 100%);
    margin: 0 auto 1rem auto;
    border-radius: 3px;
    display: block;
}

.about-section .leadership-intro {
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.about-section .leadership-intro-content {
    gap: 2rem;
}

.about-section .experience-badge-inline {
    margin-top: 0.6rem;
    padding: 0.5rem 1rem;
    gap: 0.8rem;
    border-width: 1.5px;
}

.about-section .experience-number {
    font-size: 1.5rem;
}

.about-section .experience-label {
    font-size: 0.7rem;
}

.about-section .experience-text {
    font-size: 0.65rem;
}

.about-section .experience-content {
    gap: 0.3rem;
}

.about-section .leadership-intro-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.about-section .leadership-intro-text .leadership-role {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
}

.about-section .leadership-intro-text p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.about-section .company-card {
    padding: 1.5rem;
}

.about-section .company-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.about-section .company-card .company-role {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
}

.about-section .company-card p {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.about-section .company-agencies h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.about-section .company-agencies p {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.about-section .feature-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

/* Leadership Intro */
.leadership-intro {
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: var(--shadow);
    border: 1px solid #1a2847;
}

.leadership-intro-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.leadership-intro-text h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 0.4rem;
    font-weight: 800;
}

.leadership-role {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.leadership-intro-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.experience-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.experience-badge-inline:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.experience-content {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.experience-badge-inline .experience-number {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-badge-inline .experience-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

.experience-badge-inline .experience-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
}

.leadership-intro-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    border: none;
    max-width: 280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.leadership-intro-image .image-placeholder {
    width: 100%;
    height: 250px;
    background: var(--gradient-secondary);
}

.owner-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.linkedin-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
    overflow: hidden;
}

.linkedin-icon-large:hover {
    transform: scale(1.05);
    box-shadow: none;
}

.linkedin-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Companies Grid */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.company-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

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

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

.company-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.15;
    color: #1a2847;
    line-height: 1;
}

.company-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    padding: 12px;
}

.company-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-card:hover .company-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

.company-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 800;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.company-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.company-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.company-agencies {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    border-right: 4px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.company-agencies h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.company-agencies h4::before {
    content: '🌐';
    font-size: 1.3rem;
}

.company-agencies p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.company-agencies p:last-child {
    margin-bottom: 0;
}

.company-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 1rem;
}

.feature-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--light-color);
    color: var(--text-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.company-card:hover .feature-tag {
    background: var(--gradient-primary);
    color: var(--white);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

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

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

.about-card.featured {
    background: var(--gradient-secondary);
    color: var(--white);
    transform: scale(1.05);
}

.about-card.featured::before {
    background: var(--gradient-accent);
}

.about-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.1;
    color: var(--secondary-color);
    line-height: 1;
}

.about-card.featured .about-number {
    color: var(--white);
    opacity: 0.2;
}

.about-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

.about-card.featured .about-icon {
    background: var(--gradient-accent);
}

.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.about-card.featured h3 {
    color: var(--white);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

.about-card.featured p {
    color: rgba(255, 255, 255, 0.95);
}

.about-features {
    list-style: none;
    margin-top: 1.5rem;
}

.about-features li {
    padding: 0.6rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.about-card.featured .about-features li {
    color: rgba(255, 255, 255, 0.9);
}

.about-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 20px;
    flex-shrink: 0;
}

.about-card.featured .about-features li i {
    color: var(--accent-color);
}

/* Leadership Section */
.leadership-section {
    background: var(--white);
    position: relative;
}

.leadership-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.leadership-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
}

.leadership-text p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.experience-badge {
    margin-top: 2.5rem;
    padding: 2.5rem 3rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    display: inline-block;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.experience-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.experience-number {
    font-size: 5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.experience-text {
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
}

.leadership-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder::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 200 200"><rect width="200" height="200" fill="%23f0f0f0"/><circle cx="100" cy="80" r="30" fill="%23ddd"/><path d="M50 180 Q100 140 150 180" stroke="%23ddd" stroke-width="3" fill="none"/></svg>');
    opacity: 0.3;
}

/* Company Sections */
.company-section {
    padding: 6rem 0;
    position: relative;
}

.mubasher-section {
    padding: 3rem 0;
}

.mubasher-section {
    background: linear-gradient(to bottom, var(--light-color) 0%, var(--white) 100%);
}

.mubasher-section .section-header {
    margin-bottom: 1.5rem;
}

.mubasher-section .section-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
    display: block;
    width: 100%;
}

.mubasher-section .section-description {
    font-size: 0.8rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.mubasher-section .title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1a2847 0%, #c9a961 100%);
    margin: 0 auto 1rem auto;
    border-radius: 3px;
    display: block;
}

.mubasher-section .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.mubasher-section .compact-text {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.8rem !important;
}

.mubasher-section .compact-list {
    margin-top: 0.8rem !important;
}

.mubasher-section .compact-list li {
    padding: 0.3rem 0 !important;
    padding-right: 1.2rem !important;
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
}

.alsharq-section {
    background: var(--white);
    padding: 3rem 0 3rem 0;
    margin-top: -1rem;
}

.alsharq-section .section-header {
    margin-bottom: 1.5rem;
    line-height: 1 !important;
}

.alsharq-section .section-header > * {
    line-height: 1 !important;
}

.alsharq-section .section-title-with-logo {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    gap: 0.1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.alsharq-section .section-title-with-logo h2 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    line-height: 0.9 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.alsharq-section .section-title {
    font-size: 1.4rem;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    width: auto;
    line-height: 1 !important;
}

.alsharq-section .company-logo-header {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.alsharq-section .section-description {
    font-size: 0.8rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.alsharq-section .title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1a2847 0%, #c9a961 100%);
    margin: -1.2rem auto 1rem auto !important;
    border-radius: 3px;
    display: block;
    padding: 0 !important;
    position: relative !important;
    top: -0.2rem !important;
}

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

.services-grid.compact {
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card.compact {
    padding: 1.5rem;
    border-radius: 15px;
}

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

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

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

.service-card.featured {
    background: var(--gradient-secondary);
    color: var(--white);
    grid-column: span 2;
}

.service-card.featured.compact {
    grid-column: span 2;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.service-header-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon-compact {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    padding: 8px;
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card:not(.featured) .service-icon-compact {
    background: var(--light-color);
    color: var(--secondary-color);
}

.service-header-compact h3 {
    margin: 0;
    font-size: 1.4rem;
}

.compact-text {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
}

.compact-list {
    margin-top: 1rem !important;
}

.compact-list li {
    padding: 0.4rem 0 !important;
    padding-right: 1.5rem !important;
    font-size: 0.85rem !important;
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-card.compact p {
    margin-bottom: 0.8rem;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.95);
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-right: 1.8rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

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

/* RTL/LTR adjustments for pseudo-elements */
html[dir="rtl"] .service-features li::before {
    right: auto;
    left: 0;
}

html[dir="ltr"] .service-features li::before {
    left: auto;
    right: 0;
}

/* Fleet Section - Professional Redesign */
.fleet-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.fleet-section .section-header {
    margin-bottom: 1.5rem;
}

.fleet-section .section-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
    display: block;
    width: 100%;
}

.fleet-section .section-description {
    font-size: 0.8rem;
    margin-bottom: 0;
    line-height: 1.4;
    text-align: center;
}

.fleet-section .title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1a2847 0%, #c9a961 100%);
    margin: 0 auto 1rem auto;
    border-radius: 3px;
    display: block;
}

.fleet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(26, 40, 71, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.fleet-showcase {
    position: relative;
    margin-top: 1.5rem;
}

.fleet-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-viewport {
    position: relative;
    width: 100%;
}

.fleet-carousel {
    position: relative;
    width: 100%;
}

.fleet-slide {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.ship-card-pro {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    width: 100%;
    height: 100%;
}


.ship-card-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    padding: 0.9rem 1.3rem;
    position: relative;
    overflow: hidden;
}

.ship-icon-header {
    position: absolute;
    right: 1.3rem;
    top: 0.9rem;
    color: var(--white);
    font-size: 1.4rem;
    opacity: 0.8;
    z-index: 2;
}

[dir="rtl"] .ship-icon-header {
    right: auto;
    left: 1.3rem;
}

.ship-card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.ship-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.25rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    position: relative;
    z-index: 1;
}

.ship-title-group {
    position: relative;
    z-index: 1;
}

.ship-name {
    font-size: 1rem;
    font-weight: 900;
    color: var(--white);
    margin: 0 0 0.6rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ship-price-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.price-value {
    font-size: 1rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
}

.price-type {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.1rem 0.4rem;
    border-radius: 5px;
}

.ship-card-body {
    padding: 1.2rem 1.4rem;
}

.ship-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.8rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.7rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.spec-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 169, 97, 0.2);
}

.spec-item:hover::before {
    transform: scaleY(1);
}

.spec-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.25);
    transition: all 0.3s ease;
}

.spec-item:hover .spec-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.35);
}

.spec-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

.spec-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.25;
}

.spec-sub {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.25;
}

.ship-additional-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--light-color);
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    background: var(--light-color);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.info-value {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-color);
}

/* Fleet Navigation */
.fleet-navigation-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
}

.fleet-nav-btn {
    position: static;
    transform: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.fleet-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.fleet-nav-prev {
    /* Position handled by flexbox in wrapper */
}

.fleet-nav-next {
    /* Position handled by flexbox in wrapper */
}

.fleet-pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator:hover {
    background: var(--primary-color);
}

.carousel-indicator.active {
    background: var(--primary-color);
}

/* Innovation Section */
.innovation-section {
    margin-bottom: 3rem;
}

.alsharq-section .subsection-title {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 700;
}

.alsharq-section .subsection-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-title-with-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.company-logo-header {
    height: 100px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.innovation-banner {
    width: 100%;
    max-width: 800px;
    margin: 1.5rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.banner-image {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}

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

/* Markets Section Professional */
.markets-section-pro {
    margin: 2.5rem 0;
}

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

.markets-title-pro {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.markets-title-pro::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.markets-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.market-card-pro {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.market-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.market-card-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(201, 169, 97, 0.2);
}

.market-card-pro:hover::before {
    transform: scaleY(1);
}

.market-icon-pro {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.25);
    transition: all 0.3s ease;
}

.market-card-pro:hover .market-icon-pro {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.35);
}

.market-card-pro h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.market-card-pro p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.markets-image-pro {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.markets-image-pro img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .markets-grid-pro {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .market-card-pro {
        padding: 1.2rem;
    }
    
    .market-icon-pro {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .market-card-pro h4 {
        font-size: 0.9rem;
    }
    
    .market-card-pro p {
        font-size: 0.75rem;
    }
}

.innovation-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.innovation-content {
    flex: 1;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.innovation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(201, 169, 97, 0.2);
}

.innovation-card:hover::before {
    transform: scaleY(1);
}

.innovation-icon {
    width: 50px;
    height: 50px;
    margin: 0 0 1rem 0;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.innovation-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

.innovation-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.8rem;
    margin: 0;
}

/* Markets Section */
.markets-section {
    margin-bottom: 5rem;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.market-item {
    background: var(--light-color);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.market-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.market-item:hover::before {
    transform: scaleX(1);
}

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

.market-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s ease;
}

.market-item:hover .market-icon {
    transform: scale(1.2) rotate(5deg);
}

.market-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.market-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 40, 71, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.expertise-header {
    text-align: center !important;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.expertise-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    position: relative;
    text-align: center !important;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

html[dir="rtl"] .expertise-title,
html[dir="ltr"] .expertise-title {
    text-align: center !important;
}

.expertise-title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1a2847 0%, #c9a961 100%);
    margin: 0 auto 1rem auto !important;
    border-radius: 3px;
    display: block;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.expertise-text-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.expertise-text-main {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 500;
}

.expertise-text-secondary {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.expertise-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
}

.expertise-feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.2rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(26, 40, 71, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.expertise-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 40, 71, 0.12);
    border-color: rgba(26, 40, 71, 0.2);
}

.expertise-feature-card:hover::before {
    transform: scaleY(1);
}

.expertise-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(26, 40, 71, 0.2);
    transition: all 0.3s ease;
}

.expertise-feature-card:hover .expertise-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(26, 40, 71, 0.3);
}

.expertise-feature-text {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
}

/* Services Showcase */
/* Services Section - Clean Professional Design */
.services-section-clean {
    background: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.services-header-clean {
    text-align: center !important;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-slider-header {
    text-align: center !important;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-title-clean {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    text-align: center !important;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

html[dir="rtl"] .services-title-clean,
html[dir="ltr"] .services-title-clean {
    text-align: center !important;
}

.services-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-group-clean {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(26, 40, 71, 0.1);
}

.service-group-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    background: var(--secondary-color);
    margin: 0 0 1rem 0;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border-bottom: none;
    text-align: center;
}

.service-list-clean {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.service-list-clean li {
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0;
    position: relative;
    line-height: 1.6;
    text-align: center;
}

.service-list-clean li::before {
    display: none;
}

/* Logo Slider Section */
.logo-slider-section {
    background: var(--light-color);
    padding: 3rem 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}


.logo-slider-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    position: relative;
    text-align: center !important;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

html[dir="rtl"] .logo-slider-title,
html[dir="ltr"] .logo-slider-title {
    text-align: center !important;
}

.logo-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-slider-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: slideLogos 30s linear infinite;
    width: fit-content;
}

.logo-slider-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.logo-slider-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s ease;
}

.logo-slider-item:hover .logo-slider-image {
    filter: grayscale(0%) opacity(1);
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1.5rem));
    }
}

@media (max-width: 968px) {
    .logo-slider-section {
        padding: 2rem 0;
    }
    
    .logo-slider-title {
        font-size: 1.5rem;
    }
    
    .logo-slider-item {
        height: 80px;
    }
    
    .logo-slider-track {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .logo-slider-section {
        padding: 1.5rem 0;
    }
    
    .logo-slider-header {
        margin-bottom: 1.5rem;
    }
    
    .logo-slider-title {
        font-size: 1.3rem;
    }
    
    .logo-slider-item {
        height: 60px;
    }
    
    .logo-slider-track {
        gap: 1.5rem;
    }
}

/* Contact Section */
.contact-section {
    background: var(--white);
    position: relative;
    padding: 1.5rem 0;
}

.contact-section .section-header {
    margin-bottom: 1rem;
}

.contact-section .section-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-align: center;
    display: block;
    width: 100%;
}

.contact-section .title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1a2847 0%, #c9a961 100%);
    margin: 0 auto 1rem auto;
    border-radius: 3px;
    display: block;
}

.contact-content {
    margin-top: 1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
}

.contact-card {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

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

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

.contact-card h3 {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gradient-primary);
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-item strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
    font-size: 0.7rem;
}

/* Footer */
.footer {
    background: #1a2847;
    color: var(--white);
    padding: 1.5rem 0 1rem;
    position: relative;
    overflow: hidden;
}

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

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr 1fr auto auto;
    gap: 1.5rem;
    margin-bottom: 1rem;
    align-items: start;
}

.footer-map-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-left: 1rem;
}

.footer-map {
    width: 150px;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-map:hover {
    opacity: 1;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 1rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-section {
    text-align: center;
}

.footer-section h4 {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-align: center !important;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 0.75rem;
    margin: 0;
    text-align: center;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    margin-top: 0.5rem;
}

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth Scroll */
html {
    scroll-padding-top: 80px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .service-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .top-bar {
        display: none;
    }
    
    .main-header-nav,
    #mainHeaderNav {
        /* position: fixed REMOVED - handled by JavaScript */
        padding: 0.3rem 0;
    }
    
    .nav-wrapper {
        padding: 0.3rem 0 !important;
        justify-content: center !important;
        transition: none !important;
        transform: none !important;
    }
    
    .logo {
        position: static;
        transform: none;
        right: auto;
        top: auto;
        margin: 0 auto;
    }
    
    .logo:hover {
        transform: scale(1.05);
    }
    
    .hamburger {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .top-bar-content {
        flex-wrap: wrap;
        gap: 0.6rem;
        justify-content: space-between;
    }

    .top-bar-left {
        flex: 1;
        min-width: 0;
    }

    .top-bar-right {
        flex: 1;
        min-width: 0;
    }

    .contact-info-top {
        flex-wrap: wrap;
        gap: 0.6rem;
        justify-content: flex-end;
    }

    .contact-item-top {
        font-size: 0.65rem;
        white-space: nowrap;
    }

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

    .contact-item-top i {
        font-size: 0.75rem;
    }

    .language-selector {
        gap: 0.4rem;
        flex-wrap: wrap;
    }

    .lang-flag {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        gap: 0.4rem;
    }

    .lang-flag span {
        display: none;
    }

    .flag-icon {
        width: 18px;
        height: 13px;
    }

    .main-header-nav,
    #mainHeaderNav {
        /* position: fixed REMOVED - handled by JavaScript */
        padding: 1rem 0;
    }
    
    .nav-wrapper {
        padding: 1rem 0 !important;
        justify-content: center !important;
        transition: none !important;
        transform: none !important;
    }
    
    .logo {
        position: static;
        transform: none;
        right: auto;
        top: auto;
        margin: 0 auto;
    }
    
    .logo:hover {
        transform: scale(1.05);
    }
    
    .hamburger {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
/* Mobile language selector - hidden on desktop */
.mobile-lang-selector {
    display: none;
}

/* Show mobile lang selector in mobile menu */
/* Mobile Language Dropdown - FORCE VISIBLE */
@media (max-width: 768px) {
    /* Force show mobile language selector dropdown in mobile menu */
    .nav-menu .mobile-lang-selector,
    .nav-menu.active .mobile-lang-selector,
    ul.nav-menu .mobile-lang-selector,
    ul.nav-menu li.mobile-lang-selector {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: auto !important;
        padding: 1.5rem 0 1rem 0 !important;
        border-top: 2px solid rgba(0, 0, 0, 0.15) !important;
        border-bottom: none !important;
        width: 100% !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .mobile-lang-dropdown-wrapper {
        display: block !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .mobile-lang-dropdown {
        display: block !important;
        width: 100% !important;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: var(--text-color) !important;
        background: var(--white) !important;
        border: 2px solid var(--primary-color) !important;
        border-radius: 8px !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a2847' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
        background-repeat: no-repeat !important;
        background-position: right 1rem center !important;
        background-size: 12px !important;
        padding-right: 3rem !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-lang-dropdown:hover {
        border-color: var(--secondary-color) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .mobile-lang-dropdown:focus {
        outline: none !important;
        border-color: var(--secondary-color) !important;
        box-shadow: 0 0 0 3px rgba(26, 40, 71, 0.1) !important;
    }
    
    .mobile-lang-dropdown option {
        padding: 0.5rem !important;
        font-size: 1rem !important;
        background: var(--white) !important;
        color: var(--text-color) !important;
    }
}

    .nav-wrapper {
        padding: 0.5rem 0 !important;
        justify-content: center !important;
        transition: none !important;
        transform: none !important;
    }

    .logo {
        position: static;
        transform: none;
        right: auto;
        top: auto;
        margin: 0 auto;
        font-size: 0.9rem;
    }
    
    .logo:hover {
        transform: scale(1.05);
    }

    .logo-image {
        width: 55px;
        height: 55px;
    }
    
    .hamburger {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .logo-circle {
        width: 35px;
        height: 35px;
    }

    .logo-icon {
        width: 20px;
        height: 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem 1.5rem 1rem 1.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-xl);
        gap: 0;
        display: flex;
        overflow-y: auto;
        justify-content: flex-start;
        align-items: stretch;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--light-color);
    }
    
    /* Mobile language selector - remove border and position at bottom */
    .nav-menu li.mobile-lang-selector {
        border-bottom: none !important;
        border-top: 2px solid rgba(0, 0, 0, 0.15) !important;
        margin-top: auto !important;
        padding-top: 1.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    
    .nav-menu li.mobile-lang-selector {
        border-bottom: none;
        border-top: 1px solid var(--light-color);
        margin-top: auto;
        padding-top: 1.5rem;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        color: var(--text-color);
    }

    .hero {
        margin-top: 0;
        padding-top: 70px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-section-clean {
        padding: 1.5rem 0;
    }
    
    .services-title-clean {
        font-size: 1.3rem;
    }
    
    .services-grid-clean {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-group-clean {
        padding: 1.2rem;
    }
    
    .service-group-title {
        font-size: 1rem;
    }
    
    .service-list-clean li {
        font-size: 0.8rem;
    }

    .contact-section .section-title {
        font-size: 1.1rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .leadership-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .expertise-section {
        padding: 2rem;
    }
    
    .expertise-title {
        font-size: 1.3rem;
    }
    
    .expertise-text-main {
        font-size: 0.95rem;
    }
    
    .expertise-text-secondary {
        font-size: 0.9rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-showcase {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .fleet-section {
        padding: 3rem 0;
    }
    
    .fleet-showcase {
        margin-top: 2rem;
    }
    
    .fleet-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .ship-card-header {
        padding: 1.5rem 2rem;
    }
    
    .ship-name {
        font-size: 1.3rem;
    }
    
    .ship-price-tag {
        padding: 0.6rem 1.2rem;
    }
    
    .price-value {
        font-size: 1.2rem;
    }
    
    .ship-card-body {
        padding: 2rem;
    }
    
    .ship-specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
    }
    
    .spec-item {
        padding: 1rem;
    }
    
    .spec-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .spec-value {
        font-size: 0.95rem;
    }

    .innovation-grid {
        grid-template-columns: 1fr;
    }

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

    .leadership-intro-content {
        grid-template-columns: 1fr;
    }

    .leadership-intro {
        padding: 1.5rem;
    }
    
    .leadership-intro-content {
        gap: 1.5rem;
    }
    
    .leadership-intro-image {
        max-width: 100%;
        min-height: 120px;
    }
    
    .linkedin-icon-large {
        width: 70px;
        height: 70px;
    }
    
    .owner-image {
        height: 200px;
    }

    .companies-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    .top-bar {
        display: none;
    }
    
    .main-header-nav,
    #mainHeaderNav {
        /* position: fixed REMOVED - handled by JavaScript */
        padding: 0.3rem 0;
    }
    
    .nav-wrapper {
        padding: 0.3rem 0 !important;
        justify-content: center !important;
        transition: none !important;
        transform: none !important;
    }
    
    .logo {
        position: static;
        transform: none;
        right: auto;
        top: auto;
        margin: 0 auto;
    }
    
    .logo:hover {
        transform: scale(1.05);
    }
    
    .hamburger {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .contact-item-top {
        font-size: 0.6rem;
    }

    .contact-item-top span {
        display: inline;
        font-size: 0.6rem;
    }

    .language-selector {
        gap: 0.5rem;
    }

    .lang-flag {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }

    .lang-flag span {
        display: inline;
        font-size: 0.6rem;
    }

    .flag-icon {
        width: 16px;
        height: 12px;
    }

    .main-header-nav,
    #mainHeaderNav {
        /* position: fixed REMOVED - handled by JavaScript */
    }

    .nav-wrapper {
        padding: 0.5rem 0 !important;
        transition: none !important;
        transform: none !important;
    }

    .logo {
        font-size: 0.85rem;
    }

    .logo-image {
        width: 45px;
        height: 45px;
    }

    .logo-circle {
        width: 32px;
        height: 32px;
    }

    .logo-icon {
        width: 18px;
        height: 18px;
    }

    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 1.5rem 1rem;
    }

    .hero {
        padding-top: 70px;
        min-height: 450px;
        height: 100vh;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .markets-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .subsection-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 0.85rem;
    }

    .about-card,
    .service-card,
    .ship-card {
        padding: 1.5rem;
    }
    
    .fleet-section {
        padding: 2.5rem 0;
    }
    
    .fleet-showcase {
        margin-top: 1.5rem;
    }
    
    .fleet-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .ship-card-header {
        padding: 1.2rem 1.5rem;
    }
    
    .ship-name {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .ship-price-tag {
        padding: 0.5rem 1rem;
        flex-wrap: wrap;
    }
    
    .price-value {
        font-size: 1.1rem;
    }
    
    .ship-card-body {
        padding: 1.5rem;
    }
    
    .ship-specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .spec-item {
        padding: 0.9rem;
    }
    
    .spec-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .spec-value {
        font-size: 0.9rem;
    }
    
    .spec-sub {
        font-size: 0.8rem;
    }

    .about-icon,
    .innovation-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .expertise-section {
        padding: 1.5rem;
    }
    
    .expertise-features-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .expertise-feature-card {
        padding: 1rem 0.8rem;
    }
    
    .expertise-title {
        font-size: 1.2rem;
    }
    
    .expertise-text-main {
        font-size: 0.9rem;
    }
    
    .expertise-text-secondary {
        font-size: 0.85rem;
    }
    
    .expertise-feature-text {
        font-size: 0.85rem;
    }

    .contact-card {
        padding: 1rem 0.9rem;
    }

    .service-showcase-card {
        padding: 1.2rem 1rem;
    }

    .footer {
        padding: 1.2rem 0 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-map-section {
        padding-left: 0;
        margin-bottom: 0.5rem;
        justify-content: center;
    }
    
    .footer-map {
        width: 100px;
    }
    
    .footer-logo-section {
        padding-right: 0;
        margin-bottom: 0.5rem;
        justify-content: center;
    }
    
    .footer-logo {
        width: 60px;
        height: 60px;
    }
    
    .footer-section h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section p {
        font-size: 0.7rem;
    }
    
    .footer-section ul li a {
        font-size: 0.7rem;
    }
    
    .footer-bottom {
        padding-top: 0.6rem;
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .top-bar {
        font-size: 0.6rem;
        padding: 0.2rem 0;
    }

    .top-bar-content {
        gap: 0.4rem;
    }

    .contact-info-top {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .contact-item-top {
        font-size: 0.55rem;
    }
    
    .fleet-section {
        padding: 2rem 0;
    }
    
    .fleet-showcase {
        margin-top: 1rem;
    }
    
    .fleet-carousel-container {
        padding: 0 10px;
    }
    
    .fleet-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .ship-card-header {
        padding: 1rem 1.2rem;
    }
    
    .ship-icon-header {
        font-size: 1.2rem;
        right: 1rem;
        top: 0.8rem;
    }
    
    html[dir="rtl"] .ship-icon-header {
        left: 1rem;
        right: auto;
    }
    
    .ship-badge {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .ship-name {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .ship-price-tag {
        padding: 0.5rem 0.9rem;
        gap: 0.6rem;
        flex-wrap: wrap;
    }
    
    .price-label {
        font-size: 0.8rem;
    }
    
    .price-value {
        font-size: 0.95rem;
    }
    
    .price-type {
        font-size: 0.75rem;
        padding: 0.15rem 0.5rem;
    }
    
    .ship-card-body {
        padding: 1.2rem;
    }
    
    .ship-specs-grid {
        gap: 0.9rem;
    }
    
    .spec-item {
        padding: 0.8rem;
        gap: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .spec-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .spec-content {
        width: 100%;
    }
    
    .spec-label {
        font-size: 0.75rem;
    }
    
    .spec-value {
        font-size: 0.85rem;
    }
    
    .spec-sub {
        font-size: 0.7rem;
    }
    
    .linkedin-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .leadership-intro-image {
        min-height: 100px;
    }
    
    .spec-label {
        font-size: 0.7rem;
    }
    
    .spec-value {
        font-size: 0.85rem;
    }
    
    .spec-sub {
        font-size: 0.75rem;
    }
    
    .carousel-indicators {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
    
    .carousel-indicator.active {
        width: 12px;
        height: 12px;
    }

    .contact-item-top span {
        font-size: 0.55rem;
    }

    .contact-item-top i {
        font-size: 0.65rem;
    }

    .language-selector {
        gap: 0.4rem;
    }

    .lang-flag {
        font-size: 0.55rem;
        padding: 0.15rem 0.4rem;
        gap: 0.3rem;
    }

    .lang-flag span {
        font-size: 0.55rem;
    }

    .flag-icon {
        width: 14px;
        height: 10px;
    }

    .main-header-nav,
    #mainHeaderNav {
        /* position: fixed REMOVED - handled by JavaScript */
        padding: 0.5rem 0;
    }

    .nav-wrapper {
        padding: 0.5rem 0 !important;
        justify-content: center !important;
        transition: none !important;
        transform: none !important;
    }

    .logo {
        position: static;
        transform: none;
        right: auto;
        top: auto;
        margin: 0 auto;
        font-size: 0.8rem;
    }
    
    .logo:hover {
        transform: scale(1.05);
    }

    .logo-text {
        display: none;
    }

    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .hamburger {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
    }

    .logo-circle {
        width: 30px;
        height: 30px;
    }

    .logo-icon {
        width: 16px;
        height: 16px;
    }

    .hamburger {
        gap: 4px;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
    }

    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 1rem;
    }

    .nav-link {
        padding: 0.8rem 0;
        font-size: 0.95rem;
    }

    .hero {
        padding-top: 65px;
        min-height: 400px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 0.75rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .services-section-clean {
        padding: 1.2rem 0;
    }
    
    .services-title-clean {
        font-size: 1.2rem;
    }
    
    .services-grid-clean {
        gap: 1.2rem;
    }
    
    .service-group-clean {
        padding: 1rem;
    }
    
    .service-group-title {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.6rem;
    }
    
    .service-list-clean {
        gap: 0.5rem;
    }
    
    .service-list-clean li {
        font-size: 0.75rem;
    }

    .contact-section .section-title {
        font-size: 1rem;
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    .about-card,
    .service-card,
    .ship-card {
        padding: 1.2rem;
    }

    .about-card h3,
    .service-card h3 {
        font-size: 1.3rem;
    }

    .ship-header h3 {
        font-size: 1rem;
    }

    .ship-price {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .detail-row {
        padding: 0.6rem 0;
        font-size: 0.85rem;
    }

    .expertise-section {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .expertise-header {
        margin-bottom: 1.5rem;
    }
    
    .expertise-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .expertise-content {
        gap: 1.5rem;
    }
    
    .expertise-features-grid {
        gap: 0.7rem;
    }
    
    .expertise-feature-card {
        padding: 0.9rem 0.7rem;
    }
    
    .expertise-feature-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .expertise-feature-text {
        font-size: 0.8rem;
    }
    
    .expertise-text-main {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .expertise-text-secondary {
        font-size: 0.8rem;
    }

    .contact-card {
        padding: 0.9rem 0.7rem;
        border-radius: 8px;
    }

    .contact-card h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.5rem;
    }

    .service-showcase-card {
        padding: 1rem 0.8rem;
        border-radius: 10px;
    }

    .service-showcase-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.5rem;
    }

    .leadership-text h2 {
        font-size: 1.8rem;
    }

    .experience-badge {
        padding: 2rem 1.5rem;
    }

    .experience-number {
        font-size: 4rem;
    }

    .experience-text {
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .main-header-nav,
    #mainHeaderNav,
    .hero-buttons,
    .scroll-indicator {
        display: none;
    }
}
