:root {
    --primary: #1A2E44; 
    --accent: #F5A623;  
    --light: #F8F9FA;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body { background: var(--white); color: var(--primary); overflow-x: hidden; }

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

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed; width: 100%; top: 0; z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

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

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { 
    background: var(--accent); color: white; 
    width: 45px; height: 45px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.logo-text { display: flex; flex-direction: column; }
.brand { font-weight: 900; font-size: 1.4rem; line-height: 1; }
.sub { font-size: 0.75rem; font-weight: 600; color: var(--accent); }

.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 700; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

.btn-call {
    background: var(--primary); color: white !important;
    padding: 10px 25px; border-radius: 8px;
}

/* Hero Section */
.hero {
    height: 100vh;
    padding-top: 100px;
    display: flex; align-items: center;
    background: linear-gradient(135deg, #f1f4f8 0%, #ffffff 100%);
    position: relative; overflow: hidden;
}

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

.badge {
    background: rgba(245, 166, 35, 0.1); color: var(--accent);
    padding: 5px 15px; border-radius: 50px; font-weight: 700;
    font-size: 0.9rem; margin-bottom: 20px; display: inline-block;
}

.hero h1 { font-size: 4rem; font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.highlight { color: var(--accent); }

.hero p { font-size: 1.2rem; color: #555; margin-bottom: 35px; }

.hero-btns { display: flex; gap: 15px; }
.btn { 
    padding: 15px 35px; border-radius: 10px; text-decoration: none; 
    font-weight: 800; transition: var(--transition);
}
.btn.primary { background: var(--accent); color: white; box-shadow: 0 10px 20px rgba(245, 166, 35, 0.3); }
.btn.secondary { background: var(--primary); color: white; }
.btn:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.hero-visual { position: relative; }
.floating-img { width: 100%; filter: drop-shadow(20px 20px 50px rgba(0,0,0,0.1)); animation: float 6s infinite ease-in-out; }

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

.experience-circle {
    position: absolute; top: -20px; right: -20px;
    background: var(--white); width: 120px; height: 120px;
    border-radius: 50%; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 5;
}
.experience-circle .num { font-size: 2rem; font-weight: 900; color: var(--accent); }
.experience-circle .txt { font-size: 0.7rem; font-weight: 700; }

/* Trust Bar */
.trust-bar { background: var(--primary); color: white; padding: 40px 0; }
.stats-flex { display: flex; justify-content: space-around; text-align: center; }
.stat-item i { font-size: 2rem; color: var(--accent); margin-bottom: 10px; }

/* Services */
.services { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; font-weight: 900; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card {
    padding: 50px 30px; background: var(--light); border-radius: 20px;
    transition: var(--transition); border: 1px solid transparent;
}
.service-card:hover { 
    background: white; border-color: var(--accent); 
    transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.card-icon { font-size: 3rem; color: var(--accent); margin-bottom: 20px; }

/* Coverage */
.coverage { padding-bottom: 100px; }
.coverage-box { 
    background: var(--primary); color: white; padding: 60px;
    border-radius: 30px; position: relative; overflow: hidden;
}
.cities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.cities span { 
    background: rgba(255,255,255,0.1); padding: 8px 20px; 
    border-radius: 50px; border: 1px solid rgba(255,255,255,0.2);
}

/* Floating Buttons */
.floating-btns { position: fixed; bottom: 30px; left: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 1000; }
.floating-btns a { 
    width: 60px; height: 60px; border-radius: 50%; color: white;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); text-decoration: none;
}
.btn-wa { background: #25D366; }
.btn-call-float { background: var(--accent); }

.pulse { animation: pulse-animation 2s infinite; }
@keyframes pulse-animation {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

/* Footer */
.footer { background: #0a1622; color: white; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; padding-bottom: 50px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 30px 0; text-align: center; color: #777; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { justify-content: center; }
    .stats-flex { flex-direction: column; gap: 30px; }
}

:root {
    --primary: #1A2E44;
    --accent: #F5A623; 
    --white: #ffffff;
    --transition: all 0.4s ease;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed; width: 100%; top: 0; z-index: 2000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.menu-btn {
    display: none; 
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    margin-right: 30px;
    font-weight: 700;
    transition: var(--transition);
}

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

.btn-call-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 25px;
    border-radius: 8px;
}

.hero {
    height: 100vh;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    display: flex; align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.trust-badge {
    background: rgba(245, 166, 35, 0.1);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.hero h1 { font-size: 3.8rem; font-weight: 900; line-height: 1.2; color: var(--primary); }
.highlight { color: var(--accent); }

.hero p { font-size: 1.2rem; color: #555; margin-bottom: 40px; line-height: 1.8; }

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

/* الأزرار */
.btn { padding: 15px 40px; border-radius: 12px; text-decoration: none; font-weight: 900; transition: var(--transition); }
.btn.primary { background: var(--accent); color: white; box-shadow: 0 10px 20px rgba(245, 166, 35, 0.3); }
.btn.secondary { background: var(--primary); color: white; }
.btn:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.pulse { animation: pulse-animation 2s infinite; }
@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.image-wrapper { position: relative; }
.main-truck { width: 110%; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.1)); transition: 0.5s; }
.main-truck:hover { transform: scale(1.05) rotate(-2deg); }

.experience-badge {
    position: absolute; top: 0; left: 0;
    background: var(--white); padding: 25px; border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 130px; height: 130px; border: 4px solid var(--accent);
}
.experience-badge .number { font-size: 2.5rem; font-weight: 900; color: var(--primary); line-height: 1; }
.experience-badge .text { font-size: 0.7rem; font-weight: 700; text-align: center; color: var(--accent); }

@media (max-width: 992px) {
    .nav-links { display: none; } 
    .menu-btn { display: block; } 
    
    .hero { height: auto; padding: 120px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { justify-content: center; flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; }
    .main-truck { width: 100%; margin-top: 50px; }
    .experience-badge { left: 50%; transform: translateX(-50%); top: -30px; }
}

.hero-animations-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; 
    overflow: hidden;
    pointer-events: none;
}

.speed-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    width: 200px;
    opacity: 0.6;
    border-radius: 50px;
    animation: moveLine 3s linear infinite;
}

.speed-line:nth-child(1) { top: 15%; left: -250px; animation-delay: 0s; }
.speed-line:nth-child(2) { top: 45%; left: -250px; animation-delay: 1.5s; }
.speed-line:nth-child(3) { top: 75%; left: -250px; animation-delay: 0.8s; }

@keyframes moveLine {
    0% { transform: translateX(0); opacity: 0; }
    30% { opacity: 0.6; }
    100% { transform: translateX(calc(100vw + 250px)); opacity: 0; }
}

.floating-icon {
    position: absolute;
    color: var(--accent);
    opacity: 0.15; 
    font-size: 4rem;
    animation: floatAround 10s infinite ease-in-out;
}

.icon-1 { top: 10%; right: 10%; font-size: 6rem; animation-delay: 0s; }
.icon-2 { bottom: 15%; right: 20%; font-size: 5rem; animation-delay: 2s; }
.icon-3 { top: 20%; left: 15%; font-size: 4rem; animation-delay: 4s; }
.icon-4 { bottom: 10%; left: 5%; font-size: 7rem; animation-delay: 1s; }

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(10deg); }
    66% { transform: translate(-20px, 30px) rotate(-10deg); }
}

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

.hero-visual {
    position: relative;
    z-index: 10 !important;
}

.hero {
    background: radial-gradient(circle at center, #ffffff 0%, #f4f7fb 100%);
    z-index: 1;
}

.services-modern {
    padding: 100px 0;
    background: #fcfdfe;
}

.service-badge {
    background: rgba(26, 46, 68, 0.05);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: inline-block;
}

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

.glass-card {
    position: relative;
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.glass-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--clr);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0; 
    transition: 0.5s;
    z-index: -1;
    top: -50px;
    right: -50px;
}

.glass-card:hover::before {
    opacity: 0.2; 
    transform: scale(2);
}

.glass-card:hover {
    border-color: var(--clr);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.glass-card i {
    font-size: 3.5rem;
    color: var(--clr);
    margin-bottom: 25px;
    transition: 0.5s;
}

.glass-card:hover i {
    transform: scale(1.1) rotate(-5deg);
}

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

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

.glass-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: var(--clr);
    transition: 0.5s;
}

.glass-card:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .modern-services-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}
.coverage-modern {
    padding: 100px 0;
}

.coverage-wrapper {
    background: linear-gradient(135deg, #1A2E44 0%, #0f172a 100%);
    padding: 80px 40px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.districts-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.city-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(245, 166, 35, 0.3);
    font-weight: 700;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: default;
}

.city-tag i { color: var(--accent); }

.city-tag:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.highlight-tag {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.map-bg-icon {
    position: absolute;
    bottom: -50px;
    left: -50px;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
    transform: rotate(-15deg);
}

.main-footer {
    background: #080f1a;
    color: white;
    padding: 80px 0 0;
    border-top: 1px solid rgba(245, 166, 35, 0.1);
}

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

.footer-col h4 {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

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

.about-f p {
    color: #94a3b8;
    line-height: 1.8;
    margin: 20px 0;
    font-size: 0.95rem;
}

.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: 10px; color: white; transition: 0.3s;
}
.social-links a:hover { background: var(--accent); color: var(--primary); transform: translateY(-5px); }

.f-links, .f-contact { list-style: none; padding: 0; }
.f-links li, .f-contact li { margin-bottom: 15px; }
.f-links a { color: #94a3b8; text-decoration: none; transition: 0.3s; }
.f-links a:hover { color: var(--accent); padding-right: 10px; }

.f-contact li { display: flex; align-items: center; gap: 12px; color: #94a3b8; }
.f-contact i { color: var(--accent); }
.f-contact a { color: inherit; text-decoration: none; }

.footer-bottom {
    background: #040811;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #64748b;
}

.designer a { color: var(--accent); text-decoration: none; font-weight: 800; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { right: 50%; transform: translateX(50%); }
    .social-links, .logo { justify-content: center; }
    .f-contact li { justify-content: center; }
    .bottom-flex { flex-direction: column; gap: 15px; }
    .coverage-wrapper { padding: 50px 20px; }
}

.process-section { padding: 100px 0; background: #fff; }
.process-steps { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; margin-top: 50px; 
}
.step-item { text-align: center; position: relative; }
.step-icon {
    width: 70px; height: 70px; background: var(--primary); color: var(--accent);
    font-size: 1.5rem; font-weight: 900; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.step-item h4 { font-size: 1.3rem; font-weight: 800; margin-bottom: 15px; color: var(--primary); }
.fleet-gallery {
    padding: 100px 0;
    background-color: #ffffff;
}

.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.gallery-card {
    position: relative;
    height: 220px; 
    border-radius: 15px;
    overflow: hidden;
    background: #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 46, 68, 0.9) 0%, transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.4s;
    transform: translateY(10px);
}

.img-overlay-info span {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.85rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.gallery-card:hover .img-overlay-info {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .gallery-grid-modern { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .gallery-grid-modern { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }
    .gallery-card { height: 160px; }
}

@media (max-width: 480px) {
    .gallery-grid-modern { grid-template-columns: 1fr; } 
    .gallery-card { height: 250px; }
}
.faq-section { padding: 100px 0; background: #fff; }
.faq-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: center; }
.faq-item { 
    background: var(--light); padding: 25px; border-radius: 15px; 
    margin-bottom: 20px; border-right: 5px solid var(--accent);
}
.faq-item h5 { color: var(--primary); font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.faq-item p { font-size: 0.95rem; color: #666; }

@media (max-width: 768px) {
    .faq-wrapper { grid-template-columns: 1fr; text-align: center; }
}


@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px; 
        right: -100%; 
        width: 80%; 
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); 
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        display: flex !important;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 20px 0;
        font-size: 1.3rem;
        color: var(--accent) !important;
    }
     .nav-links a:hover{
        color: var(--primary) !important;
     }
    .menu-btn {
        display: block !important;
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 1100;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px; 
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem; 
    font-weight: 700;
}

.about-modern {
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.about-text-side, .about-image-side {
    flex: 1;
    min-width: 350px;
}

.section-badge {
    background: rgba(245, 166, 35, 0.1);
    color: var(--accent);
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 40px;
    text-align: justify;
}

.mini-features {
    margin-bottom: 40px;
}

.m-feat {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.m-feat i {
    color: var(--accent);
    font-size: 1.2rem;
}

.btn-about {
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    display: inline-block;
    transition: 0.3s;
}

.btn-about:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.image-stack {
    position: relative;
    padding-right: 20px;
}

.img-main {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 5px solid #fff;
}

.experience-sticker {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent);
    color: var(--primary);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 30px rgba(245, 166, 35, 0.3);
    border: 8px solid #fff;
    z-index: 10;
}

.exp-year {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 800;
}

@media (max-width: 992px) {
    .about-flex {
        flex-direction: column-reverse;
        text-align: center;
        gap: 50px;
    }
    .about-title { font-size: 2rem; }
    .m-feat { justify-content: center; }
    .experience-sticker {
        right: 50%;
        transform: translateX(50%);
        bottom: -40px;
    }
}

.experience-badge {
    position: absolute;
    /* top: 50%;  */
    left: -91px; 
    transform: translateY(-50%); 
    background: var(--white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15); 
    border: 5px solid var(--accent); 
    z-index: 20;
    animation: badge-float 4s infinite ease-in-out; 
}

.badge-content {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.experience-badge .number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary); 
    display: block;
    margin-bottom: 2px;
}

.experience-badge .years {
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
    display: block;
}

.experience-badge .label {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent); 
    letter-spacing: 1px;
    margin-top: 2px;
}

.experience-badge::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: badge-pulse 2s infinite;
    z-index: -1;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-55%) translateX(5px); }
}

@keyframes badge-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}
@media (max-width: 768px) {
    .hero {
        min-height: 100dvh;
        padding: 100px 15px 40px;
        display: flex;
        align-items: center;
        text-align: center;
    }

    .hero-grid {
        display: flex;
        flex-direction: column; 
        gap: 30px;
    }

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

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

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

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

    .hero-visual {
        margin-top: 40px;
        width: 100%;
        position: relative;
    }

    .main-truck {
        width: 100%;
        transform: none !important; 
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        left: 50%;
        top: -20px;
        transform: translateX(-50%) !important; 
        position: absolute;
        border-width: 3px;
    }

    .experience-badge .number {
        font-size: 1.8rem;
    }

    .experience-badge .text {
        font-size: 0.6rem;
    }

    .floating-btns {
        bottom: 20px;
        left: 20px;
    }

    .floating-btns a {
        width: 55px;
        height: 55px;
    }

    html, body {
        overflow-x: hidden;
        width: 100%;
    }
}