* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.slideshow-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

    .slide:first-child {
        opacity: 1;
        z-index: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(50%);
    }

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 5%;
}

    .banner-text img {
        max-width: 35%;
        height: auto;
        padding-bottom: 10px;
        filter: brightness(100%);
    }

    .banner-text h1 {
        font-size: clamp(1.5em, 5vw, 3em);
        font-weight: bold;
    }

@media (max-width: 768px) {
    .banner-text img {
        max-width: 60%;
    }
}

.Abouttext {
    padding-top: 2%;
    padding-right: 5%;
    padding-left: 5%;
    padding-bottom: 2%;
    border-bottom: solid 1px;
    max-width: 100%;
}





    .Abouttext h2 {
        text-align: center;
        font-size: clamp(3em, 5vw, 3em);
        color: #0056b3;
    }

    .Abouttext p {
        max-width: 70%;
        margin: 0 auto;
        text-align: center;
        font-size: 1.3em;
        color: #444;
        line-height: 1.6;
    }

    .Abouttext li {
        max-width: 70%;
        margin: 0 auto;
        text-align: start;
        font-size: 1.3em;
        color: #444;
        line-height: 1.6;
    }

@media (max-width: 768px) {
    .Abouttext {
        padding: 10px 10px;
    }

        .Abouttext p {
            max-width: 90%;
            margin: 0 auto;
            text-align: start;
            font-size: 1.3em;
            color: #444;
            line-height: 1.6;
        }

        .Abouttext li {
            max-width: 90%;
            margin: 0 auto;
            text-align: center;
            font-size: 1.3em;
            color: #444;
            line-height: 1.6;
        }
}

.services-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.imag-container img {
    width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.services-section {
    flex: 1;
    display: flex;
    flex-direction: column; 
    align-items: center; 
}

    .services-section h2 {
        font-size: 3em;
        margin-bottom: 20px;
        color: #0056b3;
    }
    .services-section h3 {
        font-size: 3em;
        margin-bottom: 20px;
        color: #0056b3;
    }
    .services-section p {
        font-size: 1.2em;
        margin-bottom: 20px;
        color: #0056b3;
    }

.sitem {
    width: 100%; 
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    justify-content: center; 
}

    .service-item:last-child {
        border-bottom: none;
    }

.service-text {
    text-align: center;
    width: 100%;
}

.service-item img {
    width: 50px;
    height: 50px;
}

.service-text h3 {
    font-size: 1.125em;
    margin-bottom: 5px;
    color: #0056b3;
    text-align: center;
}

.service-text p {
    font-size: 0.875em;
    color: #555;
}

@media (max-width: 900px) {
    .services-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .image-container img {
        width: 100%;
        max-width: 450px;
    }
}

.Contacttext {
    padding-top: 2%;
    padding-left: 2%;
    padding-bottom: 2%;
    text-align: center;
    background-color: #005bb5;
    color: white;
}

.contact-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0073e6;
    color: white;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
}

    .contact-button:hover {
        background-color: rgb(41, 41, 251);
    }

.Certificationtext h2 {
    text-align: center;
    font-size: 2em;
}

.certifications-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.cert-box {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

    .cert-box:hover {
        transform: translateY(-5px);
    }

    .cert-box img {
        max-width: 100px;
        height: auto;
        margin-bottom: 15px;
    }

    .cert-box h3 {
        font-size: 1.125em;
        font-weight: bold;
        margin-bottom: 8px;
    }

        .cert-box h3 a {
            text-decoration: none;
            color: #0056b3;
        }

            .cert-box h3 a:hover {
                text-decoration: underline;
            }

    .cert-box p {
        font-size: 0.875em;
        color: #555;
    }

@media (max-width: 1024px) {
    .certifications-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .certifications-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.clientcontainer {
    text-align: center;
    align-items: center;
}

.client-options {
    text-align: center;
    margin-top: 20px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.option {
    padding: 10px 20px;
    font-size: 1em;
    border: 2px solid #007BFF;
    background: white;
    color: #007BFF;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

    .option:hover,
    .option.active {
        background: #007BFF;
        color: white;
    }

.client-images-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.client-images {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    max-width: 80%;
    justify-content: center;
}

    .client-images img {
        width: 100%;
        height: auto;
        max-width: 150px;
        aspect-ratio: 1/1;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

@media (max-width: 1024px) {
    .client-images {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .client-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 1.8em;
}

p {
    font-size: 1.1em;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 20px;
    color: #044c8c;
    border-bottom-style: solid;
    border-color: slategrey;
    border-width: 5px;
    font-family: sans-serif;
    padding: 2%;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    display: flex;
    align-items: center;
}

    .logo img {
        height: 20%;
        width: 20%;
        padding-right: 5%;
    }

/* Desktop Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

    .nav-links li {
        margin: 0 15px;
    }

    .nav-links a {
        color: darkslategray;
        text-decoration: none;
        font-size: 1.5em;
    }

        .nav-links a:hover {
            color: #00bcd4;
            text-decoration: underline;
            text-decoration-color: #00bcd4;
            text-decoration-thickness: 2px;
        }

.button {
    background-color: #007bff;
    color: white !important;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    font-size: 1em;
}

    .button:hover {
        background-color: #0056b3;
    }

/* Hamburger Button (Hidden on Desktop) */
.menu-toggle {
    display: none;
    font-size: 1.75em;
    background: none;
    border: none;
    cursor: pointer;
    color: black;
}

/* Sidebar (Hidden by Default) */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #333;
    padding: 20px;
    transition: 0.3s ease-in-out;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    z-index: 1000;
}

    .sidebar.active {
        left: 0;
    }

.close-btn {
    background: none;
    border: none;
    font-size: 1.5em;
    color: white;
    cursor: pointer;
    margin-bottom: 20px;
}

.sidebar-links {
    list-style: none;
    display: block;
}

    .sidebar-links li {
        margin: 15px 0;
    }

    .sidebar-links a {
        color: white;
        text-decoration: none;
        font-size: 1.125em;
    }

        .sidebar-links a:hover {
            color: #00bcd4;
        }

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}


/* footer */
.footer {
    background-color: #001a55;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    display: flex; 
    align-items: center; 
}

    .footer-logo img {
        height: 50px; 
        width: auto;
        margin-right: 10px; 
    }

.logo-text {
    text-align: left;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
}

    .footer-contact p {
        margin: 5px 0;
    }


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-nav {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

    .footer-nav a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        transition: 0.3s;
    }

        .footer-nav a:hover {
            color: #00bcd4;
        }

.footer-social {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

    .footer-social a {
        color: white;
        font-size: 20px;
        transition: 0.3s;
    }

        .footer-social a:hover {
            color: #00bcd4;
        }

.footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444;
    font-size: 14px;
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav, .footer-contact {
        margin-top: 15px;
    }

    .footer-logo, .footer-contact {
        text-align: center;
    }
}

/* Service */
.services-hero-section {
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #001a55;
    color: white;
    padding: 0;
    max-height: auto;
}

    .services-hero-section .services-image {
        flex: 1;
        background: url('/Images/Servicemain.jpg') center/cover no-repeat;
        aspect-ratio: 16/9;
    }

    .services-hero-section .services-text {
        flex: 1;
        padding: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 600px;
    }

@media (max-width: 1024px) {
    .services-hero-section {
        flex-direction: column;
        height: auto;
    }

        .services-hero-section .services-image {
            height: 300px;
            flex: none;
            width: 100%;
        }

        .services-hero-section .services-text {
            padding: 40px;
            text-align: center;
            max-width: 100%;
        }
}

.container {
    display: flex;
    max-width: 100%;
    width: 100%;
    padding-top: 20px;
}

.Servicelist {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 20px 0;
    gap: 20px; 
}

    .Servicelist li {
        cursor: pointer;
        
        display: inline-block; 
        padding: 5px 10px;
        color: #333;
        border-bottom: 2px solid transparent;
        transition: border-color 0.3s, color 0.3s;
        font-size: 1.5em;
        font-weight: bold;
        color: #0056b3;
    }

        .Servicelist li:hover {
            border-bottom-color: #007bff;
            color: #007bff;
        }


        .Servicelist li.active {
            border-bottom-color: #007bff;
            color: #007bff;
        }


@media (max-width: 600px) {
    .Servicelist {
        flex-direction: column;
        align-items: center;
    }

        .Servicelist li {
            width: 90%; 
            padding: 10px 15px;
            font-size: 1.2em;
            text-align: center;
        }
}

.service-block {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 20px;
    background-color: #fff;
    max-height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-title {
    width: 83%;
    margin: 20px auto;
    text-align: left; 
}

.service-box {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 20px auto;
    width: 85%;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-title {
        font-size: 1.8em;
        width: 93%;
    }

    .service-box {
        width: 90%;
        padding: 18px;
    }

    .service-block {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.6em;
    }

    .service-box {
        width: 95%;
        padding: 15px;
    }

    .service-block {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.4em;
    }

    .service-box {
        width: 100%;
        padding: 10px;
        margin: 10px auto;
    }

    .service-block {
        padding: 10px;
    }
}

.inline-line {
    align-items: flex-start; 
    gap: 10px;
    font-size: 2.4vmin; 
}

    .inline-line ul {
        margin: 0;
        padding: 0;

    }


        .inline-line ul li {
            margin-bottom: 5px;
        }

    .inline-line p {
        margin: 0;
        font-size: 1em;
        line-height: 1.2;
        color: #444;
    }

@media (max-width: 768px) {
    .inline-line p {
        font-size: 2em;
    }
}

.two-column-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}




.service-content h2 {
    margin-bottom: 10px;
}

.service-content h3 {
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #0056b3;
}

.service-content p {
    margin-bottom: 15px;
    color: #444
}


.carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 10%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 70%;
    margin: 0 10px;
}

    .carousel-slide img {
        width: 100%;
        display: block;
        aspect-ratio: 16 / 9;
    }


.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .carousel-dots .dot {
        width: 12px;
        height: 12px;
        margin: 0 5px;
        background-color: #ccc;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .carousel-dots .dot:hover {
            background-color: #999;
        }

        .carousel-dots .dot.active {
            background-color: #333;
        }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .carousel-container {
        padding: 0 7%;
    }

    .carousel-slide {
        flex: 0 0 75%;
        margin: 0 8px;
    }

    .carousel-dots .dot {
        width: 14px;
        height: 14px;
        margin: 0 4px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 5%;
    }

    .carousel-slide {
        flex: 0 0 85%;
        margin: 0 5px;
    }

    .carousel-dots .dot {
        width: 12px;
        height: 12px;
        margin: 0 3px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 3%;
    }

    .carousel-slide {
        flex: 0 0 95%;
        margin: 0 3px;
    }

    .carousel-dots .dot {
        width: 10px;
        height: 10px;
        margin: 0 2px;
    }
}



@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .Servicelist {
        width: 100%;
    }

    .service-content {
        width: 100%;
        margin-top: 10px;
    }
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-list li {
        display: flex;
        gap: 10px;
        margin-bottom: 5px;
    }

.label {
    font-weight: bold;
    min-width: 180px;
    text-align: right;
}

.desc {
    flex: 1;
}

/* Contact */
.contact-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 80%;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contact-section {
    flex: 1;
    text-align: center;
}

    .contact-section h2 {
        color: black;
        font-size: 22px;
        font-weight: bold;
    }

    .contact-section p {
        font-size: 16px;
        color: black;
        line-height: 1.6;
    }

    .contact-section a {
        color: red;
        text-decoration: none;
        font-weight: bold;
    }

        .contact-section a:hover {
            text-decoration: underline;
        }

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-box {
        flex-direction: column;
        max-width: 90%;
    }
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .map-container iframe {
        width: 80%;
        min-height: 300px;
        justify-content: center;
