/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@200;300;400;500;600;700;800;900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: 163px;
}


@font-face {
    font-family: logofont;
    src: url(Logo.ttf);
}

@font-face {
    font-family: sans;
    src: url(Sans.ttf);
}

body {
    font-family: "Roboto", sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}



:root {
    --rt-color-white: #fbfafa;
    --rt-color-black: #585858;
    --rt-color-primary: #003d5b;
    --rt-color-secondPrimary: #f94b16;
    --rt-color-text-light: #7d7d7d;
    --rt-color-bg: #022a3d;
}


/* navbar section  */

.logo-section img {
    width: 53px;
    height: 63px;
    margin-right: -8px;
}

.nav-logo a {
    text-decoration: none !important;
}


.logo-section p {
    color: var(--rt-color-primary);
    font-weight: 500;
    font-family: logofont !important;
    font-size: 26px;
    line-height: 16px;
    margin-top: 20px;

}

.logo-section span {
    color: var(--rt-color-primary);
    font-weight: 500;
    font-size: 12px;
    margin-left: 3px;
}

.location span i {
    font-size: 34px;
    color: var(--rt-color-primary);
    margin-right: 3px;
}

.location p {
    color: var(--rt-color-primary);
    font-weight: 600;
    font-size: 13px;

}



.location a {
    text-decoration: none;
    color: rgb(100, 98, 98);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease-in;

}


.location a:hover {
    color: var(--rt-color-secondPrimary);

}


/* sub-navbar section  */

.sub-nav {
    background-color: var(--rt-color-primary);

}

.navbar-nav .nav-link.active {
    color: var(--rt-color-secondPrimary) !important;
    font-weight: bold;
}


.nav-links a {
    color: white;
    font-size: 20px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--rt-color-secondPrimary);
}

.nav-link.active-custom {
    color: var(--rt-color-secondPrimary) !important;
    font-weight: bold;
}



/* First (main) navbar */
.navbar:first-of-type {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    /* Ensure a background color if necessary */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Optional shadow for separation */
}

/* Second (sub-navbar) */
.sub-nav {
    position: fixed;
    top: 81px;
    /* top: 92px; */
    width: 100%;
    z-index: 999;
}




/* slider section  */

#slider__container {
    /* margin-top: 80px; */
    margin-top: 70px;
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.container-text-content {
    transform: translateY(70%);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}


.swiper-slide-active .container-text-content {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 999px) {
    .sub-nav {
        top: 0 !important;
    }

    .service-banner {
        margin-top: 20px !important;
    }


    /* about page  */
    .about-banner {
        margin-top: 20px !important;
    }

    .about-img img {
        height: 30vh !important;
    }

    /* contact page  */
    .contact-banner {
        margin-top: 20px !important;
    }

    .contact-img img {
        height: 60vh !important;
    }

    /* project section  */
    .project-banner {
        margin-top: 20px !important;
    }

    .gallery-item {
        width: 330px !important;
        height: 223px !important;
    }



}

@media (max-width: 768px) {

    .logo-section p {
        font-size: 22px !important;
    }

    .sub-nav-text {
        font-size: 10px;
        margin-top: 2px;
        margin-left: 4px;
    }


    .container-text-content {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }


    .container__text h2 {
        font-size: 2rem !important;
    }

    .container__text p {
        font-size: 18px !important;
        margin-top: 10px;
    }

    .container__text {
        margin-top: -27px !important;
    }

    .Customer-Service h1 {
        font-size: 20px !important;
        font-weight: 800;
    }

    .about-section img {
        width: 100% !important;
        margin-bottom: 25px !important;
    }

    .about-section-content h3 {
        font-size: 2.2rem !important;
    }

    .counter-section h3 {
        font-size: 22px !important;

    }

    .about-section img {
        height: auto !important;

    }


    .counter-head {
        font-size: 30px !important;
    }

    .logos-head h2 {
        font-size: 2.2rem !important;
    }

    .logos-head p {
        font-size: 20px !important;
    }

    .logo-scroll {
        display: flex;
        align-items: center;
        width: 500%;
        gap: 30px;
        animation: scrollRight 40s linear infinite !important;
    }

    .logo-scroll-left {
        display: flex;
        align-items: center;
        width: 500%;
        gap: 30px;
        animation: scrollLeft 40s linear infinite !important;
    }

    .testimonial-cards {
        width: auto !important;
    }

    /* services section  */

    .service-banner {
        margin-top: 60px !important;
    }

    .service-banner-text h1 {
        font-size: 2rem !important;
    }

    .service-banner-text h3 {
        font-size: 1.5rem !important;
    }

    .service-content h2 {
        font-size: 2rem !important;
    }

    .service-content p {
        font-size: 17px !important;

    }

    .service-content {
        width: 350px !important;
    }

    .faq-text-content h3 {
        font-size: 2rem !important;
    }


    /* about section  */
    .about-banner {
        margin-top: 60px !important;
    }

    .about-img img {
        width: 100% !important;
        height: 55vh !important;
    }


    .about-banner-text h1 {
        font-size: 2rem !important;
    }

    .about-banner-text h3 {
        font-size: 1.5rem !important;
    }

    .market-sectors h2 {
        font-size: 2.2rem !important;
    }

    /* project location section  */
    .project-contanier h2 {
        font-size: 2rem !important;
    }

    .project-contanier h3 {
        font-size: 1.8rem !important;
    }


    .lightbox img {
        width: 100% !important;
    }

    /* contact section  */

    .contact-banner {
        margin-top: 60px !important;
    }

    .contact-img img {
        height: 50vh !important;
    }

    .contact-banner-text h1 {
        font-size: 2rem !important;
    }

    .contact-banner-text h3 {
        font-size: 1.5rem !important;
    }

    /* project section  */
    .project-banner {
        margin-top: 60px !important;
    }


    .project-banner-text h1 {
        font-size: 2rem !important;
    }

    .project-banner-text h3 {
        font-size: 1.5rem !important;
    }

    .project-text p {
        font-size: 1.1rem !important;
    }

    swiper-container {
        width: 360px !important;
        height: 270px !important;
    }

    .scroll-btn {
        display: none !important;
    }

    .card-container {
        /* display: flex; */
        flex-direction: column !important;
    }

    .overlay-text {
        font-size: 20px !important;
    }

    .footer-add {
        width: 240px !important;
    }

}



#article__container {
    width: 100%;
    height: 90vh;
    position: relative;

}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;


}

.container__text {
    width: 100%;
    height: 150vh;
    position: absolute;
    margin-top: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    z-index: 10;
    color: var(--rt-color-primary);
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5468312324929971) 0%, rgba(0, 61, 91, 0.6504726890756303) 80%);
}

.container-text-content {
    width: 800px;
}

.container__text h2 {

    font-size: 3.5rem;
    font-weight: 600;
    color: var(--rt-color-white);


}

.container__text p {
    font-size: 26px;
    font-weight: 400;
    color: var(--rt-color-white);
}

.container-text-btn button {
    padding: 5px 10px;
    outline: none;
    border: 2px solid var(--rt-color-secondPrimary);
    background: transparent;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    font-size: 20px;
}

.container-text-btn button:hover {
    background-color: #b43913;
    transition: all 0.1s ease-in-out;
}

.slide__img--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 5;
    /* Keeps the image in front of the gradient */
}



/* Customer Service section  */

.Customer-Service {
    background-color: var(--rt-color-primary);
}


.Customer-Service h1 {
    color: var(--rt-color-white);
    font-size: 35px;
    font-weight: 800;
}

.Customer-Service h2 {
    color: var(--rt-color-white);
    font-size: 20px;
    font-weight: 400;
    margin-top: 6px;
}

.Customer-Service span {

    color: var(--rt-color-white);
    border: 2px solid var(--rt-color-white);
    padding: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.Customer-Service button {
    padding: 10px 10px;
    width: 300px;
    outline: none;
    border: none;
    background: var(--rt-color-secondPrimary);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    font-size: 20px;

}

.Customer-Service button:hover {
    background-color: #de4719;
    transition: all 0.2s ease-in-out;
}

.Customer-Service button i {
    margin-right: 8px;
    /* Space between icon and text */
    font-size: 18px;
    /* Adjust icon size if needed */
}

/* about-section */

.about-section-title {
    font-size: 18px;
    color: var(--rt-color-black);

}

.about-section img {
    width: 500px;

}


.about-img {
    /* width: 100% !important; */
    margin-bottom: 21px;

}

.about-section-content h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--rt-color-primary);
    margin-top: 5px;
}

.about-section-content h4 {
    font-size: 35px;
    font-weight: 600;
    line-height: 43px;
    color: var(--rt-color-primary);
}

.about-section-content p {

    font-size: 17px;
    font-weight: 400;
    line-height: 25.5px;
    color: var(--rt-color-black);

    width: 100%;

    text-align: justify;

}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {

    position: relative;
    color: var(--rt-color-black);
    padding: 10px 0;
    border-bottom: 1px solid #e2e2e2;
}


ul li span {
    margin-right: 8px;
}

ul li i {
    color: var(--rt-color-secondPrimary);
    font-size: 20px;
}

/* number counter section  */
.counter-section {
    /* padding: 40px; */
    background-image: url(images/ai-generated-8866051_1280.jpg);
    object-fit: contain;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.text-container {
    padding: 40px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 61, 91, 0.65) 80%);
    color: #fff;

}


.counter {
    font-size: 3rem;
    font-weight: bold;
    color: var(--rt-color-secondPrimary);
}

.counter-section p {
    color: var(--rt-color-white);
    font-size: 20px;
    font-weight: 600;
}

.counter-head {
    color: var(--rt-color-white);
    font-size: 36px;
    font-weight: 800;
}

.counter-section h3 {
    color: var(--rt-color-white);
    font-size: 23px;
    font-weight: 800;
}


/* company logos section  */

.partner-logo {
    max-width: 50%;
    height: auto;
}


.logos-head h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--rt-color-primary);
    margin-bottom: 10px;
}

.logos-head p {
    font-size: 26px;
    color: var(--rt-color-primary);
    font-weight: 400;
}

.logo-scroll-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;

}



.logo-scroll-container::before,
.logo-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 1;
}

.logo-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}


.logo-scroll {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 3000px;
    animation: scrollRight 50s linear infinite;

}

.logo-scroll:hover {
    animation-play-state: paused !important;
}


.partner-logo {
    max-width: 100px;
    height: auto;
    flex-shrink: 0;
}



.small-logo {
    width: 60px;
}


/* Keyframes for the rightward scroll effect */
@keyframes scrollRight {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

.logo-scroll-left {
    display: flex;
    align-items: center;
    width: 3000px;
    gap: 40px;
    animation: scrollLeft 50s linear infinite;
}

.logo-scroll-left:hover {
    animation-play-state: paused !important;

}

@keyframes scrollLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}


/* Styling for the entire testimonial section */

.more-review {
    text-decoration: none;
}

.more-review button {
    border: solid 2px var(--rt-color-primary);
    padding: 5px;
    outline: none;
    border-radius: 4px;
    background-color: transparent;
    color: var(--rt-color-primary);
}

.more-review button:hover {
    background-color: rgb(236, 236, 236);
    transition: all 0.1s ease-in-out;
}

.testimonial-cards {
    width: 300px;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    font-family: Arial, sans-serif;
}

.testimonial-cards img {
    max-width: 100px;
    /* Adjusted to fit within the card better */
    margin-bottom: 10px;
}

.testimonial-cards h1 {
    font-size: 1.1rem;
    color: #333;
}

.testimonial-cards p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.user-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 10px;
}

.testimonial-cards .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.testimonial-cards h2 {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

.testimonial-cards .location {
    font-size: 0.8rem;
    color: #777;
}



/* footer section  */

.footer-container {
    background-color: #001119;
}

.footer-logo h5 {
    font-family: logofont;
    font-weight: 500;
}

.footer-container a {
    text-decoration: none;
}

.footer-container a:hover {
    color: var(--rt-color-secondPrimary);
    transition: all 0.1s ease-in-out;
}


.footer-continer p {
    color: #7d7d7d;
}

.contact-info p a {
    text-decoration: none;
    color: #8f8f8f;
}

.footer-links p a {
    color: #8f8f8f;
    text-decoration: none;
}

.footer-links p a:hover {
    color: var(--rt-color-secondPrimary);
    transition: all 0.1s ease-in-out;
}

.footer-add a p:hover {
    color: var(--rt-color-secondPrimary);
    transition: all 0.1s ease-in-out;
}

.social-links a {
    color: var(--rt-color-white);
    transition: all 0.1s ease-in-out;
}

.social-links a:hover {
    color: var(--rt-color-secondPrimary);
}



/* service page section  */

.service-banner {
    /* margin-top: 150px; */
    margin-top: 135px;
    width: 100%;
    height: 40vh;
    background-image: url(images/service.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.service-banner-text {
    width: 100%;
    height: 40vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 61, 91, 0.65) 80%);
    color: #fff;
}

.service-banner-text h1 {
    color: var(--rt-color-secondPrimary);
    font-size: 3rem;
    font-weight: 800;
}

.service-banner-text h3 {
    color: var(--rt-color-white);
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.text-slide {
    transform: translateX(-100%);
    opacity: 0;
    display: inline-block;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}


.text-slide.start-animation {
    transform: translateX(0);
    opacity: 1;
}


.service-banner-text {
    text-align: left;
    padding: 20px;
}

/* service content section */
.service-content-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--rt-color-primary);
}

.service-content-text p {
    font-size: 17px;
    font-weight: 400;
    line-height: 25.5px;
    color: var(--rt-color-black);
}



.sevice-section-image {
    width: 540px;
}

.service-content-text ul li {
    /* border: none; */
    padding: 4px 0px;

}

.service-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--rt-color-primary);
}

.service-content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 25.5px;
    color: var(--rt-color-black);

}

.service-content {
    width: 700px;

}

.faq-text-content h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--rt-color-primary);

}

.faq-text-content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 25.5px;
    color: var(--rt-color-black);
}


/* about section  */

.about-banner {
    /* margin-top: 150px; */
    margin-top: 135px;
    width: 100%;
    height: 40vh;
    background-image: url(images/aboutBanner1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-banner-text {
    width: 100%;
    height: 40vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 61, 91, 0.65) 80%);
    color: #fff;
}

.about-banner-text h1 {
    color: var(--rt-color-secondPrimary);
    font-size: 3rem;
    font-weight: 800;
}

.about-banner-text h3 {
    color: var(--rt-color-white);
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: capitalize;
}


.about-img img {
    width: 90%;
    height: 395px;
    object-fit: cover;
}

.about-content-text h2 {
    font-weight: 600;
    font-size: 2.3rem;
    color: var(--rt-color-primary);

}

.about-content-text p {
    font-size: 17px;
    font-weight: 400;
    line-height: 21.5px;
    color: var(--rt-color-black);
}




.market-sectors {
    background-color: #f4f4f4;
    padding: 20px 20px;
    text-align: center;
}

.market-sectors h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--rt-color-primary);
    margin-bottom: 40px;
}

.sector-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sector-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.sector-item i {
    font-size: 3rem;
    color: var(--rt-color-primary);
    margin-bottom: 15px;
}

.sector-item p {
    font-weight: 600;

}

.sector-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}


/* project page section   */
.project-banner {
    /* margin-top: 150px; */
    margin-top: 135px;
    width: 100%;
    height: 40vh;
    background-image: url(images/projectBanner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.project-banner-text {
    width: 100%;
    height: 40vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 61, 91, 0.65) 80%);
    color: #fff;
}

.project-banner-text h1 {
    color: var(--rt-color-secondPrimary);
    font-size: 3rem;
    font-weight: 800;
}

.project-banner-text h3 {
    color: var(--rt-color-white);
    font-size: 1.8rem;
    font-weight: 600;
}


/* Gallery Styles */
.gallery {
    display: flex;
    gap: 10px;
}

.card-container>* {
    flex: 0 0 auto;
    min-width: 500px;
}

swiper-container {
    width: 500px;
    height: 300px;
}

swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* Scroll container */
.scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

/* Card container */
.card-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    align-items: center;
}

.card-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar thumb */
}






.slide-content {
    position: relative;
    display: flex;
    align-items: center;

    justify-content: center;
    overflow: hidden;
}

.slide-content img {
    width: 100%;
    height: 100%;

}

.slide-text {
    position: absolute;
    width: 100%;
    height: 100%;
    height: 100%;
    color: var(--rt-color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;

}


/* Buttons container */
.scroll-buttons {
    /* position: fixed; */
    bottom: 0;
    left: 20px;
    display: flex;
    justify-content: end;
    gap: 10px;

}

/* Individual scroll buttons */
.scroll-btn {
    background-color: var(--rt-color-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.scroll-btn:hover {
    background-color: #005f7f;
}


/* Lightbox Animation */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 5000;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease-in-out;
}

.lightbox.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.lightbox-group {
    display: flex;
    gap: 10px;


}

.lightbox img {
    max-width: 750px;
    max-height: 500px;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.2s ease-in;
    background-color: rgba(157, 157, 157, 0.221);
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.324);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.2s ease-in;
    background-color: rgba(157, 157, 157, 0.221);
    border: none;
    outline: none;
}

.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.324);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}


.image-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 4px;
}




/* project gallery loader  */
.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: none;
    border-top: 3px solid #FFF;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;

}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* contact page section  */
.contact-banner {
    /* margin-top: 150px; */
    margin-top: 135px;
    width: 100%;
    height: 40vh;
    background-image: url(images/contactBanner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.contact-banner-text {
    width: 100%;
    height: 40vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 61, 91, 0.65) 80%);
    color: #fff;
}

.contact-banner-text h1 {
    color: var(--rt-color-secondPrimary);
    font-size: 3rem;
    font-weight: 800;
}

.contact-banner-text h3 {
    color: var(--rt-color-white);
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: capitalize;
}


.contact-img img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
}

.contact-info h3 {
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--rt-color-primary);
}

.contact-text p {
    font-size: 17px;
    line-height: 25.5px;
    color: var(--rt-color-black);
}

.contact-text ul li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--rt-color-black);
    text-decoration: none;
}

.contact-social-link a {
    color: var(--rt-color-secondPrimary);
}

.contact-social-link a:hover {
    color: var(--rt-color-primary);
    transition: all 0.3s ease-in-out;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--rt-color-primary);
}



/* Preloader container */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rt-color-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Rotating logo */
.preloader-logo {
    width: 120px;
    height: auto;
    animation: rotate 2s linear infinite;
}

/* Rotation animation */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#preloader {
    opacity: 1;
    transition: opacity 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}


.go-to-top {
    position: fixed;
    z-index: 1000;
    bottom: 103px;
    right: 28px;
    width: 45px;
    height: 45px;
    background-color: var(--rt-color-primary);
    color: white;
    font-size: 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* transition: background-color 0.3s ease, transform 0.2s ease; */
    transition: bottom .4s, transform .4s;
}

.go-to-top i {
    font-size: 20px;
}

.go-to-top:hover {
    background-color: #005f7f;
    transform: translateY(-.25rem);
}


/* whatsapp-icon  */
.Btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    overflow: hidden;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1100;
    transition-duration: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: #00d757;
}

.sign {
    width: 100%;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign svg {
    width: 38px;
}

.sign svg path {
    fill: white;
}

.text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    transition-duration: 0.3s;
}

.Btn:hover {
    width: 150px;
    border-radius: 40px;
    transition-duration: 0.3s;
}

.Btn:hover .sign {
    width: 30%;
    transition-duration: 0.3s;
    padding-left: 10px;
}

.Btn:hover .text {
    opacity: 1;
    width: 70%;
    transition-duration: 0.3s;
    padding-right: 10px;
}

.Btn:active {
    transform: translate(2px, 2px);
}

.addplussymbol::after {
    content: "+";
    margin-left: 2px;
    font-size: inherit;
    color: inherit;
}


.dev-name p span a {
    text-decoration: none;
    color: inherit;

}



/* .block {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}


@keyframes appear {
    from {
        opacity: 0;
        scale: 0.8;
    }

    to {
        opacity: 1;
        scale: 1;
        
    }
} */