
*{margin:0;padding:0;box-sizing:border-box;font-family:Tajawal, Arial;}
body{background:#f5f7fb;}

/* HEADER + NAV */
header {
    background: #12c4d8;
    color: #0b0303;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* حاوية اللوجو */
.logo-container {
    display: flex;
    justify-content: flex-end; /* يمين */
    align-items: center;
    padding: 10px 20px;
}

/* صورة اللوجو */
.logo {
    max-width: 120px; /* حجم اللوجو */
    height: auto;
}

/* نخلي الناف في المنتصف */
nav {
    flex: 1;
    text-align: center;
}

/* روابط القائمة */
nav a {
    color: #0b0303;
    margin: 0 10px;
    text-decoration: none;
}

.cta-btn{
background:#0b0303;
color:#12c4d8;
padding:8px 15px;
border-radius:5px;
text-decoration:none;
}

/* HERO */
.hero {
    background: url('./images/hom.png') no-repeat center center/cover;
    color: #0b0303;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

/* طبقة شفافة فوق الصورة (عشان النص يكون واضح) */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5); /* تقدر تغيّر الشفافية */
    z-index: 1;
}

/* نخلي المحتوى فوق الطبقة */
.hero h1,
.hero p,
.hero button {
    position: relative;
    z-index: 2;
}

/* SECTIONS */
section{padding:40px 20px;}
.container{max-width:1100px;margin:auto;}

.grid{display:grid;gap:20px;}
.box{
background:#fff;padding:20px;border-radius:10px;box-shadow:0 0 10px rgba(0,0,0,0.1);text-align:center;
}

/* البداية مخفية */
.service-item {
    opacity: 0.80;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

/* لما تظهر */
.service-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hover احترافي */
.service-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px rgba(10, 214, 65, 0.15);
}

/* ضغط */
.service-item:active {
    transform: scale(0.97);
}
/* ABOUT */
.about{background:#fff;border-radius:10px;}

/* PRICING */
.pricing .box h3{color:#12c4d8;margin-bottom:10px;}
.features {
    padding: 60px 20px;
    text-align: center;
    background: #f8f9fa;
}

.features h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #12c4d8;
}

.features-container {
    display: grid;
    gap: 20px;
}

/* الكروت */
.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    cursor: pointer;
}

/* Hover */
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* الأيقونة */
.feature-box .icon {
    font-size: 35px;
    margin-bottom: 15px;
}

/* النص */
.feature-box h3 {
    font-size: 18px;
    color: #333;
}

/* Responsive */
@media (min-width: 768px) {
    .features-container {
        grid-template-columns: repeat(3, 1fr);
    }
}




.conditions {
    padding: 60px 20px;
    text-align: center;
    background: #f8f9fa;
}

.conditions h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #12c4d8;
}

/* التبويبات */
.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: #e9ecef;
    cursor: pointer;
    border-radius: 25px;
    transition: 0.3s;
}

.tab-btn.active {
    background: #12c4d8;
    color: #fff;
}

/* المحتوى */
.tab-content {
    display: none;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.tab-content.active {
    display: block;
}

/* القائمة */
.tab-content ul {
    list-style: none;
    padding: 0;
}

.tab-content li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
/* FORM */
.form{
background:#fff;padding:30px;margin:20px auto;border-radius:10px;max-width:600px;
}
input,select{
width:100%;padding:12px;margin-bottom:10px;border:1px solid #ccc;border-radius:6px;
}
button[type="submit"] {
    display: block;
    margin: 25px auto;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #12c4d8, #12c4d8);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

/* عند المرور */
button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.6);
}

/* عند الضغط */
button[type="submit"]:active {
    transform: scale(0.97);
}
#formMessage {
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
    display: none;
}

#formMessage.success {
    color: green;
}

#formMessage.error {
    color: red;
}


/* FOOTER */
footer{background:#222;color:#fff;text-align:center;padding:15px;}

/* WHATSAPP */
.whatsapp{
position:fixed;bottom:20px;left:20px;background:#25D366;color:#fff;padding:12px 15px;border-radius:50px;text-decoration:none;
}

/* RESPONSIVE */
@media(min-width:768px){
.grid{grid-template-columns:repeat(3,1fr);} 
.hero h1{font-size:40px;}
}


/*START OURCOST*/
.stats {
    background: linear-gradient(to left, #12c4d8, #0a58ca);
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.stats .container {
    display: grid;
    gap: 20px;
}

.stat-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.stat-box h2 {
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 1px;
}

.stat-box p {
    font-size: 18px;
}

/* Responsive */
@media (min-width: 768px) {
    .stats .container {
        grid-template-columns: repeat(4, 1fr);
    }
}
/*ENDOURCOST*/

.call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #12c4d8;
    color: #fff;
    font-size: 22px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 999;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    color: #fff;
    font-size: 24px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 999;
}

/* Hover */
.call-btn:hover {
    background: #12c4d8;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}
