/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    font-weight: 600;
    color: #777;
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.lang-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 75, 225, 0.08);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.lang-btn:hover:before {
    transform: translateY(0);
}

.lang-btn.active {
    color: #104BE1;
    font-weight: 700;
}

.lang-btn.active:after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background-color: #104BE1;
    transition: width 0.3s ease;
}

.lang-btn:not(.active):hover {
    transform: translateY(-2px);
}

/* Basic Menu Styles */
.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    gap: 10px;
}

/* Navigation Link Styles */
.nav-link {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 6px;
    display: inline-block;
}

.nav-link:hover {
    background: #f0f4ff;
    color: #104BE1;
}

/* Primary Button Style */
.nav-link.btn-primary {
    padding: 10px 20px;
    color: #fff;
    background: linear-gradient(135deg, #104BE1 0%, #0D3FB0 100%);
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(16,75,225,0.15);
    transition: all 0.3s ease;
}

.nav-link.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16,75,225,0.25);
    color: #fff;
}

/* Login Button Style */
.nav-link.btn-primary[href="https://m5aznwms.com/"] {
    background: linear-gradient(135deg, #FF9600 0%, #FF6B00 100%) !important;
    box-shadow: 0 4px 15px rgba(255,150,0,0.2);
    margin-left: 5px;
    font-weight: 700;
}

.nav-link.btn-primary[href="https://m5aznwms.com/"]:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(255,150,0,0.3);
}

/* Language Switcher Styles */
.lang-switcher {
    display: flex;
    align-items: center;
    margin-left: 10px;
    position: relative;
}

.lang-divider {
    margin: 0 2px;
    color: #ccc;
    opacity: 0.5;
}

.lang-switcher-container {
    display: flex;
    align-items: center;
    background: rgba(240, 244, 255, 0.5);
    padding: 2px;
    border-radius: 6px;
}

.lang-switch-indicator {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #104BE1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 5px 8px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: #104BE1;
    color: white;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 10px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #104BE1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 20px;
    position: absolute;
}

.mobile-menu-btn span:first-child {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 9px;
}

.mobile-menu-btn span:last-child {
    top: 18px;
}

.mobile-menu-btn.active span:first-child {
    top: 9px;
    transform: rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:last-child {
    top: 9px;
    transform: rotate(-45deg);
}

/* Better animation for menu icon */
.mobile-menu-btn:hover span {
    background-color: #0D3FB0;
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
    /* Make hamburger menu visible */
    .mobile-menu-btn {
        display: flex !important;
        position: fixed !important;
        right: 20px;
        top: 40px;
        z-index: 9999;
    }
    
    /* RTL Support - Position menu button on left for Arabic */
    html[dir="rtl"] .mobile-menu-btn {
        right: auto;
        left: 20px;
    }
    
    /* Menu container */
    #main-navigation {
        position: relative;
        width: 100%;
    }
    
    /* Default state - menu hidden offscreen */
    #main-navigation-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        padding: 70px 20px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    /* Basic menu reset for mobile */
    #main-navigation .menu {
        width: 100%;
        flex-direction: column;
        gap: 5px;
    }
    
    /* Show menu when active */
    #main-navigation-menu.active {
        right: 0 !important;
        display: flex !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Make EVERY list item visible */
    #main-navigation-menu li {
        margin: 8px 0;
        width: 100%;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Make EVERY link visible and properly styled */
    #main-navigation-menu li a,
    #main-navigation .menu li a {
        width: 100%;
        display: block !important;
        text-align: left;
        padding: 15px !important;
        color: #333 !important;
        background: transparent !important;
        box-shadow: none !important;
        font-size: 16px;
        font-weight: 600 !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        z-index: 1000 !important;
        border-radius: 6px;
        margin-bottom: 5px;
        transition: all 0.2s ease !important;
    }
    
    /* Hover state for links */
    #main-navigation-menu li a:hover {
        background: #f0f4ff !important;
        color: #104BE1 !important;
    }
    
    /* Special styling for primary button */
    #main-navigation-menu li a.btn-primary {
        background: linear-gradient(135deg, #104BE1 0%, #0D3FB0 100%) !important;
        color: white !important;
        margin: 15px 0 5px;
        text-align: center;
        border-radius: 6px;
    }
    
    /* Special styling for login button in mobile */
    #main-navigation-menu li a.btn-primary[href="https://m5aznwms.com/"] {
        background: linear-gradient(135deg, #FF9600 0%, #FF6B00 100%) !important;
        margin-top: 5px;
        padding: 15px 20px !important;
        font-weight: 700 !important;
        box-shadow: 0 4px 12px rgba(255,150,0,0.2) !important;
    }
    
    /* Stack stats vertically on mobile */
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Language switcher styles */
    .lang-switcher {
        margin: 15px 0 0 0 !important;
        width: 100%;
        display: flex !important;
        justify-content: center;
    }
    
    /* Make language buttons visible */
    .lang-switcher-container {
        display: flex !important;
        visibility: visible !important;
    }
    
    /* Enhance visibility of language buttons */
    .lang-btn {
        font-size: 14px !important;
        padding: 8px 12px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Add overlay when menu is active */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    body.menu-open::after {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* RTL Support for Arabic */
html[dir="rtl"] body {
    font-family: var(--arabic-font);
    text-align: right;
}

/* Language Transition Animation Styles */
.language-transition {
    position: relative;
    overflow-x: hidden;
}

.language-transition:after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    z-index: 9999;
    opacity: 0;
    animation: languageTransitionOverlay 0.8s ease-in-out;
}

@keyframes languageTransitionOverlay {
    0% { opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Initial state for all elements with data-i18n */
[data-i18n] {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

html[dir="rtl"] .footer-link i,
html[dir="rtl"] .nav-link i {
    margin-right: 0;
    margin-left: 8px;
}

html[dir="rtl"] .footer-link:hover {
    margin-left: 0;
    margin-right: 5px;
}

html[dir="rtl"] .contact-icon {
    margin-right: 0;
    margin-left: 15px;
}

/* Base Styles */

/* Social Media Icons */
.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.facebook {
    background: #4267B2;
}

.social-icon.twitter {
    background: #1DA1F2;
}

.social-icon.linkedin {
    background: #0077B5;
}

.social-icon.instagram {
    background: #E1306C;
}

/* Footer Structure */
footer {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #f0f0f0;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #104BE1;
}

.footer-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIiB2aWV3Qm94PSIwIDAgNTAwIDUwMCI+PHBhdGggZD0iTTEwMCwwIEw1MDAsMCBMNTAwLDUwMCBMMCw1MDAgWiIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSI+PC9wYXRoPjwvc3ZnPg==') no-repeat center center;
    z-index: 0;
    opacity: 0.2;
}

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

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

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

/* Modern Footer Styles */
.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.footer-social-icon:hover {
    transform: translateY(-5px);
}

.footer-social-icon.facebook:hover {
    background-color: #4267B2;
}

.footer-social-icon.twitter:hover {
    background-color: #1DA1F2;
}

.footer-social-icon.linkedin:hover {
    background-color: #0077B5;
}

.footer-social-icon.instagram:hover {
    background-color: #E1306C;
}

/* Contact Info Icons */
.contact-icon {
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.contact-icon.primary {
    background: rgba(16,75,225,0.1);
}

.contact-icon.primary:hover {
    background: rgba(16,75,225,0.2);
}

.contact-icon.secondary {
    background: rgba(131,56,236,0.1);
}

.contact-icon.secondary:hover {
    background: rgba(131,56,236,0.2);
}

.contact-icon.primary i {
    color: #104BE1;
}

.contact-icon.secondary i {
    color: #8338ec;
}

/* Footer Headings */
.footer-heading {
    color: white;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #104BE1 0%, #8338ec 100%);
}

.footer-heading span {
    position: relative;
    z-index: 1;
}

.footer-logo-text {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer Link Styles */
.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-link:hover {
    color: #8338ec;
    margin-left: 5px;
}

.footer-link i {
    font-size: 10px;
    margin-right: 8px;
    color: #8338ec;
}

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

.footer-list-item {
    margin-bottom: 12px;
}

.footer-text {
    color: #a0a0a0; 
    line-height: 1.6; 
    margin-bottom: 25px; 
    font-size: 14px;
}

/* Contact Info Text */
.contact-text {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.7;
}

/* Footer Column Styles */
.footer-col {
    margin-bottom: 30px;
}

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

/* Footer Badges */
.footer-badge {
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 13px;
    color: #999;
}
:root {
    /* Modern color palette */
    --primary-color: #3a86ff;
    --secondary-color: #8338ec;
    --accent-color: #FF9600;
    --accent-light: #939598;
    
    /* Text colors */
    --text-dark: #333;
    --text-medium: #666;
    --text-light: #999;
    --text-white: #fff;
    --white: #ffffff;
    
    /* Backgrounds */
    --light-bg: #f9fafc;
    --light-silver: #edf0f5;
    --card-bg: rgba(255,255,255,0.95);
    --glass-bg: rgba(255,255,255,0.8);
    --glass-border: rgba(230, 230, 230, 0.6);
    
    /* Effects */
    --border-radius: 10px;
    --border-radius-lg: 16px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --neomorphic-shadow: 0 10px 20px rgba(0, 0, 0, 0.06), 0 6px 6px rgba(0, 0, 0, 0.1), inset 0 -2px 5px rgba(255,255,255,0.8);
    --backdrop-blur: blur(10px);
    
    /* Animations */
    --transition: all 0.3s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-slow: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    /* Dark colors */
    --dark-gray: #1a1d23;
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

ul {
    list-style: none;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }
        
        /* Header scroll styles */
        header {
            transition: all 0.4s ease;
            position: fixed;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.97);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transform: translateY(0); /* Show menu by default */
            padding: 15px 0;
            height: auto;
        }
        
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header .logo {
            flex: 0 0 auto;
        }
        
        header .logo img.main-logo {
            max-height: 40px;
            width: auto;
        }
        
        header nav {
            display: flex;
            align-items: center;
        }
        
        header .menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 20px;
        }
        
        header .menu li {
            margin: 0;
            padding: 0;
        }
        
        header .menu li a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        header .menu li a:hover,
        header .menu li a.active {
            background: #104BE1;
            color: white;
            font-weight: 600;
        }
        
        header.visible {
            transform: translateY(0);
        }
        
        /* Blue header styling to match screenshot */
        header.blue-header {
            background: #104BE1;
            box-shadow: 0 2px 10px rgba(0, 0, 70, 0.2);
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            transform: translateY(0);
        }
        
        header.blue-header .menu li a {
            color: white;
        }
        
        header.blue-header .menu li a.active {
            background: #104BE1;
            color: rgb(255, 255, 255);
        }
        
        header.visible {
            transform: translateY(0);
        }
        
        body {
            padding-top: 0;
        }
        
        /* Initial page load - show header */
        .initial-load header {
            transform: translateY(0);
            position: absolute;
            background: transparent;
            box-shadow: none;
        }
        
        /* Section padding for page sections */
        section.page-section {
            padding-top: 100px;
            margin-top: -20px;
            scroll-margin-top: 80px;
        }
        
        /* Page banner with title for inner sections */
        .section-banner {
            background: #104BE1;
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-banner h1 {
            font-size: 42px;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .section-banner p {
            font-size: 18px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Contact form styles */
        .contact-section {
            padding: 80px 0;
        }

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

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

        .contact-info h2 {
            color: var(--primary-color);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-info h2:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
        }

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

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

        .contact-item .icon {
            width: 50px;
            height: 50px;
            background-color: #104BE1;
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .contact-item .icon i {
            font-size: 20px;
        }

        .contact-item .details h3 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #104BE1;
        }

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

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-gray);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            transition: border 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #104BE1;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        /* About section styles */
        .vision-mission {
            background-color: #f9f9ff;
            padding: 80px 0;
        }
        
        /* Counter section styling */
        .counter-section {
            background-color: #f8f9fa;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="rgba(255,255,255,0)"/><path d="M0 54.7h100L50 100z" fill="rgba(16,75,225,0.03)"/><path d="M0 0h100L50 54.7z" fill="rgba(255,132,0,0.02)"/></svg>');
            opacity: 0.5;
            z-index: 0;
        }
        
        .counter-wrapper {
            position: relative;
            z-index: 1;
            padding: 30px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(5px);
        }
        
        /* Counter styles for row */
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .col-md-3 {
            flex: 0 0 25%;
            padding: 0 15px;
        }
        
        @media (max-width: 768px) {
            .col-md-3 {
                flex: 0 0 50%;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .col-md-3 {
                flex: 0 0 100%;
            }
        }
        
        .vision, .mission {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            height: 100%;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .vision:hover, .mission:hover {
            transform: translateY(-5px);
        }
        
        .vision h3, .mission h3 {
            color: #104BE1;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .value-card {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
        }
        
        .value-card .icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, #104BE1, #3A86FF);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #fff;
        }
        
        .value-card .icon i {
            font-size: 28px;
        }
        
        .map-section {
            padding: 0 0 80px;
        }

        .map-container {
            width: 100%;
            height: 450px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .nav-active {
            background-color: #104BE1 !important;
            color: white !important;
        }
        
        .page-banner {
            background: #104BE1;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .page-banner h1 {
            font-size: 42px;
            margin-bottom: 20px;
            color: white;
        }
        
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 50px auto;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
            left: 0;
            margin-bottom: 30px;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: #fff;
            border: 4px solid #104BE1;
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-item:nth-child(even)::after {
            left: -10px;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 2px;
            background-color: #104BE1;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1px;
        }
        
        .timeline .year {
            position: absolute;
            display: inline-block;
            top: 5px;
            font-weight: 700;
            border-radius: 5px;
            padding: 5px 10px;
            background: #FF8400;
            color: #fff;
            font-size: 14px;
        }
        
        .timeline-item:nth-child(odd) .year {
            right: 10px;
        }
        
        .timeline-item:nth-child(even) .year {
            left: 10px;
        }
        
        .timeline .content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        @media screen and (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
                left: 0 !important;
            }
            
            .timeline-item::after {
                left: 21px;
                right: auto;
            }
            
            .timeline-item .year {
                left: 70px !important;
                right: auto !important;
            }
        }
        
        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
            }

            .contact-info {
                order: 2;
            }

            .contact-form {
                order: 1;
            }
            
            .vision-mission .row {
                flex-direction: column;
            }
        }
        
        /* Additional animation styles */
        .animate-float {
            animation: float 3s ease-in-out infinite;
        }
        
        .stat-item {
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .animate-pulse {
            animation: pulse 2s ease-in-out infinite;
        }
        
        .animate-bounce {
            animation: bounce 2s ease-in-out infinite;
        }
        
        .text-gradient {
            background: linear-gradient(-80deg, #104BE1, #FF8400);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-8px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(16, 75, 225, 0.4);
            }
            50% {
                transform: scale(1.03);
                box-shadow: 0 0 0 10px rgba(16, 75, 225, 0);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(16, 75, 225, 0);
            }
        }
        
        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }
        
        .stagger-item {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
        }
        
        .stagger-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* Back to top button */
        .back-to-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #104BE1;
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .back-to-top-btn.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .back-to-top-btn:hover {
            background: #0d3caa;
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Progress indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(to right, #104BE1, #FF8400);
            z-index: 9999;
            transition: width 0.2s ease;
        }
        
        /* Animated counters */
        .counter-value {
            font-size: 48px;
            font-weight: 700;
            color: #104BE1;
            margin-bottom: 10px;
        }
        
        .counter-title {
            font-size: 16px;
            color: #555;
        }
        
        .counter-item {
            text-align: center;
            margin: 20px 0;
        }
            /* Service card hover effects */
        .service-card {
            transition: all 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card:hover .icon {
            background: #104BE1;
            color: white;
            transform: rotate(10deg) scale(1.1);
        }
        
        /* Contact form enhanced styles */
        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #104BE1;
            box-shadow: 0 0 0 3px rgba(16, 75, 225, 0.2);
        }
        
        .contact-form .btn {
            position: relative;
            overflow: hidden;
        }
        
        .contact-form .btn:after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }
        
        .contact-form .btn:hover:after {
            left: 100%;
        }
 
.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, var(--text-dark), var(--text-medium));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 10px auto 0;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 34px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-align: center;
    border: none;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-bounce);
    box-shadow: var(--box-shadow);
    text-transform: uppercase;
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn:hover::before {
    left: 100%;
    transition: 0.7s;
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-outline:focus {
    animation: pulse 0.5s ease-in-out;
    outline: none;
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
    z-index: -1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color) 60%, #4b93ff);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3678eb, #4b93ff);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color) 60%, #9455ee);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--white);
}

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

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), 
                background-color 0.3s ease, 
                padding 0.4s ease;
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid var(--glass-border);
}

.header.scrolled {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.main-logo img {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* Company logo styling */
.company-logo-section {
    text-align: center;
    margin: 40px 0;
}

.thl-logo {
    max-width: 120px;
    height: auto;
    color: #fff ;
}

nav .menu {
    display: flex;
}

nav .menu ul {
    display: flex;
    gap: 30px;
}

.menu ul li a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 2px;
}

.menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease, left 0.3s ease;
    transform-origin: bottom left;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(2, 12, 27, 0.02), rgba(2, 12, 27, 0.05)), url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="rgba(245,247,255,0.9)"/><path d="M0 54.7h100L50 100z" fill="rgba(245,247,255,0.8)"/><path d="M0 0h100L50 54.7z" fill="rgba(240,244,255,1)"/></svg>');
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 70px 20px;
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(58, 134, 255, 0.1);
}

.hexagon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0l30 17.3v34.6L30 60 0 51.9V17.3z" fill="none" stroke="rgba(58,134,255,0.1)" stroke-width="1"/></svg>');
    background-size: 80px 80px;
    background-repeat: repeat;
    opacity: 0.5;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text-area {
    flex: 1;
    max-width: 550px;
    color: #fff;
}

.hero-logo {
    display: flex;
    font-size: 100px;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 20px;
    position: relative;
}

.hero-logo .t {
    color: #104BE1;
    text-shadow: 0 2px 10px rgba(16, 75, 225, 0.2);
    position: relative;
    z-index: 2;
}

.hero-logo .h {
    color: #FF8400;
    text-shadow: 0 2px 10px rgba(255, 132, 0, 0.2);
    position: relative;
    z-index: 3;
}

.hero-logo .l {
    color: #104BE1;
    text-shadow: 0 2px 10px rgba(16, 75, 225, 0.2);
    position: relative;
    z-index: 2;
}

.hero .company-name {
    font-size: 60px;
    font-weight: 700;
    color: #104BE1;
    text-transform: uppercase;
    margin: 0 0 5px;
    line-height: 1;
    letter-spacing: 1px;
    position: relative;
}

.hero .company-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #104BE1, #3A86FF);
    border-radius: 2px;
}

.hero .service-title {
    font-size: 28px;
    font-weight: 600;
    color: #104BE1;
    margin: 20px 0 15px;
    letter-spacing: 3px;
    position: relative;
    padding-left: 2px;
}

.hero .arabic-text {
    font-size: 24px;
    color: #104BE1;
    margin-bottom: 15px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding-left: 12px;
    border-left: 3px solid #FF8400;
}

.hero-image-area {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hexagon-container {
    position: relative;
    width: 460px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hexagon {
    position: absolute;
    width: 280px;
    height: 280px;
    background: #104BE1;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 6px solid #104BE1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.hex-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), rgba(16, 75, 225, 0.2));
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.hex-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #FF8400;
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

.hexagon:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hexagon:hover .hex-overlay {
    background: linear-gradient(45deg, rgba(255,255,255,0.3), rgba(16, 75, 225, 0.1));
}

.hex1 {
    top: 0;
    right: 0;
    z-index: 3;
}

.hex2 {
    bottom: 0;
    left: 0;
    z-index: 2;
}

.hex-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    z-index: 1;
}

/* Media Queries for Hero Section */
@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-logo {
        justify-content: center;
        font-size: 80px;
    }
    
    .hero .company-name {
        font-size: 48px;
    }
    
    .hero .company-name::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero .service-title {
        font-size: 24px;
        padding-left: 0;
    }
    
    .hero-tagline {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid #FF8400;
        padding-top: 15px;
        display: inline-block;
    }
    
    .hero-text-area {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hexagon-container {
        width: 440px;
        height: 380px;
        margin-top: 40px;
        transform: scale(0.9);
    }
    
    .hexagon {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 15px 80px;
        min-height: auto;
    }
    
    .hero-logo {
        font-size: 48px;
    }
    
    .hero .company-name {
        font-size: 30px;
    }
    
    .hero .service-title {
        font-size: 16px;
        letter-spacing: 2px;
        margin-top: 15px;
    }
    
    .hero .arabic-text {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .hero-tagline {
        font-size: 15px;
        margin-bottom: 25px;
        padding-left: 10px;
    }
    
    .hexagon-container {
        width: 100%;
        height: 260px;
        margin-top: 30px;
    }
    
    .hex1 {
        top: 5px;
        right: calc(50% - 130px);
        width: 160px;
        height: 160px;
    }
    
    .hex2 {
        bottom: 5px;
        left: calc(50% - 130px);
        width: 160px;
        height: 160px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* Additional Hero Styles */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: flex-start;
}

.cta-buttons .btn {
    min-width: 160px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 14px 28px;
}

.cta-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16, 75, 225, 0.25);
}

.cta-buttons .btn-primary {
    background: linear-gradient(45deg, #104BE1, #3A86FF);
    border: none;
}

.cta-buttons .btn-secondary {
    border: 2px solid #104BE1;
    color: #104BE1;
}

@media (max-width: 992px) {
    .cta-buttons {
        justify-content: center;
    }
}



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

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

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

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

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

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

@keyframes fadeInStagger {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Utility Animation Classes */
.animate-rotate {
    animation: rotate 10s linear infinite;
}

.animate-bounce {
    animation: bounce 2s ease infinite;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Services Section */
.services {
    padding: 90px 0;
    background-color: var(--light-gray);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(42, 62, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

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

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-silver);
    backdrop-filter: var(--backdrop-blur);
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

.service-card .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.service-card .btn:hover::before {
    width: 300%;
    height: 300%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.service-card .icon {
    background: radial-gradient(circle at 30% 30%, rgba(58, 134, 255, 0.15), rgba(58, 134, 255, 0.05));
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    border: 1px solid rgba(58, 134, 255, 0.1);
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.08);
    transition: var(--transition);
}

.service-card:hover .icon::after {
    width: 60px;
    height: 60px;
}

.service-card h3 {
    color: var(--text-dark);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    background: linear-gradient(90deg, var(--text-dark), var(--text-medium));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-btn {
    text-align: center;
    margin-top: 50px;
}

/* Key Services Section */
.key-services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.key-services .section-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Our Clients Section */
.our-clients {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--light-bg);
}

.client-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.client-type {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-bounce);
    text-align: center;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--backdrop-blur);
    position: relative;
    overflow: hidden;
}

.client-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: 0 0;
    transition: transform 0.6s ease-out;
}

.client-type:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255,255,255,0.5);
}

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

.client-type .icon {
    width: 85px;
    height: 85px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 0, 110, 0.08), rgba(255, 0, 110, 0.02));
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 0, 110, 0.1);
}

.client-type:hover .icon {
    transform: rotate(10deg) scale(1.1);
    background: radial-gradient(circle at 30% 30%, rgba(255, 0, 110, 0.12), rgba(255, 0, 110, 0.04));
}

.client-type .icon i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.client-type:hover .icon i {
    transform: scale(1.2);
}

.client-type h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    background: linear-gradient(90deg, var(--text-dark), var(--text-medium));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.client-type p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Features Section */
.why-choose-us {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(120, 0, 162, 0.05);
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.feature {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--neomorphic-shadow);
    border-color: var(--primary-color);
}

.feature .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.08) 0%, rgba(131, 56, 236, 0.08) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    border: 1px solid rgba(58, 134, 255, 0.15);
    transition: var(--transition);
}

.feature .icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature:hover .icon::after {
    opacity: 1;
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.feature h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.feature p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color), var(--accent-color));
    background-size: 300% 300%;
    animation: gradientShift 15s ease infinite;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.cta-section::before {
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10a5 5 0 1 1 0 80 5 5 0 0 1 0-80z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 1;
}

.cta-section::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    z-index: 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-section .btn {
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* Testimonials */
.testimonials {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.03), rgba(131, 56, 236, 0.05));
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--light-silver);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 70%);
    z-index: 0;
}

.testimonials-slider {
    max-width: 850px;
    margin: 60px auto 0;
    position: relative;
    z-index: 2;
}

.testimonial {
    background-color: var(--glass-bg);
    padding: 45px 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    display: none;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--backdrop-blur);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 120px;
    line-height: 0;
    font-family: 'Georgia', serif;
    color: rgba(58, 134, 255, 0.1);
    z-index: 0;
}

.testimonial::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial.active::after {
    transform: scaleX(1);
}

.testimonial .client {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-silver);
}

.testimonial .client h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 600;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.testimonial .client h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.testimonial .client p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.5;
    margin-top: 15px;
}

.testimonial .quote {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial .quote p {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    color: var(--text-dark);
    position: relative;
    font-style: italic;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.slider-controls span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--glass-border);
    color: var(--text-medium);
}

.slider-controls span:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.slider-controls span i {
    font-size: 18px;
    transition: var(--transition);
}

.slider-controls span:hover i {
    transform: scale(1.2);
}

/* Footer */
footer {
    background-color: #141b2d;
    color: var(--white);
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer-col.about p {
    margin-bottom: 25px;
    line-height: 1.8;
    opacity: 0.9;
    font-size: 15px;
    color: var(--white);
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    color: var(--white);
    letter-spacing: 0.5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 15px;
    }
    
    nav .menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    nav .menu.active {
        left: 0;
    }
    
    nav .menu li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .service-card, .feature, .testimonial {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
