/* ========================================= SERVICE PAGE CUSTOM STYLES (MATCHED TO IMAGE) ========================================= */
:root {
  --bg-light-blue: #ceedff;
  --card-bg: #ceedff;
  --text-dark: #1a1a1a;
}



/* new starts cta */

/* =========================================
   CTA CSS STARTS
========================================= */
.cta-banner {
  padding: 35px 0;
  background: #D11E2D; /* Dark navy blue background */
  margin-bottom: 40px;
  width: 100%;
}

.cta-banner > .container-1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Left side text wrapper */
.cta-banner > .container-1200 > div:first-child {
  flex: 1;
}

.cta-banner > .container-1200 > div > h2 {
  color: #ffffff; /* Light blue heading */
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.cta-banner > .container-1200 > div > p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Clock icon */
.cta-banner > .container-1200 > div > p::before {
  content: "⏱";
  font-size: 16px;
  display: inline-block;
}

/* Button styling */
.cta-banner .btn-cta {
   display: inline-block;
    padding: 14px 40px;
    background: #FCDA41;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #FCDA41;
  }

.cta-banner .btn-cta:hover {
   background: transparent;
    color: #D11E2D;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 216, 53, 0.3);}

/* Responsive for mobile */
@media (max-width: 768px) {
  .cta-banner > .container-1200 {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .cta-banner > .container-1200 > div > p {
    justify-content: center;
  }
}
/* ==

/* new end */


/* CTA ENDS */

/* Service Section Styles */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h6 {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Service Card Wrapper */
.service-card-wrapper {
    /* opacity: 0; */
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-card-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card-wrapper a {
    text-decoration: none;
    display: block;
}

/* Service Card */
.service-card {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.service-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

/* Transparent Overlay on Hover */
.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;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 0 20px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1);
}

/* Curved Red Bottom Section */
/* .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: #C41E3A;
    border-radius: 0 0 50% 50% / 0 0 30px 30px;
    z-index: 1;
} */

/* Service Content (Title on Red Background) */
.service-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    padding: 0 15px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Yellow Badge/Tag */
.service-badge {
    display: inline-block;
    background: #FCDA41;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    text-decoration: none;
}

/* View All Services Button */
.view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-block;
    padding: 14px 40px;
    background: #FCDA41;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #FCDA41;
}

.btn-view-all:hover {
       background: transparent;
    color: #D11E2D;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 216, 53, 0.3);

}

/* No Services Message */
.no-services {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    color: #666;
    font-size: 18px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-img-wrapper {
        height: 280px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-img-wrapper {
        height: 260px;
    }

    .service-card::after {
        height: 100px;
    }

    .service-content {
        bottom: 30px;
    }

    .service-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-img-wrapper {
        height: 300px;
    }

    .section-title {
        font-size: 26px;
    }

    .service-card::after {
        height: 110px;
    }

    .service-content {
        bottom: 35px;
    }

    .service-content h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .service-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    .btn-view-all {
        padding: 12px 35px;
        font-size: 14px;
    }
}

/* Animation for cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card-wrapper.visible:nth-child(1) { animation-delay: 0.1s; }
.service-card-wrapper.visible:nth-child(2) { animation-delay: 0.2s; }
.service-card-wrapper.visible:nth-child(3) { animation-delay: 0.3s; }
.service-card-wrapper.visible:nth-child(4) { animation-delay: 0.4s; }
.service-card-wrapper.visible:nth-child(5) { animation-delay: 0.5s; }
.service-card-wrapper.visible:nth-child(6) { animation-delay: 0.6s; }





 







