*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    

}
a
{
    text-decoration: none;
    
}

body {
    font-family: 'Cairo', sans-serif;
}

.txt-color
{
    color: rgb(242, 208, 107);
}

.text-dim-grey
{
    color: #555555;
}

.title-span
{
    color: rgb(242, 208, 107);
    font-weight: 600;
}

.navbar .nav-link
{
    transition: all 0.5s;
}
.nav-link
{
    color: white; 
}
.navbar .nav-link:hover
{
    color: rgb(242, 208, 107);
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: rgb(242, 208, 107);
    font-weight: 600;
}

.bg-gold
{
    background-color: rgb(242, 208, 107);
}

.nav-shadow
{
    box-shadow: 0px 30px 50px rgba(209, 0, 126, 0.05);
}
.nav-links ul li a
{
    font-size: 14px;
}

.navbar-toggler
{
    border-color: rgb(242, 208, 107);  
}

.navbar-toggler:hover {
    background-color: rgb(242, 208, 107);
    border-color: black;
}

.navbar-toggler-icon {
    background-color: rgb(242, 208, 107);  /* أسود */
}



header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/bggggg.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center;
}

header .main-title
{
    font-size: 60px;
    font-weight: bold;
}

header .second-title
{
    font-size: 40px;
    font-weight: 200;
}

header .span-title
{
    font-weight: 400;

}


.home-links ul li a i
{
    display: flex;
    color: black;
    height: 35px;
    width: 35px;

    transition: all 0.5s;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: rgb(242, 208, 107);
}

.home-links ul li a i:hover
{
    
    color: rgb(242, 208, 107);
    background-color: white;

}


.about-title
{
    text-align: center;
    margin-bottom: 80px;
    font-size: 40px;
    color: #343434;
    font-weight: bold;
}
.about-title h3
{
    font-weight: 900;
    font-size: 40px;
    position: relative;
    display: inline-block;
    z-index: 4;
}
.about-title h3::after
{
    content: "";
    width: 100%;
    height: 30px;
    background-image: url(../images/dots.png);
    background-repeat: repeat;
    position: absolute;
    bottom: -10px;
    left: 0;
    z-index: -1;
}




.text-about
{
    font-size: larger;
    line-height: 1.8;
}


.bg-gray 
{
    background: #f7f7f7;
}

.services-title
{
    text-align: center;
    margin-bottom: 80px;
    font-size: 40px;
    color: #343434;
    font-weight: bold;
}
.services-title h3
{
    font-weight: 900;
    font-size: 40px;
    position: relative;
    display: inline-block;
    z-index: 4;
}
.services-title h3::after
{
    content: "";
    width: 100%;
    height: 30px;
    background-image: url(../images/dots.png);
    background-repeat: repeat;
    position: absolute;
    bottom: -10px;
    left: 0;
    z-index: -1;
}

.services .item
{
    padding: 50px 20px;
    background: #fff;
    box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-radius: 5px;

}

.services .item .icon
{
    font-size: 30px;
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    background: #f4f4f4;
    border-radius: 50%;
    transition: all 0.5s;
}

.services .item h6
{
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 18px;
}

.services .item p
{
    word-spacing: 2px;
    font-size: 14px;
}

.pb-70 
{
    padding-bottom: 70px;
}

.section-padding 
{
    padding: 100px 0;
}

.services .item:hover .icon
{
    background-color: #1c1c1c;
    color: white;
}

.bg-offwhite
{
    background-color: whitesmoke;
}


#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa; /* لون الخلفية */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* تأكد أنه فوق كل العناصر */
}

  /* Loader Animation */
.spinner {
    width: 60px;
    height: 60px;
    border: 8px solid #ddd; /* اللون الخارجي */
    border-top: 8px solid #FFD700; /* اللون الذهبي */
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

  /* Spin Animation */
@keyframes spin {
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(360deg);
    }
}