/* Global Rules */

@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Blaka&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
    --dark-color: #57554d;
    --alt-dark: #3309f09d;
    --light-color: #fff;
    --alt-light-color: #d1d4d8;
    --main-color: #17d1a3;
    --main-transition: all 0.5s;
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-color);
    line-height: 1.5;
    direction: rtl !important;
    color: var(--light-color);
    font-family: "Almarai", "Poppins", sans-serif !important;
    font-size: 15px;
    margin-top: 70px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button,
input {
    outline: none;
}

.call-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
}

/* Start container */

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .container {
        width: 90%;
    }
}

@media (min-width: 992px) {
    .container {
        width: 80%;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 90%;
    }
}

/* End Container */

/* ------------------ Website Style ------------------ */

/* Start Navbar */

.navbar {
    background-color: var(--alt-dark);
    min-height: 70px;
    display: flex;
    align-items: center;
    box-shadow: 0 -1px 2px #000000;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .navbar-brand {
    color: var(--light-color);
    font-size: 16px;
}

.navbar .navbar-brand img {
    width: 100px;
    margin-left: 10px;
    display: block;
}

.navbar .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar .navbar-nav a {
    color: var(--light-color);
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: var(--main-transition);
}

.navbar .navbar-nav a:hover {
    color: var(--main-color);
    background-color: var(--dark-color);
}

.navbar .navbar-nav a span {
    margin-left: 5px;
}

@media (max-width: 992px) {
    .navbar .container {
        justify-content: center;
    }
    .navbar .navbar-nav {
        display: none;
    }
    .navbar .call-btn {
        font-size: 14px;
    }
}

/* End Navbar */

/* Start Showcase */

.showcase {
    margin-top: 100px;
}

.showcase .grid-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-gap: 30px;
}

.showcase h1 {
    font-size: 50px;
    margin-bottom: 10px;
    text-align: center;
    color: var(--main-color);
}

.showcase p {
    font-size: 20px;
    text-align: justify;
    color: var(--alt-light-color);
}

.showcase .box {
    background-color: var(--alt-dark);
    border-radius: 10px;
}

.showcase img {
    display: block;
    width: 100%;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.showcase h2 {
    padding: 10px;
    color: var(--main-color);
    padding-top: 20px;
}

.showcase p {
    padding: 0 15px 10px 15px;
}

.showcase ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.showcase li {
    font-size: 20px;
    padding: 10px;
    margin: 5px;
    background-color: var(--dark-color);
    text-align: center;
    width: 45%;
    border-radius: 10px;
}

.showcase .hotline {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: var(--main-color);
    display: block !important;
}

.showcase .center {
    margin-top: 50px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

@media (max-width: 992px) {
    .showcase .grid-wrapper {
        grid-template-columns: 1fr;
    }
    .showcase h1 {
        font-size: 40px;
    }
}

/* End Showcase */

/* Start Footer */

footer {
    background-color: var(--dark-color);
    padding: 20px;
    text-align: center;
    color: #fff;
}

/* End Footer */

/* Start Sticky Button */

.sticky-button {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: var(--alt-dark);
    border-radius: 100%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-button img {
    width: 60px;
    z-index: 20;
}

.sticky-button::before {
    content: "للأتصال بالخط الساخن";
    position: absolute;
    top: 20px;
    right: 45px;
    width: 120px;
    background-color: var(--alt-dark);
    border-radius: 5px;
    color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    padding: 0 10px;
    padding-right: 20px;
}

/* End Sticky Button */

/* Start About */

.about {
    margin-top: 100px;
}

.about h2 {
    font-size: 35px;
    color: var(--main-color);
}

.about p {
    font-size: 18px;
    text-align: justify;
    padding-top: 10px;
}

.about .section-2 {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
    align-items: center;
}

.about .section-2 img {
    width: 100%;
    display: block;
    border-radius: 5px;
}

.about .section-2 h3 {
    color: var(--main-color);
    font-size: 33px;
}

.about .section-2 p {
    font-size: 25px;
    padding-top: 10px;
}

@media (max-width: 992px) {
    .about .section-2 {
        grid-template-columns: 1fr;
    }
    .about .section-2 h3 {
        text-align: center;
        font-size: 28px;
    }
    .about .section-2 p {
        font-size: 20px;
    }
}

/* End About */

/* Start Services */

.services {
    padding-top: 100px;
    margin-top: 50px;
}

.services .material-icons-outlined {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    font-size: 60px;
}

.services h2 {
    text-align: center;
    font-size: 40px;
}

.services .services-description {
    font-size: 20px;
    text-align: center;
    width: 65%;
    margin: auto;
    color: var(--alt-light-color);
}

.services .grid-wrapper {
    padding-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}

.services .box {
    background-color: var(--alt-dark);
    padding: 20px 15px;
    border-radius: 5px;
    position: relative;
    margin-top: 30px;
}

.services .box .box-img {
    min-height: 50px;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    /* border: solid 2px #0984e3; */
    border-radius: 5px;
    position: absolute;
    top: -30px;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
}

.services .box .box-img img {
    width: 150px;
}

.services .box .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 50px;
}

.services .box h3 {
    font-size: 25px;
    text-align: center;
    color: var(--main-color);
    margin-bottom: 20px;
}

.services .box p {
    font-size: 18px;
    text-align: justify;
    color: var(--alt-light-color);
}

.services h4 {
    padding: 30px 0 10px 0;
    color: var(--main-color);
    font-size: 20px;
}

.services h5 {
    padding: 30px 0 10px 0;
    color: var(--main-color);
    font-size: 18px;
}

@media (max-width: 992px) {
    .services .grid-wrapper {
        grid-template-columns: 1fr;
    }
    .services .services-description {
        width: 100%;
        text-align: justify;
    }
}

/* End Services */

/* Start Reviews */

.reviews {
    padding-top: 100px;
}

.reviews .material-icons-outlined {
    font-size: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
}

.reviews h2 {
    font-size: 50px;
    font-weight: normal;
    text-align: center;
}

.reviews .grid-wrapper {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 25px;
}

.reviews .col {
    background-color: var(--alt-dark);
    padding: 10px;
    padding-top: 30px;
    border-radius: 5px;
    transition: var(--main-transition);
}

.reviews .col:hover {
    background-color: #17d1a32d;
}

.reviews .col:hover h4 {
    color: #fff;
}

.reviews .col:hover p {
    color: #fff;
}

.reviews .user-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews .user-icon img {
    width: 80px;
    position: absolute;
    top: -80px;
    transition: var(--main-transition);
}

.reviews .col:hover .user-icon img {
    top: -90px;
}

.reviews .rate-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews .rate-icon img {
    width: 150px;
}

.reviews h4 {
    text-align: center;
    padding-top: 20px;
}

.reviews p {
    font-size: 16px;
    text-align: center;
    padding: 10px;
}

@media (max-width: 992px) {
    .reviews h2 {
        font-size: 40px;
    }
    .reviews .grid-wrapper {
        margin-top: 50px;
        grid-template-columns: 1fr 1fr;
    }
    .reviews .col {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .reviews h2 {
        font-size: 40px;
    }
    .reviews .grid-wrapper {
        margin-top: 50px;
        grid-template-columns: 1fr;
    }
    .reviews .col {
        margin-top: 50px;
    }
}

/* End Reviews */

/* Start Contact */

.contact {
    padding-top: 100px;
}

.contact .contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact .contact-icon .material-icons-outlined {
    font-size: 100px;
    color: var(--main-color);
}

.contact h2 {
    font-size: 50px;
    text-align: center;
}

.contact p {
    text-align: center;
    font-size: 18px;
    padding-top: 10px;
    width: 50%;
    margin: auto;
    color: var(--alt-light-color);
}

.contact .hotline {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.contact .hotline a {
    font-size: 40px;
    font-weight: bolder;
    color: var(--light-color);
}

.contact .hotline img {
    width: 40px;
}

.contact .numbers-wrapper {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}

.contact .numbers-wrapper a {
    display: block;
    background-color: #17d1a32d;
    border-radius: 5px;
    color: var(--light-color);
    font-size: 20px;
    padding: 10px 15px;
    text-align: center;
    transition: var(--main-transition);
}

.contact .numbers-wrapper a:hover {
    background-color: var(--main-color);
    color: var(--dark-color);
}

.contact-showcase {
    margin-top: 50px;
}

.contact-showcase .grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
    align-items: center;
}

.contact-showcase .col-content {
    padding: 0 60px 0 0;
}

.contact-showcase img {
    width: 100%;
    display: flex;
}

.contact-showcase h3 {
    font-size: 30px;
    text-align: right;
    color: var(--main-color);
}

.contact-showcase p {
    font-size: 18px;
    text-align: justify;
    width: 100%;
    padding: 10px;
}

@media (max-width: 992px) {
    .contact h2 {
        font-size: 40px;
    }
    .contact p {
        width: 90%;
    }
    .contact-showcase .grid-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-showcase .col-content {
        padding: 10px 30px;
    }
    .contact-showcase h3 {
        font-size: 24px;
        text-align: justify;
        padding-bottom: 20px;
    }
    .contact-showcase .col-content p {
        padding: 0 !important;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact .numbers-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

/* End Contact */

/* Start Footer */

footer {
    background-color: var(--alt-dark);
    padding: 20px;
    text-align: center;
    color: #fff;
}

/* End Footer */