.banner {
    position: relative;
    width: 100%;
    min-height: 360px; /* Minimum height for desktop */
    height: auto; /* Allows growth on small screens */
    background: url('../img/Screenshot 2026-01-29 115955.png') no-repeat center center;
    background-size: cover; /* Ensures image covers area */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    color: white;
    overflow: hidden;
}

.banner-content {
    max-width: 600px;
}

.banner h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.banner p {
    font-size: 1rem;
    color: #ffc107; /* Yellow color for subtitle */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .banner h1 {
        font-size: 1.8rem;
    }
    .banner p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .banner {
        flex-direction: column; /* Stack content vertically */
        justify-content: center;
        text-align: center;
        padding: 20px 2%;
        min-height: 250px; /* Smaller height on mobile */
    }

    .banner h1 {
        font-size: 1.5rem;
    }

    .banner p {
        font-size: 0.9rem;
    }
}




/* Section */
.service_commitment{
  padding:80px 15px;
  background:#fff;
  font-family:Arial, sans-serif;
}

/* Container */
.service_commitment .container{
  max-width:1100px;
  margin:auto;
}

/* Title */
.service_title{
  text-align:center;
  margin-bottom:40px;
}

.service_title h2{
  font-size:28px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:8px;
}

.service_title p{
  font-size:14px;
  color:#777;
}

.title_line{
  display:block;
  width:60px;
  height:3px;
  background:#1e73be;
  margin:10px auto;
}

/* Content */
.service_content p{
  font-size:16px;
  line-height:1.7;
  color:#444;
  margin-bottom:20px;
}

.service_content h4{
  font-size:18px;
  font-weight:600;
  margin-bottom:15px;
  color:#222;
}

/* List */
.service_content ul{
  padding-left:20px;
}

.service_content ul li{
  font-size:15px;
  line-height:1.7;
  margin-bottom:8px;
  color:#333;
}

/* Tablet Responsive */
@media(max-width:992px){
  .service_title h2{
    font-size:24px;
  }
  .service_content p,
  .service_content ul li{
    font-size:15px;
  }
}

/* Mobile Responsive */
@media(max-width:576px){
  .service_commitment{
    padding:50px 10px;
  }
  .service_title h2{
    font-size:20px;
  }
  .service_content h4{
    font-size:16px;
  }
}
