
/* Breadcrumb Section Styles ==========================================================================================================*/
.breadcrumb-section {
    position: relative;
    background-image: url('https://www.adinfosystem.com/images/custom-sftware-banner.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;
    }
}

/* Software Development Overview Section */
.software-overview {
    padding: 60px 90px;
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
    color: #000;
}

    .software-overview .container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .software-overview h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
        color: #36949e;
        text-align: center;
    }

    .software-overview h3 {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 15px;
        color: #36949e;
    }

    .software-overview p {
        text-align: justify;
        font-size: 1.1rem;
        margin-bottom: 20px;
        line-height: 1.7;
    }

    .software-overview ul,
    .software-overview ol {
        padding-left: 20px;
        margin-bottom: 20px;
    }

        .software-overview ul li,
        .software-overview ol li {
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 10px;
        }

    .software-overview strong {
        color: #36949e;
    }

/* Responsive */
@media (max-width: 768px) {
    .software-overview {
        padding: 40px 20px;
    }

        .software-overview h2 {
            font-size: 1.8rem;
        }

        .software-overview h3 {
            font-size: 1.3rem;
        }

        .software-overview p,
        .software-overview ul li,
        .software-overview ol li {
            font-size: 1rem;
        }
}


/* Software Development Services Section */
.software-services {
    padding: 60px 90px;
    background-color: #ffffff;
}

    .software-services .text-content {
        flex: 1 1 500px;
    }

        .software-services .text-content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #36949e;
        }

        .software-services .text-content p {
            text-align: justify;
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #000;
        }

    .software-services .cta-button {
        display: inline-block;
        background-color: #36949e;
        color: white;
        padding: 12px 25px;
        border-radius: 5px;
        font-weight: 600;
        transition: background-color 0.3s ease;
    }

        .software-services .cta-button:hover {
            background-color: #223044;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .software-services {
        padding: 40px 20px;
        text-align: center;
    }

        .software-services .text-content h1 {
            font-size: 2rem;
        }

        .software-services .text-content p {
            font-size: 1rem;
        }

        .software-services .cta-button {
            padding: 10px 20px;
        }
}
.gallery-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.gallery-title h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #36949e;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

    .image-grid img {
        width: 100%;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

        .image-grid img:hover {
            transform: scale(1.03);
        }
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}
