@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
* {
  font-family: "Cairo", sans-serif !important;
}

.rs-banner-one .rs-banner-bg-thumb {
  width: 100% !important;
}

/* Projects Page Styles */
.rs-projects-area {
  background: #E8EDF7;
  position: relative;
  overflow: hidden;
}

.rs-projects-area::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,10 L90,10 L90,90 L10,90 Z" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="1"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 0;
}

.rs-project-card-wrapper {
  position: relative;
  z-index: 1;
}

.rs-project-card {
  background: var(--rs-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rs-project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.rs-project-card-image {
  position: relative;
  width: 100%;
  min-height: 300px;
  max-height: 300px;
  overflow: hidden;
}
.rs-project-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(0px);
  transition: transform 0.3s ease;
}

.rs-project-card:hover .rs-project-card-image img {
  transform: scale(1.05);
}

.rs-project-card-info {
  padding: 30px 25px;
  background: var(--rs-white);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rs-project-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--rs-black);
  margin-bottom: 25px;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .rs-project-card-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.rs-project-card-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rs-project-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.rs-project-detail-icon {
  width: 50px;
  height: 50px;
  background: #B3E5FC;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rs-project-detail-icon i {
  font-size: 24px;
  color: #0277BD;
}

.rs-project-detail-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rs-project-detail-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rs-project-detail-value {
  font-size: 16px;
  color: var(--rs-black);
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .rs-project-card-image {
    min-height: 250px;
    max-height: 250px;
  }
  .rs-project-card-info {
    padding: 25px 20px;
  }
  .rs-project-card-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .rs-project-card-details {
    gap: 15px;
  }
  .rs-project-detail-icon {
    width: 40px;
    height: 40px;
  }
  .rs-project-detail-icon i {
    font-size: 20px;
  }
  .rs-project-detail-value {
    font-size: 14px;
  }
}
.mb-30 {
  margin-bottom: 30px;
}

/* Products Page Styles */
.rs-services-image {
  position: relative;
  width: 100%;
  min-height: 250px;
  max-height: 250px;
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 8px;
}
.rs-services-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.rs-services-item:hover .rs-services-image img {
  transform: scale(1.05);
}

.rs-banner-one .rs-banner-bg-thumb {
  height: 85vh;
}

/* Offcanvas menu/contact consistency (fix bullets + spacing on some pages) */
.offcanvas-menu ul,
.offcanvas-contact ul,
.offcanvas-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.offcanvas-menu li,
.offcanvas-contact li,
.offcanvas-social li {
  list-style: none;
}

.offcanvas-menu a,
.offcanvas-contact a,
.offcanvas-social a {
  text-decoration: none;
}

/* Unified front-end pagination */
.pagination {
  --pg-accent: #3858A8;
  --pg-accent-hover: #155a8f;
  --pg-border: #d7e6f0;
  --pg-text: #1b1f24;
  --pg-bg: #ffffff;
  --pg-muted-bg: #f5f8fb;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 32px 0 0;
  padding: 0;
}

.pagination .page-item {
  list-style: none;
}

.pagination .page-link,
.pagination .page-item > span {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--pg-border);
  background: var(--pg-bg);
  color: var(--pg-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  transition: all 0.2s ease-in-out;
}

.pagination .page-link:hover {
  background: var(--pg-accent);
  border-color: var(--pg-accent);
  color: #fff;
}

.pagination .page-item.active .page-link,
.pagination .page-item.active > span {
  background: var(--pg-accent);
  border-color: var(--pg-accent);
  color: #fff;
}

.pagination .page-item.disabled .page-link,
.pagination .page-item.disabled > span {
  background: var(--pg-muted-bg);
  color: #8b9aa8;
  border-color: #e4edf4;
  pointer-events: none;
}

#blog-pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

#blog-pagination .rs-btn {
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  padding: 0 16px;
}

#blog-pagination .rs-btn:hover:not(:disabled) {
  background: var(--pg-accent-hover) !important;
}

#blog-pagination .rs-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

#blog-pagination span {
  min-width: 72px;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--pg-border);
  background: var(--pg-bg);
  color: var(--pg-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Breadcrumb menu (support both direct UL and nested UL structures) */
.rs-breadcrumb-content .rs-breadcrumb-menu,
.rs-breadcrumb-content .rs-breadcrumb-menu ul {
  display: inline-flex;
  gap: 15px 35px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.rs-breadcrumb-content .rs-breadcrumb-menu li,
.rs-breadcrumb-content .rs-breadcrumb-menu ul li {
  list-style: none;
  position: relative;
  color: var(--rs-white);
}

.rs-breadcrumb-content .rs-breadcrumb-menu li:not(:last-child)::before,
.rs-breadcrumb-content .rs-breadcrumb-menu ul li:not(:last-child)::before {
  content: "\ea6e";
  position: absolute;
  font-family: remixicon !important;
  font-size: 20px;
  inset-inline-end: -28px;
  opacity: 1;
  color: var(--rs-white);
}

.rs-breadcrumb-content .rs-breadcrumb-menu li a,
.rs-breadcrumb-content .rs-breadcrumb-menu ul li a {
  color: var(--rs-white);
  text-decoration: none;
}

.rs-breadcrumb-content .rs-breadcrumb-menu li a:visited,
.rs-breadcrumb-content .rs-breadcrumb-menu ul li a:visited {
  color: var(--rs-white);
}

.rs-breadcrumb-content .rs-breadcrumb-menu li a:hover,
.rs-breadcrumb-content .rs-breadcrumb-menu ul li a:hover {
  color: var(--rs-black);
}

.rs-breadcrumb-content .rs-breadcrumb-menu li span,
.rs-breadcrumb-content .rs-breadcrumb-menu ul li span {
  color: inherit;
}

/*----------------------------------------*/
/* Services listing cards (rs-services-one)
/*----------------------------------------*/
.rs-services-area.rs-services-one .rs-services-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: var(--rs-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 30px 25px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.rs-services-area.rs-services-one .rs-services-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
@media (max-width: 575px) {
  .rs-services-area.rs-services-one .rs-services-item {
    flex-direction: row;
    gap: 18px;
    padding: 24px 18px;
  }
}
@media (max-width: 420px) {
  .rs-services-area.rs-services-one .rs-services-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.rs-services-area.rs-services-one .rs-services-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--rs-rgba-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.rs-services-area.rs-services-one .rs-services-icon img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.rs-services-area.rs-services-one .rs-services-icon svg {
  width: 40px;
  height: 40px;
}
.rs-services-area.rs-services-one .rs-services-icon svg path {
  /* Override inline SVG fill="white" from Blade/template */
  fill: var(--rs-theme-orange);
}
.rs-services-area.rs-services-one .rs-services-content {
  flex: 1 1 auto;
  min-width: 0;
}
.rs-services-area.rs-services-one .rs-services-title {
  margin: 0 0 10px;
  color: var(--rs-title-primary);
  font-weight: 800;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.rs-services-area.rs-services-one .rs-services-description {
  margin: 0 0 16px;
  color: var(--rs-text-primary);
  line-height: 1.7;
}
.rs-services-area.rs-services-one .rs-services-btn {
  margin-top: 0;
}
.rs-services-area.rs-services-one .rs-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-transform: capitalize;
  color: var(--rs-theme-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}
.rs-services-area.rs-services-one .rs-btn-link i {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.rs-services-area.rs-services-one .rs-services-item:hover .rs-services-title {
  color: var(--rs-theme-orange);
}
.rs-services-area.rs-services-one .rs-services-item:hover .rs-btn-link {
  color: var(--rs-theme-orange);
}
.rs-services-area.rs-services-one .rs-services-item:hover .rs-services-icon svg path {
  fill: var(--rs-theme-orange);
}

/*----------------------------------------*/
/* Project detail page (dynamic content)
/*----------------------------------------*/
.project-description,
#project-detail-body {
  color: var(--rs-text-primary);
  font-size: 16px;
  font-weight: 500;
}

#project-tech-tags .badge.bg-secondary {
  background: var(--rs-theme-orange) !important;
  color: var(--rs-white) !important;
  border-color: rgba(0, 0, 0, 0.05) !important;
  font-weight: 700;
}

.project-detail-swiper .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.project-detail-swiper .swiper-pagination-bullet-active {
  background: var(--rs-theme-orange);
}/*# sourceMappingURL=retouch.css.map */

/* Elmassry Steel brand palette (logo blue) */
:root {
  --rs-theme-orange: #3858A8 !important;
  --rs-theme-red: #3858A8 !important;
  --rs-theme-blue: #243A74 !important;
  --rs-theme-light-blue: #4F6FB8 !important;
  --rs-theme-deep-blue: #243A74 !important;
  --rs-theme-medium-blue: #304E96 !important;
  --rs-title-secondary: #1C2F5C !important;
  --rs-border-tertiary: #1C2F5C !important;
  --rs-bg-primary: #F4F6FB;
}

.rs-btn.has-theme-orange,
.rs-btn.has-theme-red,
.has-theme-orange .rs-btn {
  background-color: #3858A8;
}
.rs-btn.has-theme-orange:hover,
.rs-btn.has-theme-red:hover {
  background-color: #2B4385;
}

/* Section brand tints */
.rs-projects-area {
  background: #E8EDF7;
}
