body {
    font-family: 'Cairo', sans-serif;
}

/* Hero Section */
.hero {
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url('../imegs/home.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

/* Logo */
.hero-logo {
    max-width: 180px;
    margin-bottom: 20px;
    border-radius: 50%;      /* 👈 التعديل */
    object-fit: cover;       /* 👈 التعديل */
}

/* Hero Text */
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* Buttons */
.btn-main {
    background-color: #f39c12;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    margin: 5px;
}

.btn-main:hover {
    background-color: #d68910;
    color: #fff;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    margin: 5px;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 130px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

/* تضمين خط Cairo المحلي */
@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-Regular.ttf') format('truetype');
    font-weight: 400;
}

body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #fff;
    background-color: #f8f9fa;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #f39c12;
}


/* About Section - Full Screen */
.about-section {
    min-height: 100vh; /* تجعل القسم يأخذ كامل ارتفاع الشاشة */
    display: flex;
    align-items: center; /* يوسّط النص عمودياً */
    justify-content: center; /* يوسّط النص أفقياً */
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('../imegs/moving-lights.gif'); /* ضع هنا مسار صورتك */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff; /* النص باللون الأبيض لتوضيح على الخلفية */
    flex-direction: column;
}

.about-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 800px; /* يحافظ على عرض مناسب للنص */
    margin-left: auto;
    margin-right: auto;
}

.about-list {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.about-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-list li strong {
    color: #f39c12;
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    .about-text {
        font-size: 1.1rem;
    }
    .about-list li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.7rem;
    }
    .about-text {
        font-size: 1rem;
    }
    .about-list li {
        font-size: 0.95rem;
    }
    .about-section {
        padding: 50px 15px;
    }
}

/* تضمين خط Cairo المحلي */
@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-Regular.ttf') format('truetype');
    font-weight: 400;
}

body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #252525;
    color: #686767;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #f39c12;
}

/* Fleet Section Full Screen */
.fleet-section {
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
    text-align: center;
}

/* Fleet Category */
.fleet-category {
    margin-bottom: 50px;
}

.fleet-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #f39c12;
}

/* Fleet Images */
.fleet-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.fleet-images img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect */
.fleet-images img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    .fleet-title {
        font-size: 1.5rem;
    }
    .fleet-images img {
        max-width: 45%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.7rem;
    }
    .fleet-title {
        font-size: 1.3rem;
    }
    .fleet-images {
        flex-direction: column;
        gap: 15px;
    }
    .fleet-images img {
        max-width: 90%;
        margin: 0 auto;
    }
}


/* خط Cairo المحلي */
@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-Regular.ttf') format('truetype');
    font-weight: 400;
}

body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
}

/* Section */
.contact-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../img/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 50px;
}

/* Layout */
.contact-wrapper {
    background: rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 15px;
}

/* Info */
.contact-info h3,
.contact-form h3 {
    margin-bottom: 20px;
    color: #f39c12;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Map */
.map iframe {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    border: none;
}

/* Form */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
}

.contact-form button {
    background-color: #f39c12;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background-color: #d68910;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        padding: 25px;
    }

    .map iframe {
        height: 180px;
    }
}

/* Footer */
.site-footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.95rem;
}

.site-footer p {
    margin: 0;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .site-footer {
        font-size: 0.85rem;
        padding: 15px 10px;
    }
}



