@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&family=Nunito:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Changa:wght@200..800&family=Noto+Kufi+Arabic:wght@100..900&display=swap");
/* Constants for all Elements*/
:root {
  --bgcolor: #ebf2f8;
  --purpleline: #2e9a9f;
  --purpleline_hover: #204c72;
  --Card-Title: #111111;
  --Section-Heading: #222222;
  --Date-Color: #b6b6b6;
  --Paragrapgh-color: #666666;
}
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: "Jost";
  font-family: "changa";
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}
section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
section h2 {
  position: relative;
  text-align: center;
  width: 100%;
  margin-bottom: 3rem;
  font-weight: 700;
  font-size: 2rem;
}
section h2::before {
  content: "";
  width: 90px;
  height: 3px;
  background: var(--purpleline);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  bottom: -10px;
  border-radius: 3px;
}
.btn {
  background-color: var(--purpleline);
  color: var(--bgcolor);
  width: 160px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: var(--purpleline_hover);
  color: var(--bgcolor);
}
.section_address {
  color: var(--purpleline);
}

/*PageHead Styling (banner)*/
.pagehead {
  margin-top: 0;
}

.bg {
  background: url("/images/10.webp");
  background-size: cover;
  background-position: center;
  padding: 100px 0 90px;
  margin-bottom: 2rem;
}

/* header section style */
header {
  position: sticky;
  top: 0;
  z-index: 999999999999;
}
.nav-bar {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.navbar {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
/* Navigation links */
.navbar-brand img {
  width: 80px;
  transition: ease-in;
}
.navbar-nav .mx-auto {
  gap: 0.7rem;
}
.navbar-nav .mx-auto .nav-link {
  color: #343434;
  font-size: 1rem;
  font-weight: 600;
}
.navbar-nav .mx-auto .nav-link:hover {
  color: var(--purpleline);
}
.nav-icons {
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  flex-direction: row-reverse; /* تعكس ترتيب الأيقونة والنص */
  text-decoration: none;
}
.email-link :hover {
  color: var(--purpleline);
}
.nav-icons i {
  color: #000;
  font-size: 25px;
}

.nav-icons a:hover {
  color: var(--purpleline);
}
.search-container {
  display: none;
}
.search-container input {
  width: 150px;
  padding: 10px;
  margin-left: 25px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
}
.swiper-wrapper {
  display: flex;
  align-items: center;
}
.search-submit {
  background: none;
  border: none;
  cursor: pointer;
}
#search-field {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}
/* end nav style */

/* hero main section style */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  height: auto;
  margin-top: 0;
  overflow: hidden;
  background: url("../images/bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.swiper-slide {
  position: relative;
  height: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.letter-spacing-2 {
  letter-spacing: 2px;
  text-align: justify;
  text-justify: inter-word;
  word-spacing: 3px;
}
.hero-section img {
  width: 85%;
  height: auto;
}
#contracting-img {
  border-radius: 200px;
  width: 80%;
}
.hero-txt {
  margin-right: 30px;
  padding-right: 50px;
}

.swiper-pagination-bullet {
  background: var(--purpleline);
  width: 10px;
  height: 10px;
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--purpleline);
  width: 30px;
  height: 30px;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--purpleline_hover);
}
.dots-decoration {
  position: absolute;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 11px;
  animation: moveLeftRight 4s ease-in-out infinite alternate;
}
.dot {
  width: 6px;
  height: 6px;
  background-color: var(--purpleline);
  border-radius: 50%;
  opacity: 0.6;
  box-shadow:
    0 0 7px rgba(46, 154, 159, 0.8),
    0 0 20px rgba(46, 154, 159, 0.5);
}
.dots-pos-1 {
  top: 10%;
  left: 5%;
}
.dots-pos-2 {
  bottom: 16%;
  right: 5%;
}
@keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(30px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero_txt,
.hero_btn,
[class^="hero_img"] {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hero_btn:hover {
  transition: 0.3s ease;
}
.swiper-slide-active .hero_txt {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
}
.swiper-slide-active .hero_btn {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}
.swiper-slide-active [class^="hero_img"] {
  animation: fadeInLeft 2s ease forwards;
  animation-delay: 0.3s;
}

/* about us section style */
.about-section {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  padding: 80px 0;
  justify-content: center;
  align-items: center;
}
.about_icon {
  position: absolute;
  width: 120px;
  opacity: 0.3;
}
.about-desc {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}
.btn-outline {
  background-color: transparent;
  color: var(--purpleline);
  border: 2px solid var(--purpleline);
}
.about-img img {
  width: 100%;
  border-radius: 200px;
}
/* end about us section style */

/* services section  style */

.services .box {
  padding: 0;
  margin-right: -2px;
}
.services .box .item {
  position: relative;
  overflow: hidden;
}
.services .box .item img {
  transition:
    opacity 0.8s ease,
    transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}
.services .box .item:hover img {
  transform: scale(1.05);
}

.services .box .item .content {
  background: rgb(0 0 0 / 30%);
  bottom: 0;
  transform: translate(-50%);
  top: auto;
  position: absolute;
  width: 100%;
  text-align: center;
  left: 50%;
  padding: 15px 0;
}
.services .box .item .content .info .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  transition: all 0.3s;
  margin-bottom: 5px;
}
.services .box .item .content .info .title:hover {
  color: var(--purpleline);
}
.services-two {
  background-image:
    linear-gradient(rgba(40, 40, 40, 0.5)), url("/images/services.webp");
  z-index: 1;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 90px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}
.services-two .box {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.services-two .box .number {
  max-width: 54px;
  font-size: 50px;
  color: var(--purpleline);
  font-family: Jost;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 40px;
  transition: 0.8s;
}
.services-two .box .number:hover {
  transform: scale(1.3);
}
.services-two .box .info h4 {
  margin-bottom: 2px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}
.services-two .box .info p {
  font-size: 14px;
  color: #fff;
  line-height: 24px;
  margin-bottom: 0;
}

/* end services section  style */
/* products pages style */
.products span {
  color: var(--purpleline);
}

.check div:hover {
  color: var(--purpleline);
  transition: 0.5s;
  cursor: pointer;
}
.sizee:hover {
  background-color: var(--purpleline);
  border-color: var(--purpleline);
  color: white;
  transition: 0.7s;
  cursor: pointer;
}

img {
  max-width: 100%;
}
.hov:hover {
  background-color: var(--purpleline);
  color: white;
  transition: 0.3s;
  cursor: pointer;
}

.slider > a {
  color: black;
}
.slider > a:hover {
  background-color: var(--purpleline);
  color: white;
  transition: 0.4s;
  cursor: pointer;
}
.banner {
  background: url(../images/Banner.jpg) right center;
  height: 146px;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}
.hover-icon-center {
  position: relative;
  text-align: center;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
.hover-icon-center img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
}
.hover-icon-center:hover img {
  transform: scale(1.15);
}
.popup {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
}
.popup i {
  background-color: white;
  color: #000;
  padding: 13px;
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(180, 180, 180, 0.3);
}
.popup i:hover {
  background-color: var(--purpleline);
  color: white;
  transition: 0.3s;
  cursor: pointer;
}
.col-6 {
  margin-bottom: 2rem;
}
.col-6:hover .popup {
  opacity: 1 !important;
  transition: 0.6s ease-in;
}
/* end product style */
/* blogs section style */
.title h3 {
  color: #fff;
  font-size: 4rem;
}
.bread-crumb a {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
}
.bread-crumb a:hover {
  color: var(--purpleline);
}
.bread-crumb span {
  color: #fff;
  padding: 0 10px;
}
.bread-crumb P {
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  display: inline;
}
.Blogs-content .row-item {
  padding-bottom: 2rem;
}
.Blogs-content hr {
  margin-bottom: 2rem;
}
.Blogs-content .content {
  display: flex;
}
.Blogs-content .card {
  border: none;
  background-color: var(--bgcolor);
}
.Blogs-content .container {
  width: 80%;
}
/*Styling For Layout*/
/*Card img Styling*/
.blog-img img {
  width: 40rem;
  height: 20rem;
  border-radius: 10px;
  object-fit: cover;
  transition: 0.3s;
}
.blog-img:hover .card-img {
  transform: scale(1.01);
  filter: blur(1px);
}
/*Card img Styling End*/
/*Card Info Styling*/
.Blogs-content .blog-info {
  padding-left: 2rem;
  width: 55%;
}
.Blogs-content .title p {
  font-size: 1rem;
  color: var(--purpleline);
  text-transform: uppercase;
}
.Blogs-content .title h4 {
  color: var(--Card-Title);
}
.Blogs-content .title h4:hover {
  color: var(--purpleline);
  cursor: pointer;
}
.Blogs-content .description {
  color: var(--Paragrapgh-color);
}
.Blogs-content .date {
  color: var(--Paragrapgh-color);
}
.blog-info a {
  display: block;
  color: var(--Card-Title);
  padding-top: 1rem;
  text-transform: uppercase;
}
.blog-info a:hover {
  color: var(--purpleline);
}
/*  blogs cards section /Heading Styling Start */
.blogs {
  background: var(--bgcolor);
  padding: 3rem 0;
  margin: 0;
}
.blogs span {
  color: var(--purpleline);
}
#p1 {
  color: var(--Paragrapgh-color);
  font-size: 1rem;
  padding-top: 1rem;
}
/* Heading Paragraph Styling End */
/* Card Styling Starts */
.card {
  background-color: var(--bgcolor);
  border: none;
  padding: 1.5rem;
}
.card .card-img {
  border-radius: 10px;
  transition: 0.7s;
}
.card .card-img:hover {
  transform: scale(1.07);
}

.card-title {
  font-size: 1.5rem;
  color: var(--Card-Title);
}
.card-title:hover {
  color: var(--purpleline);
  cursor: pointer;
}
.card-text {
  font-size: 1rem;
  color: var(--Paragrapgh-color);
  text-align: center;
}
.date p::after {
  content: "";
  background-color: var(--Card-Title);
  width: 70px;
  height: 1px;
  display: block;
  margin: 10px auto 10px;
}
/* end blogs section style */
/* contact us style */

.contact-us span {
  color: var(--purpleline);
}
.middle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.form-title {
  margin-bottom: 20px;
}
.form {
  padding-top: 10px;
  padding-right: 20px;
  padding-left: 20px;
  width: 50%;
}
form {
  display: flex;
  flex-direction: column;
}
.txt {
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: start;
  padding-left: 10px;
  border: 1px solid #6c757d;
  color: #6c757d;
  font-size: 12px;
}
.txt-area {
  padding: 20px 10px;
  height: 260px;
  margin-bottom: 20px;
  font-size: 12px;
}
.send-btn {
  margin: 0;
  height: 55px;
  background-color: #000;
  line-height: 32px;
  cursor: pointer;
  color: #fff;
  border-radius: 3px;
  border: 0;
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s;
}
.send-btn:hover {
  color: #fff;
  background-color: var(--purpleline);
}
.bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #d3d7da;
  width: 100%;
  margin-top: 1rem;
}
.p2 {
  margin: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 40px;
  border-right: 1px solid #d3d7da;
}
.p2 h3 {
  font-size: 20px;
}
.p2 img {
  margin-right: 30px;
}
.p3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.p3 p {
  font-size: 14px;
  margin: 10px;
}
.p3 .Subscribe {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 0 15px;
}
.bottom-txt {
  width: 100%;
  height: 50px;
  padding-left: 10px;
  border: none;
  border-radius: 3px;
  font-size: 15px;
  background-color: #e1e2e2;
}
.submit-btn {
  width: 170px;
  height: 50px;
  border: 0;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  background-color: #000;
  line-height: 32px;
  cursor: pointer;
  color: #fff;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s;
}
.submit-btn:hover {
  color: #fff;
  background-color: var(--purpleline);
}
/* end contact us style */
/* footer style  */
.footer {
  width: 100%;
  background-color: var(--bgcolor);
  margin: auto;
  padding-top: 4rem;
}
.footer-container {
  max-width: 1170px;
  background-color: transparent;
  margin: auto;
}
.footer .col-md-3 h4 {
  font-size: 16px;
  color: black;
  text-transform: capitalize;
  margin-bottom: px;
  font-weight: bold;
  position: relative;
}
.footer .col-md-3 .socials {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer .col-md-3 .socials i {
  color: #000;
  font-size: 23px;
  cursor: pointer;
  padding: 5px;
  align-items: center;
  justify-content: center;
}
.footer .col-md-3 .socials i:hover {
  color: var(--purpleline);
}
.logo-footer {
  width: 100px;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 15px;
}
#p-footer {
  padding-bottom: 10px;
  font-size: 13px;
}
.footer .col-md-3 ul {
  list-style: none;
  padding: 0;
}
.footer .col-md-3 ul li {
  font-size: 14px;
  font-weight: 500;
  display: block;
  line-height: 35px;
}
.list-inline-item {
  margin: 5px;
}
.footer .col-md-3 ul li a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: rgb(49, 47, 47);
}
.footer .col-md-3 ul li a:hover {
  color: var(--purpleline);
}
.copyright {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 0;
  padding: 20px 0;
  border-top: 1px solid #bbbec1;
  font-weight: lighter;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #000;
}
.copyright span {
  color: var(--purpleline);
}
/* scroll up button float */
/* float icon to scroll top */
.icon-top .btn-scroll-up {
  position: fixed;
  bottom: 0px;
  right: 0px;
  cursor: pointer;
  display: none;
  padding: 8px;
  border-radius: 50%;
  background-color: var(--bgcolor);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  margin-right: 40px;
  margin-bottom: 30px;
  transition: 0.5s ease;
  z-index: 99;
  justify-content: center;
  align-items: center;
}
.icon-top .btn-scroll-up:hover {
  background: var(--purpleline);
  transform: scale(1.1);
  box-shadow: 0px 0px 10px rgba(180, 180, 180, 0.4);
}
.icon-top .btn-scroll-up i {
  font-size: 1.5rem;
  display: flex;
  color: var(--Card-Title);
  align-items: center;
  padding: 0.3rem;
}
.icon-top .btn-scroll-up i:hover {
  color: #ede9e9;
}
/* Show the scroll-up button when needed */
#scrollUp.visible {
  display: block;
}

/* main scrol bar style */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--purpleline);
  border-radius: 3px;
}
::-webkit-scrollbar-track {
  background: #ccc;
}
::-webkit-scrollbar-button {
  display: none;
}
/* all media query responcive */
/* Responsive styles for the mobile menu */

@media (max-width: 1000px) {
  .Blogs-content .content {
    flex-direction: column;
  }
  .blog-info {
    padding-left: 0;
  }
  .blog-img img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 993px) {
  .navbar-nav ul li {
    text-align: center; /* Center-align links */
    display: block;
  }
  .navbar-nav .mx-auto {
    line-height: 2rem;
    margin-bottom: 2.5rem;
    gap: 0;
  }
  .navbar-light .navbar-toggler {
    color: var(--purpleline);
    border-color: rgba(0, 0, 0, 0.1);
  }
  .navbar-toggler span {
    color: var(--purpleline); /* Color of the mobile menu icon */
  }
  .hero-section .hero-txt {
    margin-bottom: 60px;
    padding-right: 0px;
    padding-top: 50px;
  }
  .Blogs-content .blog-info {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .banner-txt h4 {
    font-weight: 700;
  }
  .banner-txt h3 {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1.6px;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .banner-txt p {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  .navbar-brand img {
    width: 90px;
  }
  .footer .col-md-3 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .logo-column {
    margin-bottom: 2.5rem;
  }
  .form {
    width: 100%;
    height: 90%;
  }
  .bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .p2 {
    margin: 0px;
    margin-top: 40px;
    padding: 0;
    border-right: none;
  }
  .p3 {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .dot {
    width: 5px;
    height: 5px;
  }
  .about_icon {
    width: 120px;
    opacity: 0.2;
  }
  .pos-1 {
    right: 2%;
    top: 5%;
  }
  .pos-2 {
    left: 2%;
    top: 5%;
  }
  .pos-3 {
    right: 2%;
    bottom: 5%;
  }
  .pos-4 {
    left: 2%;
    bottom: 5%;
  }
  .hero_btn {
    width: 155px;
    height: 40px;
  }
  .hero-txt a {
    font-size: 14px;
  }
  .dot {
    width: 5px;
    height: 5px;
  }
  .about_desc {
    font-size: 17px;
  }
  .Blogs-content .container {
    width: 90%;
  }
   .navbar-brand img {
    width: 70px;
  }
  .services-main{
      margin-right:10px;
      margin-left:10px;
  }
}
@media (max-width: 420px) {
  .banner-txt h4 {
    font-weight: 700;
  }
  .banner-txt h3 {
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 1.5px;
    margin-top: 1.7rem;
    margin-bottom: 1.7rem;
  }
  .banner-txt p {
    font-size: 0.7rem;
    font-weight: 500;
  }
  .navbar-brand img {
    width: 65px;
  }
  .popup {
    gap: 6px;
  }
  .popup i {
    padding: 7px;
  }
  .hero-txt a {
    font-size: 13px;
  }
  .hero_btn {
    width: 150px;
    height: 40px;
  }
  .dot {
    width: 4px;
    height: 4px;
  }
  .about_desc {
    font-size: 15px;
  }
  .Blogs-content .container {
    width: 100%;
  }
}
