/*------------- home page --------------- */

/* hero section */

.hero-section {
    /* min-height: 99vh; */
    position       : relative;
    overflow       : hidden;
    display        : flex;
    align-items    : center;
    justify-content: center;
}

.hero-bg {
    width             : 100%;
    height            : 100%;
    position          : absolute;
    top               : 10%;
    inset-inline-start: 50%;
    transform         : translateX(-50%);
    z-index           : 0;
    display           : flex;
    justify-content   : center;
    align-items       : center;
}

.arabic-version .hero-bg {
    inset-inline-start: unset;
    inset-inline-end  : 50%;
}

.hero-bg img {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
}

@media (max-width: 1199.89px) {
    .hero-bg img {
        width: 90%;
    }
}

@media (max-width: 767.89px) {
    .hero-bg {
        top: 0;
    }

    .hero-bg img {}
}

.hero-content {
    position       : relative;
    z-index        : 2;
    color          : #fff;
    text-align     : center;
    padding        : 10% 20px;
    display        : flex;
    flex-direction : column;
    justify-content: space-between;
    align-items    : center;
    height         : 100vh;
}

.hero-content div {
    width         : 45%;
    display       : flex;
    flex-direction: column;
    gap           : 1.5rem;

}

.hero-content div button {
    margin: auto;
}

.hero-content p {
    width         : 65%;
    text-align    : center;
    margin        : auto;
    display       : flex;
    flex-direction: column;
    gap           : 1rem;
}

.hero-overlay {
    position      : absolute;
    top           : 0;
    left          : 0;
    width         : 100%;
    height        : 100%;
    background    : rgba(18, 18, 18, 0.689);
    z-index       : 1;
    pointer-events: none;
}

@media (max-width: 1199.89px) {
    .hero-content p {
        width: 75%;
    }
}

@media (max-width:991.89px) {

    .hero-content div {
        width: 60%;
    }
}

@media (max-width: 767.89px) {
    .hero-content h1 {
        font-size : 40px;
        margin-top: 3rem;
    }

}

@media (max-width:575.89px) {
    .hero-content div {
        width: 80%;
    }

    .hero-content {
        padding-bottom: 11rem;
    }
}

/* who-we-are section */

.who-we-are-section {
    margin-top: 3rem;
}

.who-we-are-section .container {
    display              : grid;
    grid-template-columns: 1fr 3fr;
}

.who-we-are-section .container div {
    display       : flex;
    flex-direction: column;
    align-items   : flex-start;
}

.who-we-are-section .container div p,
.section-topic-left div p {
    opacity: 0.6 !important;
    color  : #FEFEFE;
}

@media (max-width: 768px) {
    .who-we-are-section .container {
        grid-template-columns: 1fr;
        text-align           : center;
    }

    .who-we-are-section .container div {
        align-items: center;
    }

    .who-we-are-section {
        margin-top: 1rem;
    }
}

/* services section */

.services-section {
    padding-block: 6rem;
}

.services-section .services-boxes {
    margin-top           : 3rem;
    display              : grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap                  : 1rem;
}


.services-section .service-box.gold {
    background     : linear-gradient(90deg, #F0D097 0%, #D9B676 100%);
    border-radius  : 16px;
    padding        : 32px;
    justify-content: space-between;
    color          : black;
}

.services-section .service-box.gold span {
    opacity: 0.6;
}

.services-section .service-box.gold .sub-btn * {
    margin : 0;
    color  : black;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .services-section .services-boxes {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .services-section .services-boxes {
        grid-template-columns: 1fr 1fr;
    }

}


/* proudcts section */

.products-section {
    padding-block: 6rem;
}

.products-boxes {
    margin-top           : 3rem;
    gap                  : 2rem;
    display              : grid;
    grid-template-columns: 1fr 1fr;
}


@media (max-width: 767.98px) {
    .products-section .products-boxes {
        grid-template-columns: 1fr;
    }
}


/* partners section  */

.partners-section {
    padding-block: 6rem;
}

.partners-section .partners-logos {
    display        : flex;
    justify-content: center;
    align-items    : center;
    gap            : 4rem;
    flex-wrap      : wrap;
}

/* experties section */


.custom-panel.nav-pills {
    margin-top : 2rem;
    align-items: start;
    gap        : 0.5rem;
    width      : max-content;
}

.custom-panel .nav-link {
    color            : white;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.1);
    opacity          : 0.6;
}

.custom-panel .nav-item:last-child .nav-link {
    border-inline-end: none;
}

.custom-panel.nav-pills .nav-link.active {
    opacity   : 1;
    background: transparent;
}

.expertise-gallery {
    display              : grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap                  : 1.5rem;
}

.expertise-gallery img {
    width        : 100%;
    height       : 100%;
    object-fit   : cover;
    border-radius: 16px;
}

@media (max-width: 767.89px) {
    .expertise-gallery img {
        height: 300px;
    }
}

.expertise-item {
    position: relative;
}

.expertise-item::after {
    position  : absolute;
    top       : 0;
    left      : 0;
    width     : 100%;
    height    : 100%;
    background: linear-gradient(212.59deg, rgba(0, 0, 0, 0.1) -0.01%, #000000 90.04%);
}

.pagination-btns {
    width          : 100%;
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    margin-block   : 2rem;
}

@media (max-width: 767.89px) {
    .expertise-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576.89px) {
    .expertise-gallery {
        grid-template-columns: 1fr;
    }
}



/* border ticket  */

#Home .services-boxes{
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 0;
  gap: 0;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 5rem;
  overflow: hidden;
}
/* #Home .services-boxes:after{
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  inset-inline-start: 50%;
  transform: translateX(-50%);
} */
#Home .services-boxes .service-box{
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem !important;
  border-bottom:1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width:575.89px) {
  #Home .services-boxes .service-box{
    padding: 1rem !important;
  }
}