﻿
/* Breadcrumb Section Styles ==========================================================================================================*/
.breadcrumb-section {
    position: relative;
    background-image: url('https://d2xws5ah91xfd9.cloudfront.net/content/webinars/touts/152/l.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;
    }
}

/* HIMS Overview Section =========================================================================================================*/
.hims-section,
.hims-services {
    padding: 60px 20px;
    background-color: #f4f9fc;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #000;
}

    .hims-section .container,
    .hims-services .container {
        max-width: 1200px;
        margin:0 auto;
        padding:10px 50px ; 
    }

    .hims-section h2,
    .hims-services h1 {
        text-align: center;
        font-size: 2.5rem;
        color: #007f91;
        margin-bottom: 40px;
    }

    .hims-section h3 {
        font-size: 1.8rem;
        color: #2d7d8c;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .hims-section p,
    .hims-section ul li {
        font-size: 1rem;
        line-height: 1.6;
        color: #000;
    }

    /* List Styling */
    .hims-section ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 30px;
    }

        .hims-section ul li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 10px;
        }

            .hims-section ul li::before {
                content: "✅";
                position: absolute;
                left: 0;
                color: #25a7a0;
            }

            .hims-section ul li ul li {
                font-size: 0.95rem;
                padding-left: 25px;
                margin-bottom: 8px;
            }

                .hims-section ul li ul li::before {
                    content: "🔹";
                    position: absolute;
                    left: 0;
                    color: #555;
                }

    /* HIMS Development Service Section */
    .hims-services .text-content {
        text-align: center;
        padding: 0px 0px;
    }

        .hims-services .text-content h1 {
            font-size: 2.5rem;
            color: #36949e;
            margin-bottom: 20px;
        }

        .hims-services .text-content p {
            text-align: justify;
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #000;
            max-width: 800px;
            margin: 0 auto 30px;
        }

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #007f91;
    color: white;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

    .cta-button:hover {
        background-color: #005f6a;
    }

/* Responsive Styles */
@media (max-width: 768px) {
    .hims-section,
    .hims-services {
        padding: 40px 15px;
    }

        .hims-section h2,
        .hims-services h1 {
            font-size: 2rem;
        }

        .hims-section h3 {
            font-size: 1.5rem;
        }

        .hims-section p,
        .hims-section ul li {
            font-size: 0.95rem;
        }

    .cta-button {
        font-size: 0.95rem;
        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;
}

/* S-CRM Service Section */
.scrm-service {
    padding: 60px 90px;
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
    color: #000;
}

    .scrm-service .container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .scrm-service h2 {
        font-size: 2.4rem;
        margin-bottom: 25px;
        color: #36949e;
        text-align: center;
    }

    .scrm-service h3 {
        font-size: 1.6rem;
        margin-top: 30px;
        margin-bottom: 15px;
        color: #36949e;
    }

    .scrm-service p {
        font-size: 1.1rem;
        text-align: justify;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .scrm-service ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }

        .scrm-service ul li {
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 10px;
        }

    .scrm-service strong {
        color: #223044;
    }

/* Responsive Design */
@media (max-width: 992px) {
    .scrm-service {
        padding: 50px 40px;
    }

        .scrm-service h2 {
            font-size: 2rem;
        }

        .scrm-service h3 {
            font-size: 1.4rem;
        }

        .scrm-service p,
        .scrm-service ul li {
            font-size: 1rem;
        }
}

@media (max-width: 576px) {
    .scrm-service {
        padding: 30px 20px;
    }

        .scrm-service h2 {
            font-size: 1.8rem;
        }

        .scrm-service h3 {
            font-size: 1.2rem;
        }

        .scrm-service p,
        .scrm-service ul li {
            font-size: 0.95rem;
        }
}
/* Download Brochure Button */
.download-brochure {
    text-align: center;
    margin-top: 40px;
}

    .download-brochure .cta-button {
        background-color: #25a7a0;
        color: #fff;
        padding: 12px 25px;
        font-size: 1.05rem;
        /*        margin:0px 10px;*/
        margin-left: -800px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        transition: background-color 0.3s ease;
    }

        .download-brochure .cta-button:hover {
            background-color: #1d837d;
        }

/* Responsive Button */
@media (max-width: 768px) {
    .download-brochure {
        margin-top: 30px;
    }

        .download-brochure .cta-button {
            font-size: 1rem;
            padding: 10px 20px;
        }
}
