        /* Basic Resets & Variables */
        :root {
            --primary-color: #7DB946; /* A vibrant blue for accents */
            --secondary-color: #6c757d; /* A subtle grey for secondary elements */
            --dark-color: #212529; /* Dark text/background */
            --light-color: #f8f9fa; /* Light backgrounds */
            --white-color: #ffffff; /* White text/background */
            --text-color: #495057; /* General body text */
            --border-color: #e9ecef; /* Light borders */
            --box-shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
            --box-shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.15);
            --gradient-start: #0056b3; /* Darker blue for gradients */
            --gradient-end: #007bff; /* Lighter blue for gradients */
        }
        * {
            font-family: "Gill Sans Extrabold", sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: cursive;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-color);
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--dark-color);
            margin-bottom: 20px;
        }
        h2 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        h2.section-heading::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--gradient-end));
            margin: 10px auto 0;
            border-radius: 2px;
        }
        .main-slogan {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
            color: var(--white-color);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
        }
        .sub-heading {
            font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
            font-size: 1.3rem;
            color: var(--primary-color);
            font-weight: 500;
            text-align: center;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .section-description {
            max-width: 800px;
            margin: 0 auto 50px;
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-color);
            text-align: center;
        }
        p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 15px;
        }
        .text-center {
            text-align: center;
        }
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            text-align: center;
            font-size: 1.1rem;
        }
        .btn-primary {
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
            color: var(--white-color);
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
        }
        .btn-secondary {
            background-color: var(--dark-color);
            color: var(--white-color);
            border: 1px solid var(--dark-color);
        }
        .btn-secondary:hover {
            background-color: var(--white-color);
            color: var(--dark-color);
        }
        .btn-small {
            padding: 8px 20px;
            font-size: 0.95rem;
            border-radius: 25px;
            background-color: var(--primary-color);
            color: var(--white-color);
        }
        .btn-small:hover {
            background-color: var(--gradient-start);
        }
        .animated-bg {
            position: relative;
            overflow: hidden;
            z-index: 1;
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
            color: var(--white-color);
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
        }
        .animated-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: -1;
        }
        .animated-bg:hover::before {
            left: 100%;
        }
.header {
      background: rgb(14, 110, 244); /* استبدل هذا بالمسار الفعلي لصورتك */
    background-size: cover; /* لتغطية الهيدر بالكامل */
    background-position: center center; /* لتركيز الصورة */
    background-repeat: no-repeat; /* لمنع تكرار الصورة */
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky; /* أو fixed */
    top: 0;
    width: 100%;
    z-index: 1000;
    color: var(--white-color); 
}
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1; 
}
.header .container {
    position: relative;
    z-index: 1; 
}
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo img {
            height: 50px; /* Adjust as needed */
            transition: transform 0.3s ease;
        }
        .logo img:hover {
            transform: scale(1.05);
        }
        .nav-menu ul {
            list-style: none;
            display: flex;
        }
        .nav-menu ul li {
            margin-left: 30px;
        }
        .nav-menu ul li a {
            color: var(--white-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s ease;
        }
        .nav-menu ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            left: 0;
            bottom: 0;
            transition: width 0.3s ease;
        }
        .nav-menu ul li a:hover::after,
        .nav-menu ul li a.active::after {
            width: 100%;
        }
        .nav-menu ul li a:hover,
        .nav-menu ul li a.active {
            color: var(--primary-color);
        }
        /* Hero Section */
        #hero {
            background: none; /* Video will be the background */
            color: var(--white-color);
            min-height: 100vh; /* Full viewport height */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            padding-top: 100px; /* Space for fixed header */
            overflow: hidden;
        }
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the video covers the entire area */
            z-index: 0; /* Place behind content and overlay */
            filter: brightness(50%); /* Darken the video to make text readable */
        }
        #hero::before { /* Moroccan Pattern Overlay (Subtle) - KEEP IF DESIRED */
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/moroccan-flower.png') repeat; /* Example pattern */
            opacity: 0.1; /* Subtle overlay */
            z-index: 1; /* Place pattern overlay on top of video */
        }
        #hero .hero-content {
            position: relative;
            z-index: 2; /* Ensure content is on top */
            max-width: 900px;
            margin: 0 auto;
        }
        #hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }
        /* Sections Styling */
        section {
            padding: 80px 0;
        }
        #expertise {
            background-color: var(--white-color);
        }
        .logo-tagline {
            text-align: center;
            margin-bottom: 50px;
        }
        .logo-tagline img {
            max-width: 150px;
            margin-bottom: 15px;
        }
        .logo-tagline p {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--secondary-color);
        }
        /* Stats Overview */
        .stats-overview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
            gap: 30px; /* Space between items */
            margin-top: 50px;
            margin-bottom: 50px;
        }
        .stats-overview .stat-item {
            color: #f8f9fa;
            font-family: "Gill Sans Extrabold", sans-serif;
          
            padding: 30px;
            border-radius: 30px 0px 30px 0px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border: 1px solid var(--border-color);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stats-overview .stat-item:hover {
            font-family: "Gill Sans Extrabold", sans-serif;
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        }
        .stats-overview .stat-number {
            font-family: "Gill Sans Extrabold", sans-serif;
            font-size: 3.8rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            margin-bottom: 10px;
            line-height: 1;
        }
        .stats-overview .stat-label {
            color: #e9ecef;
            font-family: "Gill Sans Extrabold", sans-serif;
            font-size: 1.2rem;
            /* color: var(--dark-color); */
            font-weight: 500;
            display: block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-height: 50px; /* Ensure consistent height for labels */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* Bullet Points for Keywords */
        .bullet-points {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
            margin-bottom: 30px;
        }
        .bullet-points span {
            background-color: var(--primary-color);
            color: var(--white-color);
            padding: 10px 20px;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .bullet-points span:hover {
            background-color: var(--gradient-start);
            transform: translateY(-3px);
        }
        /* Service Grid */
/* Service Grid - Card Style Enhancements */
.service-grid {
    font-family: "Gill Sans Extrabold", sans-serif;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Adjusted min-width for larger cards */
    gap: 35px; /* Slightly increased gap */
    margin-top: 50px;
}
.service-item {
    background-color: var(--white-color);
    padding: 25px; /* Slightly reduced padding to make room for image/content */
    border-radius: 15px; /* Rounded corners for the card */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Soft shadow */
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* Enhanced transition for hover */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden; /* Ensures rounded corners for images */
    border: 1px solid var(--border-color); /* Subtle border */
}
.service-item:hover {
    transform: translateY(-12px); /* Lifts the card higher on hover */
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15); /* More prominent, primary-color-tinted shadow */
}
.service-item img {
    max-width: 100%; /* Ensure image fits within the card width */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Crops image to cover the area without distortion */
    border-radius: 10px; /* Slightly rounded corners for the image itself */
    margin-bottom: 25px; /* Space between image and title */
    transition: transform 0.4s ease; /* Smooth zoom on hover */
}
.service-item:hover img {
    transform: scale(1.05); /* Slight zoom effect on image when card is hovered */
}
.service-item h3 {
    font-size: 1.9rem; /* Slightly larger title */
    color: var(--dark-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    position: relative; /* For potential underline or icon next to title */
    padding-bottom: 10px;
}
.service-item h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 8px auto 0;
    border-radius: 2px;
}
.service-item p {
    font-size: 1.05rem; /* Slightly larger paragraph text */
    color: var(--text-color);
    flex-grow: 1; /* Allows paragraph to take available vertical space */
    margin-bottom: 20px;
    line-height: 1.7;
}
/* Style for the sub-services section (if you want it to also use card-like design) */
#core-services .sub-heading {
    margin-top: 80px; /* Space before sub-services */
    margin-bottom: 40px;
}
/* Responsive Adjustments for Service Cards */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    .service-item {
        padding: 20px;
    }
    .service-item h3 {
        font-size: 1.7rem;
    }
    .service-item p {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr; /* Stack cards vertically on smaller screens */
        gap: 20px;
    }
    .service-item img {
        height: 180px; /* Adjust image height for smaller screens */
    }
    .service-item h3 {
        font-size: 1.6rem;
    }
}
        /* Why Us Section */
        #why-us {
            background-color: var(--light-color);
        }
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
            margin-bottom: 50px;
        }
        .why-us-item {
            background-color: var(--white-color);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--box-shadow-light);
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative; /* For possible icon overlay or checkmark */
        }
        .why-us-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--box-shadow-dark);
        }
        .why-us-item h3 {
            font-size: 1.5rem;
            color: var(--dark-color);
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
            position: relative;
            padding-left: 35px; /* Space for custom checkmark */
        }
        .why-us-item h3::before {
            content: '\f00c'; /* Font Awesome checkmark icon */
            font-family: 'Font Awesome 5 Free'; /* Specify Font Awesome font */
            font-weight: 900; /* For solid icon */
            color: var(--primary-color);
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.2em;
        }
        .why-us-item p {
            font-size: 1rem;
            color: var(--text-color);
        }
        /* Aero Marketing Section */
        #aero-marketing {
            background: var(--white-color);
            padding: 80px 0;
        }
        #aero-marketing .section-description {
            margin-bottom: 30px;
            text-align: left; /* Align text left for this section */
        }
        #aero-marketing .section-description strong {
            color: var(--primary-color);
        }
/* Footer Styles */
.footer {
    background: rgb(14, 110, 244); /* The background image for the footer */
    background-size: cover; /* Ensures the image covers the entire footer area */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    color: var(--white-color); /* Sets the default text color to white for better contrast */
    padding: 60px 0; /* Adds internal spacing above and below content */
    position: relative; /* Essential for positioning the overlay and content correctly */
}
/* Optional: Overlay above the background image for better text readability */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay (60% opacity) */
    z-index: 0; /* Places the overlay below the footer content (which has z-index 1) */
}
/* Ensures footer content (container and bottom section) is above the overlay */
.footer .container,
.footer .footer-bottom {
    position: relative;
    z-index: 1;
}
/* Footer columns layout */
.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: left; /* Align text within columns to the left */
}
.footer-col {
    flex: 1; /* Allows columns to grow and shrink */
    min-width: 250px; /* Minimum width before wrapping to next line */
    margin: 20px; /* Spacing around each column */
}
.footer-col h4 {
    font-size: 1.4rem;
    color: var(--primary-color); /* Primary color for headings */
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
/* Underline effect for footer column headings */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
/* Styling for unordered lists in footer columns */
.footer-col ul {
    list-style: none; /* Removes default list bullets */
}
.footer-col ul li:not(:last-child) {
    margin-bottom: 10px; /* Spacing between list items */
}
/* Styling for links in footer columns */
.footer-col ul li a {
    font-size: 1rem;
    text-decoration: none;
    color: var(--white-color); /* White color for links */
    display: block; /* Makes the entire link area clickable */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}
.footer-col ul li a:hover {
    color: var(--primary-color); /* Primary color on hover */
    padding-left: 8px; /* Slight indent on hover for visual feedback */
}
/* Styling for social media icons */
.social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px; /* Centers icon vertically */
    border-radius: 50%; /* Makes the background circular */
    color: var(--white-color); /* White color for icons */
    transition: all 0.3s ease;
}
.social-links a:hover {
    color: var(--primary-color); /* Primary color icon on hover */
    background-color: var(--white-color); /* White background on hover */
}
/* Styles for the bottom copyright section of the footer */
.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Thin white separator line */
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7); /* Slightly transparent white text */
}
.footer-bottom a {
    color: var(--primary-color); /* Primary color for links in copyright */
    text-decoration: none;
}
.footer-bottom a:hover {
    text-decoration: underline; /* Underline on hover for links */
}
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .nav-menu {
                display: none; /* Hide nav menu on smaller screens, can add hamburger icon */
            }
            .header .container {
                justify-content: center; /* Center logo if no nav */
            }
            h2.section-heading {
                font-size: 2.2rem;
            }
            .main-slogan {
                font-size: 3rem;
            }
            #hero p {
                font-size: 1.1rem;
            }
            .stats-overview {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }
            .stats-overview .stat-number {
                font-size: 3rem;
            }
            .stats-overview .stat-label {
                font-size: 1rem;
            }
            .service-grid, .why-us-grid {
                grid-template-columns: 1fr;
            }
            .footer .container {
                flex-direction: column;
                align-items: center;
            }
            .footer-col {
                text-align: center;
                margin-bottom: 30px;
            }
            .footer-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        @media (max-width: 768px) {
            h2.section-heading {
                font-size: 2rem;
            }
            .main-slogan {
                font-size: 2.5rem;
            }
            .section-description {
                font-size: 1rem;
            }
            .btn {
                padding: 10px 25px;
                font-size: 1rem;
            }
            .stats-overview {
                grid-template-columns: 1fr; /* Stack columns on very small screens */
            }
            .stat-item {
                padding: 20px;
            }
            .stat-number {
                font-size: 2.8rem !important; /* Override if needed */
            }
            .stat-label {
                min-height: auto; /* Remove min-height on small screens */
            }
            .bullet-points span {
                font-size: 0.85rem;
                padding: 8px 15px;
            }
            .why-us-item h3 {
                font-size: 1.3rem;
            }
        }
        /* Contact Section Styles - Enhanced */
.contact-section {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 80px 0;
}
.contact-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px; /* Space above contact items */
}
.contact-info-block {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    justify-content: center;
    gap: 30px; /* Space between contact items */
    margin-top: 40px;
}
.contact-item {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly visible background */
    padding: 25px 35px;
    border-radius: 12px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1; /* Allow items to grow */
    min-width: 280px; /* Minimum width for each item */
    max-width: 350px; /* Max width to prevent items from being too wide */
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-item:hover {
    background-color: rgba(0, 123, 255, 0.2); /* Primary color tint on hover */
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
}
.contact-link {
    display: flex;
    align-items: center;
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.25rem; /* Larger font size for readability */
    font-weight: 400;
    transition: color 0.3s ease;
}
.contact-link:hover {
    color: var(--primary-color); /* Highlight text on hover */
}
.contact-link i {
    font-size: 2.2rem; /* Larger icon size */
    margin-right: 15px; /* Space between icon and text */
    color: var(--primary-color); /* Primary color for icons */
    transition: color 0.3s ease;
}
.contact-link:hover i {
    color: var(--white-color); /* Icon color changes on hover */
}
/* Responsive adjustments for Contact Section */
@media (max-width: 768px) {
    .contact-info-block {
        flex-direction: column; /* Stack items vertically on small screens */
        align-items: center;
    }
    .contact-item {
        min-width: 90%; /* Take up more width */
        max-width: 400px; /* Limit max width */
    }
    .contact-link {
        font-size: 1.1rem;
    }
    .contact-link i {
        font-size: 1.8rem;
        margin-right: 10px;
    }
}
        /* Aero Marketing Section Styles - Enhanced */
.aero-marketing-section {
    padding: 100px 0; /* More vertical padding */
    background: linear-gradient(to bottom, var(--light-color) 0%, var(--white-color) 100%); /* Subtle gradient background */
    position: relative;
    overflow: hidden; /* For any potential background elements */
}
/* Optional: Add a subtle background pattern or shape */
.aero-marketing-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1), transparent);
    border-radius: 50%;
    z-index: 0;
}
.aero-marketing-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(108, 117, 125, 0.08), transparent);
    border-radius: 50%;
    z-index: 0;
}
.aero-marketing-section .section-description {
    max-width: 900px; /* Wider description for this section */
    margin-bottom: 60px;
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--dark-color);
}
.aero-marketing-section .section-description strong {
    color: var(--primary-color);
}
.aero-marketing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; /* Increased gap for better spacing */
    margin-top: 60px;
}
.marketing-item {
    background-color: var(--white-color);
    padding: 35px;
    border-radius: 18px; /* Slightly more rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* More pronounced shadow */
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease; /* Longer transition */
    border: 1px solid var(--border-color); /* Subtle border */
    position: relative;
    z-index: 1; /* Ensure content is above background elements */
}
.marketing-item:hover {
    transform: translateY(-12px); /* Lift higher on hover */
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15); /* Primary color tinted shadow on hover */
    background: linear-gradient(to bottom right, var(--white-color), var(--light-color)); /* Subtle gradient on hover */
}
.marketing-item .marketing-icon {
    display: inline-flex; /* For centering the icon visually */
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.marketing-item:hover .marketing-icon {
    background-color: var(--gradient-start); /* Darker on hover */
    transform: scale(1.05); /* Slight scale up */
}
.marketing-item .marketing-icon i {
    font-size: 2.8rem; /* Larger icon size */
    color: var(--white-color);
    margin: 0; /* Reset margin from general icon styles */
}
.marketing-item h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}
.marketing-item p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .aero-marketing-section {
        padding: 60px 0;
    }
    .aero-marketing-section .section-description {
        font-size: 1.1rem;
    }
    .aero-marketing-grid {
        grid-template-columns: 1fr; /* Stack items on small screens */
        gap: 30px;
    }
    .marketing-item {
        padding: 25px;
    }
    .marketing-item .marketing-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    .marketing-item .marketing-icon i {
        font-size: 2.2rem;
    }
    .marketing-item h3 {
        font-size: 1.5rem;
    }
}
/* Partners/Clients Section Specific Styles */
.partners-section {
    background-color: var(--white-color); /* Or light-color */
    padding: 80px 0;
}
.partners-section .section-description {
    margin-bottom: 60px; /* More space below description for carousel */
}
.logo-carousel-container {
    overflow: hidden; /* Hides content outside the container */
    white-space: nowrap; /* Keeps images in one line */
    position: relative;
    padding: 20px 0; /* Vertical padding around logos */
    background-color: var(--light-color); /* Light background for carousel */
    border-radius: 10px;
    box-shadow: var(--box-shadow-light);
    max-width: 100%; /* Ensure it doesn't overflow container */
}
.logo-carousel {
    display: inline-block; /* Allows images to flow horizontally */
    animation: scroll-left 30s linear infinite; /* Animation definition */
    /* Adjust animation duration (30s) based on number of logos and desired speed */
}
.logo-carousel img {
    height: 80px; /* Adjust logo height as needed */
    width: auto; /* Maintain aspect ratio */
    margin: 0 40px; /* Space between logos */
    vertical-align: middle; /* Align images nicely */
    filter: grayscale(100%); /* Make logos grayscale */
    opacity: 0.6; /* Slight transparency */
    transition: filter 0.3s ease, opacity 0.3s ease; /* Smooth transition on hover */
}
.logo-carousel img:hover {
    filter: grayscale(0%); /* Full color on hover */
    opacity: 1; /* Full opacity on hover */
}
/* Pause animation on hover */
.logo-carousel-container:hover .logo-carousel {
    animation-play-state: paused;
}
/* Keyframes for the scrolling animation */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls half of the content (one full set of logos) */
}
/* Responsive Adjustments for logos */
@media (max-width: 768px) {
    .logo-carousel img {
        height: 60px; /* Smaller logos on mobile */
        margin: 0 20px;
    }
    .logo-carousel {
        animation-duration: 20s; /* Faster scroll on smaller screens if fewer logos visible */
    }
}
@media (max-width: 480px) {
    .logo-carousel img {
        height: 45px; /* Even smaller logos */
        margin: 0 15px;
    }
    .logo-carousel {
        animation-duration: 15s;
    }
}
/* Hero Section Specifics for Aero Marketing */
#aero-hero {
    min-height: 70vh; /* Adjust height for a secondary hero */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    padding-top: var(--header-height, 100px); /* Adjust based on header height */
    overflow: hidden;
    }
    .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Darker overlay for text readability */
    z-index: 1;
    }
    #aero-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px; /* Add some padding for smaller screens */
    }
    #aero-hero .main-slogan {
    font-size: clamp(2.8rem, 6vw, 4rem); /* Slightly smaller than main hero slogan */
    color: var(--white-color);
    margin-bottom: 20px;
    }
    #aero-hero .sub-heading {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--primary-color);
    margin-bottom: 15px;
    }
    #aero-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    }
    /* Specific Section Backgrounds (if different from general sections) */
    .bg-light {
    background-color: var(--light-color);
    }
    .bg-primary-gradient {
    background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-gradient-end));
    color: var(--white-color);
    }
    .white-text {
    color: var(--white-color) !important; /* Force white text */
    }
    /* Expertise Highlights (New Section for this page) */
    .expertise-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 30px;
    margin-top: 50px;
    }
    .highlight-item {
        background-image: url('../images/exp.png'); /* استبدل هذا بالمسار الفعلي لصورتك */
color: #e9ecef;
    border-radius: 15px;
    box-shadow: var(--box-shadow-light);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    }
    .highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-dark);
    }
    .highlight-item .icon-large {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    }
    .highlight-item h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    }
    .highlight-item p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    }
    /* Animations for new hero content */
    @keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(20px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }}
    .animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Hidden by default */
    }
    .animate-fade-in-up.delay-1 { animation-delay: 0.3s; }
    .animate-fade-in-up.delay-2 { animation-delay: 0.6s; }
    .animate-fade-in-up.delay-3 { animation-delay: 0.9s; }
    @keyframes popIn {
    0% {
    opacity: 0;
    transform: scale(0.8);
    }
    70% {
    opacity: 1;
    transform: scale(1.05);
    }
    100% {
    transform: scale(1);
    }}
    .animate-pop-in {
    animation: popIn 0.6s ease-out forwards;
    opacity: 0;
    }
    /* Responsive Adjustments for Aero Marketing Page */
    @media (max-width: 992px) {
    #aero-hero {
    min-height: 60vh;
    }
    #aero-hero .main-slogan {
    font-size: clamp(2.2rem, 5vw, 3rem);
    }
    #aero-hero .sub-heading {
    font-size: clamp(1rem, 2vw, 1.2rem);
    }
    #aero-hero p {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    }
    .expertise-highlights {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    }
    .highlight-item h3 {
    font-size: 1.4rem;
    }
    .highlight-item .icon-large {
    font-size: 3rem;
    }}
    @media (max-width: 768px) {
    #aero-hero {
    min-height: 50vh;
    padding-top: var(--header-height-mobile, 80px); /* Adjust for mobile header */
    }
    #aero-hero .main-slogan {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    }
    #aero-hero .sub-heading {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    }
    .expertise-highlights {
    grid-template-columns: 1fr; /* Stack items vertically on smaller screens */
    }
    .highlight-item {
    padding: 25px;
    }
    .highlight-item .icon-large {
    font-size: 2.8rem;
    }
    .highlight-item h3 {
    font-size: 1.3rem;
    }}
    @media (max-width: 480px) {
    #aero-hero {
    min-height: 40vh;
    padding-top: var(--header-height-xs, 70px);
    }
    #aero-hero .main-slogan {
    font-size: clamp(1.5rem, 4vw, 2rem);
    }
    #aero-hero .sub-heading {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    }
    #aero-hero p {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    }
    .highlight-item {
    padding: 20px;
    }
    .highlight-item .icon-large {
    font-size: 2.5rem;
    }
    .highlight-item h3 {
    font-size: 1.1rem;
    } }
/* Add to your style.css */
.video-background-section {
    position: relative; 
    overflow: hidden;
}
.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    background-size: cover; 
}
/* Ensure overlay is above video but below content */
#aero-hero .hero-overlay {
    z-index: 0; 
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.4);
}

