<style>


.inner-banner {
  position: relative !important;
  min-height: 320px !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  margin-top: 100px; /* optional if your header is fixed */

}

/*.inner-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 15px;
}

.inner-banner .breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}*/



.service-detail-section {
    padding: 60px 0;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: auto;
font-family: "Poppins", Sans-serif;
    font-size: 16px !important;
    color: #000;
}
.turnkey-content h2
{
 margin-top: 20px;
margin-bottom: 20px;
color: #0c4a7d;
}
.service-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT IMAGE */
.service-image {
    flex: 2;
}

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

/* RIGHT SIDEBAR */
.service-sidebar {
    flex: 1;
    border: 1px solid #eee;
    padding: 20px;
}

.service-sidebar h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #0c4a7d;
    font-weight: 600;
}

/* SERVICE LIST */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #555;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
}

.service-list li::before {
    content: "◉";
    position: absolute;
    left: 0;
    color: #f58220;
    font-size: 14px;
}

.service-list li:hover,
.service-list li.active {
    color: #f58220;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .service-wrapper {
        flex-direction: column;
    }
}


.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.process-box {
  background: #f8f8f8;
  padding: 25px;
  border-left: 4px solid #c39b4e;
}
.process-section h2
{
 margin-top: 20px;
margin-bottom: 20px;
color: #0c4a7d;
}
.why-choose1
{
 margin-top: 20px;
color: #0c4a7d;

}
.why-choose1 p
{
 margin-top: 20px;
	
}
.why-choose1 ul {
  list-style: none;
  padding: 0;
 margin-top: 20px;
}

.why-choose1 li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.why-choose1 li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c39b4e;
}
.faq-section {
    margin-top: 40px;
 margin-bottom: 20px;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0c4a7d;
}

/* FAQ ITEM */
.faq-item {
    border: 1px solid #e5e5e5;
    margin-bottom: 12px;
}

/* QUESTION */
.faq-question {
    background: #f7f7f7;
    color: #333;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ACTIVE QUESTION */
.faq-item.active .faq-question {
    background: #f5a14c;
    color: #fff;
}

/* ICON */
.faq-icon {
    font-size: 22px;
    font-weight: bold;
}

/* ANSWER */
.faq-answer {
    display: none;
    padding: 18px 20px;
    background: #ffffff;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* SHOW ANSWER */
.faq-item.active .faq-answer {
    display: block;
}

/* PORTFOLIO SECTION */
.portfolio-section {
  background: #f7f7f7;
  padding: 70px 0;
}

/* TITLE */
.portfolio-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0c4a7d;
  margin-bottom: 50px;
  position: relative;
}

.portfolio-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #f58220;
  display: block;
  margin: 12px auto 0;
}

/* SLIDER WRAPPER */
.portfolio-slider {
  position: relative;
  display: flex;
  align-items: center;
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

/* ITEM */
.portfolio-item {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.portfolio-img {
  width: 100%;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,.15);
}
/* HOVER EFFECT */
.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #f58220;
  cursor: pointer;
  background: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10;
}

.arrow.left {
  left: -60px;
}

.arrow.right {
  right: -60px;
}

.arrow:hover {
  background: #f58220;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .arrow.left {
    left: -20px;
  }

  .arrow.right {
    right: -20px;
  }
}

@media (max-width: 575px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-title {
    font-size: 28px;
  }
}
/* LIGHTBOX */
#lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,.9);
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 85%;
  max-height: 85%;
 z-index: 100000;
}

/* CONTROLS */
#lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

#lightbox .prev,
#lightbox .next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
}

#lightbox .prev { left: 30px; }
#lightbox .next { right: 30px; }

</style>