@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;
    width: 100%;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .navbar-logo {
    margin-left: 150px; 
    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: center;
    gap: 40px;
    margin: 0 auto;
}

.navbar .navbar-links li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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: 150px;
}

.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;
}

.about-hero-responsive-heading {
    font-size: 44px;
    color: #294084;
    margin-left: 150px;
    margin-top: 60px;
    display: none;
}

.about-hero-section {
    height: fit-content;
    margin: 0 150px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-section .about-hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-section .about-hero-container img {
    width: 45%;
    height: 45%;
    /*transform: scale(1);*/
}

.about-hero-section .about-hero-container .about-hero-heading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin-right: 100px;
}

.about-hero-section .about-hero-container .about-hero-heading-container h1 {
    font-size: 44px;
    color: #294084;
    align-self: flex-start;
}

.about-hero-section .about-hero-container .about-hero-heading-container ul .li-first {
    margin-top: 50px;
}

.about-hero-section .about-hero-container .about-hero-heading-container ul li {
    list-style: none;
    margin-bottom: 20px;
    visibility: hidden;
    font-size: 18px;
}

.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;
}


.core-values {
    margin: 0 150px;
    margin-top: 100px;
}

.core-values h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 44px;
    color: #294084;
}

.core-values-container {
    overflow: hidden;
}

.core-values .service {
    width: 100%;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.core-values .service .service-info {
    width: 40%;
    visibility: hidden;
}

.core-values .service .service-info h3 {
    font-size: 30px;
    text-align: center;
}

.core-values .service .service-info p {
    margin: 20px 0;
    font-size: 18px;
    color: #525252;
    text-align: center;
}

.core-values .service .service-info .service-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-values .service .service-info .service-link a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    color: #296684;
}

.core-values .service .service-image {
    border-radius: 18px;
    overflow: hidden;
    width: 300px;
    height: auto;
}

.core-values .service .service-image img {
    width: 100%;
    height: auto;
}

.our-team {
    margin: 0 150px;
    margin-top: 150px;
    margin-bottom: 150px;
}

.our-team h2 {
    font-size: 44px;
    text-align: center;
    color: #294084;
}

.our-team .our-team-container .our-team-heading {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 18px;
    color: gray;
    text-align: center;
}

.our-team .our-team-container .team-1 {
    display: flex;
    margin-top: 60px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.our-team .our-team-container .team-1 .profile-container {
    width: 260px;
    height: 320px;
    background: #eee;
    display: flex;
    flex-direction: column;
    visibility: hidden;
}

.our-team .our-team-container .team-1 .profile-container .profile-image-container {
    height: 80%;
}

.our-team .our-team-container .team-1 .profile-container .profile-info-container {
    height: 20%;
    background: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.our-team .our-team-container .team-1 .profile-container .profile-info-container .profile-name {
    color: #444;
    font-weight: 700;
}

.our-team .our-team-container .team-1 .profile-container .profile-info-container .profile-position {
    color: gray;
    font-size: 14px;
}

.our-team .our-team-container .team-2 {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.our-team .our-team-container .team-2 .profile-container {
    width: 260px;
    height: 320px;
    background: #eee;
    display: flex;
    flex-direction: column;
    visibility: hidden;
}

.our-team .our-team-container .team-2 .profile-container .profile-image-container {
    height: 80%;
}

.our-team .our-team-container .team-2 .profile-container .profile-image-container img {
    width: 100%;
    height: 100%;
}

.our-team .our-team-container .team-2 .profile-container .profile-info-container {
    height: 20%;
    background: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.our-team .our-team-container .team-2 .profile-container .profile-info-container .profile-name {
    color: #444;
    font-weight: 700;
}

.our-team .our-team-container .team-2 .profile-container .profile-info-container .profile-position {
    color: gray;
    font-size: 14px;
}

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

.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%;
    padding-bottom: 80px;
}

/* Queries */
@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-link .navbar-a {
        display: none;
    }

    .about-hero-responsive-heading {
        display: inline-block;
        font-size: 36px;
    }

    .core-values h2,
    .our-team h2 {
        font-size: 36px;
    }

    .about-hero-section .about-hero-container {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .about-hero-section .about-hero-container img {
        width: 100%;
    }

    .about-hero-section .about-hero-container .about-hero-heading-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-right: 0px;
    }

    .about-hero-section .about-hero-container .about-hero-heading-container h1 {
        display: none;
    }

    .about-hero-section .about-hero-container .about-hero-heading-container ul li {
        text-align: justify;
    }
}

@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) {
    .core-values .service {
        gap: 100px;
    }
}

@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: 860px) {
    .our-team {
        margin-right: 25px;
        margin-left: 25px;
    }

    .our-team .our-team-container .our-team-heading {
        width: 80%;
        margin-left: 25px;
        margin-right: 25px;
    }
}

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

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

    .about-hero-responsive-heading {
        margin-left: 25px;
    }

    .about-hero-section {
        margin-left: 25px;
        margin-right: 25px;
    }

    .about-hero-section .about-hero-container img {
        width: 80%;
    }

    .about-hero-section .about-hero-container .about-hero-heading-container ul li {
        width: 80%;
        margin: 50px auto;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .core-values {
        margin-left: 25px;
        margin-right: 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-image-info {
    height: 60px;
}

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

@media (max-width: 640px) {
    .core-values .service {
        flex-direction: column-reverse;
    }

    .core-values .service:nth-child(2) {
        flex-direction: column;
    }

    .core-values .service .service-info {
        width: 80%;
    }

    .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%;
    }
}

@media (max-width: 530px) {
    .footer .copyright {
        font-size: 10px;
    }

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

    .navbar .navbar-logo {
    height: 40px;
    }  
}

@media (max-width: 490px) {
    .hero-section .hero-section-container .hero-section-buttons .hero-button-1 {
        width: 36%;
    }

    .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: 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;
    }
        .footer .footer-main .footer-content .footer-links-container {
        font-size: 10px;
    }

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