/* Banner Section */
.banner-section {
    padding: 120px 0;
}

/* About Us / Case Study Banner */
.sb-banner.aboutus-page {
    position: relative;
    background-color: #a09c9cab;
}

/* Text Wrapper */
.sb-banner-text {
    padding: 20px 0;
}


.breadcrum li{
    color: #6c757d;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.breadcrum li + li:before{
    content: "›";
    margin: 0 8px;
    color: #adb5bd;
    font-size: 14px;
}

.breadcrum a{
    color: #007bff;
    text-decoration: none;
}
.breadcrum a:hover{
    color: #0056b3;
    text-decoration: underline;
}

.breadcrum .test-dark a,
.breadcrum .test-dark a span{
    color: #343a40;
    font-weight: 600;
}

.breadcrum .text-dark span{
    color: #6c757d;
    font-weight: 500;
}

  /* Card styling */
  .card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  /* Image styling */
  .card-img-top {
    height: 160px;        
    object-fit: cover;  
    border-radius: 6px 6px 0 0;
  }

  /* Badge styling */
  .badge {
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 20px;
  }

  /* Card title */
  .card-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    min-height: 50px;
  }

  /* Read more link */
  .btn-link {
    font-weight: 500;
    text-decoration: none;
  }

  .btn-link:hover {
    text-decoration: underline;
  }

  /* Load More button */
  .btn-danger {
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
  }



  /* --- Our Features Section --- */
.our-features {
    background-color: #f9f9f9;
    padding: 60px 0;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.our-features h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
    position: relative;
}

.our-features h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ff4c60; /* Accent color */
    margin: 10px auto 0;
    border-radius: 2px;
}

.services-block-three {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.services-block-three:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.12);
}

.services-block-three img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.services-block-three img:hover {
    transform: scale(1.1);
}

.services-block-three h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.services-block-three p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    flex-grow: 1;
}

/* --- Responsive Design --- */
@media (max-width: 991px) {
    .services-block-three {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .our-features h2 {
        font-size: 28px;
    }

    .services-block-three img {
        width: 60px;
        height: 60px;
    }

    .services-block-three h4 {
        font-size: 18px;
    }

    .services-block-three p {
        font-size: 13px;
    }
}

/* Project CTA section */
.project-section{ background-color: #fff; }
.project-hero{
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
}
.project-title{ font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.project-section .lead{ color: #333; max-width: 520px; }
.contact-box{
    background: linear-gradient(180deg,#0b0b0b 0%, #1b1b1b 100%);
    color: #fff;
    border-radius: 4px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact-box i{ color: #cfcfcf; }
.contact-box div{ font-size: 14px; letter-spacing: 0.6px; font-weight:600; }

@media (max-width: 767.98px){
    .project-hero{ height: 260px; }
    .project-title{ font-size: 28px; }
    .contact-box{ min-height: 90px; }
}






