@import url('https://fonts.cdnfonts.com/css/gilroy-bold');
@import url('https://fonts.cdnfonts.com/css/poppins');

:root {
    --primary: #731FCC;
    --secondary: #731FCC;
    --light: #ffffff;
    --dark: #000000;
    font-family: 'Gilroy-Bold', sans-serif !important;
}



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    background-color: #731FCC !important;
    color: #fff;
    border: #000;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.bg-primary{
    background-color: #731FCC !important;
}
.bg-secondary{
    background-color: #731FCC !important;
}

/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 75px;
    font-family: 'Gilroy-Medium', sans-serif !important;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0;
    color: rgba(255, 255, 255, .7);
    outline: none;
}

.navbar-brand{
    width: 40% !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: 'Gilroy-Medium', sans-serif !important;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-signin{
    background-color: white !important;
    color: #731FCC !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    border-radius: 8px !important;
}

.logo-banner{
    width: 25% !important;
    margin-top: 3px !important;
}

@media (max-width: 991px) {
    .navbar .navbar-nav {
        padding: 0 15px 15px !important;
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
    .logo-banner{
        width: 60% !important;
        margin-top: 10px !important;
    }
    .fixed-height-container{
        height: 200px !important; 
        overflow: hidden !important;
    }

}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
        border-radius: 5px;
    }
    .logo-banner{
        width: 28% !important;
        margin-top: 5px !important;
    }
    
}

.nav-item a{
    font-family: 'Gilroy-Medium', sans-serif !important;
}


/*** Hero Header ***/
.hero-header {
    margin-top: -75px;
    background-color: #731FCC !important;
    background-size: cover;
    
}
.banner-heading{
    font-family: 'Gilroy-Bold', sans-serif !important;
    
}

.banner-texting{
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    padding-right: 135px !important;
    
}


.banner-sign{
    padding: 8px !important;
    width: 20% !important;
    border-radius: 6px !important;
    font-size: 20px !important;
    border-color: #000000e0 !important;
    color: #731FCC !important;
    font-weight: 500 !important;
    background-color: #ffffff !important;
    font-family: 'Gilroy-Medium', sans-serif !important;
    
}
.banner-eno{
    font-weight: 300 !important;
    font-family: 'Gilroy-Regular', sans-serif !important;
    border-radius: 6px !important;
}
.banner-sign:hover{
    background-color: white !important;
    color: #000 !important;
    transition: .6s;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}



/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}

.video-container1 {
    background-color: white !important;
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 80%;
    height: 15%;
    border-radius: 6px !important;
    
    
  }

  .video-container1 video {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    
    background-color: #000 !important;
    
}
.service-background1{
    background-color: #ffffff !important;
    
    
    
}






/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.abt-eno{
    font-weight: 300 !important;
    border-color: rgb(163, 163, 163) !important;
    font-family: 'Gilroy-Regular', sans-serif !important;
    border-radius: 6px !important;
}

.abt-head{
    font-weight: 600 !important;
    color: #000 !important;
    padding-right: 55px !important;
    font-family: 'Gilroy-Bold', sans-serif !important;
}
.abt-text{
    font-weight: 400 !important;
    color: #1a1a1a !important;
    padding-right: 135px !important;
    font-size: 18px !important;
    font-family: 'Poppins', sans-serif !important;
}
.abt-ftr{
    color: #000 !important;
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif !important;
}
.abt-ftr i{
    color: #731FCC !important;
    
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    background-size: contain;
}
.btn-abt{
    background-color: #731FCC !important;
    color: white !important;
    font-weight: 500 !important;
    font-family: 'Gilroy-Medium', sans-serif !important;
}





/*** Service ***/

.gradient-container{
    background: linear-gradient(to left, #ffffff, #731fcc59) !important;
}

.service-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    transition: .5s;
}

.srvc-eno{
    font-weight: 300 !important;
    border-color: rgb(241, 241, 241) !important;
    color: #731FCC !important;
    font-family: 'Gilroy-Regular', sans-serif !important;
    border-radius: 6px !important;
}

.srvc-head{
    font-weight: 600 !important;
    color: #000 !important;
    font-family: 'Gilroy-Bold', sans-serif !important;
}

.srvc-text{
    font-weight: 400 !important;
    color: #1a1a1a !important;
    font-size: 18px !important;
    font-family: 'Poppins', sans-serif !important;
}
.srvc-ftr-head{
    color: #000 !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
}
.srvc-ftr-text{
    color: #5a5a5a !important;
    font-weight: 400 !important;
    font-family: 'Poppins', sans-serif !important;
}

.service-item:hover {
    background: var(--primary);
   
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    color: var(--primary);
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}

.video-container {
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
  }

  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transform: scale(1);
}
.service-background{
    background-color: #ffffff !important;
   
}

.eye-ftr i{
    color: #731FCC !important;
}

.eno-height{
    height: 60vh !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
  flex-direction: column !important;
}
/* Responsive styles using media queries */
@media (max-width: 992px) {
    .video-container {
        position: static;
    }
    .eno-height{
        height: fit-content !important;
    }

    .video-container video {
        height: 100% !important;
        width: 100% !important;
        padding: 0px !important;
        transform: scale(1);
    }
    .service-background{
        background-color: #ffffff !important;
        padding: 0px !important;
        border-radius: 0px !important;
    }

    .video-container1 {
        position: static;
        border-radius: 6px !important;
        height: 100% !important;
        width: 100% !important;
        
      }
    
      .video-container1 video {
        height: 100% !important;
        width: 100% !important;
        padding: 0px !important;
        transform: scale(.9);
    }
    .service-background1{
        background-color: #ffffff !important;
        padding: 0px !important;
        border-radius: 0px !important;
        
    }
    .video-container1-mob{
        border-radius: 6px !important;
        margin-top: -45px !important;
    }
    
}


/*** Feature ***/
.feature {
    
    background-color: #731fcc !important;
}

.ftr-eno{
    font-weight: 300 !important;
    border-color: rgb(241, 241, 241) !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    font-family: 'Gilroy-Regular', sans-serif !important;
}
.ftr-heading{
    color: #ffffff !important;
    font-weight: 600 !important;
    padding-right: 85px !important;
    font-family: 'Gilroy-Bold', sans-serif !important;
}
.ftr-texting{
    color: #e0e0e0 !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    font-family: 'Poppins', sans-serif !important;
}
.ftr-choose{
    color: #e0e0e0 !important;
    font-weight: 400 !important;
    font-family: 'Poppins', sans-serif !important;
}

.fact-choose{
    font-family: 'Poppins', sans-serif !important;
}

/*** Newsletter ***/
.newsletter {
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Case Study ***/
.case-item img {
    transition: .5s;
}
  
.case-item:hover img {
    transform: scale(1.2);
}
  
.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: var(--primary);
    background: #FFFFFF;
    border-color: #FFFFFF;
}

/**NewsLetter**/

.bg-newsltr{
    background-color: #ffffff !important;
}
.img-newsletter{
    margin: 0% !important;
    padding: 0% !important;
}
.newsletter-eno{
    font-weight: 600 !important;
    border-color: rgb(0, 0, 0) !important;
    color: #000000 !important;
}
.newsletter-heading{
    color: #000000 !important;
    font-weight: 500 !important;
}
.newsletter-texting{
    color: #585858 !important;
    font-weight: 400 !important;
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}
.faq-cntnr{
   width: 50%;
      display: flex !important;
      align-items: center !important;
}



/*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    transition: .5s;
}

.team-item:hover {

    border-color: var(--primary);
}

.form-row{
    background-color: #ffffff;
    border-radius: 25px;
    padding: 25px;
}
.form-head{
    color: #000000 !important;
    font-weight: 600 !important;
    text-align: left !important;
    font-family: 'Gilroy-Bold', sans-serif !important;


}
.form-text{
    color: #000000;
    font-weight: 400 !important;
    font-size: 18px !important;
    text-align: left !important;
    font-family: 'Poppins', sans-serif !important;
}
.form-group{
    color: #000 !important;
    font-weight: 300 !important;
}

.form-group input, textarea{
    border-radius: 6px !important;
    font-size: 12px !important;
    font-family: 'Poppins', sans-serif !important;
    outline-color: black !important;
}
.btn-form-clr{
    background-color: #731FCC !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    border: #731FCC !important;
    outline-color: #731FCC !important;
    font-family: 'Gilroy-Medium', sans-serif !important;
    font-weight: 500 !important;
}
.btn-form-clr:hover{
    background-color: #ffffff !important;
    border: #731FCC !important;
    color: #000000 !important;
    border-radius: 6px !important;
    transition: .6s;
    outline-color: #000000 !important;

}
@media (max-width: 576px) {
    /* Center the image for small screens (mobile) */
    .form-mobile-view{
        margin-top: -65px !important;
    }
    

   
  }

  .text-ftr{
    font-size: 200px !important;
    width: 100% !important;
    font-family: 'Poppins', sans-serif !important;
    
  }

  

  .partners-addrs{
    text-decoration: none !important;
    color: rgba(216, 216, 216, 0.678) !important;
  }

  .partners-mail{
    text-decoration: none !important;
    color: rgba(216, 216, 216, 0.678) !important;
   
  }
.contact-form {
    background-color: #ffffff !important;
    border-radius: 10px;
    color: #fff !important;
    
  
  }
  .form-group {
    margin-bottom: 20px !important;
  }
  .form-group input {
    background-color: #f5f5f5 !important;
    color: #000 !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
  }

  .form-group textarea{
    background-color: #f5f5f5  !important;
    color: #000 !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
  }

  img {
    max-width: 100% !important;
    height: auto;
    border-radius: 10px;
  }

  @media (max-width: 767px) {
    /* Center the image for small screens (mobile) */
    img {
      margin-top: 15px; /* Optional: Add some top margin for better spacing */
      margin-bottom: 15px; /* Optional: Add some bottom margin for better spacing */
    }

    .image-contain img {
      align-items: center;
    }
  }


/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
    font-family: 'Poppins', sans-serif !important;
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
    font-family: 'Poppins', sans-serif !important;
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    font-family: 'Poppins', sans-serif !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.bg-ftr
{
    background-color: #731FCC !important;
}


.logo-banner-footer{
    width: 45% !important;
    align-items: center !important;
    text-align: center !important;
}

.text-ftr{
    font-family: 'Poppins', sans-serif !important;
    padding-right: 50px !important;
    font-weight: 400 !important;
    line-height: .9em !important;
    
}
.ftr-company{
    font-family: 'Poppins', sans-serif !important;
    color: #e0e0e0 !important;
    font-weight: 400 !important;
}
.ftr-Saudi{
    font-family: 'Gilroy-Medium', sans-serif !important;
    font-weight: 500 !important;
    color: #FFFFFF !important;
}

.ftr-partner-text{
    font-family: 'Poppins', sans-serif !important;
    color: #e0e0e0 !important;
    font-weight: 400 !important;
}


@media (max-width: 992px) {
    .logo-banner-footer{
        width: 32% !important;
        align-items: center !important;
        text-align: center !important;
    }
    .text-ftr{
    
        font-size: 75px !important;
        padding: 0px !important;
    }
    .banner-texting{
        
        padding-right: 0px !important;

    }
    .ftr-heading{
        padding-right: 0px !important;
    }
    .form-text{
        font-size: 16px !important;
        
    }
    .banner-sign{
        padding: 6px !important;
        width: 30% !important;
        border-radius: 6px !important;
        font-size: 18px !important;
        border-color: #000000e0 !important;
        color: #731FCC !important;
        font-weight: 500 !important;
        background-color: #ffffff !important;
    
        
    }
    .form-group input{
        font-size: 14px !important;
    }
    .banner-texting{
        font-size: 15px !important;
    }
    .motion-image{
        margin-bottom: 0px !important;
    }
    .abt-text{
        font-size: 16px !important;
        padding-right: 0px !important;
    }
    .abt-head{
        padding-right: 0px !important;
        font-weight: 500 !important;
    }
    .srvc-head{
        font-weight: 500 !important;
    }

    .ftr-heading{
        font-weight: 500 !important;
    }

    .form-head{
        font-weight: 500 !important;
    }
    .banner-heading{
        font-weight: 500 !important;
    }
    .srvc-text{
        font-size: 16px !important;
    }
    .ftr-texting{
        font-size: 16px !important;
    }
    
}
