@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: "Manrope", sans-serif;
    background: #ffffff;
    color: #111111;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: relative;
    width: 100%;
    height: 105px;

    display: flex;
    align-items: center;

    padding: 0 40px;

    background: transparent;
    border-bottom: 1px solid #eeeeee;

    z-index: 1000;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    width: 120px;
    height: 95px;

    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;

    color: #111111;

    font-size: 26px;
    font-weight: 800;
}

.logo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}


/* =========================================================
   NAV RIGHT
========================================================= */

.nav-right {
    display: flex;
    align-items: center;

    /*
        Controls distance between
        LOGO and NAVIGATION LINKS
    */
    margin-left: 30px;

    /*
        Controls distance between
        NAVIGATION LINKS and EMAIL
    */
    gap: 55px;

    flex-shrink: 0;
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.nav-links {
    display: flex;
    align-items: center;

    /*
        Controls distance between links
    */
    gap: 45px;
}

.nav-links>a,
.products>a {
    display: flex;
    align-items: center;

    color: #222222;

    text-decoration: none;

    font-size: 17px;
    font-weight: 700;

    white-space: nowrap;

    transition: color 0.2s ease;
}

.nav-links>a:hover,
.products>a:hover {
    color: #777777;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products {
    position: relative;
}

.products>a {
    gap: 8px;
}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

.dropdown-arrow {
    width: 15px;
    height: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.imgss {
    width: 15px;
    height: 15px;

    display: block;

    object-fit: contain;

    transition: transform 0.25s ease;
}

.products:hover .imgss {
    transform: rotate(180deg);
}


/* =========================================================
   PRODUCTS DROPDOWN
========================================================= */

.dropdown {
    position: absolute;

    top: calc(100% + 12px);
    left: 50%;

    transform: translateX(-50%);

    width: 190px;

    padding: 10px 0;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;

    z-index: 1100;
}


/* Invisible bridge */

.products::after {
    content: "";

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;
    height: 12px;
}


/* Show dropdown */

.products:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   CATEGORY
========================================================= */

.category {
    position: relative;
}

.category>a {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 18px;

    color: #222222;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: background 0.2s ease;
}

.category>a:hover {
    background: #f5f5f5;
}


/* =========================================================
   SUBCATEGORY ARROW
========================================================= */

.subcategory-arrow {
    font-size: 20px;

    line-height: 1;

    font-weight: 400;

    transition: transform 0.2s ease;
}

.category:hover .subcategory-arrow {
    transform: translateX(3px);
}


/* =========================================================
   SUBCATEGORY DROPDOWN
========================================================= */

.sub-dropdown {
    position: absolute;

    top: 0;
    left: calc(100% + 5px);

    width: 190px;

    padding: 10px 0;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;

    z-index: 1200;
}


/* Invisible bridge */

.category::after {
    content: "";

    position: absolute;

    top: 0;
    left: 100%;

    width: 5px;
    height: 100%;
}


/* Show submenu */

.category:hover .sub-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   SUBCATEGORY LINKS
========================================================= */

.sub-dropdown a {
    display: block;

    width: 100%;

    padding: 12px 18px;

    color: #222222;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.sub-dropdown a:hover {
    background: #f5f5f5;
    color: #111111;
}


/* =========================================================
   EMAIL BUTTON
========================================================= */

.email-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 17px 35px;

    background: #003157;

    color: #ffffff;

    border-radius: 30px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.email-btn:hover {
    background: #333333;

    transform: translateY(-1px);
}



/* ============================MORE INFO OF THE WEBISTE========================= */




/* =========================================================
   OUR INFRASTRUCTURE SECTION
========================================================= */

/* =========================================================
   OUR INFRASTRUCTURE SECTION
========================================================= */

.infrastructure-section {
    width: 100%;
    padding: 85px 20px;

    background: #f8f8f8;

    overflow: hidden;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.infrastructure-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.infrastructure-content {
    width: 100%;
    max-width: 600px;
}


.infrastructure-content h2 {
    margin: 0;

    font-size: 32px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0.5px;

    color: #173d63;
}


/* =========================================================
   RED UNDERLINE
========================================================= */

.infrastructure-line {
    width: 148px;
    height: 4px;

    margin-top: 10px;
    margin-bottom: 31px;

    background: #ef3b4f;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.infrastructure-content p {
    margin: 0;

    font-size: 17px;
    line-height: 1.65;

    font-weight: 400;

    color: #111827;

    letter-spacing: 0.1px;
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.infrastructure-image {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}


.infrastructure-image img {
    display: block;

    width: 100%;
    max-width: 500px;

    height: auto;

    aspect-ratio: 3 / 2;

    object-fit: cover;

    border-radius: 2px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .infrastructure-section {
        padding: 70px 30px;
    }

    .infrastructure-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .infrastructure-content {
        max-width: 700px;
    }

    .infrastructure-image {
        justify-content: flex-start;
    }

    .infrastructure-image img {
        max-width: 600px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .infrastructure-section {
        padding: 55px 20px;
    }

    .infrastructure-container {
        gap: 35px;
    }

    .infrastructure-content h2 {
        font-size: 27px;
    }

    .infrastructure-line {
        width: 120px;
        height: 3px;

        margin-top: 9px;
        margin-bottom: 25px;
    }

    .infrastructure-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .infrastructure-image img {
        width: 100%;
        max-width: 100%;
    }
}












/* =========================================================
   DISCOVER EXCELLENCE SECTION
========================================================= */

.excellence-section {
    width: 100%;
    padding: 90px 5%;

    background: #ffffff;

    overflow: hidden;
    box-sizing: border-box;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.excellence-container {
    width: 100%;
    max-width: 1350px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.75fr;

    align-items: start;

    gap: 70px;

    box-sizing: border-box;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.excellence-content {
    width: 100%;
    box-sizing: border-box;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.excellence-content > h2 {
    margin: 0;

    color: #173d63;

    font-size: 42px;
    line-height: 1.15;

    font-weight: 700;

    letter-spacing: 0.3px;
}


/* =========================================================
   RED LINE
========================================================= */

.excellence-line {
    width: 125px;
    height: 4px;

    margin-top: 16px;
    margin-bottom: 50px;

    background: #ef3b4f;
}


/* =========================================================
   EACH CONTENT ITEM
========================================================= */

.excellence-item {
    display: grid;

    grid-template-columns: 52px 1fr;

    align-items: start;

    gap: 17px;

    margin-bottom: 36px;

    box-sizing: border-box;
}


/* =========================================================
   ICON
========================================================= */

.excellence-icon {
    width: 48px;
    height: 48px;

    display: flex;

    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: #fff0f1;

    color: #ef3b4f;

    font-size: 23px;

    font-weight: 600;

    flex-shrink: 0;
}


/* =========================================================
   ITEM TEXT
========================================================= */

.excellence-text {
    padding-top: 1px;

    min-width: 0;
}


.excellence-text h3 {
    margin: 0 0 6px;

    color: #173d63;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 700;
}


.excellence-text p {
    margin: 0;

    color: #263f5d;

    font-size: 14.5px;

    line-height: 2.0;

    font-weight: 400;
}


/* =========================================================
   FINAL TEXT
========================================================= */

.excellence-footer {
    margin-top: 5px;
}


.excellence-footer strong {
    display: block;

    color: #173d63;

    font-size: 16px;

    line-height: 2.45;

    font-weight: 700;
}


.excellence-footer-line {
    width: 55px;
    height: 4px;

    margin-top: 20px;

    background: #ef3b4f;
}


/* =========================================================
   RIGHT IMAGE COLUMN
========================================================= */

.excellence-images {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 18px;

    box-sizing: border-box;
}


/* =========================================================
   IMAGE
========================================================= */

.excellence-image {
    width: 100%;

    overflow: hidden;

    background: #eeeeee;
}


.excellence-image img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 3 / 2;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.excellence-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .excellence-section {
        padding: 75px 4%;
    }

    .excellence-container {
        grid-template-columns: 1fr 0.8fr;

        gap: 45px;
    }

    .excellence-content > h2 {
        font-size: 38px;
    }

    .excellence-line {
        margin-bottom: 42px;
    }

    .excellence-item {
        grid-template-columns: 48px 1fr;

        gap: 15px;

        margin-bottom: 30px;
    }

    .excellence-icon {
        width: 44px;
        height: 44px;

        font-size: 21px;
    }

    .excellence-text h3 {
        font-size: 16px;
    }

    .excellence-text p {
        font-size: 13.5px;
        line-height: 1.5;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .excellence-section {
        padding: 65px 4%;
    }

    .excellence-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .excellence-content > h2 {
        font-size: 36px;
    }

    .excellence-line {
        margin-top: 14px;
        margin-bottom: 38px;
    }

    .excellence-item {
        grid-template-columns: 48px 1fr;

        gap: 15px;

        margin-bottom: 28px;
    }

    .excellence-images {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 18px;
    }

    .excellence-image img {
        aspect-ratio: 3 / 2;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .excellence-section {
        padding: 55px 20px;
    }

    .excellence-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .excellence-content > h2 {
        font-size: 32px;

        line-height: 1.2;
    }

    .excellence-line {
        width: 110px;
        height: 3px;

        margin-top: 12px;
        margin-bottom: 30px;
    }

    .excellence-item {
        grid-template-columns: 42px 1fr;

        gap: 13px;

        margin-bottom: 24px;
    }

    .excellence-icon {
        width: 40px;
        height: 40px;

        font-size: 19px;
    }

    .excellence-text h3 {
        margin-bottom: 5px;

        font-size: 15px;

        line-height: 1.4;
    }

    .excellence-text p {
        font-size: 13.5px;

        line-height: 1.55;
    }

    .excellence-footer {
        margin-top: 5px;
    }

    .excellence-footer strong {
        font-size: 14px;

        line-height: 1.5;
    }

    .excellence-footer-line {
        width: 50px;
        height: 3px;

        margin-top: 11px;
    }

    .excellence-images {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .excellence-image img {
        aspect-ratio: 3 / 2;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .excellence-section {
        padding: 45px 16px;
    }

    .excellence-content > h2 {
        font-size: 28px;
    }

    .excellence-line {
        width: 100px;

        margin-bottom: 27px;
    }

    .excellence-item {
        grid-template-columns: 38px 1fr;

        gap: 11px;

        margin-bottom: 21px;
    }

    .excellence-icon {
        width: 36px;
        height: 36px;

        font-size: 17px;
    }

    .excellence-text h3 {
        font-size: 14px;
    }

    .excellence-text p {
        font-size: 12.5px;

        line-height: 1.5;
    }

    .excellence-images {
        gap: 12px;
    }

}


/* =====================FOOOOOOOOOOTTTER=========================== */
/* =====================FOOOOOOOOOOTTTER=========================== */
/* =====================FOOOOOOOOOOTTTER=========================== */
/* =====================FOOOOOOOOOOTTTER=========================== */



/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;
    background: #111c2b;
    color: #ffffff;
    overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND DETAIL
========================================================= */

.site-footer::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -180px;

    border: 1px solid rgba(240, 136, 37, 0.10);
    border-radius: 50%;

    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -180px;
    left: -150px;

    background: rgba(240, 136, 37, 0.035);
    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-main {
    position: relative;
    z-index: 1;

    padding: 85px 40px 70px;
}


.footer-container {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.45fr
        0.8fr
        1.5fr
        0.8fr;

    gap: 65px;
}


/* =========================================================
   COMPANY
========================================================= */

.footer-company {
    padding-right: 25px;
}


.footer-logo {
    display: inline-flex;
    align-items: center;

    margin-bottom: 28px;
}


.footer-logo img {
    width: 145px;
    height: auto;

    display: block;
}


.footer-description {
    max-width: 390px;

    margin: 0 0 25px;

    color: #aeb8c5;

    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
}


.footer-about-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-about-link span {
    color: #e63946;

    font-size: 19px;

    transition: transform 0.3s ease;
}


.footer-about-link:hover {
    color: #e63946;
}


.footer-about-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-menu h3,
.footer-locations h3,
.footer-contact h3 {
    position: relative;

    margin: 7px 0 28px;

    padding-bottom: 15px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 800;

    letter-spacing: 0.2px;
}


.footer-menu h3::after,
.footer-locations h3::after,
.footer-contact h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    background: #e63946;
}


/* =========================================================
   SITE MENU
========================================================= */

.footer-menu ul {
    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-menu li {
    margin-bottom: 13px;
}


.footer-menu a {
    position: relative;

    color: #aeb8c5;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}


.footer-menu a::before {
    content: "";

    position: absolute;

    left: -15px;
    top: 50%;

    width: 5px;
    height: 5px;

    background: #e63946;
    border-radius: 50%;

    opacity: 0;

    transform: translateY(-50%);

    transition: opacity 0.3s ease;
}


.footer-menu a:hover {
    color: #ffffff;
    padding-left: 5px;
}


.footer-menu a:hover::before {
    opacity: 1;
}


/* =========================================================
   LOCATIONS
========================================================= */

.footer-location {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin-bottom: 27px;
}


.location-number {
    flex-shrink: 0;

    color: #e63946;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    padding-top: 2px;
}


.footer-location h4 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
}


.footer-location p {
    max-width: 330px;

    margin: 0;

    color: #9faab8;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-label {
    margin: 0 0 8px;

    color: #7f8c9c;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.footer-email {
    display: inline-block;

    margin-bottom: 30px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-email:hover {
    color: #e63946;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.footer-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    max-width: 190px;

    padding: 14px 17px;

    border: 1px solid #e63946;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}


.footer-contact-button span {
    color: #e63946;

    font-size: 17px;

    transition: transform 0.3s ease;
}


.footer-contact-button:hover {
    background: #e63946;
    border-color: #e63946;

    color: #111c2b;
}


.footer-contact-button:hover span {
    color: #111c2b;
    transform: translate(3px, -3px);
}


/* =========================================================
   BOTTOM FOOTER
========================================================= */

.footer-bottom {
    position: relative;
    z-index: 2;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding: 20px 40px;
}


.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: #7f8b99;

    font-size: 12px;
    line-height: 1.6;
}


.footer-bottom a {
    color: #c5ccd5;

    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-bottom a:hover {
    color: #e63946;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .footer-container {
        grid-template-columns: 1.3fr 0.8fr 1.3fr;
        gap: 45px;
    }

    .footer-contact {
        grid-column: 1 / -1;

        margin-top: 15px;
    }

    .footer-contact-button {
        max-width: 190px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 800px) {

    .footer-main {
        padding: 65px 30px 50px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px 35px;
    }

    .footer-company {
        padding-right: 0;
    }

    .footer-locations {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: auto;
        margin-top: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-main {
        padding: 55px 22px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-company,
    .footer-locations,
    .footer-contact {
        grid-column: auto;
    }

    .footer-logo img {
        width: 130px;
    }

    .footer-description {
        max-width: 100%;

        font-size: 14px;
        line-height: 1.8;
    }

    .footer-location {
        margin-bottom: 23px;
    }

    .footer-location p {
        max-width: 100%;
    }

    .footer-bottom {
        padding: 18px 22px;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;

        gap: 6px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .footer-main {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-bottom {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-location {
        gap: 11px;
    }

}