ElegantAcrylic/
├── index.html
├── style.css
├── script.js
│
├── pages/
│   ├── about.html
│   ├── services.html
│   ├── social.html
│   └── contact.html
│
└── images/
    └── logo.png
 <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Elegant Acrylic</title>

    <link rel="stylesheet" href="style.css">

    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap" rel="stylesheet">
</head>

<body>

    <!-- Navigation -->

    <header>
        <nav class="navbar">

            <div class="logo">
                <img src="images/logo.png" alt="Elegant Acrylic Logo">
            </div>

            <ul class="nav-links">
                <li><a href="page/home">Home</a></li>
                <li><a href="pages/about.html">About</a></li>
                <li><a href="pages/services.html">Services</a></li>
                <li><a href="pages/social.html">Social Media</a></li>
                <li><a href="pages/contact.html">Contact</a></li>
            </ul>

            <button id="langBtn">
                العربية
            </button>

        </nav>
    </header>

    <!-- Hero Section -->

    <section class="hero">

        <div class="hero-text">


            <p>
                High-quality printing and design services
                tailored to bring your ideas to life.
            </p>

            <div class="hero-buttons">

                <a href="pages/services.html" class="btn-primary">
                    Our Services
                </a>

                <a href="pages/contact.html" class="btn-secondary">
                    Contact Us
                </a>

            </div>

        </div>

        <div class="hero-image">

            <img src="images/logo.png" alt="Logo">

        </div>

    </section>

    <!-- Services Preview -->

    <section class="services-preview">

        <h2>Our Services</h2>

        <div class="service-grid">

            <div class="service-card">
                <h3>Graphic Designing</h3>
            </div>

            <div class="service-card">
                <h3>Indoor & Outdoor Printing</h3>
            </div>

            <div class="service-card">
                <h3>UV Printing</h3>
            </div>

            <div class="service-card">
                <h3>Screen Printing</h3>
            </div>

            <div class="service-card">
                <h3>Offset Printing</h3>
            </div>

            <div class="service-card">
                <h3>Shields & Gifts</h3>
            </div>

            <div class="service-card">
                <h3>Laser Cut</h3>
            </div>

        </div>

    </section>

    <!-- Social Preview -->

    <section class="social-preview">

        <h2>Social Media</h2>

        <div class="social-buttons">

            <a href="#" class="instagram">
                Instagram
            </a>

            <a href="#" class="snapchat">
                Snapchat
            </a>

            <a href="https://wa.me/966551744344" class="whatsapp">
                WhatsApp
            </a>

        </div>

    </section>

    <!-- Footer -->

    <footer>

        <div class="footer-content">

            <img src="images/logo.png" alt="Logo">

            <p>
                Elegant Acrylic
            </p>

            <p>
                00966551744344
            </p>

            <p>
                eelegant.acrylic@gmail.com
            </p>

        </div>

    </footer>

    <script src="script.js"></script>

</body>
</html>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins, sans-serif;
    background: white;
    color: #111;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: white;
}

.logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 600;
}

#langBtn {
    background: #00d5ff;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    cursor: pointer;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 8%;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
}

.hero-text p {
    margin-top: 20px;
    font-size: 1.1rem;
}

.hero-image img {
    width: 300px;
}

.btn-primary {
    display: inline-block;
    margin-top: 30px;
    background: #00d5ff;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
}

.btn-secondary {
    display: inline-block;
    margin-top: 30px;
    margin-left: 10px;
    background: #e5007d;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
}

.services-preview {
    padding: 80px 8%;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    border-left: 6px solid #00d5ff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

.social-preview {
    padding: 80px 8%;
    text-align: center;
}

.social-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
}

.instagram {
    background: #e5007d;
}

.snapchat {
    background: #ffd400;
    color: black !important;
}

.whatsapp {
    background: #25d366;
}
.tiktok {
    background-color: black;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.tiktok i {
    color: white;
}
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 40px;
    margin-top: 60px;
}
/* ===== HEADER ===== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

/* ===== HERO ===== */

.hero {
    min-height: 80vh;
}

.hero-text h1 {
    font-weight: 800;
}

.hero-text h1 span {
    color: #00d5ff;
}

.hero-image img {
    width: 500px;
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ===== SERVICES ===== */

.service-card {
    transition: .3s;
    text-align: center;
}



/* ===== SOCIAL ===== */

.social-buttons {
    margin-top: 30px;
}

.social-buttons a {
    transition: .3s;
}

.social-buttons a:hover {
    transform: scale(1.05);
}

/* ===== FOOTER ===== */

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content img {
    width: 120px;
}

.footer-contact {
    text-align: left;
}

/* ===== RESPONSIVE ===== */

@media(max-width:900px){

    .hero{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-text h1{
        font-size:3rem;
    }

    .hero-image img{
        width:300px;
    }
}
/* ===== ABOUT SECTION ===== */
/* ABOUT SECTION */

.about-section{
    padding:100px 8%;
    background:#fff;
    text-align:center;
}

.small-title{
    display:block;
    font-size:16px;
    letter-spacing:2px;
    color:#666;
    margin-bottom:10px;
}

.title-line{
    width:140px;
    height:5px;
    margin:0 auto 25px;
    border-radius:10px;
    background:linear-gradient(
        to right,
        #00bfff 33%,
        #ff00aa 33%,
        #ff00aa 66%,
        #ffc400 66%
    );
}

.about-header h2{
    font-size:70px;
    font-weight:800;
    margin-bottom:25px;
    color:#222;
}

.about-header h2 span{
    color:#ff00aa;
}

.about-header{

    text-align:center;

}

.about-header p{
    max-width:900px;
    margin:0 auto;
    font-size:22px;
    line-height:1.8;
    color:#555;
}

.about-cards{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
    margin-top:70px;
}

.about-card{
    background:#fff;
    width: 300px;px;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.about-card:hover{
    transform:translateY(-8px);
}

.about-card.blue,
.about-card.pink,
.about-card.yellow{
    background: #ffffff;
}
.about-card.blue{
    border-top: 5px solid #17a9f5;
}

.about-card.pink{
    border-top: 5px solid #ff1aac;
}

.about-card.yellow{
    border-top: 5px solid #ffc400;
}

.icon-circle{
    width:100px;
    height:100px;
    border-radius:50%;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:40px;
    margin-bottom:25px;
}

.blue .icon-circle{
    background:#00bfff;
}

.pink .icon-circle{
    background:#ff00aa;
}

.yellow .icon-circle{
    background:#ffc400;
}

.about-card h3{
    font-size:30px;
    margin-bottom:20px;
    font-weight:700;
}

.blue h3{
    color:#00bfff;
}

.pink h3{
    color:#ff00aa;
}

.yellow h3{
    color:#ffc400;
}

.about-card p{
    font-size:20px;
    line-height:1.7;
    color:#555;
}


<a href="https://www.instagram.com/elegantacrylic?igsh=d2hyMjBrYXppMzdy&utm_source=qr"
target="_blank" class="instagram">
<i class="fab fa-instagram"></i> Instagram
</a>

<a href="https://www.tiktok.com/@elegantacrylic?_r=1&_t=ZS-97USXgMpx1L"
target="_blank" class="tiktok">
<i class="fab fa-tiktok"></i> TikTok
</a>

<a href="https://snapchat.com/add/elegantacrylic"
target="_blank" class="snapchat">
<i class="fab fa-snapchat"></i> Snapchat
</a>

<a href="https://wa.me/966551744344"
target="_blank" class="whatsapp">
<i class="fab fa-whatsapp"></i> WhatsApp
</a>

</div>

/* SERVICES SECTION */

.services-preview{
    padding:100px 8%;
    text-align:center;
    background:#fff;
}

.services-preview h2{
    font-size:70px;
    font-weight:800;
    color:#222;
    margin-bottom:60px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(280px,1fr));
    gap:30px;
}
.service-card:last-child{ grid-column: 2;}

.service-card{
    background:#fff;
    padding:30px 20px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    cursor:pointer;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.service-icon{
    width:85px;
    height:85px;
    border-radius:50%;
    margin:0 auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:35px;
    color:white;
}

.service-icon i{
    color:white;
}

/* الألوان */

.blue{
    background:#0a84ff;
}

.pink{
    background:#ff008c;
}

.yellow{
    background:#ffc400;
}

/* الخط الملون فوق كل كارت */

.service-card:nth-child(3n+1){
    border-top:5px solid #0a84ff;
}

.service-card:nth-child(3n+2){
    border-top:5px solid #ff008c;
}

.service-card:nth-child(3n){
    border-top:5px solid #ffc400;
}

/* النص */

.service-card h3{
    font-size:22px;
    margin-bottom:10px;
    color:#222;
}

.service-card p{
    color:#666;
    line-height:1.6;
}

.clients-page{
    padding:100px 8%;
    text-align:center;
    background: #f8f9fb;
}

.clients-page h1{
    color:#00d5ff;
    font-size:3rem;
    margin-bottom:15px;
}

.clients-page p{
    color:#666;
    margin-bottom:50px;
}

.clients-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.client-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.client-card:hover{
    transform:translateY(-8px);
}

.client-card img{
    width:100%;
    height:90px;
    object-fit:contain;
}

.client-card{
    background:white;
    border-radius:20px;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    display:flex;
    justify-content:center;
    align-items:center;
}

.client-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}
.clients-page h1{
    font-family:'Montserrat', sans-serif;
    font-size:58px;
    font-weight:800;
    color:#00d5ff;

    text-transform:uppercase;

    letter-spacing:3px;

    margin-bottom:20px;
}
/* ABOUT PAGE */

.about-page{
    padding:80px 8%;
}

.about-page h1{
    text-align:center;
    font-size:55px;
    margin-bottom:50px;
    color:#111;
}

.about-box{
    background:white;
    border-radius:20px;
    padding:35px;
    margin-bottom:35px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.about-title{
    display:inline-block;

    background:#111;
    color:#f4d03f;

    padding:12px 25px;

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;
}

.about-box p{
    line-height:1.9;
    color:#555;
    font-size:17px;
}

.different-title{
    text-align:center;
    margin-top:60px;
    margin-bottom:40px;

    font-size:40px;
    color:#111;
}

.different-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.different-card{
    padding:30px;
    border-radius:20px;
    color:white;

    text-align:center;

    transition:.3s;
}

.different-card:hover{
    transform:translateY(-8px);
}

.different-card h3{
    margin-bottom:15px;
}

.blue{
    background:#00d5ff;
}

.yellow{
    background:#f4d03f;
    color:#111;
}

.pink{
    background:#e5007d;
}

.black{
    background:#111;
}

.nav-links .active{
    color:#00d5ff;
}
.about-title{
    background: #111;
    color: #f4c542;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content{
    color: #555;
    line-height: 1.8;
    font-size: 17px;
}

.service-info{
    display:none;
    background:white;
    padding:25px;
    margin-top:20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.service-info{
    display: none;
    margin-top: 20px;
    overflow: visible;
    height: auto;
}

.service-info.active{
    display: block;
}

.service-info img{
    width: 100%;
    height: auto;
    display: block;
}
.service-info p{
    white-space: normal;
    overflow: visible;
}

.service-info img{
    width:100%;
    max-width:600px;
    display:block;
    margin:auto;
    border-radius:10px;
}

.service-info p{
    margin-top:20px;
    line-height:1.8;
    text-align:left;
}
.service-info{
    display:none;
}
.hero{
   
    height: 90vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    position: relative;
}

.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-overlay{
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.hero-overlay h1{
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-overlay span{
    color: #ffd54f;
}

.hero-overlay p{
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.clients-page{
    background:#f8f9fb;
    padding:100px 8%;
    text-align:center;
}
.clients-header{
    text-align:center;
} 

.clients-header h2{
    font-size:70px;
    font-weight:800;
    color:#222;
    margin-bottom:20px;
}

.clients-header h2 span{
    color:#ff008c;
}

.clients-header p{
    color:#666;
    font-size:20px;
    margin-bottom:50px;
}
/* ================= SERVICE POPUP ================= */

.service-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    z-index:9999;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.service-modal.active{
    display:flex;
}

.modal-content{
    background:#fff;
    width:90%;
    max-width:1100px;
    border-radius:25px;
    overflow:hidden;
    display:flex;
    position:relative;
    animation:popup .35s ease;
}

.modal-content img{
    width:45%;
    height:600px;
    object-fit:cover;
}

.modal-text{
    width:55%;
    padding:45px;
    overflow-y:auto;
    max-height:600px;
}

.modal-text h2{
    color:#ffbf00;
    font-size:34px;
    margin-bottom:25px;
}

.modal-text p{
    color:#555;
    font-size:22px;
    line-height:2;
}

.close-modal{
    position:absolute;
    top:20px;
    right:25px;
    font-size:38px;
    cursor:pointer;
    color:#444;
    transition:.3s;
}

.close-modal:hover{
    color:#ff4f87;
    transform:rotate(90deg);
}

@keyframes popup{
    from{
        opacity:0;
        transform:scale(.9);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

@media(max-width:900px){

    .modal-content{
        flex-direction:column;
        max-height:90vh;
        overflow:auto;
    }

    .modal-content img{
        width:100%;
        height:260px;
    }

    .modal-text{
        width:100%;
        max-height:none;
    }

}
.service-info{
    display:none;
}
.modal-body{
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.modal-body img{
    width: 50%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.modal-text{
    width: 50%;
}
/* =========================
   SERVICE MODAL
========================= */

.service-modal{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.service-modal.active{
    display: flex;
}

.modal-content{
    background: #fff;
    width: 90%;
    max-width: 1300px;
    height: 85vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.modal-body{
    display: flex;
    height: 100%;
}

.modal-body img{
    width: 60%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-text{
    width: 40%;
    padding: 45px;
    overflow-y: auto;
}

.modal-text h2{
    color: #e58d23;
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 700;
}

.modal-text p{
    color: #555;
    line-height: 1.9;
    font-size: 10px;
}

.close-modal{
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 38px;
    cursor: pointer;
    color: #333;
    z-index: 100;
}

.close-modal:hover{
    color: #e58d23;
}
.modal-body{
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px;
    height: 100%;
}

.modal-body img{
    width: 60%;
    height: calc(100% - 100px);
    margin-top: 20px;
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.modal-text{
    width: 40%;
    max-height: 80vh;
    overflow-y: auto;
}
.service-modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.service-modal.active{
    display: flex;
}

.modal-content{
    width: 90%;
    max-width: 1200px;
    background: #111;      /* أسود */
    color: #fff;           /* الكلام أبيض */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.modal-body{
    display: flex;
    align-items: center;
}

.modal-body img{
    width: 50%;
    height: 650px;
    object-fit: cover;
}

.modal-text{
    width: 50%;
    padding: 50px;
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center; /* أو space-evenly لو عايزة توزيع متساوي */
}

.modal-text h2{
    color: #f4a261;   /* البرتقاني */
    font-size: 48px;
    margin-bottom: 25px;
}

.modal-text p{
    color: #f5f5f5;
    line-height: 1.6;
    font-size: 18px;
    margin-bottom: 10px;
}

.close-modal{
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 38px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
}
.printing-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.printing-gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.printing-gallery img:hover {
    transform: scale(1.05);
}
.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.popup-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #FFD700;
    font-size: 40px;
    cursor: pointer;
}

.printing-gallery img {
    cursor: pointer;
}
.view-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 90%;
    max-height: 85%;
    overflow-y: auto;
}

.popup-gallery img {
    width: 250px;
    border-radius: 10px;
    cursor: pointer;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #FFD700;
    font-size: 40px;
    cursor: pointer;
}
.printing-card{
    cursor:pointer;
}
.modal-text{
    font-size: 22px;
}

body[dir="rtl"] .modal-text{
    font-size: 24px;
}
/* تكبير النص العربي داخل نافذة الخدمات */
body[dir="rtl"] .modal-text {
    font-family: "Cairo", sans-serif;
}

body[dir="rtl"] .modal-text h2 {
    font-size: 56px;
}

body[dir="rtl"] .modal-text p {
    font-size: 24px;
    line-height: 2.2;
}
#modalDesc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

#modalDesc p {
    margin: 12px 0;
    line-height: 1.8;
}

#modalDesc p:first-child {
    margin-top: 0;
}

#modalDesc p:last-child {
    margin-bottom: 0;
}
/* ===== Modal Text Final Fix ===== */

.modal-text{
    width: 50%;
    padding: 40px 50px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#modalDesc{
    margin: 0;
    padding: 0;
}

#modalDesc p{
    margin: 0;
    font-size: 20px;
    line-height: 1.7;
}

#modalDesc br{
    display: block;
    content: "";
    margin-top: 8px;
}

#modalDesc p:last-child{
    margin-bottom: 0;
}
.modal-text{
    width: 50%;
    padding: 25px 50px 40px;
    overflow-y: auto;
}
/* ===== FINAL MODAL POSITION ===== */

.modal-body{
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 30px;
    height: 100%;
}

.modal-text{
    width: 50%;
    align-self: flex-start;
    padding: 10px 50px 30px;
    overflow-y: auto;
}

.modal-text h2{
    margin-top: 0;
    margin-bottom: 20px;
}

#modalDesc{
    margin: 0;
    padding: 0;
}

#modalDesc p{
    margin: 0;
    line-height: 1.7;
    font-size: 20px;
}
.service-card h3{
    transition:.3s;
}

.service-card:hover h3{
    color:#ff008c;
}

.service-card:hover .service-icon{
    transform:rotate(10deg) scale(1.1);
    transition:.3s;
}

.social-buttons a{
    transition:.3s;
}

.social-buttons a:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 25px rgba(0,0,0,.2);
}



/* ===== ACTIVE NAVIGATION ===== */

.nav-links a{
    transition: .3s;
}

.nav-links a.active{
    color: #00d5ff;
    font-weight: 700;
}

.nav-links a:hover{
    color: #00d5ff;
}
body.loading main {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
}

.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}
.image-modal.active{
    display:flex;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.close-image {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
/* Scrollbar */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #111;   /* لون الخلفية */
}

::-webkit-scrollbar-thumb {
    background: #00d5ff; /* لون المقبض */
    border-radius: 10px;
    border: 2px solid #111;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff008c;
}
.hero-text p{
    font: size 30px;
    font-weight: 500;
    line-height: 1.9;
    color: #000000;
    max-width: 850px;
    margin: 25px auto 35px;
    text-shadow: 0 3px 12px rgba(0,0,0,.5);
}
.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.30);
}
.hero-overlay h1{
    color: #000;
}

.hero-overlay h1 span{
    color: #ffc400;
}

.hero {
    background-image: url("images/banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
img{
    max-width:100%;
    height:auto;
}
/* =========================
   MOBILE RESPONSIVE
========================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- NAVBAR ---------- */

@media (max-width: 768px) {

    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .logo img {
        width: 120px;
        height: auto;
    }

    .nav-links {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    #langBtn {
        padding: 8px 16px;
    }


    /* ---------- HERO ---------- */

    .hero {
        width: 100%;
        min-height: auto;
        height: auto;
        padding: 70px 20px;
        flex-direction: column;
        text-align: center;
        background-position: center;
    }

    .hero-overlay {
        width: 100%;
        padding: 10px;
    }

    .hero-overlay h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .hero-text p,
    .hero-overlay p {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 90%;
        max-width: 300px;
        margin: 0;
        text-align: center;
    }

    .hero-image img {
        width: 250px;
        max-width: 80%;
    }


    /* ---------- SERVICES ---------- */

    .services-preview {
        padding: 60px 20px;
    }

    .services-preview h2 {
        font-size: 40px;
        margin-bottom: 35px;
    }

    .service-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card:last-child {
        grid-column: auto;
    }

    .service-card {
        width: 100%;
        padding: 25px 20px;
    }


    /* ---------- SOCIAL ---------- */

    .social-preview {
        padding: 60px 20px;
    }

    .social-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-buttons a {
        width: 90%;
        max-width: 300px;
        text-align: center;
        margin: 8px 0;
    }


    /* ---------- ABOUT ---------- */

    .about-section,
    .about-page {
        padding: 60px 20px;
    }

    .about-header h2 {
        font-size: 42px;
    }

    .about-header p {
        font-size: 17px;
    }

    .about-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .about-card {
        width: 100%;
        max-width: 350px;
    }


    /* ---------- CLIENTS ---------- */

    .clients-page {
        padding: 60px 20px;
    }

    .clients-page h1,
    .clients-header h2 {
        font-size: 40px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }


    /* ---------- FOOTER ---------- */

    footer {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }


    /* ---------- MODAL ---------- */

    .service-modal {
        padding: 15px;
    }

    .modal-content {
        width: 100%;
        height: 90vh;
        max-height: 90vh;
    }

    .modal-body {
        flex-direction: column;
        height: 100%;
        overflow-y: auto;
        padding: 15px;
    }

    .modal-body img {
        width: 100%;
        height: 250px;
        flex-shrink: 0;
    }

    .modal-text {
        width: 100%;
        padding: 20px;
    }

    .modal-text h2 {
        font-size: 30px;
    }

    .modal-text p {
        font-size: 16px;
    }
}


/* ---------- SMALL PHONES ---------- */

@media (max-width: 480px) {

    .nav-links {
        gap: 8px 12px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .hero {
        padding: 55px 15px;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 15px;
    }

    .services-preview h2 {
        font-size: 34px;
    }

    .about-header h2 {
        font-size: 34px;
    }

    .clients-page h1,
    .clients-header h2 {
        font-size: 34px;
    }
}
/* ===== REAL MOBILE VERSION ===== */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

@media screen and (max-width: 768px) {

    /* EVERYTHING */
    body {
        width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }

    section,
    header,
    footer,
    nav,
    div {
        max-width: 100%;
    }

    /* NAVBAR */
    .navbar {
        width: 100%;
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    .logo img {
        width: 110px !important;
        height: auto !important;
    }

    .nav-links {
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .nav-links li {
        margin: 0;
        padding: 0;
    }

    .nav-links a {
        font-size: 13px;
        white-space: nowrap;
    }

    #langBtn {
        font-size: 14px;
    }


    /* HERO */
    .hero {
        width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 650px;
        padding: 60px 20px !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;

        overflow: hidden;
    }

    .hero-overlay {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px !important;
    }

    .hero-overlay h1 {
        font-size: 38px !important;
        line-height: 1.2 !important;
        word-wrap: break-word;
    }

    .hero-overlay p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    .hero-buttons {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .hero-buttons a,
    .btn-primary,
    .btn-secondary {
        width: 90% !important;
        max-width: 300px !important;
        margin: 0 !important;
        text-align: center;
    }


    /* SERVICES */
    .services-preview {
        width: 100% !important;
        padding: 60px 20px !important;
    }

    .services-preview h2 {
        font-size: 40px !important;
    }

    .service-grid {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .service-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .service-card:last-child {
        grid-column: auto !important;
    }


    /* ABOUT */
    .about-section,
    .about-page {
        width: 100% !important;
        padding: 60px 20px !important;
    }

    .about-header h2,
    .about-page h1 {
        font-size: 38px !important;
        word-wrap: break-word;
    }

    .about-header p {
        width: 100%;
        font-size: 16px !important;
    }

    .about-cards {
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .about-card {
        width: 100% !important;
        max-width: 350px !important;
        min-width: 0 !important;
    }


    /* CLIENTS */
    .clients-page {
        width: 100% !important;
        padding: 60px 20px !important;
    }

    .clients-grid {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .client-card {
        width: 100% !important;
        min-width: 0 !important;
    }


    /* SOCIAL */
    .social-preview {
        width: 100% !important;
        padding: 60px 20px !important;
    }

    .social-buttons {
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .social-buttons a {
        width: 90% !important;
        max-width: 300px !important;
        margin: 8px 0 !important;
        text-align: center;
    }


    /* FOOTER */
    footer {
        width: 100% !important;
        padding: 35px 20px !important;
    }

    .footer-content {
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
    }


    /* MODALS */
    .service-modal,
    .image-modal,
    .popup {
        width: 100vw !important;
        max-width: 100vw !important;
    }

    .modal-content {
        width: 95% !important;
        max-width: 95% !important;
    }

    .modal-body {
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        padding: 15px !important;
    }

    .modal-body img {
        width: 100% !important;
        height: 250px !important;
    }

    .modal-text {
        width: 100% !important;
        padding: 20px !important;
    }
}