/* Banner Section */
.banner-section {
    padding: 30px 0;
}


/* Splide Slider */
#banner-slider {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Banner Slide */
.banner-slide {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Banner Overlay (::before effect) */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.85) 0%, rgba(0, 102, 153, 0.75) 100%);
    z-index: 1;
}

/* Banner Content */
.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 40px 50px;
}

/* Banner Text (Left Side - 60%) */
.banner-text {
    width: 60%;
    color: #fff;
}

.banner-label {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.banner-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
}

.banner-details {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 90%;
}

.banner-btn {
    display: inline-block;
    background: #fff;
    color: #003366;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
}

/* Banner Card (Right Side - 40%) */
.banner-card {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-card img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.banner-card img:hover {
    transform: scale(1.05);
}

/* Splide Arrows */
.splide__arrow {
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    opacity: 0;
    transition: all 0.3s ease;
}

#banner-slider:hover .splide__arrow {
    opacity: 1;
}

.splide__arrow:hover {
    background: #ff6b35;
}

.splide__arrow svg {
    fill: #003366;
    width: 18px;
    height: 18px;
}

.splide__arrow:hover svg {
    fill: #fff;
}

.splide__arrow--prev {
    left: 20px;
}

.splide__arrow--next {
    right: 20px;
}

/* Splide Pagination */
.splide__pagination {
    bottom: 20px;
}

.splide__pagination__page {
    background: rgba(255, 255, 255, 0.5);
    width: 10px;
    height: 10px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.splide__pagination__page.is-active {
    background: #fff;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-slide {
        height: 350px;
    }

    .banner-content {
        padding: 30px 40px;
    }

    .banner-heading {
        font-size: 32px;
    }

    .banner-details {
        font-size: 14px;
    }

    .banner-card img {
        max-height: 260px;
    }
}

@media (max-width: 767px) {
    .banner-slide {
        height: auto;
        min-height: 400px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .banner-text {
        width: 100%;
        margin-bottom: 25px;
    }

    .banner-heading {
        font-size: 28px;
    }

    .banner-details {
        max-width: 100%;
        font-size: 14px;
    }

    .banner-card {
        width: 100%;
    }

    .banner-card img {
        max-height: 240px;
    }

    .splide__arrow {
        width: 35px;
        height: 35px;
    }

    .splide__arrow--prev {
        left: 10px;
    }

    .splide__arrow--next {
        right: 10px;
    }

}

@media (max-width: 480px) {
    .banner-section {
        padding: 15px 0;
    }

    .banner-heading {
        font-size: 24px;
    }

    .banner-label {
        font-size: 11px;
        padding: 5px 12px;
    }

    .banner-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* ========================================
   Custom Signage Section
======================================== */
.custom-signage-section {
    padding: 70px 0;
    
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a3a5c;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 17px;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards Grid - 6 columns for desktop */
.signage-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Individual Card */
.signage-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}


/* Card Image */
.card-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.signage-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 58, 92, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.signage-card:hover .card-overlay {
    opacity: 1;
}

/* Card Content */
.card-content {
    padding: 18px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.card-description {
    font-size: 12px;
    color: #6b7c8d;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.card-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.signage-card:hover .card-btn {
    color: #1a3a5c;
}

.signage-card:hover .card-btn i {
    transform: translateX(5px);
}

/* Responsive Styles for Signage Cards */
@media (max-width: 1200px) {
    .signage-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1000px) {
    .signage-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 800px) {
    .signage-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .custom-signage-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 650px) {
    .signage-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .section-label {
        font-size: 11px;
        padding: 6px 16px;
    }

    .card-image {
        height: 120px;
    }

    .card-content {
        padding: 15px 12px;
    }

    .card-title {
        font-size: 13px;
    }

    .card-description {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    /* .signage-cards-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    } */

    .custom-signage-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .card-image {
        height: 160px;
    }
}

/* ========================================
   Before & After Section
======================================== */
.before-after-section {
    padding: 70px 0;
    background: #1a3a5c;
}

.before-after-section .section-header {
    margin-bottom: 40px;
}

.before-after-section .section-label {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
}

.before-after-section .section-title {
    color: #fff;
}

.before-after-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Gallery Grid */
.before-after-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 340px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 5px;
}

.gallery-item img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.overlay-text {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* See More Button */
.see-more-wrapper {
    text-align: center;
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.see-more-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.see-more-btn:hover i {
    transform: translateX(5px);
}


@media (max-width: 600px) {
    .before-after-section {
        padding: 50px 0;
    }

    .before-after-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    

    .gallery-item {
        border-radius: 12px;
        height: 180px;
    }

    .overlay-text {
        font-size: 13px;
    }

    .see-more-btn {
        padding: 14px 30px;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .overlay-text {
        font-size: 11px;
    }
}

/* ========================================
   Portfolio Sections (Images & Videos)
======================================== */
.portfolio-section {
    padding: 70px 0;
}

.portfolio-images {
    background: #fff;
}

.portfolio-videos {
    background: #1a3a5c;
}

.portfolio-videos .section-title {
    color: #fff;
}

.portfolio-videos .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.portfolio-image-grid{
    grid-template-columns: repeat(4, 1fr);
}

/* Portfolio Image Items */
.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, rgba(26, 58, 92, 0.95) 0%, rgba(26, 58, 92, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Video Items */
.video-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* See More Dark Variant */
.see-more-btn.see-more-dark {
    border-color: #1a3a5c;
    color: #1a3a5c;
}

.see-more-btn.see-more-dark:hover {
    background: #1a3a5c;
    color: #fff;
    box-shadow: 0 10px 30px rgba(26, 58, 92, 0.3);
}

/* Responsive */
@media (max-width: 1000px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .portfolio-section {
        padding: 50px 0;
    }

    .portfolio-grid {
        gap: 15px;
    }

    .portfolio-item,
    .video-item {
        border-radius: 12px;
    }

    .portfolio-overlay {
        padding: 15px;
    }

    .portfolio-overlay h4 {
        font-size: 15px;
    }

    .portfolio-overlay p {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .portfolio-grid {
        gap: 10px;
    }

    .portfolio-overlay h4 {
        font-size: 13px;
    }

    .portfolio-overlay p {
        font-size: 11px;
    }
}

/* ========================================
   Combined Info Section (Company Profile + Services)
======================================== */
.combined-info-section {
    padding: 60px 0;
    background: #e8f4fc;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.info-card {
    background: #c5dff0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

/* Services Card */
.info-card.services-card {
    padding: 30px;
}

.card-header-custom h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a3a5c;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.card-header-custom p {
    font-size: 17px;
    color: #1a3a5c;
    margin-bottom: 20px;
}

.services-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.services-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.services-list h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 18px;
}

.services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.services-list li i {
    color: #1a3a5c;
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 14px;
}

/* Company Card */
.info-card.company-card {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.company-images-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.company-images-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.company-images-grid img:hover {
    transform: scale(1.03);
}


.owner-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.owner-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1a3a5c;
    flex-shrink: 0;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-info span {
    font-size: 14px;
    color: #666;
}

.owner-info h5 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a5c;
    margin: 0;
}

.company-logo-section {
    text-align: center;
    margin-top: auto;
}

.company-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.company-address p {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.7;
}

.company-contact {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.company-contact p {
    font-size: 15px;
    color: #1a3a5c;
    margin: 5px 0;
}

.company-contact p strong {
    color: #003366;
    font-size: 16px;
}

/* Signage Card */
.info-card.signage-card {
    padding: 25px;
    background: linear-gradient(180deg, #1a3a5c 0%, #2d5a80 100%);
    color: #fff;
}

.signage-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-logo img {
    max-width: 120px;
    filter: brightness(0) invert(1);
    margin-bottom: 5px;
}

.header-logo span {
    display: block;
    font-size: 12px;
    color: #ff6b35;
}

.header-address p {
    font-size: 13px;
    margin: 0;
    text-align: right;
    opacity: 0.9;
}

.signage-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.signage-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.signage-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}


.signage-contact {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.contact-phones p {
    font-size: 18px;
    margin: 5px 0;
}

.contact-phones p strong {
    color: #fff;
}

.contact-details {
    margin: 15px 0;
}

.contact-details p {
    font-size: 15px;
    margin: 5px 0;
    opacity: 0.9;
}

.social-handles {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-handles span {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-handles i {
    font-size: 16px;
}

/* Combined Info Section Responsive */
@media (max-width: 991px) {
    .combined-info-section {
        padding: 40px 0;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .signage-title {
        font-size: 26px;
    }

    .card-header-custom h2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .card-header-custom h2 {
        font-size: 22px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .card-header-custom p {
        font-size: 15px;
    }

    .services-list li {
        font-size: 14px;
    }

    .services-list h4 {
        font-size: 18px;
    }

    .signage-header {
        flex-direction: column;
        gap: 10px;
    }

    .header-address {
        text-align: left;
    }

    .header-address p {
        text-align: left;
    }

    .social-handles {
        flex-direction: column;
        gap: 10px;
    }

    .signage-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .combined-info-section {
        padding: 30px 0;
    }

    .info-card {
        padding: 20px;
    }

    .signage-title {
        font-size: 20px;
    }

    .signage-gallery img {
        height: 200px;
    }

    .company-images-grid img {
        height: 200px;
    }

    .orange-title {
        font-size: 18px;
    }

    .key-points-image img,
    .working-image img,
    .overview-image img {
        height: 240px;
    }

    .working-gallery img,
    .overview-gallery img {
        height: 240px;
    }
}

/* Orange Card Styles */
.info-card.key-points-card,
.info-card.working-card,
.info-card.overview-card {
    background: #fff;
    padding: 30px;
}

.orange-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.3;
}

.orange-subtitle {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 25px 0 15px;
    text-transform: uppercase;
    line-height: 1.3;
}

.orange-text {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Key Points Card (Left) */
.key-points-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.key-points-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.key-points-list li i {
    color: #ff6b35;
    font-size: 14px;
}

.key-points-image {
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.key-points-image img {
    border-radius: 10px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Working Card (Middle) */
.working-image {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.working-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.working-gallery {
    margin-top: 20px;
}

.working-gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Overview Card (Right) */
.overview-image {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.overview-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.overview-gallery {
    margin-top: 20px;
}

.overview-gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for specific card types */
@media (max-width: 991px) {
    .orange-title {
        font-size: 22px;
    }

    .orange-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .orange-title {
        font-size: 20px;
    }

    .orange-subtitle {
        font-size: 16px;
    }

    .key-points-list li {
        font-size: 13px;
    }

    .orange-text {
        font-size: 14px;
    }

    .working-gallery img,
    .overview-gallery img {
        height: 220px;
    }
}
