:root {
    --primary: #FFB300; 
    --secondary: #1A222D; 
    --accent: #FFD54F;
    --white: #ffffff;
    --text-dark: #2d3436;
    --text-light: #f4f4f4;
    --transition: all 0.3s ease-in-out;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

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



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

/* Navbar */
.navbar {
    background: var(--secondary);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.5rem;
}

.logo img {
    height: 45px;
}

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

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

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

.menu-btn {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}
.btn-call {
    background: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    color: var(--secondary) !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
    transition: 0.3s;
}

.btn-call:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 179, 0, 0.5);
}

/* Hero Section */
.hero {
   position: relative;
    width: 100%;
    min-height: 100dvh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 34, 45, 0.75), rgba(26, 34, 45, 0.85)), 
                url('images/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; 
    color: var(--white);
    padding: 80px 20px;
}
.hero-content {
    width: 100%;
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem); 
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    margin: 10px;
}

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

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

.btn.secondary {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn.secondary:hover {
    background: var(--white);
    color: var(--secondary);
}

/* Services */
.services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary);
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

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

.service-card {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Stats */
.stats {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
}

/* --- Location --- */
.location-sec {
    padding: 100px 0;
    background-color: #fdfdfd; 
}

.location-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}


.loc-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--secondary);
    line-height: 1.3;
}
.loc-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
}

.loc-text p i {
    color: var(--primary);
    font-size: 1.4rem;
}
.loc-img::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: var(--primary); 
    border-radius: 20px;
    z-index: 1;
}
.loc-img {
    flex: 1;
    min-width: 300px;
    position: relative;
    padding: 20px;
}
.loc-img img {
    width: 100%;
    height: 450px; 
    object-fit: cover; 
    border-radius: 20px;
    position: relative;
    z-index: 2; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); 
    transition: 0.4s ease;
}

.loc-img img:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.accent-bar {
    height: 15px;
    background: var(--primary);
    width: 100%;
}
.why-us { padding: 100px 0; background: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

.feature-box {
    text-align: center;
    padding: 40px 20px;
    background: #fdfdfd;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: 0.4s;
}

.feature-box i { font-size: 3rem; color: var(--primary); margin-bottom: 20px; }
.feature-box:hover { background: var(--secondary); color: white; transform: translateY(-10px); }
.feature-box:hover i { color: var(--primary); }

.testimonials {
    background: linear-gradient(rgba(26, 34, 45, 0.9), rgba(26, 34, 45, 0.9)), url('bg-pattern.jpg');
    padding: 100px 0;
}

.testimonials-slider { display: flex; gap: 30px; flex-wrap: wrap; }
.testi-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    flex: 1;
    min-width: 300px;
    backdrop-filter: blur(10px);
}

.testi-card p { font-style: italic; color: #ddd; margin-bottom: 20px; line-height: 1.8; }
.testi-card h4 { color: var(--primary); }
.stars { color: var(--primary); margin-bottom: 10px; font-size: 0.8rem; }


.gallery-sec {
    padding: 80px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 34, 45, 0.7); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: var(--primary); 
    font-size: 2.5rem;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

#image-viewer {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}

#image-viewer .close {
    position: absolute;
    top: 30px;
    left: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }
    .gallery-item {
        height: 180px;
    }
}
@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    .hero-btns .btn {
        width: 100%;
        margin: 5px 0;
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

[data-aos] {
    pointer-events: none;
}
.aos-animate {
    pointer-events: auto;
}
body.aos-all-hidden {
    overflow-x: hidden !important;
}
/* footer */
footer {
    background: #121921; 
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    border-top: 4px solid var(--primary); 
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.footer-tagline {
    color: #cbd5e0;
    line-height: 1.8;
    font-size: 1rem;
    max-width: 300px;
}

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

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

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

footer ul li {
    margin-bottom: 15px;
    color: #cbd5e0;
    transition: 0.3s;
}

footer ul li i {
    color: var(--primary);
    margin-left: 10px;
    width: 20px;
    text-align: center;
}

footer a {
    color: #cbd5e0;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: var(--primary);
    padding-right: 5px;
}

.bottom-bar {
    background: #0a0f14; 
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-bar p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 75px;
        flex-direction: column;
        background: var(--secondary);
        width: 100%;
        text-align: center;
        padding: 40px 0;
        transition: 0.5s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.2);
    }

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

    .hero{
            height: 100vh;

    }
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .loc-img img {
        box-shadow: 10px 10px 0 var(--primary);
    }
}
@media (max-width: 768px) {
    footer {
        text-align: center; 
        padding: 40px 0 20px;
    }

    .footer-grid {
        display: flex;
        flex-direction: column; 
        align-items: center;   
        gap: 40px;
    }

    .footer-brand, 
    .footer-links, 
    .footer-contact {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-links ul, 
    .footer-contact ul {
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center; 
    }

    .footer-links li, 
    .footer-contact li {
        margin-bottom: 12px;
        text-align: center;
    }

    .footer-contact li i {
        margin-left: 8px;
        margin-right: 0;
    }

    .bottom-bar {
        padding: 20px 10px;
        font-size: 0.85rem;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px; 
    left: 20px;  
    right: auto;  
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    transition: 0.3s;
    animation: pulse-green 2s infinite;
}

.call-float {
    position: fixed;
    bottom: 95px; 
    left: 20px;   
    right: auto;
    background-color: #FFB300; 
    color: #1A222D;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    transition: 0.3s;
    animation: pulse-gold 2s infinite;
    text-decoration: none;
}

@media (max-width: 768px) {
    .whatsapp-float, .call-float {
        width: 55px;
        height: 55px;
    }
    .call-float {
        bottom: 85px; 
    }
    .tooltip-text {
        display: none !important;
    }
}

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

@keyframes pulse-gold {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 179, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 179, 0, 0); }
}
@keyframes continuous-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 15px 5px rgba(255, 179, 0, 0.2); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 179, 0, 0); }
}

@keyframes pulse-green-constant {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px 10px rgba(37, 211, 102, 0.2); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.h-feature {
    background: rgba(26, 34, 45, 0.8); 
    border: 1px solid var(--primary);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    animation: continuous-pulse 2.5s infinite ease-in-out;
    white-space: nowrap;
}

.whatsapp-float {
    animation: pulse-green-constant 2s infinite ease-in-out !important;
}

.call-float {
    animation: continuous-pulse 2s infinite ease-in-out !important;
}

@media (max-width: 768px) {
    .hero-features {
        flex-direction: column; 
        align-items: center;
        gap: 10px;
    }

    .h-feature {
        width: 95%; 
        justify-content: center;
        padding: 12px;
        font-size: 0.85rem;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0 10px;
    }
    
    .h-feature:nth-child(1), .h-feature:nth-child(2) {
        grid-column: span 1;
        font-size: 0.75rem; 
        padding: 8px;
    }
    
    .h-feature:nth-child(3) {
        grid-column: span 2;
        width: 100%;
    }
}