.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;
  }
}










/* Section spacing */
.con_latest_news_area_two {
    padding: 80px 0;
    background: #f8fafc;
}

/* FIX GRID + GAP (IMPORTANT) */
.con_latest_news_area_two .row{
    display: flex;
    flex-wrap: wrap;
    gap: 24px; /* 🔥 MAIN GAP (row + column) */
}

/* Desktop – 3 show */
.con_latest_news_area_two .col-lg-4{
    flex: 0 0 calc(33.3333% - 16px);
    max-width: calc(33.3333% - 16px);
}

/* Section title */
.section_title {
    margin-bottom: 50px;
}

.section_title .con_title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.section_title .con_p {
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

/* Card */
.latest_blog_item_two {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    height: 100%;
}

.latest_blog_item_two:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Video */
.latest_blog_item_two video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: #000;
}

/* Content */
.latest_blog_item_two .content {
    padding: 15px 18px;
}

.latest_blog_item_two .post_meta {
    margin: 0;
}

.latest_blog_item_two .post_meta li a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    line-height: 1.4;
}

.latest_blog_item_two .post_meta li a i {
    margin-right: 8px;
    color: #2563eb;
}

/* Hover text */
.latest_blog_item_two:hover .post_meta li a {
    color: #2563eb;
}

/* Large Desktop */
@media (min-width: 1200px) {
    .latest_blog_item_two video {
        height: 240px;
    }
}

/* Tablet – 2 show */
@media (max-width: 991px) {
    .con_latest_news_area_two .col-lg-4{
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .section_title .con_title {
        font-size: 30px;
    }

    .latest_blog_item_two video {
        height: 200px;
    }
}

/* Mobile – 1 show */
@media (max-width: 576px) {
    .con_latest_news_area_two {
        padding: 50px 0;
    }

    .con_latest_news_area_two .row{
        gap: 20px;
    }

    .con_latest_news_area_two .col-lg-4{
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section_title .con_title {
        font-size: 24px;
    }

    .latest_blog_item_two video {
        height: 190px;
    }

    .latest_blog_item_two .content {
        padding: 14px;
    }

    .latest_blog_item_two .post_meta li a {
        font-size: 13px;
        text-align: center;
    }
}

