:root {
    --primary-color: #0f172a; 
    --accent-color: #eab308;  
    --text-white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body, html {
    overflow-x: hidden; 
    width: 100%;
}
header {
    position: fixed;
    top: 25px;
    left: 15px;
    right: 15px;
    z-index: 1000;
    transition: var(--transition);
}
.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.logo {
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--text-white);
}

.logo-icon {
    font-size: 1.8rem;
    margin-left: 10px;
    color: var(--accent-color);
    animation: truckMove 3s infinite ease-in-out;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.25rem;
    transition: var(--transition);
}

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

.call-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.call-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
}
.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070') center/cover no-repeat;
    filter: blur(3px); 
    transform: scale(1);
    animation: zoomAnimation 10s infinite alternate ease-in-out;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6); 
    z-index: -1;
}
.hero-content {
    max-width: 800px;
    color: white;
    padding: 0 20px;
}
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem); 
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

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

.btn {
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid white;
    color: white;
    backdrop-filter: blur(5px);
}

.btn:hover {
    transform: translateY(-5px);
}
@keyframes zoomAnimation {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

@keyframes truckMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-8px); }
}
.reveal-text {
    animation: zoomInFast 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.fade-in {
    animation: fadeIn 1.2s forwards 0.3s;
    opacity: 0;
}

.fade-in-up {
    animation: fadeInUp 1s forwards 0.6s;
    opacity: 0;
}

@keyframes zoomInFast {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 992px) {
    header { top: 0; }
    .navbar { border-radius: 0; width: 100%; border: none; padding: 15px 20px; }
    
    .nav-links {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 70vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border-radius: 0 0 50px 50px;
    }

    .nav-links.active { top: 0; }
    .menu-toggle { display: block; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn { width: 100%; text-align: center; }
}
.about {
    padding: 100px 50px;
    background: #ffffff;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image-wrapper {
    position: relative;
    z-index: 1;
}

.image-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.image-box:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.image-box img {
    width: 100%;
    display: block;
    transition: 0.5s;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.3);
    animation: float 3s infinite ease-in-out;
}

.floating-shape {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: morphing 10s infinite alternate;
}
.sub-title {
    color: var(--accent-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 900;
}

.about-description {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.features-list li:hover {
    transform: translateX(-10px);
}

.feat-icon {
    width: 50px;
    height: 50px;
    background: rgba(234, 179, 8, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
}

.feat-txt {
    font-weight: 700;
    color: var(--primary-color);
}

.read-more {
    display: inline-block;
    box-shadow: 0 15px 30px rgba(234, 179, 8, 0.2);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes morphing {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%; }
}
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .about-image-wrapper {
        order: 2;
    }
    
    .features-list li {
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
.services {
    padding: 100px ;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.text-white { color: white !important; }

.title-line {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 25px;
    position: relative;
    transition: all 0.5s ease;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d97706 100%);
    z-index: -1;
    clip-path: circle(0% at 100% 100%);
    transition: 0.6s ease-in-out;
}

.service-card:hover::before {
    clip-path: circle(150% at 100% 100%);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: transparent;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(234, 179, 8, 0.2);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: 0.5s;
}

.service-card:hover .service-icon {
    background: white;
    color: var(--primary-color);
    transform: rotateY(360deg);
}

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

.service-card p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 0.95rem;
    transition: 0.5s;
}

.service-card:hover p {
    color: white;
}

.card-step {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    transition: 0.5s;
}

.service-card:hover .card-step {
    color: rgba(255, 255, 255, 0.2);
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; 
        padding: 0 10px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}
.portfolio {
    padding: 100px 50px;
    background: #f8fafc; 
}

.portfolio-header {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr)); 
    gap: 15px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1 / 1; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    cursor: pointer;
    background: #ddd;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    color: var(--accent-color);
    font-size: 1.5rem;
}
.portfolio-item:hover img {
    transform: scale(1.15); 
}

.portfolio-item:hover .img-overlay {
    opacity: 1;
}
@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
        padding: 0 5px;
    }
    
    .portfolio-header .section-title {
        font-size: 1.8rem;
    }
}
.why-us-stacked {
    padding: 120px 0;
    background: #0b0f19; 
    position: relative;
    overflow: hidden;
}
.why-us-stacked::before {
    content: '';
    position: absolute;
    top: 0; left: -100px;
    width: 300px; height: 300px;
    background: var(--accent-color);
    filter: blur(150px);
    opacity: 0.1;
}

.stacked-header {
    text-align: center;
    margin-bottom: 80px;
}

.badge-gold {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.header-desc {
    color: #94a3b8;
    max-width: 600px;
    margin: 15px auto;
}

.vertical-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.v-feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.v-feature-item:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.v-icon-box {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.3);
}

.v-content h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.v-content p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1.05rem;
}

.v-number {
    position: absolute;
    top: 20px;
    left: 40px; 
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    transition: 0.5s;
}

.v-feature-item:hover .v-number {
    color: rgba(234, 179, 8, 0.1);
}

@media (max-width: 768px) {
    .v-feature-item {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .v-number {
        font-size: 2.5rem;
        top: 10px;
        left: 20px;
    }
}
.site-footer {
    background: #070a13;
    color: #ffffff;
    padding: 80px 60px;
    border-top: 2px solid var(--accent-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-logo span { color: var(--accent-color); }

.footer-desc {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}
.links-col ul { list-style: none; }
.links-col ul li { margin-bottom: 12px; }
.links-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.links-col ul li a:hover {
    color: var(--accent-color);
    padding-right: 10px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i { color: var(--accent-color); font-size: 1.2rem; }
.info-item a { color: #94a3b8; text-decoration: none; }
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

.gmt-credit {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #64748b;
}

.gmt-credit a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float {
    background: #25d366;
    animation: pulse-green 2s infinite;
}

.call-float {
    background: var(--accent-color);
    color: var(--primary-color);
    animation: pulse-gold 2s infinite;
}

.float-btn i { font-size: 1.5rem; }

.float-btn:hover {
    transform: scale(1.1) translateX(-10px);
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(234, 179, 8, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0); }
}
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-col h3::after { right: 50%; transform: translateX(50%); }
    .info-item { justify-content: center; }
    .btn-text { display: none; } 
    .float-btn { padding: 15px; border-radius: 50%; }
}
@media (max-width: 992px) {
    header {
        top: 0 !important; 
        left: 0 !important;
        right: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .navbar {
        border-radius: 0 !important; 
        border-left: none;
        border-right: none;
        border-top: none;
        padding: 10px 15px !important;
        background: rgba(15, 23, 42, 0.95) !important; 
    }

    .call-btn {
        display: none;
    }

    .menu-toggle {
        display: block !important; 
        margin-right: 10px;
    }
    .nav-links {
        position: fixed;
        top: -110vh; 
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary-color); 
        flex-direction: column;
        justify-content: center; 
        align-items: center; 
        gap: 35px !important;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: -1;
    }
    .nav-links.active {
        top: 0; 
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        font-size: 1.8rem !important;
        color: white !important;
        display: block;
        width: 100%;
    }
    body, html {
        overflow-x: hidden !important;
        position: relative;
        width: 100%;
    }
    img {
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 2.2rem !important;
    }

    .hero-btns {
        flex-direction: column; 
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
.menu-toggle i {
    transition: 0.3s ease;
}