:root {
    --primary: #004d40; 
    --accent: #c5a022;  
    --dark: #121212;
    --light: #f4f7f6;
    --white: #ffffff;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

body { background-color: var(--light); color: #333; overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.navbar {
    background: var(--white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

.logo {
    display: flex; 
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo i, .logo img {
    font-size: 2.5rem;
    color: var(--accent);
    height: 50px; 
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.logo-bold {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 1.2;
}

.logo-light {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    margin-right: 25px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 5px;
}

.hero {
    height: 100vh;
   background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), 
                url('images/photo1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px; 
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap; 
}

.hero-btns .btn {
    padding: 15px 45px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: 0.4s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    font-size: 2.2rem;
    color: var(--accent); 
    filter: drop-shadow(0 0 5px rgba(197, 160, 34, 0.3));
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 20px; }
.hero .highlight { color: var(--accent); }
.hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; opacity: 0.9; }

.hero-btns .btn {
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
    display: inline-block;
    transition: var(--transition);
}

.btn-gold { background: var(--accent); color: var(--white); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }

.services { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.underline { width: 80px; height: 4px; background: var(--accent); margin: 15px auto; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.service-card:hover { transform: translateY(-10px); }
.service-card i { font-size: 3.5rem; color: var(--primary); margin-bottom: 25px; }

.official { background: #eef2f3; padding: 100px 0; }
.official-box {
    background: var(--primary);
    color: white;
    padding: 50px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cr-details { list-style: none; margin-top: 30px; }
.cr-details li { margin-bottom: 15px; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }

.official-qr {
    text-align: center;
    background: var(--white);
    color: var(--primary);
    padding: 30px;
    border-radius: 15px;
}

.official-qr i { font-size: 5rem; }

.contact { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.info-item { display: flex; align-items: center; margin-bottom: 25px; }
.info-item i { font-size: 1.5rem; color: var(--accent); margin-left: 20px; }

.map-placeholder {
    height: 300px;
    background: #ddd;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
}

footer { background: var(--dark); color: var(--white); padding: 40px 0; text-align: center; }
.vision-logo { height: 40px; margin-top: 20px; }

.menu-toggle { display: none; }

.floating-btns { position: fixed; bottom: 30px; right: 30px; z-index: 1000; }
.floating-btns a {
    width: 60px; height: 60px; border-radius: 50%; display: flex; 
    align-items: center; justify-content: center; font-size: 1.5rem; 
    color: white; margin-top: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.wa-btn { background: #25d366; }
.call-btn { background: var(--primary); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero h1 { font-size: 2.2rem; }
    .official-box { text-align: center; justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; }
}

.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.sub-title {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.vision-mission {
    margin-top: 40px;
}

.vision-mission .item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.vision-mission .item i {
    font-size: 1.5rem;
    color: var(--accent);
    background: var(--light);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.vision-mission h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 700;
}

.about-visual {
    position: relative;
    padding-bottom: 30px;
}

.about-visual .main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
    position: relative;
}

.about-visual .img-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: 20px;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    left: -30px;
    background: var(--primary);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-badge .number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .vision-mission .item {
        flex-direction: column;
        align-items: center;
    }
    .about-visual {
        margin-top: 50px;
    }
    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
}

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

.service-card {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 0 15px 50px rgba(197, 160, 34, 0.15);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 800;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
}

.projects {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.project-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 77, 64, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0; 
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

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

.project-info {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.project-info span {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .project-card {
        height: 250px;
    }
}

.stats-bar {
    background: var(--primary);
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item .num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 600;
}

.fleet {
    padding: 100px 0;
    background: white;
}

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

.fleet-card {
    padding: 40px;
    background: var(--light);
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.fleet-card:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.03);
}

.fleet-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.fleet-card:hover i {
    color: white;
}

.fleet-card h3 {
    margin-bottom: 15px;
    font-weight: 800;
}

.partners {
    padding: 60px 0;
    background: #fcfcfc;
}

.partners-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(1);
    gap: 30px;
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #444;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 40px; }

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}


.contact {
    padding: 100px 0;
    background-color: #fcfdfe;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 40px;
    margin-top: 50px;
    align-items: stretch;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.info-card-item:hover {
    transform: translateX(-10px); 
    border-color: var(--accent);
}

.info-card-item i {
    width: 50px;
    height: 50px;
    background: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
}

.info-card-item h4 {
    font-size: 1rem;
    color: #888;
    margin-bottom: 5px;
}

.info-card-item p, .info-card-item a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.social-links-contact {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-links-contact a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.contact-map-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 400px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-map-box {
        height: 300px;
        order: 2; 
    }
}

.main-footer {
    background-color: #0b0f13;
    color: #ffffff;
    padding: 80px 0 0;
    font-family: 'Cairo', sans-serif;
    direction: rtl; 
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    text-align: right;
}

.about-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent);
}

.about-col p {
    color: #aaa;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
    padding: 0;
    text-align: justify; 
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 12px;
    width: fit-content; 
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px; 
    height: 3px;
    background-color: var(--accent);
    border-radius: 50px;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    display: block;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 0;
    padding-right: 10px; 
}

.contact-col p {
    color: #aaa;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-col p i {
    color: var(--accent);
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-col, .footer-col {
        align-items: center;
    }

    .footer-col h4 {
        margin: 0 auto 25px;
    }

    .footer-col h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .contact-col p {
        justify-content: center;
    }
}


.vision-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

.vision-footer-img {
    width: 100%;
    max-width: 180px; 
    height: auto;
    margin-top: 15px;
    border-radius: 8px; 
    
    filter: brightness(0.9); 
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.vision-footer-img:hover {
    transform: scale(1.05); 
    filter: brightness(1);
}

@media (max-width: 768px) {
    .vision-col {
        align-items: center; 
    }
    .vision-footer-img {
        max-width: 150px;
    }
}

@keyframes badge-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 160, 34, 0.7);
    }
    50% {
        transform: scale(1.05); 
        box-shadow: 0 0 20px 10px rgba(197, 160, 34, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 160, 34, 0);
    }
}

.hero-badge {
    display: inline-block;
    background: var(--accent); 
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
    
    animation: badge-glow 2s infinite ease-in-out;
        backface-visibility: hidden;
    cursor: default;
}

.floating-btns a {
    animation: floating-pulse 2.5s infinite;
}

@keyframes floating-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.hero {
    height: 100vh;
    position: relative; 
    overflow: hidden; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1590483734724-383b85ad9310?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1; 
    
    animation: zoomAnimation 20s infinite alternate ease-in-out;
}

@keyframes zoomAnimation {
    0% {
        transform: scale(1); 
    }
    100% {
        transform: scale(1.15); 
    }
}

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

@media (max-width: 768px) {
    .navbar {
        padding: 5px 0;
        height: 70px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo-bold { font-size: 1.1rem; }
    .logo-light { font-size: 0.7rem; }

    .hero {
        min-height: 100dvh;
        padding: 80px 15px 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 1.8rem !important; 
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem !important;
        padding: 0 10px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: center;
    }

    .hero-btns .btn {
        width: 90%; 
        max-width: 300px;
        margin: 0 !important;
        padding: 15px 0;
        justify-content: center;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
        margin-bottom: 15px;
    }

    .floating-btns {
        bottom: 15px;
        right: 15px;
    }

    .floating-btns a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    html, body {
        overflow-x: hidden;
    }
}


@media (max-width: 768px) {
    .hero {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100dvh !important; 
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    html, body {
        height: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed; 
        top: 70px; 
        left: -100%; 
        width: 100%;
        height: calc(100dvh - 70px); 
        background: rgba(255, 255, 255, 0.98); 
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 999;
    }

    .nav-links.active-mobile {
        left: 0; 
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1.3rem;
        color: var(--primary);
        font-weight: 800;
        width: 100%;
        text-align: center;
    }

    .btn-cta {
        width: 80% !important;
        margin-top: 20px;
    }

    .hero-content {
        width: 100%;
        padding: 20px;
        z-index: 5;
    }

    .hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
}


.filter-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.f-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.f-btn.active, .f-btn:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 77, 64, 0.3);
}

.project-card.hide {
    display: none;
}

.project-card.show {
    animation: projectFadeIn 0.5s ease forwards;
}

@keyframes projectFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}



