@media (max-width: 768px) {
    .breadcrumbs {
        padding: 10px;
        height: 160px !important;
    }
    .work-process-bottom > h2 {
        font-size: 1.8em !important;
        margin-bottom: 20px;
    }
}

.about-bg {
    background-image: url('../images/about-bg.jpg') !important;
}
.service-bg {
    background-image: url('../images/services-bg.jpg') !important;
}
.contact-bg {
    background-image: url('../images/contact-bg.png') !important;
}
.default-bg {
    background-image: url('../images/default.png') !important;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background-image: url('../images/image018-2.jpg');
    background-size: cover;
    background-position: center;
    height: 250px;
    padding: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.breadcrumbs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f101d;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}
.breadcrumbs  > h1 {
    z-index: 2;
    font-size: 3.5em;
    margin: auto 0;
    text-align: center;
    letter-spacing: 0.1em;
}

.divider-line {
    display: block;
    border: 2px solid #f9a825;
    height: 2px;
    width: 100%;
    margin: 0 auto;
}
.work-process-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.work-process-bottom > h2 {
    font-size: 2.5em;
    margin: 0 0 20px 0;
}
.work-process-steps {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    margin: 40px auto;
    gap: 30px;
}

.process-step {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 3em;
    color: #111c55;
}

.step-number {
    background: #f9a825;
    color: #111c55;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
    position: absolute;
    bottom: -10px;
    right: -10px;
    z-index: 2;
}

.step-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #111c55;
    margin-top: 10px;
}

.process-arrow {
    color: #111c55;
    font-size: 1.5em;
    margin: 0 10px;
}

.process-arrow i {
    border: 2px dashed #111c55;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

@media (max-width: 768px) {
    .work-process-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-arrow {
        order: 1;
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .process-step {
        min-width: 250px;
        order: 0;
    }
    
    /* Move arrows to appear after each step on mobile */
    .work-process-steps .process-step:nth-child(1) {
        order: 1;
    }
    
    .work-process-steps .process-arrow:nth-child(2) {
        order: 2;
    }
    
    .work-process-steps .process-step:nth-child(3) {
        order: 3;
    }
    
    .work-process-steps .process-arrow:nth-child(4) {
        order: 4;
    }
    
    .work-process-steps .process-step:nth-child(5) {
        order: 5;
    }
}

/* Service Portfolio Cards - Equal Height */
.service-protfolio-type .row {
    display: flex;
    flex-wrap: wrap;
}

.service-protfolio-type .column-in {
    display: flex;
    margin-bottom: 30px;
}

.service-protfolio-type .service-protfolio-outer {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.service-protfolio-type .service-protfolio-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
}

.service-protfolio-type .content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-protfolio-type .description {
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-protfolio-type .description p {
    margin-bottom: 0;
}

.service-protfolio-type a {
    margin-top: auto;
}

@media (max-width: 768px) {
    .service-protfolio-type .service-protfolio-inner {
        min-height: 200px;
    }
}

.news-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* allow wrapping on small screens */
  }

  .news-section > div {
    flex: 1;
    min-width: 280px; /* prevents shrinking too much */
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
  }

  .news-section > div:hover {
    transform: translateY(-5px);
  }

  .news-section h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .news-section p {
    font-size: 14px;
    color: #555;
  }

  /* Responsive for very small screens */
  @media (max-width: 600px) {
    .news-section {
      flex-direction: column;
    }
  }

/* Read More/Less Button Styles */
.read-more-btn {
    background: #f9a825;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-block;
}

.read-more-btn:hover {
    background: #e6951e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(249, 168, 37, 0.3);
}

.read-more-btn.active {
    background: #d6891a;
}

/* Content transition styles */
.short-content, .full-content {
    transition: opacity 0.3s ease;
}

.short-content {
    opacity: 1;
}

.full-content {
    opacity: 1;
}

/* News item styles */
.news-item {
    margin-bottom: 20px;
    padding: 15px;
    /* border: 1px solid #e0e0e0; */
    border-radius: 8px;
    /* background: #fafafa; */
}

.blog-content h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.blog-content p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.short-content, .full-content {
    animation: fadeIn 0.3s ease-in-out;
}

.quick-links-list {
    list-style: none;
    padding: 0;
    padding-top: 15px;
}

.quick-links-list li {
    margin-bottom: 10px;
}

.quick-links-list li a {
    text-decoration: none;
    color: #333;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.quick-links-list li a:hover {
    color: #007bff;
}

.quick-links-list li a::before {
    content: "→";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #007bff;
}

.quick-links-list li a:hover::before {
    opacity: 1;
    left: -5px;
}