
/* Breadcrumb Section Styles ==========================================================================================================*/
.breadcrumb-section {
    position: relative;
    background-image: url('https://www.jadeglobal.com/sites/default/files/2022-09/9-ways-to-improve-UI-in-Web-Development.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Overlay */
.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

/* Content */
.breadcrumb-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
}

    .breadcrumb-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

.breadcrumb-nav {
    font-size: 0.95rem;
}

    .breadcrumb-nav a {
        color: #fff;
        text-decoration: none;
        margin: 0 5px;
    }

    .breadcrumb-nav span {
        margin: 0 5px;
    }

/* Breadcrum Responsive Styles */
@media (min-width: 576px) {
    .breadcrumb-section {
        height: 150px;
    }

    .breadcrumb-content h1 {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .breadcrumb-section {
        height: 200px;
    }

    .breadcrumb-content h1 {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .breadcrumb-section {
        height: 300px;
    }
}

@media (min-width: 1200px) {
    .breadcrumb-content h1 {
        font-size: 3.5rem;
    }
}

/* Website Development Services ============================================================================================================*/
/* General */
.container {
    max-width: 1200px;
    margin: 0 auto;
/*    padding: 0 px;*/
}

/* Web Dev Overview Section */
.web-dev-overview {
    background: #eef9fb;
    padding: 50px 20px;
    text-align: left;
    color: #333;
}

    .web-dev-overview h2 {
        font-size: 2.5rem;
        color: #36949e;
        margin-bottom: 20px;
        text-align: center;
    }

    .web-dev-overview h3 {
        font-size: 1.6rem;
        color: #2a7c83;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .web-dev-overview h4 {
        font-size: 1.2rem;
        margin-top: 20px;
        color: #333;
    }

.core-areas .area {
    margin-bottom: 25px;
}

.web-dev-overview ul {
    padding-left: 20px;
    margin-top: 10px;
}

.key-aspects, .service-examples {
    list-style-type: disc;
    padding-left: 40px;
}

/* Retained styling from your previous code below */

/* Web Dev Services */
.web-dev-services {
    background: #f7fdfd;
    padding: 40px 20px;
    text-align: center;
}

    .web-dev-services h2 {
        font-size: 2.5rem;
        color: rgb(54, 148, 158);
        margin-bottom: 20px;
    }

    .web-dev-services p {
        font-size: 1.1rem;
        color: #000;
        margin-bottom: 20px;
    }

    .web-dev-services ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        max-width: 600px;
        text-align: left;
    }

        .web-dev-services ul li {
            background: #e6f5f5;
            margin: 8px 0;
            padding: 10px 15px;
            border-radius: 6px;
            color: #000;
            font-weight: 500;
        }

/* Gallery Section */
.web-gallery {
    padding: 30px 20px;
    background: #fff;
    text-align: center;
}

    .web-gallery h2 {
        font-size: 2.5rem;
        color: rgb(54, 148, 158);
        margin-bottom: 40px;
    }

.gallery {
    display: flex;
/*    flex-wrap: wrap;*/
    gap: 30px;
/*    justify-content: center;*/
}

    .gallery img {
        width: 300px;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

        .gallery img:hover {
            transform: scale(1.05);
        }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .close:hover {
        color: #000;
    }
