@font-face {
  font-family: "inter400";
  src: url(../fonts/Almarai-Regular.ttf);
}

@font-face {
  font-family: "inter700";
  src: url(../fonts/Almarai-Bold.ttf);
}
@font-face {
  font-family: "inter800";
  src: url(../fonts/Almarai-ExtraBold.ttf);
}


* {
  font-family: 'inter400', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none !important;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;

}
:root{
  --main-color: #004d40 ;
  --secondary-color:#d78b44 ;
  --light-main-color: #FFF1F1;
  --white-color: #fff;
  --second-color: #12223B;
  --light-second-color: #F4F9FC;
}

html {

  font-size: 16px;

  scroll-padding-top: 8rem;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: #e1e1e1;
}

html::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

#gotoTop {
  position: fixed;
  bottom: 20px; /* Adjust based on your preference */
  right: 20px;  /* Adjust based on your preference */
  width: 50px;  /* Size of the button */
  height: 50px; /* Size of the button */
  background-color:var(--light-main-color); /* Background color */
  color: var(--main-color); /* Text color */
  border-radius: 50%; /* Make it circular */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px; /* Size of the icon */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
  cursor: pointer; /* Pointer cursor on hover */
  z-index: 9999; /* Ensure it's above other content */
  transition: background-color 0.3s, transform 0.3s; /* Smooth transition for hover effects */
}

#gotoTop:hover {
  transform: scale(1.1); /* Slightly enlarge on hover */
}


/* upper-nav */
.upper-nav{
  background-color: var(--main-color);
}
/* Cart Totals Section */
.cart-totals {
  background-color: var(--light-second-color); /* Light background for the totals section */
  padding: 20px 0;
}

.totals-card {
  background-color: #ffffff; /* White background for the card */
  border: 1px solid #dee2e6; /* Light border for the card */
}

.totals-card h4 {
  font-size: 1.25rem; /* Heading size */
  font-weight: 600; /* Bold heading */
}

.totals-card .d-flex {
  font-size: 1rem; /* Font size for subtotal, shipping, and total */
}

.totals-card .btn-primary {
  background-color: #007bff; /* Primary button color */
  border-color: #007bff; /* Primary button border color */
}

/* Add this to your stylesheet or within a <style> tag */
.table-bordered tbody tr {
  border-bottom: 2px solid #ddd; /* Change the color or thickness as needed */
}
.table-bordered td, .table-bordered th {
  vertical-align: middle; /* Center-align vertically */
  text-align: center;      /* Center-align horizontally */
}
.productContent .icons .icon{
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--light-main-color);
}
.productContent .icons .icon  i {
  color: var(--second-color);
}

.productContent .icons .icon:hover  i {
  color: var(--main-color);

}
/* Icons container */

#productDetails p{
  color: #8A8A8A;
font-size: 1.125rem;
font-family: "inter700";
}
#productDetails .price{

font-size: .9rem;

}
#productDetails .price span{

font-size: .9rem;

}
#productDetails .icons span{
  background-color: #464646;
}
.nav-item1.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* Optional: Removes margin to avoid visual gaps */
}

.dropdown-menu {
  transition: all 0.3s ease; /* Optional: Smooth transition for dropdown */
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* Optional: Removes margin to avoid visual gaps */
}

.dropdown-menu {
  transition: all 0.3s ease; /* Optional: Smooth transition for dropdown */
}
.dropdown-item:hover {
  background-color: #f8f9fa; /* Light background on hover */
  color: var(--main-color); /* Blue text on hover */
}

/* start navbar */
.nav-item a {
  color: #2c2c2c;
  display: inline-block;
  font-size: 1rem;
  margin-right: .5rem;
  transition: all .5s;
  position: relative;
}

.nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 8px; /* For RTL */
  width: 30%;
  height: 2px;
  opacity: 0;
  background-color: var(--main-color);
  transition: all .5s;
}
/* For LTR */
html[dir="ltr"] .nav-item .nav-link::before {
  right: auto; /* Reset 'right' */
  left: 8px; /* For LTR */
}

.nav-item:hover .nav-link {
  color: var(--main-color);
}

.nav-item:hover .nav-link::before {
  opacity: 1;
}

 .navbar-nav .nav-link.active {
  color: var(--main-color);
}

 .navbar-nav .nav-link.active::before {
  opacity: 1;
}
nav.dark {
  background-color: #B0B0B0;
}

.navbar{
  border-bottom: 2px solid var(--main-color);

}

/* Container padding and margins */
.custom-container {
  padding-left: 2rem; /* Adjust values based on your needs */
  padding-right: 2rem;
}

[dir="rtl"] .custom-container {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Icon margins */
.custom-icon-margin {
  margin-left: 0.5rem; /* Adjust values based on your needs */
  margin-right: 0.5rem;
}

[dir="rtl"] .custom-icon-margin {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

/* Icon styles */
.custom-icon {
  margin-left: 0.5rem; /* Adjust values based on your needs */
  margin-right: 0.5rem;
}

[dir="rtl"] .custom-icon {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

/* Button spacing */
.custom-btn-margin {
  margin-left: 0.5rem; /* Adjust values based on your needs */
  margin-right: 0.5rem;
}

[dir="rtl"] .custom-btn-margin {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

/* Navbar styles */
.custom-nav {
  margin-left: auto; /* Adjust values based on your needs */

}

[dir="rtl"] .custom-nav {
  margin-right: auto;
  margin-left: 0;

}

/* Default for LTR: margin-right auto */


/* For RTL: reverse to margin-left auto */
[dir="rtl"] .custom-nav-cart {

  margin-right: 0; /* Ensure margin-right is reset */
}
/* Cart Dropdown Styles */
.cart-item-container {
  position: relative;
}

/* Default for LTR (align to the left) */
.cart-dropdown {
  position: absolute;
  right: 0; /* Align to the left in LTR */
  top: 100%;
  background-color: var(--white-color);
  border: 1px solid #ddd;
  width: 300px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  display: none; /* Hidden by default */
  z-index: 1000;
}

/* For RTL: Align to the right */
[dir="rtl"] .cart-dropdown {
  left: 0;
  right:  auto;
}


.cart-item img {
  border-radius: 5px;
  margin-right: 10px;
}

.cart-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cart-summary, .cart-actions {
  padding: 10px;
}

.cart-summary span {
  font-weight: bold;
}

#product-count {
  font-size: 0.75rem;
  padding: 0.5em 0.6em;
}

/* Show dropdown on hover */
.cart-item-container:hover .cart-dropdown {
  display: block;
}

.cart-items {
  list-style: none;
  padding: 0;
}

.cart-items li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.cart-actions a {
  margin: 0 5px;
  text-align: center;
}

.cart-actions a:first-child {
  margin-right: 10px;
}

/* end navbar */




/* hero section */
.carousel-item {
  background-size: cover; /* Ensures the image covers the entire item */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents tiling */
}

#hero  .hero-content{
  background: linear-gradient(273deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 132.79%);

}
#hero .hero-content h1{
  color: var(--main-color);
}
#hero .hero-content h2{
  font-size: 3.5rem;

}



#hero .carousel-control-next{
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width:3rem;
  height: 3rem;
  padding: 0;
  color: var(--white-color);
  text-align: center;
  background: 0 0;
  border:1px solid var(--white-color);
  opacity: 1;
  transition: all .15s ease;
}
#hero .carousel-control-prev{
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width:3rem;
  height: 3rem;
  padding: 0;
  color: var(--white-color);
  text-align: center;
  background: 0 0;
  border:1px solid var(--white-color);
  opacity: 1;
  transition: all.15s ease;
}
#hero .carousel-control-next:hover {
  color: var(--main-color);

}
#hero .carousel-control-prev:hover {
  color: var(--main-color);
}
#hero .carousel-control-next:hover .ani-carosl {
  right: 0;
}
#hero .carousel-control-prev:hover .ani-carosl {
  right: 0;
}
.ani-carosl{
  left: 0;
  right: 100%;
  top: 0;
  bottom: 0;
  transition: all .5s;
  z-index: -1;
}

/* General carousel item styles */
.custom-col img.custom-img {
  left: -30%; /* Adjust for RTL, change for LTR */
 right: auto;
  bottom: 0;
  object-fit: cover;
}

[dir="ltr"] .custom-col img.custom-img {
  right: -30%; /* Adjust for LTR */
 left: auto;
}

/* Hero content custom padding */
.hero-content {
  padding-right: 5rem;
  padding-left: 5rem;
}

[dir="ltr"] .hero-content {
  padding-left: 5rem;
  padding-right: 5rem;
}

/* Buttons spacing */
.button-group .custom-btn {
  margin-right: 10px;
  margin-left: 10px;
}

[dir="ltr"] .button-group .custom-btn {
  margin-left: 10px;
  margin-right: 10px;
}

/* Carousel control buttons */
.custom-nav-btn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Carousel control buttons */
.custom-nav-btn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* #hero .nav-link-scroll {

  color: black;
  font-size: .9rem;
  margin-right: .5rem;
} */

/* end hero */

#category p{
  color: #8A8A8A;
font-size: 1.125rem;
font-family: "inter700";
}
#category h3{
  position: relative;
padding-inline-start: 16px;
}
#category h3::before{
  content: "";
  position: absolute;
  width: 6px;
  height: 110%;
  background-color: var(--main-color);
  top: 50%;
margin-inline-start: 16px;
  inset-inline-start: -16px;
  transform: translateY(-50%);
}
#category .imgContainer{
  width: 7rem;
  height: 7rem;
  border: var(--main-color) 1px solid;
}
#category h4{
  color: var(--second-color);
}
#category .categoryCard:hover h4{
  color: var(--main-color);
}



#newProducts p{
  color: #8A8A8A;
font-size: 1.125rem;
font-family: "inter700";
}
#newProducts h3{
  position: relative;
padding-inline-start: 16px;
}
#newProducts h3::before{
  content: "";
  position: absolute;
  width: 6px;
  height: 110%;
  background-color: var(--main-color);
  top: 50%;
margin-inline-start: 16px;
  inset-inline-start: -16px;
  transform: translateY(-50%);
}
#product-discount{
  z-index: 999;
}
#newProducts h6 {
  color: var(--white-color);
}
#newProducts h6:hover{
  color: var(--main-color);
}
#newProducts .card:hover img{
  scale: 1.1;
  color: var(--main-color);
}
#newProducts .card:hover .showLayer {
  opacity: 1;
}
#newProducts .card .showLayer{
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#newProducts p span {
  font-size: .9rem;
}
.slide-container{
  margin: 0 50px;
  overflow: hidden;
}
#clients .card-wrapper .card {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#clients .swiper-navBtn {
  display: none;
}
#clients .card-wrapper .card img {
  display: block;
  width: 100%;
  height: 100px; /* Set this to your desired height */
  object-fit: contain; /* Keeps the aspect ratio, adds padding */
  /* or use object-fit: cover; if you want to fill the space */
}
.category-Swiper{
  margin: 0 50px;
  overflow: hidden;
}
.newProductsSwiper {
  margin: 0 50px;
  overflow: hidden;
}
.featuredProductsSwiper {
  margin: 0 50px;
  overflow: hidden;
}
.swiper-navBtn {
  color: var(--white-color);
  height: 40px;
  width: 40px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 1.2rem;
  font-weight: 700;
}
.swiper-pagination-bullet {
  background-color: var(--main-color);
  width: .8rem;
  height: .8rem;
}
@media screen and (max-width: 768px) {
  .swiper-navBtn {
    display: none;
  }
}

#service {
  background-image: url('../images/our-service-bg.png'),
    linear-gradient(#eeeeee, #dadada);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
;


  background-blend-mode: multiply;
}
#service h3{
  color: var(--main-color);
  position: relative;
  display: inline-block;
  }
  #service p{
    color: #535353;
    font-size: 1.125rem;
    font-family: "inter700";
  }
  #service h3::before{
    content: "";
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 4px;
    background-color: var(--secondary-color);
    top: 50%;

    transform: translateY(-50%) rotate(45deg);



    inset-inline-start: -45px;

  }

  #service h3::after{
    content: "";
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 4px;
    background-color: var(--secondary-color);
    top: 50%;

    transform: translateY(-50%) rotate(45deg);
    inset-inline-end: -45px;

  }


#service .service-card:hover h4{

  color:var(--main-color);
}
#service .service-card .iconLayer{
  width: 5rem;
  height: 5rem;
  background-color: #f4b60a1c;

}

#service .service-card h4{
  color:var(--main-color);
  font-size: 1.5rem;
  font-family: "inter800";
  line-height: 2.625rem
}
#service .service-card p{
  color: #535353;
  font-size: 1rem;
  font-family: "inter700";
}
#service .service-card i{
  color: var(--secondary-color);
}

 #productDetails .product-features {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

#productDetails .product-features p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

#productDetails .product-features .icon {
    color: var(--main-color);
    font-size: 20px;
    margin-left: 10px;
}
#productDetails .swiper {
  width: 100%;
  height: 100%;
}

#productDetails .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#productDetails .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



#productDetails .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

#productDetails .swiper-slide {
  background-size: cover;
  background-position: center;
}

#productDetails .mainSwiper {
  height: 80%;
  width: 100%;
}

#productDetails .secSwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

#productDetails .secSwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

#productDetails .secSwiper .swiper-slide-thumb-active {
  opacity: 1;
}

#productDetails .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  #whyUs {
    background-image: linear-gradient(var(--light-second-color), var(--light-second-color));
    background-position: bottom left;
    background-size: auto;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
  }

  #whyUs h3{
    position: relative;
    display: inline-block;
    }

    #whyUs h3::before{
      content: "";
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 4px;
    background-color: var(--main-color);
    top: 50%;

    transform: translateY(-50%) rotate(45deg);
    inset-inline-end: -45px;
    }

    #whyUs h3::after{
      content: "";
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 4px;
    background-color: var(--main-color);
    top: 50%;

    transform: translateY(-50%) rotate(45deg);
    inset-inline-start: -45px;
    }
    #whyUs p{
      color: #535353;
      font-size: 1.125rem;
      font-family: "inter700";
    }

    #whyUs .service-card h4{
      color: var(--main-color);
      font-size: 1.5rem;
      font-family: "inter800";
      line-height: 2.625rem;
    }
    #whyUs .service-card p{
      color: #535353;
      font-size: 1rem;
      font-family: "inter700";
    }

    #whyUs .service-card:hover h4{

      color:var(--secondary-color);
    }




    #CTA .imgContainer {
      position: relative;
    }

    #CTA .imgContainer .customImg {
      display: block;
      width: 100%;
      max-height: 50vh; /* Adjust this value to decrease the height */
      height: auto;
      object-fit: cover;

    }

    #CTA .imgLayer {
      background: linear-gradient(273deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 132.79%);
      z-index: 1;
    }

    #CTA .imgContent {
      z-index: 2; /* Make sure the content is above the gradient layer */
    }

    #CTA .imgContent h2 {
      color: var(--main-color);
      font-size: 2.5rem;
      font-weight: 800;
    }

    #CTA .imgContent p {
      color: var(--white-color);
      font-size: 0.875rem;
    }
    .img-ltr {
      transform: scaleX(-1);
  }

  #blogContent h2{
color: var(--secondary-color);
position: relative;
    padding-inline-start: 32px;
    }

    #blogContent h2::before{
      content: "";
      position: absolute;
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 4px;
      background-color: var(--main-color);
      top: 50%;
    margin-inline-start: 24px;
      inset-inline-start: -24px;
      transform: translateY(-50%) rotate(45deg);

    }

    #blogContent h3{
      color: var(--secondary-color);
      position: relative;
    padding-inline-start: 28px;
    }
    #blogContent h3::before{
      content: "";
      position: absolute;
      width: 1rem;
      height: 1rem;
      border-radius: 4px;
      background-color: var(--main-color);
      top: 50%;
    margin-inline-start: 24px;
      inset-inline-start: -24px;
      transform: translateY(-50%) rotate(45deg);
    }
    #blogContent ul{
      list-style: none;
      padding-inline-start: 1rem;
    }
    [dir="rtl"] #blogContent ul{
      padding-inline-end: 1rem;
    }
    #blogContent ul li a{
      color: var(--secondary-color);
      position: relative;
    padding-inline-start: 28px;
    }
    #blogContent ul li a::before{
      content: "";
      position: absolute;
      width: 1rem;
      height: 1rem;
      border-radius: 4px;
      background-color: var(--main-color);
      top: 50%;
    margin-inline-start: 24px;
      inset-inline-start: -24px;
      transform: translateY(-50%) rotate(45deg);
    }
    #blogs{
      /* background-image: url('../images/blogIcon.png');
      background-position: top right;
      background-size: auto;
      background-repeat: no-repeat;
      background-blend-mode: multiply;  */

    }
    #blogs h3{
      position: relative;
      display: inline-block;
      }

      #blogs h3::before{
        content: "";
        position: absolute;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 4px;
        background-color: var(--main-color);
        top: 50%;

        transform: translateY(-50%) rotate(45deg);



        inset-inline-start: -45px;

      }

      #blogs h3::after{
        content: "";
        position: absolute;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 4px;
        background-color: var(--main-color);
        top: 50%;

        transform: translateY(-50%) rotate(45deg);
        inset-inline-end: -45px;

      }
      #blogs .card h5{
        color: var(--secondary-color);
      }
      #blogs .card:hover h5{
        color: var(--main-color);
      }
      #blogs .card:hover img{
        scale: 1.1;
        color: var(--main-color);
      }




    #blogs .card h5{
      position: relative;
    padding-inline-start: 28px;
    }
    #blogs .card h5::before{
      content: "";
      position: absolute;
      width: 1rem;
      height: 1rem;
      border-radius: 4px;
      background-color: var(--main-color);
      top: 50%;
    margin-inline-start: 24px;
      inset-inline-start: -24px;
      transform: translateY(-50%) rotate(45deg);
    }

    #blogs .card a{
      color: var(--main-color);
    }
    #blogs .card a:hover{
      color: var(--secondary-color);
    }


    .contact-section {
        background-image: url('../images/our-service-bg.png'), linear-gradient(#eeeeee, #dadada);
        background-blend-mode: multiply;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .contact-section h3{
      position: relative;
      padding-inline-start: 32px;
    }

    .contact-section h3::before{
      content: "";
      position: absolute;
      width: 1.3rem;
      height: 1.3rem;
      border-radius: 4px;
      background-color: var(--main-color);
      top: 50%;
      margin-inline-start: 24px;
      inset-inline-start: -24px;
      transform: translateY(-50%) rotate(45deg);
    }

    .contact-section .form-group {
      margin-bottom: 15px;
    }

    .contact-section .form-control {
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    .contact-section label {
      display: block;

      font-weight: bold;
      margin-bottom: 5px;
    }



    .contact-info {

      color: #333;
    }




    .info-item {
      display: flex;
      flex-direction: column;
      font-size: 1rem;
      margin-bottom: 20px;
    }
    .info-item span {
      font-weight: bold;
      color: var(--main-color);

    }


    #team h3{
      position: relative;
      display: inline-block;
      }
      #team p{

        color: #535353;
        font-size: 1.125rem;
        font-family: "inter700";
        }
      #team h3::before{
        content: "";
        position: absolute;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 4px;
        background-color: var(--main-color);
        top: 50%;

        transform: translateY(-50%) rotate(45deg);
        inset-inline-start: -45px;
      }

      #team h3::after{
        content: "";
        position: absolute;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 4px;
        background-color: var(--main-color);
        top: 50%;

        transform: translateY(-50%) rotate(45deg);
        inset-inline-end: -45px;
      }


    #team .card {
      border: var(--main-color) 2px solid !important;
      right: 16px;
      top: 16px;
    }
    #team .card:hover img{
      scale: 1.1;
      color: var(--main-color);
    }
    #team nav , #blogs nav{
      box-shadow: none !important;
      background-color: transparent  !important;

    }
     nav .pagination .page-item .page-link{
      color: var(--main-color);
    }
     nav .pagination .page-item.active .page-link{
      color: var(--white-color) !important;
      background-color: var(--main-color) !important;
      border-color: var(--main-color) !important;
    }

     /* Default nav-link style */
     #vision .nav-pills .nav-link {
        color: var(--main-color); /* Default text color */
        background-color: var(--white-color);

        border: 1px solid var(--main-color);
        transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    }

    /* Hover state */
    #vision .nav-pills .nav-link:hover {
        color: var(--secondary-color); /* Text color on hover */
        background-color: var(--white-color) ; /* Background color on hover */
        border-color: var(--main-color); /* Border color on hover */
    }

    /* Active state */
    #vision .nav-pills .nav-link.active {
        color: var(--white-color); /* Text color for active state */
        background-color: var(--main-color); /* Background color for active state */
        border-color: var(--main-color); /* Border color for active state */
        font-weight: bold; /* Optional: make the text bold */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: add shadow for emphasis */
    }


    #vision h3{
      position: relative;
    padding-inline-start: 32px;
    }
    #vision h3::before{
      content: "";
      position: absolute;
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 4px;
      background-color: var(--main-color);
      top: 50%;
    margin-inline-start: 24px;
      inset-inline-start: -24px;
      transform: translateY(-50%) rotate(45deg);

    }
    #vision .vision-card{
      border: #ececec9c 2px solid;
    }

    #vision .vision-card:hover{
      border: var(--main-color) 2px solid;
    }
    #vision .vision-card p{
      color:#8A8A8A ;
    }
    #vision .vision-card h4,
    #vision .vision-card i {
      color:var(--second-color);
    }
    #vision .vision-card:hover h4,
    #vision .vision-card:hover i {
      color: var(--main-color);
    }

    #whatWeDo{
      background:linear-gradient(#E9F7FE, #E9F7FE) ;
    }
    #whatWeDo h3{
      position: relative;
      display: inline-block;
      }
      #whatWeDo  .count {
        transition: count 0.1s ease-in-out;
    }

      #whatWeDo h3::before{
        content: "";
        position: absolute;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 4px;
        background-color: var(--main-color);
        top: 50%;

        transform: translateY(-50%) rotate(45deg);



        inset-inline-start: -45px;

      }

      #whatWeDo h3::after{
        content: "";
        position: absolute;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 4px;
        background-color: var(--main-color);
        top: 50%;

        transform: translateY(-50%) rotate(45deg);
        inset-inline-end: -45px;

      }
    #whatWeDo .whatWeDo-card{
      background:var(--second-color);
      border: #ececec9c 2px solid;
    }
    #whatWeDo .whatWeDo-card:hover{
      border: var(--main-color) 2px solid;
    }
    #whatWeDo .whatWeDo-card p{
      color:#cacaca ;
      font-size: 1.5rem;
    }#whatWeDo .whatWeDo-card h4{
      color:white ;
      font-size: 3rem;
    }
    #whatWeDo .whatWeDo-card:hover h4 {
      color: var(--main-color);
    }
    #projects {
      background-color: #E9F7FE;
      background-image: url('../images/projects-bg.png');
      background-position: top right;
      background-size: cover;
      background-repeat: no-repeat;
      background-blend-mode: overlay;
    }
    /* Custom styles for the carousel next and previous buttons */
    #projects .carousel-control-prev,
    #projects .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#projects .carousel-control-prev:hover,
#projects .carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Darker on hover */
    opacity: 1;
}

/* Icon size and color */
#projects .carousel-control-prev-icon,
#projects .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100%; /* Ensures the icon fills its container */
    filter: invert(1); /* Makes the icon white */
}

/* Position the buttons closer to the edges */
#projects .carousel-control-prev {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

#projects .carousel-control-next {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

    #projects h3{
      position: relative;
      display: inline-block;
      }

      #projects h3::before{
        content: "";
        position: absolute;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 4px;
        background-color: var(--main-color);
        top: 50%;

        transform: translateY(-50%) rotate(45deg);



        inset-inline-start: -45px;

      }

      #projects h3::after{
        content: "";
        position: absolute;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 4px;
        background-color: var(--main-color);
        top: 50%;

        transform: translateY(-50%) rotate(45deg);
        inset-inline-end: -45px;

      }

    #projects .card-inner{
      position: relative;
      border-radius: 10px;
      overflow: hidden;

    }
    #projects .card-inner img{
      width: 100%;
      border-radius: 10px;
      transition: .5s all;


    }
    #projects .card-inner:hover .card-fillter {
      opacity: 1;
    }
    #projects .card-inner:hover img{
      transform: scale(1.1);
      filter: blur(1px);
    }
    #projects .card-fillter{
      position: absolute;
      background-color: rgba(0, 0, 0, .4);
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      opacity: 0;
      display: flex;
      justify-content: end;
      align-items: start;
      flex-direction: column;
      border-radius: 10px;
      transition: .5s all;

    }
    #projects .card-fillter p{
      color: white;
    }
    #projects .card-fillter h5{
      font-size: 1.2rem;
      font-weight: 400;
      color: white;
    }


    #testimonials .Testimonial-card .card-body p{
      color: #374151;
      font-size: 0.96538rem;
      line-height: 1.76044rem;
      letter-spacing: -0.00963rem;

      }

      #testimonials  .Testimonial-card .footer-content h6{
        color:  var(--second-color);
      font-family: "inter700";
      font-size: 1rem;
      letter-spacing: -0.01819rem;
      }
      #testimonials .Testimonial-card .footer-content p{

        font-size: 0.79506rem;
        line-height: 1.41969rem;
        letter-spacing: -0.00794rem;
      }
    #serviceHeader .imgContainer {
      position: relative;
    }

    #serviceHeader .imgContainer .customImg {
      display: block;
      width: 100%;
      max-height: 50vh; /* Adjust this value to decrease the height */
      height: auto;
      object-fit: cover;

    }

    #serviceHeader .imgLayer {
      background: linear-gradient(273deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 132.79%);
      z-index: 1;
    }

    #serviceHeader .imgContent {
      z-index: 2; /* Make sure the content is above the gradient layer */
    }

    #serviceHeader .imgContent h1 {
      color: var(--main-color);
      font-size: 3rem;
      font-weight: 800;
    }

    #serviceHeader .imgContent p {
      color: var(--white-color);
      font-size: 0.875rem;
    }
    .breadcrumb-item.active {
      color: var(--main-color) !important;
    }
    [dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
      color: var(--main-color) !important;
      float: right; /* Aligns the separator to the right in RTL */
      margin-inline-end: 8px; /* Space after the separator in RTL */
    }
    [dir="ltr"] .breadcrumb-item + .breadcrumb-item::before {
      color: var(--main-color) !important;
      float: left; /* Aligns the separator to the left in LTR */
      margin-inline-start: 8px; /* Space before the separator in LTR */
    }
    #serviceContent p{
      color: #8A8A8A;
    font-size: 1.125rem;
    font-family: "inter700";
    }
    #serviceContent h3{
      position: relative;
    padding-inline-start: 16px;
    }
    #serviceContent h3::before{
      content: "";
      position: absolute;
      width: 6px;
      height: 110%;
      background-color: var(--main-color);
      top: 50%;
    margin-inline-start: 16px;
      inset-inline-start: -16px;
      transform: translateY(-50%);
    }

    #serviceContent .swiper {
      width: 100%;

    }

    #serviceContent .swiper-slide {
      text-align: center;

      background: var(--white-color);

      display: flex;
      justify-content: center;
      align-items: center;
    }

    #serviceContent .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


    #about p{
      color: #676767;
    font-size: 1.075rem;

    }

    .product-page h1{     position: relative;
      padding-inline-start: 32px;}
      .product-page h1::before{
        content: "";
        position: absolute;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 4px;
        background-color: var(--main-color);
        top: 50%;
      margin-inline-start: 24px;
        inset-inline-start: -24px;
        transform: translateY(-50%) rotate(45deg);
      }
      .product-page h3{     position: relative;
        padding-inline-start: 28px;}
        .product-page h3::before{
          content: "";
          position: absolute;
          width: 1rem;
          height: 1rem;
          border-radius: 4px;
          background-color: var(--main-color);
          top: 50%;
        margin-inline-start: 24px;
          inset-inline-start: -24px;
          transform: translateY(-50%) rotate(45deg);
        }
        .product-page ul{
          padding-inline-start: 3rem;
        }
        [dir="rtl"] .product-page ul{
          padding-inline-end: 3rem;
        }

    #about h3{
      position: relative;
    padding-inline-start: 32px;
    }
    #about h3::before{
      content: "";
      position: absolute;
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 4px;
      background-color: var(--main-color);
      top: 50%;
    margin-inline-start: 24px;
      inset-inline-start: -24px;
      transform: translateY(-50%) rotate(45deg);

    }

    #client h3{
      color: var(--secondary-color);
      position: relative;
      display: inline-block;
      }

      #client h3::before{
        content: "";
        position: absolute;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 4px;
        background-color: var(--main-color);
        top: 50%;

        transform: translateY(-50%) rotate(45deg);
        inset-inline-start: -45px;
      }

      #client h3::after{
        content: "";
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 4px;
    background-color: var(--main-color);
    top: 50%;

    transform: translateY(-50%) rotate(45deg);
    inset-inline-end: -45px;
      }
  #client {
      background: url('../images/our-service-bg.png'), linear-gradient(#dbfff9, #9fffef);

  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  }
  #client p{
    color: #484848;
  }
  .carousel-indicators [data-bs-target] {
      width: 6rem;
      height: 6rem;
      border-radius: 50%;

      text-indent: 0;
  }
  .carousel-indicators .active{
      transform: scale(1.2);

  }

    .sidebar {
      height: auto; /* Ensure the height fits the content */
      align-self: flex-start;
      padding: 20px;
      border: 1px solid var(--main-color);
  }

  .sidebar-title {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 15px;

  }

  .latest-posts {
      list-style-type: none;
      padding: 0;
  }

  .latest-post-item {
      margin-bottom: 10px;
  }

  .latest-post-item a {
      text-decoration: none;
      font-weight: bold;
      color: var(--second-color);
  }
  .latest-post-item a:hover {
    color: var(--main-color);
}
  #blog .post-content h3{
    position: relative;
  padding-inline-start: 16px;
  }
  #blog .post-content h3::before{
    content: "";
    position: absolute;
    width: 6px;
    height: 110%;
    background-color: var(--main-color);
    top: 50%;
  margin-inline-start: 16px;
    inset-inline-start: -16px;
    transform: translateY(-50%);
  }

  .latest-post-item i {
      color: #888;
  }
  .post-image img {
    width: 80%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}

.post-body {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* From Uiverse.io by adamgiebl */

.btn-custom1{


  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding: 0.7em 2em;
  border: 3px solid var(--main-color);
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: var(--white-color);
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
  background:var(--main-color);

  }
  .btn-custom1::before{
    transition: 0.5s all ease;
    position: absolute;
    border-radius: 6px;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color:var(--white-color);
    z-index: -1;
  }
  .btn-custom1:hover, .btn-custom1:focus {
    color: var(--main-color);
  }
  .btn-custom1:hover:before, .btn-custom1:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
  }

  .btn-custom1:active {
    transform: scale(0.9);
  }

.btn-custom2{

  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding: 0.7em 2em;
  border: 3px solid var(--secondary-color);
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: var(--secondary-color);
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
  background: transparent;
}
.btn-custom2::before{
  transition: 0.5s all ease;
  position: absolute;
  border-radius: 6px;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: var(--secondary-color);
  z-index: -1;
}
.btn-custom2:hover, .btn-custom2:focus {
  color: var(--white-color) !important;
}
.btn-custom2:hover:before, .btn-custom2:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.btn-custom2:active {
  transform: scale(0.9);
}

.button-container-collapes{
  display: none;
}

/* end hero */

  #contact {
    background-image: url('../images/contact-us-bg.png'), linear-gradient(#E9F7FE, #E9F7FE);
    background-position: top right;
    background-size: cover;
    background-repeat: repeat;
    background-blend-mode: multiply;
}

#contact .iconLayer{
  width: 5rem;
  height: 5rem;
  background-color: #f4b60a1c;

}
#contact label{
  color: #535353;

font-size: 1.1rem;
font-family: "inter700";
line-height:  2.16538rem ;
letter-spacing: -0.00719rem;
}

textarea{
  resize: none;
}




#serviceHeader{
  margin-bottom: 6rem;
}
#serviceHeader .imgContainer {
  position: relative;
}

#serviceHeader .imgContainer .customImg {
  display: block;
  width: 100%;
  max-height: 50vh; /* Adjust this value to decrease the height */
  height: auto;
  object-fit: cover;

}

#serviceHeader .imgLayer {
  background: linear-gradient(273deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 132.79%);
  z-index: 1;
}

#serviceHeader .imgContent {
  z-index: 2; /* Make sure the content is above the gradient layer */
}
#serviceHeader .pageHeader{
  width: 80%;
  left: 50%;
  z-index: 55;
  transform: translate(-50%,30%);
}

#serviceHeader .imgContent h1 {
  color: var(--main-color);
  font-size: 3rem;
  font-weight: 800;
}

#serviceHeader .imgContent p {
  color: white;
  font-size: 0.875rem;
}
.breadcrumb-item.active {
  color: var(--main-color) !important;
}
[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
  color: var(--main-color) !important;
  float: right; /* Aligns the separator to the right in RTL */
  margin-inline-end: 8px; /* Space after the separator in RTL */
}
[dir="ltr"] .breadcrumb-item + .breadcrumb-item::before {
  color: var(--main-color) !important;
  float: left; /* Aligns the separator to the left in LTR */
  margin-inline-start: 8px; /* Space before the separator in LTR */
}













#footer{
  background-image: url('../images/our-service-bg.png'), linear-gradient(var(--main-color),var(--main-color));

  background-blend-mode: multiply;
  border-top: var(--secondary-color) 2px solid;
}
#footer p{
  color:#f7f7f7;

font-size: 0.875rem;
font-family: "inter700";

line-height: 1.61875rem ;

}
#footer h6{
font-family: "inter800";
line-height: 1.5rem ;
}

#footer ul{
  list-style: none;
}
#footer .icons .icon{
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: rgba(45, 106, 99, 0.1);
}
#footer .icons .icon a i {
  color: var(--white-color);
}

#footer .icons .icon:hover a i {
  color: var(--secondary-color);

}

/* SHAERD CSS */

.logoTextE{
  font-size: .75rem !important;
}
.sec-header h2{
    font-family: "inter800";
    color: var(--main-color);
    font-size: 1rem;
    line-height: 3rem;
    letter-spacing: -0.0125rem;
}

.sec-header h3{
      color: var(--second-color);
    font-family: "inter700";
    font-size: 1.8rem;
}
.sec-header p{
color: #464646;
font-size: 1.0625rem;
line-height: 1.875rem;
letter-spacing: -0.01063rem;
}




.vh-80{
  height: 65vh;
}

.text-main{
  color: var(--main-color) !important;
}
.text-second{
  color: var(--second-color) !important;
}
.text-blue{
  color: var(--secondary-color) !important;
}
.bg-main{
  background-color: var(--main-color);
}
.bg-second{
  background-color: var(--second-color);
}

.auto-margin {
  margin-left: auto; /* ms-auto in LTR */
}

/* RTL specific styles */
[dir="rtl"] .auto-margin {
  margin-right: auto; /* me-auto in RTL */
}

.navbar-toggler {
  border-color: #333; /* Dark border for better visibility */
}

.navbar-toggler-icon {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox%3D%220 0 30 30%22 xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath stroke%3D%22rgba%2833%2C 37%2C 41%2C 1%29%22 stroke-width%3D%222%22 stroke-linecap%3D%22round%22 stroke-miterlimit%3D%2210%22 d%3D%22M4 7h22M4 15h22M4 23h22%22/%3E%3C/svg%3E');
}
@media (max-width: 991px) {
  .custom-col{
  display: none;
   }
  html {
      font-size: 14px;
    }

    .button-container-collapes{
      display: block;
    }
    .button-container{
      display: none;
    }
    #hero .collapse{

      background: rgba(0, 0, 0, 0.2); /* Semi-transparent background color */
      backdrop-filter: blur(10px);    /* Blur effect */
      -webkit-backdrop-filter: blur(10px);}

}

@media (max-width: 768px) {
  html {
      font-size: 13px;
    }



}
@media (max-width: 450px) {
  html {
    font-size: 12px;
  }


}

