/* Service Page Layout */
#our-services {
    padding: 50px 5%;
    max-width: 1200px;
    margin: auto;
}

/* Header Section */
.service-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-header h1 {
    font-size: 2.5rem;
    color: #001E3C;
}

.service-header p {
    font-size: 1.2rem;
    color: #61788C;
}

/* Content Layout */
.service-description {
    display: flex;
    min-height: 120px;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

/* Image Styling */
.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 15px;
    height: auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Details Section */
.service-details {
    flex: 1;
    background: #f2f2f2;
    padding: 2rem;
    border-radius: 15px;
}

.service-details h2 {
    font-size: 1.8rem;
    color: #001E3C;
    margin-bottom: 1rem;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details ul li {
    font-size: 1.1rem;
    color: #111C26;
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
}

.service-details ul li::before {
    content: "✔";
    color: #2d89ef;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-description {
        flex-direction: column;
        text-align: center;
    }

    .service-details {
        padding: 1.5rem;
    }

    .service-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .service-header h1 {
        font-size: 1.8rem;
    }

    .service-header p {
        font-size: 1rem;
    }

    .service-details h2 {
        font-size: 1.5rem;
    }

    .service-details ul li {
        font-size: 1rem;
    }
}

.before-after {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #f8f8f8;
}

.before-after-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.image-container {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.image-container img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.image-container .label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #111C26;
  color: #fff;
  padding: 8px 0;
  font-weight: bold;
  text-align: center;
  border-radius: 0 0 8px 8px;
}



/* === Partners Section === */

.partners{
    text-align: center;
}
