.services-hero p,
.footer p,
.footer-links a {
  color: var(--text-gray) !important;
  font-size: 1.1rem !important;
}
.Sectors-p {
  color: gray !important;
}
/* متغيرات الألوان */
:root {
  --primary-gold: #f3b308;
  --dark-gold: #f3b308;
  --deep-black: #121212;
  --soft-white: #fcfcfc;
}

/* --- Hero Section Styling --- */
.services-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background: url("assets/bg.jpg") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
}

.services-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* Dark Overlay */
  z-index: 1;
}

.hero-content-box {
  position: relative;
  z-index: 2;
}

.services-hero h1 {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--primary-gold);
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

/* --- Breadcrumb Styling --- */
.breadcrumb-item a {
  color: var(--text-white);
  text-decoration: none;
  opacity: 0.8;
}
.breadcrumb-item a:hover {
  color: var(--primary-gold);
  opacity: 1;
}
.breadcrumb-item.active {
  color: var(--primary-gold) !important;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
  content: "|";
  padding: 0 10px;
}

/* --- Service Rows --- */
.section-padding {
  padding: 100px 0;
}
.mb-100 {
  margin-bottom: 80px;
}

.service-content-card {
  position: relative;
  padding: 20px;
}

.srv-number {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.1);
  position: absolute;
  top: -40px;
  right: 0;
}

.srv-heading {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a1a1a;
  border-right: 5px solid var(--primary-gold);
  padding-right: 15px;
}

.srv-desc {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
}

.srv-features-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.srv-features-list li {
  margin-bottom: 12px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.srv-features-list li i {
  color: var(--primary-gold);
  margin-left: 10px;
  font-size: 0.9rem;
}

.srv-image-holder {
  border-radius: 30px 0 30px 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  max-height: 350px;
  display: flex;
  align-items: center;
}

.srv-image-holder img {
  width: 100%;

  height: 350px;

  object-fit: cover;

  object-position: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-image-holder:hover img {
  transform: scale(1.1) rotate(1deg);
}

.sector-card-new {
  background: #fff;
  border: 1px solid #eee;
  padding: 40px 20px;
  text-align: center;
  border-radius: 20px;
  transition: 0.4s ease-in-out;
}

.sector-card-new .icon-wrap {
  width: 70px;
  height: 70px;
  background: #f9f9f9;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary-gold);
  transition: 0.4s;
}

.sector-card-new h4 {
  font-weight: 800;
  color: #1a1a1a;
}
.sector-card-new p {
  color: #888;
  margin-bottom: 0;
}

.sector-card-new:hover,
.sector-card-new.active {
  background: #fff;
  border-color: var(--primary-gold);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
  transform: translateY(-10px);
}

.sector-card-new:hover .icon-wrap,
.sector-card-new.active .icon-wrap {
  background: var(--primary-gold);
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-content-box h1 {
    font-size: 2.8rem;
  }
  .srv-heading {
    font-size: 1.8rem;
  }
  .service-row-premium {
    text-align: center;
  }
  .srv-heading {
    border-right: none;
    border-bottom: 3px solid var(--primary-gold);
    display: inline-block;
    padding-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .srv-image-holder,
  .srv-image-holder img {
    height: 245px;
  }
}
/* ===========================
   WhatsApp Button
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  font-size: 2rem;
  color: var(--text-white);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
  }
}

/* ===========================
  subtitle Styling
   =========================== */
.sub-title {
  color: var(--primary-gold);
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
  font-size: 1.5rem;
}
/* ===========================
  Section Title Styling
   =========================== */
h2::after {
  content: "";
  position: absolute;
  bottom: -17px;
  right: 50%;
  transform: translateX(50%);
  width: 100px;
  height: 4px;
  background: var(--primary-gold);
}

/* Fix Horizontal Scroll Issues */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* .container {
    max-width: 100vw;
    overflow: hidden;
}

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

section {
    width: 100%;
    overflow: hidden; 
} */
