@import url('https://fonts.googleapis.com/earlyaccess/droidarabickufi.css');


html {
    direction: rtl;
}

a {
    text-decoration: none !important;
}

ul {
    padding: 0 !important;
}

ul li {
    list-style: none !important;
}

body {
    margin: 0;
    font-family: 'Droid Arabic Kufi', sans-serif;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: white;
}

/* .container{
    width: 1200px;
    margin: 0 auto;
 } */

.swiper {
    height: 100vh;
    z-index: 1;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.navbar {
    z-index: 5;
    position: absolute;
    top: 0;
    width: 100%;
}

@media(max-width: 768px) {
    .navbar {
      background-color: #564E42;
    }
}

.hero-content {
    position: absolute;
    z-index: 4;
    text-align: center;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

@media(max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
}

.hero p {
    font-size: 1.2rem;
}

.hero .btn {
    margin: 10px;
    padding: 10px 25px;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    background-color: #25D366;
    color: white;
    border-radius: 30px;
    padding: 10px 10px;
    font-size: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    animation: pulse-whatsapp 2s infinite;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-animation: pulse-whatsapp 2s infinite;
}


.navbar-brand img {
    height: 75px;
}

@media(max-width: 768px) {
    .navbar-brand img {
        height: 50px;
    }
}

.btn-main {
    padding: 10px 25px;
    background-color: #DEBF5E;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.btn-main:hover {
    background-color: #c4a942;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}


.btn-contcet {
    padding: 10px 25px;
    background-color: #57544B;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.btn-contcet:hover {
    background-color: #3f3c34;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.logo-animated {
    animation: spin-in 1s ease-in-out;
}

@keyframes spin-in {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-360deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.logo-animated:hover {
    transform: rotate(10deg) scale(1.05);
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 767px) {
    .logo-animated {
        animation: none !important;
    }
}

/* ABOUT */

.about {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.about-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.about-img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 16px;
    /*box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  */
    transition: transform 0.3s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out;
    -ms-transition: transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
}

.about-btn {
    background-color: #DEBF5E;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.about-btn:hover {
    background-color: #555;
}

/* servis */


.service-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.custom-service-card {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.custom-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.custom-service-card .card-body {
    padding: 15px;
    background-color: #f8f9fa;
    text-align: right;
}

.custom-service-card .badge {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
}

.service-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.custom-service-card {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.custom-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.custom-service-card .card-body {
    padding: 15px;
    background-color: #f8f9fa;
    text-align: right;
}

.custom-service-card .badge {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
}


.bac {
    background-color: #fff !important;
}

/* footer */

footer {
    padding-top: 1rem;
    background-color: #000000da;
}

footer .footerInner {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr) 2fr;
    gap: 40px;
    color: #fff;
}

footer .footerInner .main .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffff52;
}

footer .footerInner .main .logo span.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background-color: #DEBF5E;
    aspect-ratio: 1/1;
    width: 35px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-inline-end: 3px;
}

footer .footerInner .main .logo span:last-of-type {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3px;
    letter-spacing: 1px;
}

footer .footerInner .main p {
    padding: 20px 0;
    border-bottom: 1px solid #ffffff52;
    margin-bottom: 20px;
}

footer .footerInner .main .social a {
    background-color: transparent;
    border: 1px solid #fff;
    aspect-ratio: 1/1;
    width: 40px;
    border-radius: 5px;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-inline-end: 10px;
    transition: 0.3s all ease-in-out;
    text-transform: capitalize;
}

.logo img {
    width: 100%;
}

footer .footerInner .main .social a:hover {
    background-color: #fff;
    border: 1px solid var(--theme-color);
    color: #333;
}

footer .footerInner h4 {
    font-size: 1.5rem;
    font-weight: 100;
    text-transform: uppercase;
}

footer .footerInner .line {
    height: 3px;
    width: 30%;
    border-radius: 5px;
    background-color: var(--theme-color);
    margin-bottom: 10px;
}

footer .footerInner .links ul>li>a {
    display: inline-flex;
    padding: 10px 10px;
    padding-inline-start: 0;
    color: #ffffff;
    transition: 0.3s all ease-in-out;
}

footer .footerInner .links ul>li>a:hover {
    color: #fff;
}

footer .footerInner .links ul>li>a::before {
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.5rem;
    vertical-align: middle;
    margin-inline-end: 10px;
    transition: 0.3s all ease-in-out;
}

footer .footerInner .links ul>li>a:hover::before {
    margin-inline-end: 15px;
    font-size: 0.6rem;
}

footer .footerInner .contact ul>li>a {
    padding: 10px 0;
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 20px;
    color: #ffffff;
    transition: 0.3s all ease-in-out;
}

footer .footerInner .contact ul>li>a:hover {
    color: #fff;
}

footer .footerInner .contact ul>li>a i {
    aspect-ratio: 1/1;
    background-color: var(--theme-color);
    color: #ffffff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

footer .footerInner .contact ul>li>a>span {
    font-size: 1.1rem;
    font-weight: 200;
}

footer .footerInner .contact ul>li>a>span span {
    color: #fff;
    font-weight: 400;
}

footer .lowerFooter {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-block: 20px;
    margin-top: 0rem;
    /* background-color: #00000099; */
    text-transform: capitalize;
}

footer .lowerFooter a {
    color: #fff;
}

footer .lowerFooter ul {
    display: inline-flex;
}

footer .lowerFooter ul a {
    padding: 2px 10px;
}

@media (width <=800px) {
    footer .footerInner {
        grid-template-columns: 2fr 1fr;
    }

    footer .footerInner .main {
        order: -1;
    }

    footer .footerInner .contact {
        order: -1;
    }

    footer .footerInner .important {
        order: -1;
    }

    footer .lowerFooter,
    footer .lowerFooter ul {
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    footer .lowerFooter ul {
        margin-top: 10px;
    }
}

@media (width <=500px) {
    footer .footerInner {
        grid-template-columns: 1fr;
    }

    footer .footerInner .contact {
        order: 3;
    }
}




footer .footerInner .links ul>li>a::before {
    position: relative;
    top: 5px;
    transform: rotateY(180deg);
}




.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-img {
    height: 220px;
    object-fit: cover;
}

.custom-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: none;
}

.whatsapp-btn, .phone-btn {
    position: fixed;
    bottom: 20px;
    z-index: 999;
    background-color: #25D366;
    color: white;
    border-radius: 30px;
    padding: 12px 14px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.phone-btn {
    left: 20px;
    background-color: #007bff;
    bottom: 15%;
    animation: pulse-whatsapp 2s infinite;

}

@media(max-width: 768px) {
 .phone-btn {
    left: 20px;
    background-color: #007bff;
    bottom: 10%;
    animation: pulse-whatsapp 2s infinite;

}
}

.whatsapp-btn {
    left: 20px;
}


.text-right-input::placeholder {
    text-align: right;
    direction: rtl;
    color: #cecece;
    font-size: 0.9rem;
}

.text-right-input {
    text-align: right;
    direction: rtl;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.main-tow{
    margin:40px 0;

}

.feature-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
    border-right: 3px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h5 {
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #222;
}

.feature-card p {
    color: #444;
    font-size: 15px;
    line-height: 1.8;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 10px;
    display: inline-block;
}

.feature-green .feature-icon {
    color: #a6ff00;
}

.feature-cyan .feature-icon {
    color: #00e0d9;
}

.feature-red .feature-icon {
    color: #ff4d4d;
}

.feature-blue .feature-icon {
    color: #00bfff;
}

.feature-orange .feature-icon {
    color: #ffa500;
}

.feature-purple .feature-icon {
    color: #b76df1;
}

ul{
    gap: 30px;
}