/* Technology Page Styles */
.technology {
    background-color: var(--color8);
    padding: 60px 0 80px;
}

.technologyheading h2 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 48px;
    margin-top: 20px;
    color: var(--bs-heading-color);
}


.image-container {
    background-color: white;
    padding: 10px;
    border-radius: 8px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content h5 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.content h6 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

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

.content ul li {
    font-size: 1rem;
    line-height: 1.5;
}

.content p {
    font-size: 1rem;
    line-height: 1.5;
}

.breadcrumb-cta {
    background-color: #fff !important;
    color: #4b4b4b !important;
    border-color: #fff !important;
    transition: all 0.3s ease;
}

.breadcrumb-cta:hover {
    background-color: #f7d61c !important; /* Yellow */
    border-color: #f7d61c !important;
    color: #000 !important;
}

.row1 {
    background-color: var(--color3);
    color: white;
    border-radius: 15px;
    padding: 50px;
}

.row2 {
    background-color: #FAF6E1;
    color: var(--bs-heading-color);
    border-radius: 15px;
    padding: 50px;
}

/* Extra Small (xs) - <576px (For phones in portrait view) */
@media (max-width: 575px) {
    .technology {
        padding: 20px 0 40px;
    }

    .technologyheading h2 {
        font-size: 26px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .content h5 {
        font-size: 1.2rem;
        padding-top: 10px;
    }

    .content p {
        font-size: 0.85rem;
    }

    .row1, .row2 {
        padding: 20px;
        border-radius: 0;
    }
}

/* Small (sm) - ≥576px to <768px (For small tablets and large phones) */
@media (min-width: 576px) and (max-width: 767px) {
    .technologyheading h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .content h5 {
        font-size: 1.2rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    .row1, .row2 {
        padding: 30px;
    }
}

/* Medium (md) - ≥768px to <992px (For tablets in landscape view) */
@media (min-width: 768px) and (max-width: 991px) {
    .technologyheading h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .content h5 {
        font-size: 1.3rem;
    }

    .content p {
        font-size: 1rem;
    }

    .row1, .row2 {
        padding: 20px 40px;
    }
}

/* Large (lg) - ≥992px to <1200px (For laptops and desktops) */
@media (min-width: 992px) and (max-width: 1199px) {
    .technologyheading h2 {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .content h5 {
        font-size: 1.4rem;
    }

    .content p {
        font-size: 1rem;
    }

    .row1, .row2 {
        padding: 45px;
    }
}

/* Extra Large (xl) - ≥1200px (For large desktops and high-res screens) */
@media (min-width: 1200px) {
    .technologyheading h2 {
        font-size: 40px;
    }

    .content h5 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 1rem;
    }

    .row1, .row2 {
        padding: 50px;
    }
}