:root {
  --primary-blue: #0a2540;
  --accent-gold: #d4af37;
  --bg-white: #ffffff;
  --bg-light: #f8f9fc;
  --text-muted: #555555;
}

.services-list-section {
  padding: 90px 0;
  background-color: var(--bg-white);
}

/* Zig-Zag Row Layout */
.service-row {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  transition: all 0.4s ease;
}

.service-row:hover {
  box-shadow: 0 15px 40px rgba(10, 37, 64, 0.08);
  transform: translateY(-5px);
}

/* Even rows (2, 4, 6) ko reverse karne ke liye */
.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-img-col {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  height: 400px;
  overflow: hidden;
}

.service-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-row:hover .service-img-col img {
  transform: scale(1.08);
}

/* Gold Accent overlay line */
.service-img-col::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--accent-gold);
}

.service-row:nth-child(odd) .service-img-col::after {
  right: 0;
}
.service-row:nth-child(even) .service-img-col::after {
  left: 0;
}

.service-content-col {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 50px;
}

.service-title a{
  color: var(--primary-blue);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-service-outline {
  display: inline-block;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-service-outline:hover {
  background: var(--primary-blue);
  color: var(--bg-white);
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.2);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .service-row,
  .service-row:nth-child(even) {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .service-img-col,
  .service-content-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .service-img-col {
    height: 250px;
  }
  .service-img-col::after {
    display: none;
  }
  .service-content-col {
    padding: 30px 20px;
    text-align: center;
  }
}

/* ========================
    SERVICES PAGE STYLING
==================================*/

.service-detail-section {
  padding: 90px 0;
  background-color: #ffffff;
}

/* Left Side Content */
.service-main-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-content-body {
  color: #555555;
  font-size: 1.1rem;
  line-height: 1.9;
}

/* Formatting HTML content coming from DB[cite: 2] */
.service-content-body h2,
.service-content-body h3 {
  color: #0a2540;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}
.service-content-body ul {
  margin-bottom: 25px;
  padding-left: 20px;
}
.service-content-body li {
  margin-bottom: 10px;
  position: relative;
}

/* Right Side Sticky Widget */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.widget-box {
  background: #f8f9fc;
  padding: 35px;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 30px;
}

.widget-title {
  color: #0a2540;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 10px;
  display: inline-block;
}

/* Contact Info Widget */
.widget-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #555;
  font-size: 1.05rem;
}
.widget-contact-list i {
  background: #0a2540;
  color: #d4af37;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

/* Inquiry Form Widget */
.widget-form .form-control {
  border: 1px solid #ddd;
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 15px;
  background: #fff;
}
.widget-form .form-control:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}
.btn-widget-submit {
  background: #0a2540;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-widget-submit:hover {
  background: #d4af37;
  color: #0a2540;
}

@media (max-width: 991px) {
  .service-sidebar {
    position: static;
    margin-top: 50px;
  }
}
