/* ========================================= SERVICE PAGE CUSTOM STYLES (MATCHED TO IMAGE) ========================================= */
:root {
  --bg-light-blue: #ceedff;
  --card-bg: #ceedff;
  --text-dark: #1a1a1a;
}
.section-padding {
  padding: 80px 0;
}
.section-padding-top {
  padding-top: 80px;
}
.section-padding-bottom {
  padding-bottom: 80px;
}
.section-title {
  color: var(--text-dark);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}
.text-left {
  text-align: left;
}
.mt-4 {
  margin-top: 30px;
}
.sp-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}
.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: #0482d6;
  box-shadow: 0 4px 12px rgba(5, 158, 255, 0.3);
}
.service-page-hero {
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-page-hero .hero-title {
  color: #ffffff;
  font-size: 40px;
  font-weight: 900;
  margin: 0;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.9),
    0px 0px 20px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  text-align: center;
}




/* ========================================
   SERVICE SECTION - UPDATED STYLES
   ======================================== */

/* ========================================
   SERVICE SECTION - UPDATED STYLES
   ======================================== */
/* ===== Services Section ===== */
.services-section {
    padding: 80px 20px;
    background-color: #fff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
}

.heading-line {
    width: 50px;
    height: 2px;
    background-color: #7B9630;
    margin: 0 auto 20px;
}

/* Services Intro Paragraph */
.services-intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* ===== Service Card ===== */
.service-card-wrapper {
    position: relative;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* ===== Image Wrapper ===== */
.service-img-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* ===== Simple Overlay ===== */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== View All Button ===== */
.view-all-wrapper {
    text-align: center;
}

.btn-view-all {
    display: inline-block;
    padding: 14px 35px;
    background-color: #7B9630;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: #6a8229;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 150, 48, 0.3);
}

/* ===== No Services ===== */
.no-services {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .services-intro-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .service-img-wrapper {
        height: 250px;
    }
    
    .service-name {
        font-size: 18px;
        padding: 12px 15px;
    }
}









/* ============================================
   TESTIMONIALS SECTION - NEW DESIGN
   ============================================ */
/* Testimonials Section */
.testimonials-section-new {
    position: relative;
    padding: 80px 20px;
    background-image: url('../img/testimonial-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 600px;
}


.testimonials-container-new {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ===== Left Side - Booking Form ===== */
.testimonials-form-side {
    padding-right: 20px;
}

.booking-form-card {
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px;
    text-align: center;
}

.form-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
    text-align: center;
}

.form-heading-line {
    width: 60px;
    height: 3px;
    background-color: #1e3a8a;
    margin: 0 auto 30px;
    position: relative;
}

.form-heading-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border: 2px solid #1e3a8a;
    border-radius: 50%;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    background-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-send {
    width: 100%;
    padding: 14px;
    background-color: #FACD14;
    color: #1a1a1a;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-send:hover {
    background-color: #FACD14;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 206, 34, 0.4);
}

/* ===== Right Side - Testimonials ===== */
.testimonials-content-side {
    padding-left: 20px;
    padding-top: 60px;
}

.testimonials-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    text-align: center;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: #1e3a8a;
    margin: 0 auto 30px;
    position: relative;
}

.title-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border: 2px solid #1e3a8a;
    border-radius: 50%;
}

.testimonial-slider-wrapper {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card-display {
    position: relative;
}

/* Quote Icon */
.testimonial-quote-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-quote-icon span {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    font-family: Georgia, serif;
}

/* Navigation Arrows */
.testimonial-nav-arrows {
    position: absolute;
    top: 15px;
    right: 0;
    display: flex;
    gap: 10px;
}

.testimonial-arrow {
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
}

.testimonial-arrow svg {
    stroke: #1a1a1a;
}

.testimonial-arrow:hover svg {
    stroke: #ffffff;
}

/* Testimonial Content */
.display-review {
    font-size: 15px;
    line-height: 1.7;
    color: #000000;
    margin: 0 0 20px;
}

.display-name {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px;
}

.display-city {
    font-size: 14px;
    color: #000000;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonials-wrapper-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-form-side {
        padding-right: 0;
    }
    
    .testimonials-content-side {
        padding-left: 0;
        padding-top: 0;
    }
    
    .testimonials-section-new {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .testimonials-section-new {
        padding: 60px 20px;
    }
    
    .booking-form-card {
        padding: 30px 25px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .form-subtitle {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .testimonials-title {
        font-size: 28px;
    }
    
    .testimonial-slider-wrapper {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .booking-form-card {
        padding: 25px 20px;
    }
    
    .form-subtitle {
        font-size: 22px;
    }
    
    .testimonials-title {
        font-size: 24px;
    }
    
    .display-review {
        font-size: 14px;
    }
}



/* CTA ENDS */

.services-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.services-section p {
  font-size: 18px;
  color: #000;
  margin-bottom: 30px;
}

.services-section > .container-1200 > p:first-of-type::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 3px;
  background: #f5a623;
  border-radius: 2px;
}

/* Heading */
.services-section > .container-1200 > h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

/* 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-section > .container-1200 > ul > li > a {
  display: block;
  text-decoration: none;
}

.services-section > .container-1200 > ul > li > a > img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 4px solid white;
  position: relative;
  z-index: 2;
}

.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;
}

.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;
}






.service-overlay-link {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.service-overlay-link:hover {
    text-decoration: none;
}

/* Optional: Hover effect on overlay */
.service-card-wrapper:hover .service-overlay-link {
    opacity: 1;
}










/* ===== View All Button ===== */
.view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-block;
    padding: 15px 40px;
    background-color: #74DF23;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: white;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    border: 2px solid #000000;

}


@media (max-width: 576px) {
  .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;
  }
}

@media (max-width: 768px) {
  .services-section > .container-1200 > h2 {
    font-size: 26px;
  }
}
@media (max-width: 992px) {
  .services-section > .container-1200 > ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.btn-view-all {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

#servicesGrid li a {
  display: block;
  border-radius: 0;
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
}

#servicesGrid li a img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}
