#page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left;
    margin-top: 85px;
    padding-top: 30px;
    color: #fff;
}

#page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(66, 87, 136, 0.8);
}

#page-banner .container {
    position: relative;
    z-index: 1;
}

#page-banner h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
}

#page-banner .breadcrumb {
    background: transparent;
    /* display: inline-block; */
    padding: 8px 15px;
    border-radius: 5px;
}

#page-banner .breadcrumb-item a {
    color: #f8f9fa;
    text-decoration: none;
}

#page-banner .breadcrumb-item.active {
    color: #ffc107;
}

#page-banner .breadcrumb-item.active:hover {
    color: #5452e1;
}

#page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

/* web dev */
.about-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    /* Clean and light background */
}

.text-content .title {
    font-size: 30px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.text-content .description {
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 20px;
}

button a {
    text-decoration: none;
    color: #fff;
}

button {
    padding: 10px 20px;
    background-color: #4267b2;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
    /* Darker shade for hover effect */
}


.image-container img {
    width: 100%;
    height: auto;
    /* display: block; */
}

.row {
    display: flex;
    align-items: center;
    /* gap: 20px;  */
}


@media (max-width: 768px) {
    .row {
        flex-direction: column;
        /* Stack items on small screens */
    }

    .text-content,
    .image-container {
        order: unset;
        /* Reset order for better mobile experience */
    }
}

.services {
    padding: 60px 20px;
    /* background-color: #f8f9fa; */
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-titles {
    font-size: 36px;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #4267b2;
    margin: 10px auto 0;
    border-radius: 4px;
}

.section-header p {
    text-align: center;
    margin: auto;
    font-size: 18px;
    padding-bottom: 60px;
    color: #556877;
    width: 100%;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-top: 10px;
}

.service-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.service-category {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 40px;
    color: #4267b2;
    margin-bottom: 15px;
}

.service-category h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-category ul {
    list-style: none;
    padding: 0;
    text-align: left;
    color: #6c757d;
    font-size: 16px;
    line-height: 1.8;
}

.service-category ul li strong {
    color: #2c3e50;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-category {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
    transition: transform 0.3s ease;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0.5);
    }
}

.service-category:hover {
    transform: translateY(-5px);
    /* Slightly lift on hover */
}