/* 
---------------------------------------------
About Style
--------------------------------------------- 
*/

#about {
  padding-top: 130px;
}

.about-left-image img {
  margin-left: 45px;
}

.about-right-content p {
  margin-top: 30px;
  margin-bottom: 45px;
}

.skills-content {
  position: relative;
  z-index: 1;
  margin-top: -50px;
  background-color: var(--bg-light);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 110px 0px 50px 0px;
}

.skill-item {
  text-align: center;
}

.progress {
  width: 150px;
  height: 150px;
  line-height: 150px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}

.progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid var(--bg-white);
  position: absolute;
  top: 0;
  right: 0;
}

.progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress .progress-left {
  right: 0;
}

.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 5px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: var(--plumbing-color);
}

.first-skill-item .progress .progress-bar {
  border-color: var(--secondary-color);
}

.second-skill-item .progress .progress-bar {
  border-color: var(--cleaning-color);
}

.third-skill-item .progress .progress-bar {
  border-color: var(--electrical-color);
}

.progress .progress-left .progress-bar {
  right: 100%;
  border-top-left-radius: 75px;
  border-bottom-left-radius: 75px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.progress .progress-right {
  left: 0;
}

.progress .progress-right .progress-bar {
  right: -100%;
  border-top-right-radius: 75px;
  border-bottom-right-radius: 75px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress .progress-value {
  text-align: center;
  color: var(--text-dark);
  display: flex;
  width: 100%;
  border-radius: 50%;
  font-size: 35px;
  text-align: center;
  line-height: 25px;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 700;
}

.progress .progress-value div {
  margin-top: 10px;
}

.progress .progress-value span {
  font-size: 18px;
  text-transform: none;
  color: var(--text-gray);
  font-weight: 300;
}

.progress[data-percentage="10"] .progress-right .progress-bar {
  animation: loading-1 1.5s linear forwards;
}

.progress[data-percentage="10"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="20"] .progress-right .progress-bar {
  animation: loading-2 1.5s linear forwards;
}

.progress[data-percentage="20"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="30"] .progress-right .progress-bar {
  animation: loading-3 1.5s linear forwards;
}

.progress[data-percentage="30"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="40"] .progress-right .progress-bar {
  animation: loading-4 1.5s linear forwards;
}

.progress[data-percentage="40"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="50"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="50"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="60"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="60"] .progress-left .progress-bar {
  animation: loading-1 1.5s linear forwards 1.5s;
}

.progress[data-percentage="70"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="70"] .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.5s;
}

.progress[data-percentage="80"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="80"] .progress-left .progress-bar {
  animation: loading-3 1.5s linear forwards 1.5s;
}

.progress[data-percentage="90"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="90"] .progress-left .progress-bar {
  animation: loading-4 1.5s linear forwards 1.5s;
}

.progress[data-percentage="100"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="100"] .progress-left .progress-bar {
  animation: loading-5 1.5s linear forwards 1.5s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-36);
    transform: rotate(-36deg);
  }
}

@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-72);
    transform: rotate(-72deg);
  }
}

@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-108);
    transform: rotate(-108deg);
  }
}

@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-144);
    transform: rotate(-144deg);
  }
}

@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-180);
    transform: rotate(-180deg);
  }
}

.progress {
  margin-bottom: 1em;
}

/* 
---------------------------------------------
Services Style - Responsive
--------------------------------------------- 
*/

.services {
  padding-top: 80px;
  position: relative;
}

.services .section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.services .section-heading .line-dec {
  margin: 0 auto;
}

.services .naccs {
  position: relative;
  z-index: 1;
}

.services .icon {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.services .naccs .menu div h4 {
  color: var(--text-white);
  font-size: 15px;
  font-weight: 400;
  width: 100%;
}

.services .icon img {
  margin-bottom: 10px;
  max-width: 60px;
  min-width: 60px;
}

/* تصميم القائمة للجوال أولاً */
.services .naccs .menu {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px 5px;
  margin-bottom: 30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  text-align: center;
}

.services .naccs .menu::-webkit-scrollbar {
  display: none;
}

.services .naccs .menu div {
  color: var(--text-dark);
  margin: 0px;
  width: 160px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  border-radius: 15px;
  transition: all 0.3s ease;
  flex: 0 0 auto;
  display: inline-block;
}

.services .naccs .menu div .thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 15px;
  background-color: var(--bg-white);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.services .naccs .menu div.active .thumb {
  box-shadow: var(--shadow-light);
  border-color: var(--primary-color, #2c5aa0);
  transform: translateY(-5px);
}

.services ul.nacc {
  height: 100% !important;
  position: relative;
  min-height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: 0.5s all ease;
}

.services ul.nacc li {
  opacity: 0;
  transform: translateX(50px);
  position: absolute;
  list-style: none;
  transition: 0.5s all ease;
  width: 100%;
}

.services ul.nacc li.active {
  transition-delay: 0.3s;
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateX(0px);
  box-shadow: var(--shadow-light);
  background-color: var(--bg-white);
  border-radius: 15px;
  padding: 40px 30px;
}

.services ul.nacc li {
  width: 100%;
}

.services ul.nacc li .right-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-light);
}

.services .nacc .thumb h4 {
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  margin-bottom: 25px;
}

.services .nacc .thumb .main-white-button {
  text-align: left;
  margin-top: 40px;
}

.services .nacc .thumb .main-white-button a {
  background-color: var(--text-light);
  color: var(--text-white);
}

.services .nacc .thumb .main-white-button a i {
  background-color: var(--bg-white);
  color: var(--text-light);
}

.services .left-text h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color) !important;
  margin-bottom: 20px;
}

.services .left-text p {
  margin-bottom: 25px;
  line-height: 1.8;
}

.nacc .ticks-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.nacc .ticks-list span {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  margin-left: 0;
  margin-bottom: 0;
}

.nacc .ticks-list span i {
  color: var(--secondary-color);
  margin-left: 10px;
}

/* Services Section Icons */
.services .naccs .menu .thumb .icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.services .naccs .menu .thumb .icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.services .naccs .menu .thumb:hover .icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.services .naccs .menu .thumb.active .icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.services .naccs .menu .thumb {
    text-align: center;
    padding: 20px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services .naccs .menu .thumb:hover {
    color: var(--secondary-color);
}

/* تحسينات للشاشات المتوسطة */
@media (min-width: 768px) {
  .services .naccs .menu {
    justify-content: center;
  }
  
  .services .naccs .menu div {
    width: 180px;
  }
  
  .nacc .ticks-list {
    grid-template-columns: 1fr 1fr;
  }
  
  .services ul.nacc li.active {
    padding: 60px 80px 40px 80px;
  }
}

/* تحسينات للشاشات الكبيرة */
@media (min-width: 992px) {
  .services {
    padding-top: 130px;
  }
  
  .services .section-heading {
    margin-bottom: 80px;
  }
  
  .services .naccs .menu div {
    width: 15%;
    font-size: 20px;
  }
  
  .services .naccs .menu div .thumb {
    padding: 30px 0px;
  }
  
  .services ul.nacc li.active {
    padding: 80px 120px 50px 120px;
  }
  
  .services ul.nacc li .right-image img {
    max-width: 420px;
    float: left;
  }
  
  .services .naccs .menu .thumb .icon {
    width: 70px;
    height: 70px;
  }
}

/* تحسينات للشاشات الصغيرة جداً */
@media (max-width: 576px) {
  .services {
    padding-top: 60px;
  }
  
  .services .section-heading {
    margin-bottom: 30px;
  }
  
  .services .naccs .menu div {
    width: 140px;
    font-size: 14px;
  }
  
  .services .naccs .menu div .thumb {
    padding: 15px 10px;
  }
  
  .services .naccs .menu .thumb .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  
  .services .naccs .menu .thumb .icon i {
    font-size: 1.3rem;
  }
  
  .services ul.nacc li.active {
    padding: 30px 20px;
  }
  
  .services .left-text h4 {
    font-size: 22px;
  }
  
  .col-lg-6 {
    width: 100% !important;
  }
}
/* 
---------------------------------------------
Cities Section
--------------------------------------------- 
*/

.cities-section {
  padding: 120px 0 80px;
  background: var(--gradient-dark-blue);
  position: relative;
  color: var(--text-white);
}

.cities-section .section-heading h6,
.cities-section .section-heading h4,
.cities-section .section-heading p {
  color: var(--text-white);
}

.cities-section .section-heading .line-dec {
  background-color: var(--text-white);
}

/* بطاقات المناطق */
.region-card {
  background: var(--stats-bg);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  border: 1px solid var(--stats-border);
  transition: all 0.3s ease;
}

.region-card:hover {
  transform: translateY(-5px);
  background: var(--card-hover-bg);
  box-shadow: var(--shadow-medium);
}

.region-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--overlay-bg);
}

.region-header h5 {
  color: var(--text-white);
  font-weight: 600;
  margin: 0;
}

.region-header h5 i {
  color: var(--accent-color);
  margin-left: 10px;
}

/* شبكة المدن */
.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.city-tag {
  background: var(--stats-bg);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 13px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--stats-border);
  cursor: pointer;
}

.city-tag.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-dark);
}

.city-tag:hover {
  background: var(--warning-color);
  transform: scale(1.05);
    color: var(--text-dark);

}


/* 
---------------------------------------------
Portfolio
--------------------------------------------- 
*/

.our-portfolio {
  padding-top: 130px;
  overflow: hidden;
  position: relative;
}


.our-portfolio .section-heading {
  margin-bottom: 80px;
}

.our-portfolio .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  z-index: 2;
}

.our-portfolio .item {
  position: relative;
  z-index: 222;
}

.portfolio-item {
  border-radius: 25px;
  box-shadow: var(--shadow-light);
  margin: 15px;
}

.portfolio-item .thumb {
  position: relative;
  border-radius: 50px;
}

.portfolio-item:hover .down-content h4,
.portfolio-item:hover .down-content span {
  color: var(--secondary-color);
}

.portfolio-item .thumb img {
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
  overflow: hidden;
}

.portfolio-item .down-content {
  background-color: var(--bg-white);
  text-align: center;
  padding: 18px 0px;
  border-bottom-left-radius: 23px;
  border-bottom-right-radius: 23px;
}

.portfolio-item .down-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  transition: all .3s;
}

.portfolio-item .down-content span {
  font-size: 15px;
  color: var(--text-gray);
  transition: all .3s;
}

.our-portfolio .owl-nav {
  display: inline-block !important;
  position: absolute;
  top: -125px;
  left: 15%;
  max-width: 1320px;
}

.our-portfolio .owl-nav .owl-next {
  margin-right: 10px;
}

.our-portfolio .owl-nav span {
  width: 46px;
  height: 46px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  font-size: 30px;
  background-color: var(--bg-gray);
  border-radius: 50%;
  color: var(--text-white);
  transition: all 0.5s;
}

.our-portfolio .owl-nav span:hover {
  color: var(--text-white);
  background-color: var(--secondary-color);
}

/* 
---------------------------------------------
Contact Form Styles
--------------------------------------------- 
*/

form#contact select {
  width: 100%;
  height: 46px;
  background-color: transparent;
  border: 1px solid var(--border-light);
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dark);
  padding: 0px 20px;
  border-radius: 23px;
  margin-top: 30px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a2a2a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 20px center;
  background-size: 16px;
  padding-left: 50px;
}

form#contact select:focus {
  border-color: var(--secondary-color);
}

form#contact select::placeholder {
  color: var(--text-light);
}

/* 
---------------------------------------------
contact
--------------------------------------------- 
*/

.contact-us {
  padding-top: 130px;
}

.contact-us .section-heading .line-dec {
  margin: 0 auto;
}

.contact-us .section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.contact-dec img {
  max-width: 224px;
  position: absolute;
  left: 25px;
  top: -242px;
}

form#contact {
  box-shadow: var(--shadow-light);
  position: relative;
  background-color: var(--bg-white);
  border-radius: 23px;
  text-align: center;
}

form#contact #map iframe {
  border-top-right-radius: 23px;
  border-bottom-right-radius: 23px;
  margin-bottom: -7px;
  position: relative;
  z-index: 2;
}

.fill-form {
  padding: 80px 30px 80px 60px;
}

.fill-form .info-post {
  margin-bottom: 20px;
}

.fill-form .icon {
  text-align: center;
  box-shadow: var(--shadow-light);
  border-radius: 23px;
  padding: 25px 15px;
}

.fill-form .icon img {
  max-width: 60px;
  display: block;
  margin: 0 auto;
}

.fill-form .icon a {
  margin-top: 15px;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all .3s;
}

.fill-form .icon:hover a {
  color: var(--secondary-color);
}

form#contact input {
  width: 100%;
  height: 46px;
  background-color: transparent;
  border: 1px solid var(--border-light);
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dark);
  padding: 0px 20px;
  border-radius: 23px;
  margin-top: 30px;
}

form#contact input:focus {
  border-color: var(--secondary-color);
}

form#contact input::placeholder {
  color: var(--text-light);
}

form#contact textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  max-height: 180px;
  min-height: 180px;
  height: 180px;
  border-radius: 23px;
  background-color: transparent;
  border: 1px solid var(--border-light);
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dark);
  padding: 15px 20px;
  margin-top: 30px;
}

form#contact textarea:focus {
  border-color: var(--secondary-color);
}

form#contact textarea::placeholder {
  color: var(--text-light);
}

form#contact button {
  display: inline-block;
  background-color: var(--secondary-color);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-white);
  margin-top: 30px;
  width: 100%;
  text-transform: capitalize;
  padding: 12px 20px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  border: none;
  transition: all .3s;
}

form#contact button:hover {
  background-color: var(--btn-primary-hover);
}
