*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
body{
    background: linear-gradient(135deg, #4A90E2 0%, #ffffff 50%, #D6E6F2 100%);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Roboto", sans-serif;
}
/* loader style 
========================================== */

.loaded-page {
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* لمنع التمرير أثناء الأنيميشن */
}

.loaded {
    background-color: #eee;
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.first, .second {
    position: absolute;
    transition: all 2s ease; /* لتحديد الانتقالات */
    width: 50%; /* تعديل العرض */
}
.first, .second {
    position: absolute;
    transition: all 2s ease; /* لتحديد الانتقالات */
    width: 50%; /* تعديل العرض */
}
.first {
    width: 150px;
    top: 50%; /* البدء من خارج الشاشة من الأعلى */
    left: 50%; /* محاذاة لليسار */
    transform: translate(-50%,-50%);
}
.final .first {
    opacity: 0; /* الاختفاء التدريجي */
}
.nav-menu select {
    direction: rtl;
    overflow: hidden;
    border-radius: 15px !important;
    padding: 3px !important;
    margin: 0 !important;
    outline: none !important;
    border: 1px solid #eee !important;
    background: #0000ff00;
    color: #fff;
}
#mobile-nav-toggle i {
    color: #797670;
    font-weight: 900;
    font-size: 35px;
}







/* تغيير خلفية الـ navbar */
.navbar {
    background-color: transparent; /* الخلفية تكون شفافة في البداية */
    transition: background-color 0.3s ease; /* تغيير اللون بشكل سلس */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* الخلفية الحمراء عند التمرير */
.navbar-scrolled {
    background-color: #072440 !important; /* تعيين اللون الأحمر عند التمرير */
}

/* لون الروابط في الـ navbar */
.navbar-nav .nav-link {
    color: #072440; /* لون الروابط أسود بشكل افتراضي */
    transition: color 0.3s ease; /* تغيير اللون بشكل سلس */
    font-weight: 500;
    font-size: 15px;
    margin: 0 5px;
}

/* لون الروابط عند التمرير */
.navbar-scrolled .navbar-nav .nav-link ,
.navbar-scrolled .form-control {
    color: #f3f9ff !important; /* لون الروابط أبيض عند التمرير */
}
.fa-bars-staggered{
    color: #ffffff;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: none;
    border: none;
    box-shadow: none;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #072440;
    background-color: #ffffff00;
    background-clip: padding-box;
    appearance: none;
    border-radius: 6px;
    transition: border-color 0.15s ease-in-out;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}
.form-control:read-only {
    background-color: #e9ecef00;
    opacity: 1;
}

@media only screen and (min-width: 991px){
    #navbarSupportedContent{
        display: flex;
        justify-content: right !important;
    }
    #navbarSupportedContent .navbar-nav{
        margin-left: 70%;
    }
}







/* style whatsapp */
.whats{
    width: 50px;
    position: fixed;
    margin-top: 91vh;
    right: 12px;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #38d572ee;
    outline: 5px solid #075e54;
    animation: whatsapp 0.7s linear infinite ;
    border-radius: 50%;
}
.whats .fa-whatsapp{
    font-size: 30px;
    color: #ffffff;
    height: 100%;
    width: 100%;
}
@keyframes whatsapp {
    0%{ 
        outline: 5px solid #075e54;
    } 
    50% { 
        outline: 10px solid #075e54c4;
    } 
    100% { 
        outline: 15px solid #075e5425;
    }
}















/* banner style */

.banner {
    width: 100%;
    padding: 70px 20px;
    /* background: linear-gradient(135deg, #4A90E2 0%, #ffffff 50%, #D6E6F2 100%); */
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.banner .container {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    z-index: -1;
    filter: blur(20px);
    animation: moveBefore 3s ease-in-out infinite;
}

.banner::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 20%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: -1;
    filter: blur(15px);
    animation: moveAfter 4s ease-in-out infinite;
}

/* Animation for ::before */
@keyframes moveBefore {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(80px, -80px);
    }
}

/* Animation for ::after */
@keyframes moveAfter {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-55px, 55px);
    }
}

.banner .container .carousel-inner img{
    height: 450px;
    width: 350px;
    margin: 0 0 0 auto;
    border-radius: 30px;
}
.banner .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -40px;
    left: auto;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #072440;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid #fff0;
    border-bottom: 10px solid #fff0;
    opacity: .5;
    transition: opacity 0.5s ease;
}
.banner .container .text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    font-family: "Roboto", sans-serif; /* خط بسيط وحديث */
    padding: 20px;
}

.banner .container .text h1 {
    font-size: 45px;
    color: #072440; /* لون العنوان الأساسي الأزرق الداكن */
    margin-bottom: 10px;
    margin-top: 30px;
    font-weight: bold;
}

.banner .container .text h3 {
    font-size: 27px;
    color:#002e37 !important; /* اللون الداكن للعناوين الثانوية */
    margin-bottom: 15px;
    font-weight: normal;
    font-weight: 600;
}

.banner .container .text h3 b {
    color:  #0036416b !important; /* إبراز النص الغامق بالأزرق الداكن */
}

.banner .container .text p {
    font-size: 1.1rem;
    line-height: 18px;
    color: #000000c4; /* لون النص العادي الرمادي المتناسق */
}
.banner .container .text a {
    cursor: pointer;
    position: relative;
    text-align: center;
    letter-spacing: 1px;
    display: inline-block;
    background-color: #072440; /* لون الزر */
    color: rgb(216, 243, 255);
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 1s ease;
    margin: 5px 0;
    animation: flash 0.7s infinite; /* إضافة الأنيميشن */
}

/* تعريف الوميض (Flash Animation) */
@keyframes flash {
    0%, 100% {
        padding-left:12px;
        padding-right: 12px;
    }
    50% {
        opacity: 0.9;
        padding-left:8px;
        padding-right: 8px;
        box-shadow: 3px 3px 7px #072440 , -3px -3px 7px #072440;
    }
}
.banner .container .text a:hover{
    background-color: rgb(216, 243, 255); 
    color: #062e53;
    border-radius: 7px;
}



@media screen and (max-width: 992px) {
    .banner .container .carousel-inner img{
        margin: 30px auto;
        border-radius: 30px;
    }
    .banner .carousel-indicators {
        position: absolute;
        right: 0;
        bottom: -40px;
        left: 0;
        z-index: 2;
        display: flex;
        justify-content: center;
        padding: 0;
        margin-right: 15%;
        margin-bottom: 1rem;
        margin-left: 15%;
        list-style: none;
    }
}
@media screen and (max-width: 768px) {
    .banner .container .text h1 {
        font-size: 30px;
    }
    
    .banner .container .text h3 {
        font-size: 23px;
    }

    .banner .container .text p {
        font-size: 15px;
    }
    .banner .container .text {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
        font-family: "Roboto", sans-serif;
        padding: 0px;
    }
}
@media screen and (max-width: 410px) {
    .banner .container .carousel-inner img{
        height: 350px;
        width: 250px;
        margin: 30px auto;
        border-radius: 30px;
    }
}







/* data section style */
.data{
    width: 100%;
}
.data .container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 30px;
}

.data .box {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}
.data .box i{
    font-size: 37px;
    margin: 0 20px 0 0;
    color: #004798c8;
}

.data h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111111;
}

.data p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .data .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .data .box {
        width: 100%;
        max-width: 340px;
    }
}







/* about-area style */
.about-area {
    width: 100%;
}

.about-area .about-imge {
    position: relative;
    display: flex; /* To align images side by side */
    justify-content: space-between; /* Space between images */
}

.about-area .about-imge img {
    width: 350px; /* Adjust width according to your need */
    height: 420px; /* Adjust height according to your need */
    object-fit: cover; /* Makes sure images fit without distortion */
    animation: slightMove 2.5s ease-in-out infinite; /* Animation applied */
    transition: transform 0.5s ease-in-out;
    margin: 0 -40px;
    padding: 0;
}
.about-area .about-imge .img2{
    height: 430px;
    z-index: 1;
}
/* Keyframes for slight movement */
@keyframes slightMove {
    0%, 100% {
        transform: translateY(0); /* Initial position */
    }
    50% {
        transform: translateY(-15px); /* Move up 10px */
    }
}
.about-area h6{
    color: #072440;
    font-size: 18px;
}
.about-area p{
    font-size: 15px;
}
.about-area a {
    color: #072440;
    font-size: 20px;
    position: relative;
    text-decoration: none; /* لإزالة الخط السفلي الافتراضي */
    padding: 10px; /* إضافة مساحة حول الرابط */
    display: inline-block;
    font-weight: 500;
}

/* الخط على اليمين وتحته */
.about-area a::before,
.about-area a::after {
    content: '';
    position: absolute;
    background-color: #111111; /* لون الخط */
    transition: all 0.7s ease; /* حركة سلسة */
}

/* الخط الموجود على اليمين */
.about-area a::before {
    height: 100%;
    width: 2px; /* سمك الخط */
    top: 0;
    right: 0;
}

/* الخط الموجود أسفل الرابط */
.about-area a::after {
    height: 2px;
    width: 100%;
    bottom: 0;
    left: 0;
}

/* تأثير hover - إضافة الخط في الأعلى وعلى اليسار */
.about-area a:hover::before {
    top: -2px; /* خط في الأعلى */
    height: 2px; /* سمك الخط الأفقي */
    width: 100%; /* طول الخط */
    right: 0;
    left: 0;
}

.about-area a:hover::after {
    width: 2px; /* خط في اليسار */
    height: 100%;
    bottom: 0;
    top: 0;
    left: 0;
}
@media(max-width: 574px){
    .about-area .about-imge img {
        width: 250px; /* Adjust width according to your need */
        height: 320px; /* Adjust height according to your need */
    }
    .col-10 {
        flex: 0 0 auto;
        width: 93%;
        padding: 0 20px;
    }
}






/* categories style */

.categories{
    padding: 70px 0;
	transition: all 10s ease;
}

.categories .text-container {
    text-align: center;
    position: relative;
}

.categories .text {
    font-size: 48px;
    font-weight: bold;
    color: #072440;
}

.categories .underline-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
}

.categories .underline {
    width: 40px;
    height: 4px;
    background-color: #b0e4e8; /* اللون الأصفر */
    margin: 0 2px 40px;
}
.categories .align-items-center .col{
    height: 100%;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px;
    padding: 0;
}
.categories .align-items-center .col h3{
    width: 100%;
    height: 100%;
    color: #072440;
    border-radius: 10px;
    padding: 90px 0;
    background: linear-gradient(135deg, #D6E6F2 0%, #ffffff 50%, #4a91e26d 100%);
    font-size: 600;
    letter-spacing: 1px;
	transition: all 10s ease;
}
.categories .align-items-center .col h3:hover{
    background: linear-gradient(135deg, #4a91e26d 0%, #ffffff 50%, #D6E6F2 100%);
}
@media screen and (max-width: 770px){
    .categories .text {
        font-size: 37px;
    }
    .categories .align-items-center .col h3{
        font-size: 27px;
    }
}




















.order-Price{
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #4A90E2 0%, #ffffff 50%, #D6E6F2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.order-Price .form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
}

.order-Price .form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.order-Price .form-group {
    margin-bottom: 15px;
}

.order-Price .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.order-Price .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.order-Price .form-group input:focus {
    outline: none;
    border-color: #072440;
}

.order-Price .submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #072440;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.order-Price .submit-btn:hover {
    background-color: #05507a;
}

.order-Price .error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}
.soIcon{
    position: absolute;
    height: 100%;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.soIcon .close{
    color: #05507a;
    font-size: 25px;
    padding: 10px;
    cursor: pointer;
}
.soIcon .contuct_icon{
    margin: auto;
}
.soIcon .contuct_icon ul{
    background-color: #05507a;
    padding: 0;
    margin: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.soIcon .contuct_icon ul li{
    padding: 8px;
    font-size: x-large;
    font-weight: bolder;
    cursor: pointer;
    color: #fff;
}

@media screen and (max-width: 450px){
    .order-Price .form-container {
        width: 85%;
    }
}


























footer .container{
	max-width: 1170px;
	margin:auto;
}
footer .row{
	display: flex;
	flex-wrap: wrap;
}
footer ul{
	list-style: none;
}
.footer{
    background-color: rgba(255, 255, 255, 0.392);
    padding: 70px 0 30px;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 22px;
    font-weight: 700 !important;
	color: #072440;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #b0e4e8;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 14px;
	text-transform: capitalize;
	color: #062e53;
	text-decoration: none;
	font-weight: 500;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #111111;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255, 255, 255, 0.782);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #302a2a;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #e7e7e7;
	background-color: #626262;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media (max-width: 650px){
    .logo-white{
        width: 37px;
    }
    .logo-white-name{
        width: 110px;
    }
}
@media(max-width: 574px){
    .footer-col{
        width: 50%;
        margin-bottom: 20px;
    }
    .footer-col .social-links a{
        display: inline-block;
        height: 25px;
        width: 25px;
        background-color: rgba(255, 255, 255, 0.782);
        margin:0 10px 10px 0;
        text-align: center;
        line-height: 27px;
        border-radius: 50%;
        color: #302a2a;
        transition: all 0.5s ease;
    }
}




















/* الخطوط العربية */
.arabic-font {
    font-family: "Noto Kufi Arabic", sans-serif;
     /* استبدل هذا بالخط الذي تفضله */
}

/* الخطوط الإنجليزية */
.english-font {
    font-family: "Roboto", sans-serif; /* استبدل هذا بالخط الذي تفضله */
}
