:root {
    --main-color: #00a8ff;
    --dark-blue: #0052cc;
    --gold-accent: #fbc531;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: #f4f7f6;
    overflow-x: hidden;
}



.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

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

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
}

.company-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-blue);
}

.company-name span {
    color: var(--main-color);
}

/* Navigation Animations */
.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.nav-links li a i {
    font-size: 1.1rem;
    color: var(--main-color);
    transition: 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    border-color: var(--main-color);
    color: var(--main-color);
    background: rgba(0, 168, 255, 0.05);
    transform: translateY(-5px);
}

/* Call Button */
.call-btn {
    background: linear-gradient(45deg, var(--main-color), var(--dark-blue));
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 168, 255, 0.3);
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('images/puroclean-of-fort-worth--dc38HdQR1M-unsplash.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 82, 204, 0.6));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.main-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    animation: slideDown 1s ease-out;
}

.sub-title {
    font-size: 1.4rem;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeIn 2s ease-in;
}

.sub-title span {
    color: var(--gold-accent);
    font-weight: bold;
}

/* Buttons */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: slideUp 1s ease-out;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.4s;
}

.btn-discover {
    background: var(--main-color);
    color: white;
}

.btn-contact {
    background: white;
    color: var(--dark-blue);
}

.btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Animations Keyframes */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--dark-blue);
    cursor: pointer;
}

@media (max-width: 992px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: auto;
        background: white;
        flex-direction: column;
        padding: 50px 0;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        z-index: -1;
    }

    .nav-links.active {
        top: 80px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #bbdefb 100%);
    overflow: hidden;
    position: relative;
}

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

.about-content {
    flex: 1;
    min-width: 400px;
    z-index: 2;
}

.main-keyword {
    font-size: 2.8rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.main-keyword::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 80px;
    height: 5px;
    background: var(--main-color);
    border-radius: 10px;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--main-color);
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.about-features li {
    margin-bottom: 12px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.about-features li i {
    color: var(--main-color);
    font-size: 1.2rem;
}

.about-features li:hover {
    transform: translateX(-10px);
    color: var(--dark-blue);
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    min-width: 120px;
    transition: 0.4s;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: var(--main-color);
    color: white;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
}

/* Image Area */
.about-image-area {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-box {
    position: relative;
    width: 90%;
    z-index: 1;
}

.image-box img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
    transition: 0.5s;
}

.image-box:hover img {
    transform: scale(1.02) rotate(-1deg);
}

.floating-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--main-color);
    border-radius: 20px;
    z-index: -1;
    animation: rotateShape 10s infinite linear;
    opacity: 0.3;
}

@keyframes rotateShape {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Animations for Scroll */
.animate-on-scroll {
    opacity: 0;
    transition: all 1s ease-out;
}

.about-content.animate-on-scroll {
    transform: translateX(100px);
}

.about-image-area.animate-on-scroll {
    transform: translateX(-100px);
}

.animate-active {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .main-keyword {
        font-size: 2rem;
    }

    .about-image-area,
    .about-content {
        min-width: 100%;
    }
}

:root {
    --primary: #00a8ff;
    --dark: #1a2a6c;
    --gray: #666;
    --light-bg: #f8fbff;
}

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

.services-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.full-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.main-keyword {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.3rem;
    color: var(--gray);
}

.section-desc span {
    color: var(--primary);
    font-weight: bold;
}

.title-separator {
    width: 100px;
    height: 5px;
    background: var(--primary);
    margin: 20px auto;
    border-radius: 5px;
}

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

.service-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 168, 255, 0.1);
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: var(--light-bg);
    color: var(--primary);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    transition: 0.5s;
}

.service-box:hover .icon-circle {
    background: var(--primary);
    color: #fff;
    transform: rotateY(360deg);
}

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

.service-box p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.call-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.1rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.call-link:hover {
    color: var(--dark);
    gap: 15px;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}

.animate-active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .full-container {
        padding: 0 20px;
    }

    .main-keyword {
        font-size: 2.2rem;
    }

    .services-wrapper {
        grid-template-columns: 1fr;
    }

}

.why-us-new {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.why-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-header {
    text-align: center;
    margin-bottom: 70px;
}

.why-header .main-keyword {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.why-subtitle {
    font-size: 1.8rem;
    color: #00d2ff;
    margin-top: 15px;
}

.gold-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, transparent, #00d2ff, transparent);
    margin: 20px auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #00d2ff;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    transition: 0.5s;
    opacity: 0;
}

.why-card:hover .card-glow {
    opacity: 1;
}

.why-icon-box {
    font-size: 4rem;
    color: #00d2ff;
    margin-bottom: 25px;
    transition: 0.4s;
}

.why-card:hover .why-icon-box {
    transform: scale(1.2) rotateY(180deg);
}

.why-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.why-card p {
    font-size: 1rem;
    color: #cfd8dc;
    line-height: 1.8;
}

.experience-showcase {
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.exp-box {
    background: linear-gradient(45deg, #00d2ff, #3a7bd5);
    padding: 20px 50px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.exp-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
}

/* Responsive */
@media (max-width: 768px) {
    .why-header .main-keyword {
        font-size: 2.2rem;
    }

    .why-subtitle {
        font-size: 1.3rem;
    }
}

/* Blog Section Styling */
.blog-section {
    padding: 100px 0;
    background-color: #fcfdfe;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 50px;
}

.blog-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 168, 255, 0.15);
}

.blog-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-img-container img {
    transform: scale(1.15) rotate(2deg);
}

.blog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #00a8ff, #0052cc);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.meta-tags {
    margin-bottom: 12px;
    color: #888;
    font-size: 0.85rem;
}

.blog-content h3 {
    font-size: 1.35rem;
    color: #1a2a6c;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 800;
    transition: 0.3s;
}

.blog-card:hover h3 {
    color: #00a8ff;
}

.blog-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.blog-link {
    text-decoration: none;
    color: #1a2a6c;
    font-weight: 900;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.blog-link i {
    transition: 0.3s;
}

.blog-link:hover {
    color: #00a8ff;
}

.blog-link:hover i {
    transform: translateX(-10px);
}

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

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .main-keyword {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .main-header .container {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    .logo-box {
        order: 2;
    }

    .actions {
        order: 1;
        display: flex;
        gap: 10px;
    }

    .call-btn {
        padding: 10px;
        width: 40px;
        height: 40px;
        justify-content: center;
        display: none;

    }
}

.contact-section {
    padding: 100px 0;
    position: relative;
    background: url('images/jeshoots-com-__ZMnefoI3k-unsplash.jpg') center/cover fixed;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-direct,
.contact-form-box {
    flex: 1;
    min-width: 350px;
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-icon-header {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    color: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.method-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.method-item:hover {
    transform: translateX(-10px);
    border-color: var(--main-color);
}

.m-info {
    text-align: right;
}

.m-info span {
    display: block;
    font-size: 0.8rem;
    color: #888;
}

.m-info strong {
    font-size: 1.1rem;
    color: #333;
}

.method-item i {
    font-size: 1.5rem;
    color: var(--main-color);
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fafafa;
    font-family: inherit;
}

.submit-btn-new {
    width: 100%;
    padding: 15px;
    background: var(--main-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
}

.submit-btn-new:hover {
    background: var(--dark-blue);
    transform: translateY(-5px);
}

.main-footer {
    background: #0c1a30;
    color: #fff;
    padding: 60px 0 0;
    direction: rtl;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 50px;
}

.about-col .company-name {
    color: var(--main-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about-col p {
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--main-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--gold-accent, #fff);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: var(--main-color);
    padding-right: 10px;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: #ccc;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--main-color);
    font-size: 1.1rem;
}

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

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

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

.dev-text a {
    color: var(--main-color);
    font-weight: bold;
    text-decoration: none;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

    .footer-contact-info p {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 10px;
    }
}

.whatsapp-sticky {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}


.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-name {
    font-size: 1.4rem;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transition: 0.4s ease-in-out;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        display: block !important;
    }

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

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li a {
        padding: 15px 25px;
        border-radius: 0;
        justify-content: flex-start;
        font-size: 1rem;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        transform: none;
        background: rgba(0, 168, 255, 0.05);
        border-right: 4px solid var(--main-color);
    }

    .actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .menu-btn {
           display: block;
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--dark-blue);
    }

    .call-btn {
        order: 1;
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    @media (max-width: 480px) {
        .call-btn span {
            display: none;
        }

        .call-btn {
            width: 40px;
            height: 40px;
            padding: 0;
            justify-content: center;
            border-radius: 50%;
        }

        .company-name {
            font-size: 1.1rem;
        }
    }
}


html{
    scroll-behavior: smooth;
}



@media (max-width: 992px) {
    .main-header .container {
        display: flex;
        justify-content: space-between; 
        align-items: center;
        padding: 0 20px;
    }

    .actions {
        display: flex;
        align-items: center;
        margin-right: auto; 
    }
}







/* --- Header Styles (Desktop) --- */
.main-header {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo-img img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

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

.actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding-top: 80px;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1001;
    }

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

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-links li a {
        padding: 15px 25px;
        width: 100%;
    }

    .menu-btn {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--dark-blue);
        order: 2;
    }

    .call-btn {
        order: 1;
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    @media (max-width: 480px) {
        .call-btn span { display: none; }
        .call-btn { width: 40px; height: 40px; border-radius: 50%; justify-content: center; padding: 0; }
        .company-name { font-size: 1.1rem; }
    }
}

.whatsapp-sticky {
    z-index: 1100;
}








html, body {
    max-width: 100%;
    overflow-x: hidden; 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; 
}

.service-img {
    width: 100%;
    height: 200px; 
    overflow: hidden;
    border-radius: 10px 10px 0 0; 
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.3s ease;
}

.service-box:hover .service-img img {
    transform: scale(1.1); 
}


.areas-section {
    padding: 80px 0;
    background-color: #f9fbff;
    direction: rtl;
    text-align: center;
}

.areas-section .container {
    display: block !important;
    max-width: 1200px;
    margin: 0 auto;
}

.areas-section .section-header {
    margin-bottom: 40px;
    width: 100%;
}

.areas-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
    gap: 15px;
    width: 100%;
    opacity: 1; 
    transform: none !important;
}

.area-item {
    background: #ffffff;
    padding: 15px 10px;
    border-radius: 12px;
    border: 1px solid #e0eefd;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.area-item span {
    font-weight: 800;
    color: #0052cc;
    font-size: 1rem;
    display: block;
}

.area-item:hover {
    background: #00a8ff;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 168, 255, 0.2);
}

.area-item:hover span {
    color: #fff;
}

.call-sticky {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: #00a8ff;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    text-decoration: none;
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}