@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #29408402;
}

/* width */
::-webkit-scrollbar {
    width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #294084;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}

/** Helper Classes **/

/* Navigation Overlay */
.back-active {
    width: 100vw;
    height: 100vh;
    background: black;
    position: fixed;
    top: 0;
    opacity: 0.4;
    z-index: 2;
}


.navbar {
    /* height: 10vh; */
    padding-top: 20px !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .navbar-logo {
    margin-left: 60px; 
    width: 350px;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    height: 50px;
    text-decoration: none;
    display: flex;
}

.navbar .navbar-logo img {
    height: 100%;
    width: auto;
}

.navbar .navbar-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0;
}

.navbar .navbar-links li {
    list-style: none;
    padding: 0;
    padding-left: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .navbar-links #hamBurgerMenu {
    display: none;
}

.navbar .navbar-links li a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.5s;
    font-size: 18px;
}

.navbar .navbar-links li a:hover {
    color: gray;
}

.navbar .navbar-links li i {
    display: none;
}

.navbar .cta-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-right: 70px;
}

.navbar .cta-quote button {
    border: none;
    padding: 4px 18px;
    background-color: #294084;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

.navbar .cta-quote form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .cta-quote form input {
    width: 200px;
    border-radius: 6px;
    border: 1px solid black;
}

.navbar .cta-quote i {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    color: #000;
    margin-left: 20px;
}

.navbar-mobile {
    height: 100vh;
    width: 70vw;
    background-color: whitesmoke;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 3;

    display: none;
    align-items: center;
    justify-content: center;
}

.navbar-mobile-list-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.navbar-mobile-icon {
    color: gray;
    font-weight: bold;
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    margin-top: 25px;
    margin-right: 25px;
    font-size: 18px;
}

.navbar-mobile-links {
    list-style: none;
}

.navbar-mobile-links a {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: gray;
}

.our-services-container {
    margin: 50px 150px 100px 150px;
}

.our-services-container .our-services-main {
    height: fit-content;
    display: flex;
}

.our-services-container .our-services-main .our-services-navigation {
    width: 24%;
    height: 100%;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    padding-top: 20px;
    border-right: 2px solid black;
}

.our-services-container .our-services-main .our-services-navigation p {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 20px;
}

.our-services-container .our-services-main .our-services-navigation ul {
    margin: 0;
    padding: 0;
}

.our-services-container .our-services-main .our-services-navigation ul li {
    list-style: none;
    margin-bottom: 8px;
    padding: 10px 0;
    visibility: hidden;
    font-size: 18px;
    cursor: pointer;
}

.our-services-container .our-services-main .our-services-navigation ul li i {
    margin-right: 8px;
    height: 24px;
    width: 24px;
    text-align: center;
}

.our-services-container .our-services-main .our-services-navigation ul li a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    transition: all 0.2s ease-in-out;
}

.our-services-container .our-services-main .our-services-navigation ul .our-services-navigation-active a {
    font-weight: 700;
    color: #294084;
}

.our-services-container .our-services-main .our-services-navigation ul .our-services-navigation-active i {
    color: #294084;
}

.our-services-container .our-services-main .our-services-navigation ul li:hover a {
    font-weight: 700;
    color: #294084;
}

.our-services-container .our-services-main .our-services-navigation ul li:hover i {
    color: #294084;
}

.our-services-container .our-services-main .our-services-details {
    width: 76%;
    height: auto;
    padding-left: 60px;
    color: #000 !important;
    list-style-position: inside;
}

.our-services-container .our-services-main .our-services-details .our-services-heading {
    font-size: 50px;
    margin-bottom: 10px;
}

.our-services-container .our-services-main .our-services-details .our-services-main-image {
    width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.our-services-container .our-services-main .our-services-details .our-services-main-image img {
    width: 100%;
    height: 100%;
}

/* Footer */
/* Footer */
.footer {
    background-color: #050f2a;
    background: linear-gradient(109.67deg, #050f2a 0.51%, #0c1736 100%);
    height: fit-content;
    padding: 100px 0 80px 0;
}

.footer .newsletter-container {
    background: #005be6;
    background: linear-gradient(261.47deg, #005be6 43.48%, rgba(67, 133, 233, 0) 128.61%);
    border-radius: 10px;
    display: flex;
    height: 140px;
    width: 90%;
    margin: 0 auto;
}

.footer .newsletter-container .newsletter {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:space-around;
    gap: 10%;
}

.footer .newsletter-container .newsletter h4 {
    font-size: 36px;
    color: white;
}

.footer .newsletter-container .newsletter .newsletter-email {
    width: 34%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer .newsletter-container .newsletter .newsletter-email input {
    border: 1px solid #9abef4;
    width: 100%;
    border-radius: 5px;
    padding: 10px 15px;
    background: #347deb;
    color: #ffffff;
}

.footer .newsletter-container .newsletter .newsletter-email input::placeholder {
    color: #9abef4;
    opacity: 1;
}

.footer .newsletter-container .newsletter .newsletter-email input:focus {
    outline: none;
    background: #2264c7;
}

.footer .newsletter-container .newsletter .newsletter-email button {
    padding: 0px 20px;
    border-radius: 5px;
    border: 1px solid #9abef4;
    cursor: pointer;
    font-family: poppins, open sans-serif;
    letter-spacing: 1px;
    color: #005be6;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.footer .newsletter-container .newsletter .newsletter-email button:hover {
    background-color: #004aba;
    color: white;
}


.footer .newsletter-container .newsletter .newsletter-email button::-webkit-input-placeholer,
.footer .newsletter-container .newsletter .newsletter-email button::-ms-input-placeholder {
    color: #9abef4;
    opacity: 1;
}

.footer .footer-main {
    height: fit-content;
    width: 88%;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "footer-1 footer-2 footer-3 footer-4";
}

.footer .footer-main .footer-content p {
    color: #f5f9ff;
    width: 70%;
    margin-top: 20px;
}

.footer .footer-main .footer-content .footer-image-info {
    display: flex;
    align-content: center;
    gap: 20px;
    max-width: 250px;
    height: 70px;
}

.footer .footer-main .footer-content .footer-image-info img {
   height: 100%;
   width: auto;
}

.footer .footer-main .footer-content-image {
    grid-area: footer-1;
}

.footer .footer-main .footer-content-2 {
    grid-area: footer-2;
}
.footer .footer-main .footer-content-3 {
    grid-area: footer-3;
}
.footer .footer-main .footer-content-4 {
    grid-area: footer-4;
}


.footer .footer-main .footer-content .footer-image-info h1 {
    color: #f5f9ff;
    font-size: 20px;
    margin-top: 6px;
}

.footer .footer-main .footer-content h5 {
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 18px;
    color: #7a7d8c;
}

.footer .footer-main .footer-content .footer-links-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    color: #f5f9ff;

}

.footer .footer-main .footer-content .footer-links-container .footer-contact-link {
    margin-bottom: 8px;
}

.footer .footer-main .footer-content .footer-links-container .footer-contact-link i {
    margin-right: 10px;
}

.footer .footer-main .footer-content .footer-links-container .footer-contact-link:hover {
    color: #7e93ff;
}

.footer .footer-main .footer-content .footer-links-container .footer-contact-icons {
    display: flex;
    align-items: center;
    margin-top: 5px;
    gap: 25px;
    font-size: 16px;
}

.footer .footer-main .footer-content .footer-links-container a {
    margin-bottom: 8px;
    text-decoration: none;
    color: #f5f9ff;
    transition: all 0.2s ease-in-out;
}

.footer .footer-main .footer-content .footer-links-container a:hover {
    color: #7e93ff;
}

.footer .footer-main .footer-content .footer-links-container a:hover .footer-contact-link {
    color: #7e93ff;
}

.footer .copyright {
    color: #7a7d8c;
    text-align: center;
    width: 100%;
}

/* Queries */
@media (max-width: 1650px) {
    .our-services-container {
        margin-left: 60px;
        margin-right: 60px;
    }
}

@media (max-width: 1300px) {
    .footer .footer-main {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
    }
}

@media (max-width: 1200px) {
    .navbar .navbar-link {
        display: none !important;
    }

    .navbar .navbar-links li i {
        display: inline-block;
    }

    .navbar .navbar-links #hamBurgerMenu {
        display: block !important;
    }

    .navbar .navbar-link .navbar-a {
        display: none;
    }
}

@media (max-width: 1058px) {
    .footer .footer-main .footer-content p {
        font-size: 12px;
    }

    .footer .footer-main .footer-content .footer-image-info {
        gap: 10px;
    }

    .footer .footer-main .footer-content .footer-image-info h1 {
        font-size: 16px;
    }

    .footer .footer-main .footer-content .footer-links-container a {
        font-size: 12px;
    }
}

@media (max-width: 1000px) {
    .our-services-container {
        margin-left: 150px;
        margin-right: 150px;
    }

    .our-services-container .our-services-main {
        flex-direction: column;
    }

    .our-services-container .our-services-main .our-services-details {
        width: 100%;
        padding-left: 0px;
    }

    .our-services-container .our-services-main .our-services-navigation {
        border: none;
        width: 100%;
        margin-bottom: 40px;
    }

    .our-services-container .our-services-main .our-services-navigation p {
        margin-left: 0px;
    }

    .our-services-container .our-services-main .our-services-navigation ul {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 20px;
        flex-wrap: wrap;
    }

    .our-services-container .our-services-main .our-services-navigation ul li {
        padding-left: 0px;
    }
}

@media (max-width: 960px) {
    .footer .newsletter-container .newsletter {
        gap: 6%;
    }

    .footer .newsletter-container .newsletter h4 {
        font-size: 24px;
    }

    .footer .newsletter-container .newsletter .newsletter-email input {
        width: 40%;
        font-size: 10px;
    }

    .footer .newsletter-container .newsletter .newsletter-email button {
        width: 25%;
        font-size: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer .footer-main {
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 30px;
        grid-template-areas: "footer-2 footer-3"
                             "footer-1 footer-4"
    }
}

@media (max-width: 850px) {
    .footer .newsletter-container .newsletter h4 {
        font-size: 24px;
    }

    .footer .newsletter-container .newsletter {
        gap: 10%;
    }

    .footer .newsletter-container .newsletter .newsletter-email input {
        width: 45%;
        font-size: 10px;
    }

    .footer .newsletter-container .newsletter .newsletter-email button {
        width: 30%;
        font-size: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer .newsletter-container .newsletter {
        gap: 10%;
    }

    .footer .newsletter-container .newsletter h4 {
        font-size: 24px;
    }

    .footer .newsletter-container .newsletter .newsletter-email input {
        width: 45%;
        font-size: 10px;
    }

    .footer .newsletter-container .newsletter .newsletter-email button {
        width: 30%;
        font-size: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 800px) {
    .navbar .navbar-logo {
        margin-left: 25px;
    }

    .navbar .cta-quote {
        margin-right: 25px;
    }

    .our-services-container {
        margin-right: 25px;
        margin-left: 25px;
    }

    .footer .newsletter-container .newsletter {
        gap: 6%;
    }

    .footer .newsletter-container .newsletter h4 {
        font-size: 26px;
        width: 30%;
    }

    .footer .newsletter-container .newsletter .newsletter-email {
        width: 40%;
        justify-content: flex-end;
    }

    .footer .newsletter-container .newsletter .newsletter-email input {
        width: 40%;
        font-size: 8px;
    }

    .footer .newsletter-container .newsletter .newsletter-email button {
        width: 30%;
        font-size: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer .footer-main {
        height: fit-content;
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }

    .footer .footer-main .footer-content {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .footer .footer-main .footer-content .footer-links-container .footer-contact-icons {
        display: flex;
        align-items: center;
    }

    .footer .footer-main .footer-content:nth-child(1) {
        order: 4;
    }
}

@media (max-width: 640px) {
    .footer .newsletter-container .newsletter {
        flex-direction: column;
    }

    .footer .newsletter-container .newsletter h4 {
        width: 100%;
        text-align: center;
    }

    .footer .newsletter-container .newsletter .newsletter-email {
        justify-content: center;
        width: 80%;
    }

    .footer .footer-main .footer-content .footer-image-info {
    height: 60px;
}

}

@media (max-width: 530px) {
     .navbar .navbar-logo {
    height: 40px;
    }  

    .footer .copyright {
        font-size: 10px;
    }

    .footer .footer-main .footer-content .footer-image-info img {
        height: 50px;
    }

    .footer .footer-main .footer-content .footer-image-info h1 {
        font-size: 10px;
    }
}

@media (max-width: 490px) {

    .footer .footer-main {
        grid-template-areas: "footer-2 footer-3"
                             "footer-1 footer-1" 
                             "footer-4 footer-4";
    }

    .footer .footer-main .footer-content-4 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer .footer-main .footer-content .footer-links-container .footer-contact-icons {
        justify-content: space-between;
    }
}

@media (max-width: 410px) {
    .footer .newsletter-container .newsletter h4 {
        font-size: 13px;
    }
}

@media (max-width: 450px) {

    .navbar .cta-quote .navbar-links-container .navbar-links li:nth-child(1),
    .navbar .cta-quote .navbar-links-container .navbar-links li:nth-child(2) {
        display: none;
    }
}

@media (max-width: 410px) {
    .footer .newsletter-container .newsletter h4 {
        font-size: 18px;
    }

    .our-services-container .our-services-main .our-services-navigation ul li {
        text-align: center;
    }

        .footer .footer-main .footer-content .footer-links-container {
        font-size: 10px;
    }

    .footer .footer-main .footer-content .footer-links-container a {
        font-size: 10px;
    }
}