/* ========================================= SERVICE PAGE STYLES ========================================= */

.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.service-page-hero {
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
    background-position: left;
}



.service-page-hero .container-1200 {
  position: relative;
  z-index: 1;
}

.hero-title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  text-align: center;    
  max-width: 700px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.849);
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}
.services-container{
      max-width: 1200px;
    margin: 0px auto;
    padding-left: 10px;
    padding-right: 10px;
}

/* Label */
.services-section > .container-1200 > p:first-of-type {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #662d91;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.services-section > .container-1200 > p:first-of-type::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 3px;
  background: #FCB041;
  border-radius: 2px;
}

.services-section > .container-1200 > p:first-of-type::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 3px;
  background: #FCB041;
  border-radius: 2px;
}

/* Heading */
.services-section > .container-1200 > h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 50px;
}

/* Services Grid */
.services-section > .container-1200 > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* ===== Services Header ===== */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Decorative Bars + "WHAT WE DO" Text */
.backbars-yellow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    color: #6b4c9a;  /* Purple color */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Orange Bars */
.backbars-yellow span {
    display: inline-block;
    height: 4px;
    background: #FCB041;  /* Orange color */
    border-radius: 2px;
}

.backbars-yellow span:nth-child(1) {
    width: 40px;  /* ⚠️ First bar - longest */
}

.backbars-yellow span:nth-child(2) {
    width: 20px;  /* ⚠️ Second bar - medium */
}

.backbars-yellow span:nth-child(3) {
    width: 10px;  /* ⚠️ Third bar - smallest */
}

/* Center alignment class */
.justify-center {
    justify-content: center;
}

/* Main Heading */
.header-title {
    font-size: 32px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .header-title {
        font-size: 36px;
    }
    
    .backbars-yellow {
        font-size: 12px;
    }
    
    .backbars-yellow span:nth-child(1) {
        width: 25px;
    }
    
    .backbars-yellow span:nth-child(2) {
        width: 13px;
    }
    
    .backbars-yellow span:nth-child(3) {
        width: 8px;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 28px;
    }
} 

.services-section > .container-1200 > ul > li > a {
  display: block;
  text-decoration: none;
}

/* Circular Image */
.services-section > .container-1200 > ul > li > a > img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 30px auto 20px;
  border: 4px solid white;
  position: relative;
  z-index: 2;
}

/* Service Title */
.services-section > .container-1200 > ul > li > a > h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 10px 15px;
  background: #662d91;
  position: relative;
  z-index: 2;
}

/* No Service Message */
.services-section > .container-1200 > ul > li.no-service {
  grid-column: 1 / -1;
  background: #f8f9fa;
  padding: 60px 20px;
}

.services-section > .container-1200 > ul > li.no-service > p {
  color: #666;
  font-size: 18px;
  margin: 0;
}

/* View All Button */
.view-all-wrapper {
  text-align: center;
}

.btn-view-all {
  display: inline-block;
  padding: 12px 30px;
  background: #FCB041;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background: #e5a020;
  transform: translateY(-2px);
}


/* frommmmm */

/* CTA Banner */
.cta-banner {
  padding: 30px 0;
  background: #FCB041;
  margin-bottom: 40px;
}

.cta-banner > .container-1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-banner > .container-1200 > div > h2 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.cta-banner > .container-1200 > div > p {
  color: white;
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-banner > .container-1200 > div > p::before {
  content: "⏱";
  font-size: 16px;
}

.btn-cta {
  background: #662d91;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  background: #5a2578;
  transform: translateY(-2px);
}

/* hereeeee */






/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }

  .services-section > .container-1200 > ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .services-section > .container-1200 > h2 {
    font-size: 26px;
  }

  .cta-banner > .container-1200 {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-banner > .container-1200 > div > h2 {
    font-size: 20px;
  }

  .cta-banner > .container-1200 > div > p{
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .service-page-hero {
    height: 160px;
  }

  .hero-title {
    font-size: 24px;
  }

  .services-section {
    padding: 60px 0;
  }

  .services-section > .container-1200 > ul {
    grid-template-columns: 1fr;
  }

  .services-section > .container-1200 > ul > li > a > img {
    width: 150px;
    height: 150px;
  }
}

/* Add to existing service.css */

/* Hidden service cards */
.svc-extra {
  display: none;
}

/* Button reset */
.btn-view-all {
  /* background: none; */
  border: none;
  cursor: pointer;
  font-family: inherit;
}

#servicesGrid li a {
  display: block;
  border-radius: 0; /* remove rounded corners on the card link/wrapper */
}

#servicesGrid li a img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0; /* remove rounded corners on the image itself */
}


/* =========================================
   CSS Grid Layout
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .header-title {
    font-size: 2rem;
  }
}




/* =========================================
   Service Card
   ========================================= */
.service-item {
  display: flex;
  justify-content: center;
}

.service-link {
  text-decoration: none;
  display: block;
  width: 100%;
}

.service-card {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(107, 33, 168, 0.2);
}


/* Full Length Image Wrapper */
.service-image-wrapper {
  position: relative;
  width: 100%;
  /* height: 280px; */
  z-index: 2;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.08);
}

/* Hover Overlay */
.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: #FCB041;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 3;
}

/* Show overlay on hover */
.service-card:hover .service-overlay {
  opacity: 1;
  visibility: visible;
}

.overlay-content {
  text-align: center;
  padding: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.service-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: black;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 2px 0px white;
    transition: all;
    transition-delay: .2s;

}

.overlay-arrow {
  display: inline-block;
  color: #fbbf24;
  font-size: 2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.service-card:hover .overlay-arrow {
  transform: translateX(10px);
}




/* Empty State */
.no-services {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: #6b7280;
  font-size: 1.1rem;
}