  /*=================== about ==================*/
  .mamlaka-btn {
    color: #fff;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 0.25rem;
    background-color: var(--primary-color);
  }
  .mamlaka-btn:hover{
    color: #fff;
  }
.about-mamlka-section h2 {
    color: var(--primary-color);
}
  .about-channel {
    gap: 3rem;
  }

  .filter-image {
    position: relative;
    z-index: 0;
  }

  .filter-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.6),
      rgb(rgb(158, 11, 15), 0.6)
    );
    z-index: 10;
  }

  .explore-btn {
    background-color: var(--secondary-color);
    border: none;
    border-radius: 0.025rem;
    padding: 0.5rem 2rem;
  }

  .image-container {
    position: relative;
    overflow: hidden;
  }

  .image-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(158, 11, 15, 0) 0%,
      var(--secondary-color) 100%
    );
    pointer-events: none;
    transition: background 0.3s ease;
    border-radius: 5px
  }

  .image-container img {
    display: block;
    transition: transform 0.3s ease;
  }

  .image-container:hover img {
    transform: scale(1.25);
  }


  .carousel-inner img{
    height: 93vh;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  .carousel-caption{
    top: 45%;
    bottom: unset;
  }
  .cards-container{
    position: absolute;
    bottom: 0px;
    z-index: 1;
    inset-inline-start: calc( (((100vw - var(--container-width)) / 2) + (1.5rem * .5)));
    inset-inline-end: calc(((100vw - var(--container-width)) / 2) + (1.5rem * .5));
  }

  .cards-container .card{
    cursor: pointer;
  }

  .cards-container .card .text-white *{
    color: #fff;
  }
  .image-content-container
{
    position: absolute;
    top: 50%;
    inset-inline-start: 0%;
    transform: translate(-50%, -50%);
}

.hero-section {
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
  }


  .hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .home-hero-slider .slick-slide {
    height: 100vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-slide picture {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
  }

  .hero-slide .container {
    margin-top: 18rem;
  }

  .arabic-version .hero-slide .container {
    margin-top: 12rem;
  }

  .hero-content-box {
    width: fit-content;
    background-color: rgb(255 255 255 / 79%);
    color: rgba(250, 250, 250, 1);
    padding: 2rem;
    border-radius: 6px;
    width: 550px;

  }

  @media (min-width: 991.98px) {
    .hero-content-box {
        position: absolute;
        inset-inline-start: -35%;
        transition: .5s;
        opacity: 0;
    }
    .home-hero-slider .slick-slide:hover .hero-content-box {
        opacity: 1;
        inset-inline-start: 0;
    }
  }
  .arabic-version .hero-content-box {
    width: 475px;
  }

  .hero-dots-container {
    position: absolute;
    display: flex;
    inset-inline-start: 0;
    bottom: 6rem;
  }

  .hero-dots-container .slick-dots {
    position: relative;
  }

  @media (max-width:767.888888px) {
    .hero-content-box {
      width: 100%;
      margin-top: 0;
    }
  }

  .hero-content-box .type-1-btn span {
    color: rgba(250, 250, 250, 1);
    ;
  }

  .hero-content-box .type-1-btn svg {
    fill: white;
  }

  .hero-content-box h1 {
    color: var(--primary-color);
  }

  .hero-content-box p {
    color: rgba(150, 150, 150, 1);
  }

  .hero-section .slick-dots .custom-dot {
    background-color: rgba(150, 150, 150, 1);
    height: 15px;
    width: 15px;
    border-radius: 24px;
    display: block;
    margin-top: 1rem;
  }

  .hero-section .slick-dots .slick-active .custom-dot {
    background-color: var(--secondary-color);
  }

  .hero-section .slick-dots li {
    margin: 0 5px;
  }

  .hero-section .slick-dots {
    width: fit-content;
  }

  .contact-button {
    padding: .5rem 2rem;
    width: 11rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 2rem;
  }

  .hero-arrows-container {
    inset-inline-start: 0;
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    align-items: center;
    margin-bottom: 3rem;
    position: absolute;
    top: 75%;
    width: fit-content;
    transform: translate(-50%, -50%)
  }
  .arabic-version .hero-arrows-container {
    flex-direction: row-reverse;
  }
  .hero-arrows-container span {
    border-radius: 100%;
    position: relative;
    margin: 0;
    padding-inline: 0;
    cursor: pointer;
    border: 1px solid var(--main-color);
    border-radius: 99999px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
  }

  .hero-arrows-container span i {
    border-radius: 100%;
    background: transparent;
    color: white;
    max-width: max-content;
    font-size: 1rem;
    transform: none;
    margin-top: 0;
    position: relative;
  }

  .hero-arrows-container .hero-arrows-prev {
    margin-inline-start: 1rem;
  }

  .hero-arrows-container .slick-arrow {
    margin-inline-end: 1rem;
    border-radius: var(--image-border-raduis);
  }

  body.arabic-version .hero-arrows-container .hero-arrows-prev {
    scale: -1;
  }

  body.arabic-version .hero-arrows-next {
    scale: -1;
  }
  .hero-md-section {
    height: auto !important;
    margin-top: 2rem;
  }

  .hero-md-section .hero-slide {
    height: auto !important;
  }

  .hero-md-section .container {
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 1rem;
  }

  .hero-md-section .hero-arrows-container {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }

  .hero-md-section .hero-content-box {
    box-shadow: 0px 0px 40px 0px #B6B6B633;
  }

  .hero-md-section .slick-dots li.slick-active button:before {
    color: var(--secondary-color);
  }

  .hero-md-section .slick-dots li button:before {
    color: #969696;
    font-size: 17px;
    opacity: 1;
  }

  .hero-md-section .slick-dots {
    width: 100% !important;
  }

  @media (max-width: 991px) {
    .hero-section .hero-content-box {
      display: none;
    }

    .hero-md-section .hero-content-box {
      display: block;
    }
  }

  @media (min-width: 992px) {
    .hero-section .hero-content-box {
      display: block;
    }

    .hero-md-section {
      display: none;
    }
  }
  .hero-content-box a {
    color: #fff;
    background: var(--primary-color);
    padding: 10px;
    border-radius: var(--image-border-raduis);
    text-decoration: none;
  }

.hero-section img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
  @media (max-width: 991.98px) {
    .hero-section {
        height: 85vh;
        overflow: hidden;
    }
  }


  .career-section .career-content {
    background: #fff;
    border-radius: 5px;
  }
  .career-content .career-content-child{
    width: 50%;
  }



.bussiness-news-card{
    background-color: #fff;
    border-top-left-radius: var(--general-border-raduis);
    border-top-right-radius: var(--general-border-raduis);

}
.bussiness-news-card img{
    border-top-left-radius: calc(var(--general-border-raduis) - 1px) ;
    border-top-right-radius: calc(var(--general-border-raduis) - 1px);
}

.icon{
  margin-inline-start: .5rem;
}

.career-content-child img{
  border-end-start-radius: var(--general-border-raduis);
  border-start-start-radius: var(--general-border-raduis);
}




/* Brand Carousel Styles */
  .brand-carousel {
    padding: 20px 0;
    margin: 0 auto;
  }

  .brand-carousel .owl-slick-slide {
    padding: 0 10px;
  }

  .brand-carousel .brands-bg {
    background-color: white;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 15px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease;
    height: 100%;
  }

  .brand-carousel .brands-bg:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .brand-carousel .brands-bg img {
    width: 125px;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 2/1;
  }
  .owl-prev {
    position: absolute;
    inset-inline-start: -10%;
    top: 25%;
  }
  .owl-next {
    position: absolute;
    inset-inline-end: -10%;
    top: 25%;
  }
  /* Owl Slick arrow styles */
  .brand-carousel .owl-slick-prev,
  .brand-carousel .owl-slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
  }

  .brand-carousel .owl-slick-prev {
    inset-inline-end: -20px;
  }

  .brand-carousel .owl-slick-next {
    inset-inline-start: -20px;
  }

  .brand-carousel .owl-slick-prev:before,
  .brand-carousel .owl-slick-next:before {
    display: none;
  }


  .slider-container-with-arrow .arrows{
      margin-inline-end: .5rem;
  }

  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .brand-carousel .owl-slick-slide {
      padding: 0 8px;
    }
  }

  @media (max-width: 992px) {
    .brand-carousel .brands-bg {
      padding: 10px;
    }
  }

  @media (max-width: 768px) {
    .brand-carousel {
      padding: 15px 0;
    }

    .brand-carousel .owl-slick-slide {
      padding: 0 5px;
    }

    .brand-carousel .brands-bg {
      padding: 8px;
    }

    .brand-carousel .owl-slick-prev {
      inset-inline-end: -10px;
    }

    .brand-carousel .owl-slick-next {
      inset-inline-start: -10px;
    }
  }


  .owl-carousel .owl-stage {
    display: flex;
  }

  .owl-carousel .owl-item {
    display: flex;
    align-items: stretch; /* make items same height */
  }

  .owl-carousel .item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* optional: vertically center content */
  }

/* Business form */

        .business-form {
            position: relative;
            background-color: #fff;
        }

        .business-form::before {
            content: '';
            position: absolute;
            top: 30%;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--secondary-color);
            z-index: 0;
        }

        .business-form  .content-section  {
            background-color: #fff;
            border-radius: 0 0 50px 50px;
            margin: 0 auto;
            max-width: 90%;
            padding: 40px 50px 40px;
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .business-form .red-separator {
            height: 2px;
            background-color: var(--primary-color);
            width: 100%;
            margin: 20px 0;
            position: relative;
            z-index: 3;
        }


        .business-form .title-primary {
            color: var(--primary-color);
            font-size: 28px;
            font-weight: 800;
            line-height: 39px;
            margin-bottom: 18px;
        }

        .business-form .title-secondary {
            color: var(--secondary-color);
            font-size: 22px;
            font-weight: 800;
            line-height: 33px;
            margin-bottom: 18px;
        }

        .business-form .description-text {
            color: var(--secondary-color);
            font-size: 20px;
            font-weight: 500;
            line-height: 27px;
            margin-bottom: 35px;
        }

        .business-form .form-label {
            color: var(--secondary-color);
            font-size: 18px;
            font-weight: 800;
            line-height: 27px;
            margin-bottom: 8px;
        }

        .business-form .required-asterisk {
            color: var(--primary-color);
        }

        .business-form .form-control, .business-form .form-select {
            border: 1px solid var(--secondary-color);
            border-radius: 5px;
            font-size: 18px;
            font-weight: 500;
            height: 50px;
            padding: 12px 16px;
        }

        .business-form .form-control:focus, .business-form .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(158, 11, 15, 0.25);
        }


        .business-form .message-textarea {
            height: 120px;
            resize: vertical;
        }

        .business-form .submit-btn {
            background-color: var(--primary-color);
            border: none;
            border-radius: 5px;
            color: #fff;
            font-size: 18px;
            font-weight: 800;
            height: 50px;
            line-height: 27px;
            padding: 0 32px;
            transition: all 0.3s ease;
            width: 170px;
        }

        .business-form .submit-btn:hover {
            background-color: #7a090c;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .business-form {
                padding-top: 50px;
                background-color: #fff;
            }

            .business-form::before {
                top: 35%;
            }

            .business-form .content-section {
                padding: 30px 25px 30px;
            }

            .business-form .title-primary {
                font-size: 24px;
            }

            .business-form .title-secondary {
                font-size: 20px;
            }

            .business-form .description-text {
                font-size: 18px;
            }
        }
