/* ==========================================
   Navbar Links
========================================== */

.navbar-nav .nav-link{

    transition:
        color .25s ease,
        transform .25s ease;

}


/* الرابط الحالي */
.navbar-nav .nav-link.active{

    color:var(--secondary-color) !important;

    font-weight:700;

}


/* عند المرور بالماوس */
.navbar-nav .nav-link:hover{

    color:var(--secondary-color) !important;

    transform:scale(1.08);

}



/*==========================================
=           الخريطة
==========================================*/



.contact-map {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.contact-map iframe {
    width: 100% !important;
    max-width: 100%;
    height: 400px;
    border: 0;
    display: block;
}



@media (max-width: 768px) {



    .contact-map {
        margin-top: 20px;
    }

    .contact-map iframe {
        height: 300px;
    }



}









/*==========================================
=            الإعدادات العامة
==========================================*/






.btn-save{
    background:#00b894;
    color:#fff;
    border:none;
    padding:10px 20px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.btn-save:hover{
    background:#00a383;
    color:#fff;
}











.password-box{

    position:relative;

}

.password-box input{

    padding-left:45px;

}

.password-box i{

    position:absolute;

    left:15px;

    top:50%;

    transform:translateY(-50%);

    cursor:pointer;

    color:#777;

    font-size:18px;

    transition:.3s;

}

.password-box i:hover{

    color:var(--primary-color);

}






.profile-card .form-control{

    height:45px;

    font-size:15px;

}





.profile-title h3{

    color: var(--primary-color);

    font-size:24px;

    font-weight:800;

    margin:0;

}

.profile-title i{

    margin-left:8px;

}

.profile-page{

    padding:70px 0;

}

.profile-card{

    max-width:560px;

    margin:auto;

    background:var(--card-bg);

   max-width:560px;

    border-radius:16px;

    padding:25px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);

}








.profile-header{

    text-align:center;

    margin-bottom:35px;

}

.profile-header i{

    width:90px;

    height:90px;

    line-height:90px;

    border-radius:50%;

    background:var(--primary-color);

    color:#fff;

    font-size:36px;

    margin-bottom:15px;

}


.profile-card .btn{

    padding:10px 20px;

    font-size:15px;

}

.profile-header h2{

    color:var(--primary-color);

    font-weight:800;

}

.profile-item{

    display:flex;

    justify-content:space-between;

    padding:16px 0;

    border-bottom:1px solid #eee;

}

.profile-item strong{

    color:var(--primary-color);

}

.profile-actions{

    margin-top:30px;

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

@media(max-width:768px){

.profile-item{

    flex-direction:column;

    gap:8px;

}

.profile-actions{

    flex-direction:column;

}

}



















.btn-login{

    margin-right:18px;

}

@media (max-width:991px){

    .btn-login{

        margin-right:0;

    }

}







.dropdown-menu{

    border:0;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.dropdown-item{

    padding:10px 18px;

}

.dropdown-item i{

    margin-left:8px;

    width:18px;

}










/*=========================
    Login
==========================*/

.auth-section{

    padding:70px 0;

}

.auth-box{

    max-width:480px;

    margin:auto;

    background:var(--card-bg);

    border-radius:20px;

    padding:35px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.auth-header{

    text-align:center;

    margin-bottom:30px;

}

.auth-header i{

    width:70px;

    height:70px;

    line-height:70px;

    border-radius:50%;

    background:var(--primary-color);

    color:#fff;

    font-size:28px;

    margin-bottom:15px;

}

.auth-header h2{

    color:var(--primary-color);

    font-weight:800;

}

.auth-header p{

    color:var(--text-color);

    opacity:.8;

}

.auth-box label{

    font-weight:700;

    margin-bottom:8px;

}

.auth-box .form-control{

    border-radius:12px;

    min-height:48px;

}

.btn-login-submit{

    background:var(--primary-color);

    color:#fff;

    border-radius:30px;

    padding:12px;

    font-weight:700;

    transition:.3s;

}

.btn-login-submit:hover{

    background:var(--secondary-color);

    color:#fff;

}

.auth-footer{

    text-align:center;

    margin-top:25px;

}

.auth-footer a{

    color:var(--primary-color);

    font-weight:700;

}









.btn-login{

    background:var(--primary-color);

    color:#fff;

    border-radius:30px;

    padding:8px 22px;

    font-weight:700;

    transition:.3s;

}

.btn-login:hover{

    background:var(--secondary-color);

    color:#fff;

    transform:translateY(-2px);

}

body.dark .btn-login{

    background:var(--secondary-color);

    color:#fff;

}

/* ==========================
   Login Button Mobile
========================== */

@media (max-width:991px){

    .btn-login{

        display:block;

        width:100%;

        text-align:center;

        margin-top:12px;

        padding:10px 18px;

    }

}









body.dark .navbar .nav-link,
body.dark .navbar .nav-link:visited{

    color:#fff !important;

}

body.dark .navbar .nav-link:hover,
body.dark .navbar .nav-link.active,
body.dark .navbar .nav-link:focus{

    color:var(--secondary-color) !important;

}






















input::placeholder,
textarea::placeholder{

color:#999;

}











.btn-darkmode{

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:var(--primary-color);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:all .3s ease;

    padding:0;

    flex-shrink:0;

}

.btn-darkmode:hover{

    background:var(--secondary-color);

    transform:rotate(20deg) scale(1.08);

}

.btn-darkmode i{

    font-size:18px;

    transition:.3s;

}

.btn-darkmode:focus{

    outline:none;

    box-shadow:none;

}


body.dark .btn-darkmode{

    background:var(--secondary-color);

}









.feature-box h3,
.feature-box p{
    overflow-wrap: break-word;
    word-break: break-word;
}














.footer-box p a{

    color:#6b7280;       /* رمادي فاتح */

    text-decoration:none;

    transition:all .3s ease;

}

.footer-box p a:hover{

    color:#ff8c00;       /* برتقالي */

    padding-right:5px;   /* حركة بسيطة */

}











.footer-logo{
    cursor:pointer;
    transition:.3s;
}

.footer-logo:hover{
    transform:scale(1.05);
}






.navbar-brand{
    cursor:pointer;
    transition:.3s;
}

.navbar-brand:hover{
    transform:scale(1.05);
}












.new-message{

    background:#fff8e1 !important;

    font-weight:600;

}








*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Cairo",sans-serif;
    background:var(--background-color);
    color:var(--text-color);
    line-height:1.7;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    transition:.3s;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

img{
    max-width:100%;
    display:block;
}

/*==========================================
=            الهيدر
==========================================*/

.header{

    background:var(--background-color);

    border-bottom:1px solid var(--border-color);

    position:sticky;

    top:0;

    z-index:9999;

}

/*==========================================
=            زر القائمة بالموبايل
==========================================*/

.navbar-toggler{
    border:none;
    box-shadow:none;
}

.navbar-toggler:focus{
    box-shadow:none;
}

.navbar-toggler i{
    color:var(--primary-color);
    font-size:28px;
}

/*==========================================
=            أزرار الهيدر
==========================================*/

.header-buttons{
    display:flex;
    align-items:center;
    gap:10px;
}

.btn-whatsapp{
    background:#25D366;
    color:var(--white-color);
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.btn-whatsapp:hover{
    background:#1da851;
    color:var(--white-color);
}

.btn-book{
    background:var(--primary-color);
    color:var(--white-color);
    padding:10px 22px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.btn-book:hover{
    background:var(--secondary-color);
    color:var(--white-color);
}


/*==========================================
=            شريط التنقل
==========================================*/

.navbar{
    min-height:90px;
}

.navbar-brand img{
    height:80px;
    width:auto;
}

.nav-link{
  color:var(--text-color);
    font-size:16px;
    font-weight:600;
    margin:0 10px;
    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:var(--secondary-color);
}

/*==========================================
=            القسم الرئيسي Hero
==========================================*/

.hero-slider{
    position:relative;
     overflow:hidden;
    min-height:450px;
    display:flex;
    align-items:center;

    /* تصغير السلايدر */
    width:92%;
    margin:30px auto;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}












.hero-slider .slide-bg{
    height:100%;
    object-fit:cover;
}

/* حركة الصورة */

@keyframes zoomHero{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.05);
    }
}

.hero-slider .swiper-slide{

    position:relative;
    min-height:450px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;

}

.hero-content h1 span{
    color:var(--secondary-color);
}

.hero-slider .slide-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev{

    background:transparent;

    box-shadow:none;

    color:var(--primary-color);

    z-index:20;

}



/* طبقة التعتيم */

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:1;
}

/* المحتوى */

.hero-slider .container{
   position:relative;
    z-index:2;
}

.hero-content{
    position:relative;
  
    color:var(--white-color);
    animation:heroMove 1s ease forwards;
    transform:translateY(80px);



    z-index:10;

    margin-top:-30px;
}

@keyframes heroMove{
    from{
        opacity:0;
        transform:translateY(120px);
    }
    to{
        opacity:1;
        transform:translateY(80px);
    }
}

.hero-slider .slide-bg{
    animation:zoomSlider 8s ease-in-out infinite;
}

@keyframes zoomSlider{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

.hero-content h1{
    font-size:58px;
    font-weight:800;
    margin-bottom:25px;
}

.hero-content span{
    color:var(--secondary-color);
}

.hero-content p{
    font-size:20px;
    line-height:2;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}





@media (max-width:768px){

  .hero-slider{
    width:94%;
    margin:20px auto 80px;
    border-radius:20px;
    overflow:hidden;
    position:relative;
}








    .hero-slider .swiper-slide{

        height:400px;

        border-radius:20px;

        overflow:hidden;
       

    }

    /* الامتداد الأبيض */
.hero-slider{

    width:94%;
    margin:20px auto 80px;

    border-radius:20px;

    overflow:hidden;

    position:relative;

   background:var(--card-bg);

    box-shadow:
        0 10px 30px rgba(0,0,0,.08),
        0 35px 0 0 var(--background-color);

}

.hero-slider{
    border:1px solid rgba(0,0,0,.04);
}

    /* النقط */

  .hero-slider .swiper-pagination{

    position:absolute !important;

    left:50% !important;

    transform:translateX(-50%) !important;

    bottom:12px !important;

    z-index:20;

}

    .swiper-pagination-bullet{

        width:9px;

        height:9px;

        background:#bdbdbd;

        opacity:1;

        margin:0 4px !important;

    }

    .swiper-pagination-bullet-active{

        background:var(--secondary-color);

    }




.hero-slider .container{

   
    height:100%;

    display:flex;

    align-items:flex-start;

}



.hero-content{

     margin-top:10px;

    position:relative;

    z-index:10;

}

.hero-content h1{

    font-size:28px;

}

.hero-content p{

    font-size:15px;

}

.hero-buttons{

    justify-content:center;

}






    .slide-bg{

        object-fit: cover;
       

    }


   

   


    .hero-buttons{

        justify-content:center;

        gap:10px;

    }


    .hero-buttons .btn{

        padding:10px 18px;

        font-size:14px;

    }
   


}














/*==========================================
=            قسم المميزات
==========================================*/

.features{
    padding:80px 0;
    background:var(--background-color);
}

.feature-box{
    background:var(--background-color);
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    border:1px solid var(--border-color);
    transition:.4s;
    height:100%;
    box-shadow:0 10px 25px var(--shadow-light);
}

.feature-box:hover{
    transform:translateY(-10px);
    border-color:var(--primary-color);
    box-shadow:0 20px 35px var(--shadow-primary);
}

.feature-box i{
    font-size:55px;
    color:var(--primary-color);
    margin-bottom:25px;
    transition:.4s;
}

.feature-box:hover i{
    color:var(--secondary-color);
    transform:rotate(-10deg) scale(1.1);
}

.feature-box h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:var(--text-color);
}

.feature-box p{
    color:var(--gray-color);
    line-height:1.9;
    font-size:15px;
}

/*==========================================
=            عنوان الأقسام
==========================================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:var(--secondary-color);
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:var(--text-color);
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:var(--gray-color);
    line-height:2;
    font-size:17px;
}

/*==========================================
=            من نحن
==========================================*/

.about{
    padding:100px 0;
    background:var(--section-color);
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px var(--shadow-medium);
}

.section-subtitle{
    display:inline-block;
    color:var(--secondary-color);
    font-weight:700;
    margin-bottom:15px;
    font-size:18px;
}

.about-content h2{
    font-size:42px;
    font-weight:800;
 color:var(--heading-color);
    margin-bottom:20px;
}

.about-content p{
    font-size:17px;
    line-height:2;
    color:var(--paragraph-color);
    margin-bottom:30px;
}

.about-list{
    margin-bottom:35px;
}

.about-list li{
    margin-bottom:15px;
    font-size:17px;
    font-weight:600;
}

.about-list i{
    color:var(--secondary-color);
    margin-left:10px;
}

@media(max-width:991px){

    .about-image{
        margin-bottom:40px;
    }

    .about-content h2{
        font-size:32px;
    }

}
/*==========================================
=            الإحصائيات
==========================================*/



body.dark{

    background:var(--background-color);

}













.stats{

    background:var(--primary-color);

    padding:80px 0;

    width:92%;
    margin:40px auto;
    border-radius:15px;

}

.stats .container{
    max-width:1100px;

}

.stat-box{

    color:var(--white-color);
    padding:20px;

}

.stat-box h2{

    font-size:50px;
    font-weight:800;
    margin-bottom:10px;

}

.stat-box p{

    font-size:18px;
    margin:0;
    opacity:.9;

}


/*==========================================
=            CTA
==========================================*/














.cta-box:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}




.cta{

    margin-bottom:40px;

}





.cta-box{

    display:flex;
    align-items:center;
    justify-content:space-between;
transition:all .35s ease;
    gap:40px;

    background:var(--cta-color);

    border-radius:20px;

    padding:50px;

    overflow:hidden;
      flex-direction:row-reverse;

}



.cta-image{

    width:260px;
    flex-shrink:0;

}

.cta-image img{

    width:100%;
    max-height:260px;
    object-fit:contain;

    animation:floatImage 3s ease-in-out infinite;

}

.cta-content{

    flex:1;

}

.cta-content h2{

    color:var(--cta-text-color) !important;

}

.cta-content h2:hover{

    transform:translateX(-6px);

    color:var(--cta-text-color);

}


.cta-content p{

 color:#28a745;

}





.cta-content h2,
.cta-content p{

    transition:.3s;

}

.cta-content p:hover{

    transform:translateX(-6px);

}


@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}





body.dark .cta-box{

    background:var(--card-bg);

    border:1px solid var(--border-color);

}

body.dark .cta-content h2{

    color:var(--heading-color) !important;

}

body.dark .cta-content p{

    color:var(--paragraph-color) !important;

}












/*==========================================
=            الفوتر
==========================================*/

.footer{

    background:var(--footer-color);

    margin-top:-40px;

    padding:90px 0 20px;

    border-top:none;

}

.footer-box{

    margin-bottom:30px;

}

.footer-logo{

    height:70px;
    margin-bottom:20px;

}

.footer-box h4{

    color:var(--primary-color);

    font-size:22px;

    font-weight:700;

    margin-bottom:20px;

}

.footer-box p{

    color:var(--gray-color);

    line-height:2;

}

.footer-box ul li{

    margin-bottom:12px;

}

.footer-box ul li a{

    color:var(--dark-gray-color);

    transition:.3s;

}

.footer-box ul li a:hover{

    color:var(--secondary-color);

    padding-right:8px;

}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.footer-social a{

    width:42px;

    height:42px;

    background:var(--primary-color);

    color:var(--white-color);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--secondary-color);

    transform:translateY(-5px);

}

.footer hr{

    margin:30px 0 20px;

    border-color:var(--border-color);

}

.footer-bottom{

    text-align:center;

    color:var(--light-gray-color);

    font-size:15px;

}


/*==========================================
=            من نحن
==========================================*/



.page-header{

    background:var(--primary-color);

    color:#fff;

    text-align:center;

    padding:80px 0;

}

.page-header h1{

    font-size:48px;

    font-weight:800;

}

.page-header p{

    margin-top:15px;

    font-size:18px;

    opacity:.9;

}

.about-page{

    padding:80px 0;

}

.about-page img{

    border-radius:20px;

}

.about-page h2{

    margin:20px 0;

    font-size:38px;

    font-weight:800;

}

.about-page p{

    line-height:2;

    margin-bottom:25px;

}

.about-list{

    margin:25px 0;

}

.about-list li{

    margin-bottom:15px;

    font-size:18px;

}

.about-list i{

    color:#28a745;

    margin-left:10px;

}


/* ==========================================
   Default Template
========================================== */

.default-header{

    text-align:center;

    padding:60px 20px 30px;

}

.default-header h1{

    color:var(--primary-color);

    font-size:42px;

    font-weight:800;

    margin-bottom:15px;

}

.default-header p{

    max-width:700px;

    margin:auto;

    color:#777;

    font-size:18px;

    line-height:2;

}

.default-banner{

    margin:35px 0;

}

.default-banner img{

    width:100%;

    border-radius:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

}

.default-content{

   background:var(--card-bg);

    padding:45px;

    border-radius:18px;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

    line-height:2.2;

}

/*==========================================
=       تنسيق محتوى الصفحات
==========================================*/

.page-content-body{

    font-size:18px;

    line-height:2.1;

    color:#555;

}

.page-content-body h1,
.page-content-body h2,
.page-content-body h3,
.page-content-body h4{

    color:var(--primary-color);

    font-weight:700;

    margin:35px 0 20px;

}

.page-content-body p{

    margin-bottom:18px;

}

.page-content-body ul,
.page-content-body ol{

    margin:20px 30px;

}

.page-content-body li{

    margin-bottom:10px;

}

.page-content-body img{

    max-width:100%;

    border-radius:15px;

    margin:25px auto;

    display:block;

}

.page-content-body table{

    width:100%;

    border-collapse:collapse;

    margin:30px 0;

}

.page-content-body table th{

    background:var(--primary-color);

    color:#fff;

    padding:12px;

}

.page-content-body table td{

    border:1px solid #ddd;

    padding:12px;

}

.page-content-body blockquote{

    border-right:5px solid var(--secondary-color);

    background:#f8f8f8;

    padding:20px;

    margin:25px 0;

    font-style:italic;

}
/*==========================================
=          Breadcrumb
==========================================*/

.page-breadcrumb{

    background:var(--section-color);
    border-bottom:1px solid var(--border-color);

    padding:14px 0;

   

}

.page-breadcrumb .container{

    display:flex;

    align-items:center;

    gap:10px;

    flex-wrap:wrap;

}

.page-breadcrumb a{

     color:var(--secondary-color);

    font-weight:600;

}

.page-breadcrumb span{

    color:var(--paragraph-color);

    opacity:.9;

    font-size:15px;

}

/*==========================================
=            Landing Hero
==========================================*/

.landing-hero{

    padding:90px 0;

    background:var(--section-color);

}

.landing-image-box{

    position:relative;

  background:var(--card-bg);

    border-radius:25px;

    padding:12px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    overflow:hidden;

    transition:.4s;

}

.landing-image-box:hover{

    transform:translateY(-8px);

}

.landing-image-box img{

    width:100%;

    border-radius:18px;

    transition:.5s;

}

.landing-image-box:hover img{

    transform:scale(1.04);

}

.landing-content h1{

    font-size:48px;

    font-weight:800;

   color:var(--heading-color);

    margin-bottom:20px;

    line-height:1.4;

}

.landing-content p{

    font-size:18px;

   color:var(--paragraph-color);

    line-height:2;

    margin-bottom:35px;

}

.landing-badge{

    display:inline-block;

    padding:8px 18px;

    background:rgba(111,66,193,.08);

   color:var(--secondary-color);

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;

}
/*==========================================
=            Landing CTA
==========================================*/

.landing-cta{

    background:var(--section-color);

    padding:80px 0;

    overflow:hidden;

}

.cta-person{

    max-height:280px;
    width:auto;

    animation:floatPerson 4s ease-in-out infinite;

    filter:drop-shadow(0 15px 30px rgba(0,0,0,.18));

}

@keyframes floatPerson{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

.cta-content h2{

    font-size:42px;

    font-weight:800;

    color:var(--primary-color);

    margin-bottom:20px;

}

.cta-content p{

    font-size:18px;

    color:#666;

    line-height:2;

    margin-bottom:30px;

}

.cta-content .btn{

    padding:14px 35px;

    border-radius:40px;

    font-size:18px;

    font-weight:700;

}


.default-content-box{

   background:var(--card-bg);

    border-radius:20px;

    padding:50px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.default-content-box img{

    max-width:100%;

    border-radius:12px;

}

.default-content-box h2,
.default-content-box h3{

    color:var(--primary-color);

    margin-bottom:20px;

}

.default-content-box p{

    line-height:2;

    color:#666;

}
.landing-content-section{

    margin-top:40px;

}

.default-content-box{

   background:var(--card-bg);
    border-radius:20px;
    padding:50px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:all .35s ease;

}

.default-content-box:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.page-breadcrumb{

  background:var(--card-bg);

    padding:18px 0;

    border-bottom:1px solid #eee;

}

.page-breadcrumb .container{

    display:flex;

    align-items:center;

    gap:10px;

    flex-wrap:wrap;

}

.page-breadcrumb a{

    color:#666;

    text-decoration:none;

    transition:.3s;

}

.page-breadcrumb a:hover{

    color:var(--primary-color);

}

.page-breadcrumb .separator{

    color:#bbb;

    font-size:13px;

}

.page-breadcrumb .breadcrumb-parent{

    color:var(--secondary-color);

    font-weight:700;

}

.page-breadcrumb .breadcrumb-current{

    color:#222;

    font-weight:800;

}


.about-section{

padding:80px 0;

}


.about-image-box{

border-radius:25px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.12);

}


.about-image-box img{

width:100%;

height:420px;

object-fit:cover;

}



.about-content h2{

font-size:38px;

font-weight:800;
color:var(--heading-color);
margin-bottom:20px;

}


.about-content p{

color:var(--paragraph-color);
    opacity:.85;

line-height:2;

font-size:17px;

}



.about-items{

padding:0;

margin-top:25px;

list-style:none;

}


.about-items li{

margin-bottom:15px;

font-size:17px;

}


.about-items i{

color:var(--secondary-color);

margin-left:10px;

}


.stats{

padding:70px 0;

 background:var(--section-color);

}



.stat-box{

background:var(--card-bg);

border-radius:25px;

padding:35px 20px;

box-shadow:0 10px 30px rgba(0,0,0,.06);

transition:.3s;

}



.stat-box:hover{

transform:translateY(-8px);

}



.stat-box i{

font-size:45px;

color:var(--secondary-color);

margin-bottom:20px;

}



.stat-box h2{

font-size:45px;

font-weight:900;

color:var(--primary-color);

margin:0;

}



.stat-box p{

margin-top:10px;

color:#777;

font-size:17px;

}


.page-content-section{

padding:60px 0;

}


.page-content-box{

background:var(--card-bg);

padding:35px;

border-radius:20px;

box-shadow:0 8px 25px rgba(0,0,0,.06);

}


.short-description{

font-size:20px;

color:#777;

line-height:2;

margin-bottom:30px;

}


.editor-content{

line-height:2;

font-size:17px;

}


.about-work{

padding:70px 0;

text-align:center;

}


.work-header i{

font-size:70px;

color:var(--secondary-color);

margin-bottom:20px;

animation:floatIcon 3s ease-in-out infinite;

}


.work-header h2{

font-size:38px;
color:var(--heading-color);
font-weight:800;

}


.work-header p{

color:var(--paragraph-color);
    opacity:.85;

font-size:18px;

max-width:700px;

margin:auto;

line-height:2;

}


@keyframes floatIcon{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

}









/*=========================
    Contact Cards
=========================*/



.contact-info{

    padding-top:35px;

}









body.dark .contact-card i{

    background:var(--primary-color);

    color:#fff;

}


.contact-card{

 background:var(--card-bg);

    padding:22px 18px;

    border-radius:14px;

    box-shadow:0 6px 20px rgba(0,0,0,.08);

    text-align:center;

    height:100%;

    transition:.3s;

    border:1px solid #eef2f7;

}

.contact-card:hover{

    transform:translateY(-5px);

   background:var(--card-bg);

  

}
/* الأيقونة */

.contact-card i{

    width:58px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 15px;

    border-radius:50%;

 background:#e9ecef;

    color:var(--primary-color);

    font-size:22px;

    transition:.35s;

}

/* الهوفر على الكارت يغير الأيقونة فقط */

.contact-card:hover i{

    background:var(--secondary);   /* أو #ff8c00 */

    color:#666;

    transform:scale(1.08);

}


.contact-card h4{

    font-size:20px;

    margin-bottom:10px;

}

.contact-card p{

    font-size:15px;

    line-height:1.8;

    margin:0;

    color:#666;

}

/*=========================
    Contact Form
=========================*/

.contact-form-section{

    padding:50px 0;

}

.contact-form-section .card{

  
    background:var(--card-bg);

    border:1px solid var(--border-color);

    border-radius:16px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    padding:20px;

}

.contact-form-section input,
.contact-form-section textarea{



 background:var(--input-bg);

    color:var(--text-color);

    border:1px solid var(--input-border);
    border-radius:10px;

    min-height:45px;

    font-size:15px;

}

.contact-form-section textarea{

    min-height:140px;

}



.contact-form-section input::placeholder,
.contact-form-section textarea::placeholder{

    color:#b5b5b5;

}

.contact-form-section label{

    color:var(--text-color);

}

/*=========================
    Contact Image
=========================*/

.contact-image{

    width:100%;

    max-width:360px;

    height:380px;

    object-fit:cover;

    border-radius:18px;

    border:5px solid #fff;

    box-shadow:0 12px 30px rgba(0,0,0,.15);

    transition:.3s;

}

.contact-image:hover{

    transform:scale(1.02);

}

/*=========================
    Google Map
=========================*/

.contact-map iframe{

    height:380px;

    border-radius:16px;

}

/*=========================
    Mobile
=========================*/

@media(max-width:768px){

.contact-info .row{

    gap:15px;

}

.contact-image{

    max-width:100%;

    height:260px;

}

.contact-map iframe{

    height:260px;

}

.contact-card{

    padding:18px 15px;

}

}


/*==========================================
=            Privacy Template
==========================================*/

/*==========================================
=            Privacy Header
==========================================*/

.privacy-header{

  


  background:var(--card-bg);

    color:var(--text-color);



    padding:45px 0;

    text-align:center;

   

    border-radius:0 0 30px 30px;

    margin-bottom:40px;
   border:1px solid rgba(0,0,0,.05);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.privacy-header .container{

    max-width:850px;

}

.privacy-header h1{

    font-size:38px;

    font-weight:800;

    margin-bottom:10px;
 color:var(--heading-color);

}

.privacy-header p{

    font-size:17px;

    line-height:1.9;

    margin:0 auto;

    max-width:650px;

  color:var(--paragraph-color);

}

.privacy-page{

    padding:70px 0;

}

.privacy-banner{

    margin-bottom:40px;

}

.privacy-banner img{

    width:100%;

    border-radius:18px;

}

.privacy-content{

 background:var(--card-bg);

    border-radius:20px;

    padding:40px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}



.privacy-content h2{

 color:var(--heading-color);
  

    margin-bottom:20px;

    font-weight:700;

}

.privacy-content p,
.privacy-content li{

    color:var(--paragraph-color);

}


.privacy-content p{

    line-height:2;

  

    margin-bottom:18px;

}

.privacy-content ul{

    padding-right:20px;

    list-style:disc;

}

.privacy-content li{

    margin-bottom:12px;

    line-height:2;

}
@media(max-width:768px){

    .privacy-header{

        padding:60px 20px;

    }

    .privacy-header h1{

        font-size:34px;

    }

    .privacy-header p{

        font-size:15px;

    }

    .privacy-content{

        padding:25px;

    }

}









.page-breadcrumb{

    background:var(--section-color);

    padding:15px 0;

}

.page-breadcrumb a{

    color:var(--primary-color);

    font-weight:600;

}

.page-breadcrumb a:hover{

    color:var(--secondary-color);

}

.page-breadcrumb .separator{

    margin:0 10px;

    color:#999;

}

.page-breadcrumb .breadcrumb-current{

    color:var(--secondary-color); /* الأورنج */

    font-weight:700;

}














.footer-bottom{

    text-align:center;

    padding:20px 0;

    border-top:1px solid rgba(255,255,255,.15);

}

.footer-bottom p{

    margin:0 0 10px;

    color:#ccc;

}

.footer-policy-links{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;

}

.footer-policy-links a{

    color:#a8a8a8;

    text-decoration:none;

    transition:.3s;

}

.footer-policy-links a:hover{

    color:var(--secondary-color);

}

.footer-policy-links span{

    color:#888;

}






/*==========================================
=            معرض الصور
==========================================*/


.gallery .swiper-button-next,
.gallery .swiper-button-prev,
.gallery .swiper-pagination-bullet{

    outline:none;

    -webkit-tap-highlight-color:transparent;

}









.gallery{

    padding:40px 0;

}




.gallerySwiper{

    padding-bottom:0 !important;

}

.gallery .swiper-pagination{

    position:relative !important;

    bottom:0 !important;

    margin-top:10px;

}



.gallery .swiper-button-next,
.gallery .swiper-button-prev{

    color:var(--primary-color);

    width:45px;

    height:45px;

   background:var(--card-bg);

    border-radius:50%;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

    top:50%;

    transform:translateY(-50%);

}

.gallery .swiper-button-next{

    left:0;

    right:auto;

}

.gallery .swiper-button-prev{

    right:0;

    left:auto;

}

.gallery .swiper-button-next::after,
.gallery .swiper-button-prev::after{

    font-size:18px;

    font-weight:bold;

}

.gallery-item{

    border-radius:12px;
 overflow:hidden;
   

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}



.gallery-item:hover img{

    transform:scale(1.05);

}

.gallery-item img{

    width:100%;

    height:230px;

    object-fit:cover;

    transition:.4s;

}






@media(max-width:992px){

.gallery-item img{

    height:200px;

}

}

@media(max-width:768px){

.gallery-item img{

    height:180px;

}

}







@media(max-width:768px){

.gallerySwiper{

    overflow:visible;

    padding-right:15px;

}

}










/*==========================================
=            صفحة الخدمات
==========================================*/

.services-intro{

    padding:60px 0 25px;

}

.services-intro .section-title{

    max-width:850px;

    margin:auto;

    text-align:center;

}

.services-intro h2{

    color:var(--primary-color);

    font-size:40px;

    font-weight:800;

    margin-bottom:18px;

}

.services-intro p{

    color:#666;

    font-size:17px;

    line-height:2;

}


/*==========================================
=            قسم الخدمات
==========================================*/

.services-page .features{

    padding:30px 0 50px;

}

.services-page .feature-box{

    transition:.35s;

}

.services-page .feature-box:hover{

    transform:translateY(-8px);

}


/*==========================================
=            معرض الصور
==========================================*/

.services-page .gallery{

    padding:20px 0 60px;

}


/*==========================================
=            محتوى الصفحة
==========================================*/

.services-page .editor-content{

   background:var(--card-bg);

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    margin-bottom:60px;

}

.services-page .editor-content h2{

    color:var(--primary-color);

    margin-bottom:18px;

}

.services-page .editor-content p{

    color:#555;

    line-height:2;

}


/*==========================================
=            Responsive
==========================================*/

@media(max-width:768px){

.services-intro{

    padding:40px 0 15px;

}

.services-intro h2{

    font-size:30px;

}

.services-intro p{

    font-size:15px;

}

.services-page .editor-content{

    padding:25px;

}





.services-page .features .col-md-6,
.services-page .features .col-lg-3{

    width:50%;

}


}




/*==========================================
=              404 Page
==========================================*/

.error-page{

    padding:90px 0;

    background:var(--background-color);

}

.error-box{

    max-width:520px;

    padding:40px 30px;

    margin:auto;

    text-align:center;

    background:var(--card-bg);

    border-radius:25px;

   

    border:1px solid var(--border-color);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.error-number{

    font-size:90px;

    font-weight:900;

    color:var(--primary-color);

    line-height:1;

    margin-bottom:10px;

}

.error-box i{

    font-size:70px;

    color:var(--secondary-color);

    margin-bottom:25px;

}

.error-box h1{

     font-size:30px;

    color:var(--heading-color);

    margin-bottom:20px;

    font-weight:800;

}

.error-box p{

    color:var(--paragraph-color);

    font-size:16px;

    line-height:2;

    margin-bottom:35px;

}

.error-buttons{

    display:flex;

    justify-content:center;

    gap:10px;

    margin-top:20px;

}

.error-buttons .btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:6px;

    padding:8px 16px;

    font-size:14px;

}
.error-buttons .btn i{

    font-size:14px;

    margin-left:6px;

}

@media(max-width:768px){

.error-number{

    font-size:80px;

}

.error-box{

    padding:40px 25px;

}

.error-box h1{

    font-size:28px;

}

}


/*==========================================
=            رجستريشن
==========================================*/


.register-section{

    padding:80px 0;

    background:var(--background-color);

}

.register-box{

    max-width:500px;

    margin:auto;

    background:var(--card-bg);

    padding:35px;

    border-radius:18px;

    border:1px solid var(--border-color);

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.register-box h2{

    text-align:center;

    margin-bottom:25px;

    color:var(--primary-color);

    font-weight:800;

}

.register-box label{

    margin-bottom:6px;

    font-weight:600;

    color:var(--text-color);

}

.register-box input{

    background:var(--section-color);

    color:var(--text-color);

    border:1px solid var(--border-color);

    border-radius:10px;

}

.register-box input:focus{

    background:var(--section-color);

    color:var(--text-color);

    border-color:var(--primary-color);

    box-shadow:none;

}














