/* 
 * Responsive Design Media Queries
 * This file contains media queries for various screen sizes and devices.
 */

/* Ultra wide monitors (e.g., 4K displays, 21:9) */
@media only screen and (min-width: 1921px) {
    /* Devices: 4K Desktop Monitors, Ultra-Wide QHD */
}

/* Large desktops and laptops */
@media only screen and (min-width: 1441px) and (max-width: 1920px) {
    /* Devices: Surface Duo, Large Laptops, Desktop Monitors */
}

/* Standard desktops, high-DPI laptops */
@media only screen and (min-width: 1281px) and (max-width: 1440px) {
    /* Devices: MacBook Pro 15", iPad Pro landscape, Large Laptops */
}

/* Small desktops and large tablets */
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    /* Devices: MacBook Air, iPad Pro 11" (landscape), Chromebook */


    .hero-section {
        height: 60vh !important;
    }

    .cta-button {
        width: 70%;
    }

    .our-services__card-image {
        width: 100%;
    }


    .about_us_section {
        height: 50vh;
    }


    .navy_blue_zone {
        height: 35vh;
    }

    footer .row {
        padding: 0px 40px;
    }
}

/* Tablets (landscape) */
@media only screen and (min-width: 800px) and (max-width: 1023px) {
    /* Devices: iPad (7th gen) landscape, Nexus 10, Kindle Fire HDX 8.9" */


    .hero-section {
        height: 50vh;
    }

    .hero-title {
        line-height: normal;
        font-size: 31px;
    }

    .hero-image {

        background: url(/img/banner.png) no-repeat content-box;
    }

    .social-links {
        gap: 20px;
        left: 70px;
    }

    .social-link {
        font-size: 12px;
    }

    .cta-button {
        width: 80%;
    }

    .our-services__intro {
        flex-direction: column;
    }

    .our-services__headline {
        width: 100%;
    }

    .our-services__card-image {
        width: 100%;
    }

    .our-services__card {
        padding: 0px 13px;
    }

    .our-services__card-title {
        margin: 0;
        padding-top: 15%;
    }


    .navy_blue_zone {
        height: 35vh;
    }

    .navy_blue_zone_layer1 h3 {
        max-width: 792px;
    }

    footer .row {
        padding: 0px 40px;
    }
}

/* Tablets (portrait), large phones (landscape) */
@media only screen and (min-width: 600px) and (max-width: 799px) {

    /* Devices: iPad (7th gen) portrait, Nexus 7, BlackBerry PlayBook */
    .desktop_navbar {
        display: none;
    }


    .mobile_logo {
        display: flex;
        align-items: center;
    }

    .mobile_logo h1 {
        font-size: 25px;
        margin-left: 10px;
    }

    .nav_logo_img_mobile {
        width: 45px;
        height: auto;
    }

    /* ------------------------------
   Mobile Navbar Base Styling
---------------------------------*/

    .mobile_navbar {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99999;
        background-color: #fff;
        padding: 10px 5%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        position: fixed;
    }

    .mobile_navbar.hidden {
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
    }


    .mobile_navbar.visible {
        transform: translateY(0);
        opacity: 1;
        transition: all 0.4s ease;
    }


    /* ------------------------------
   Logo Section
---------------------------------*/

    .mobile_logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav_logo_img_mobile {
        height: 30px;
    }

    .logo_text {
        font-size: 18px;
        font-weight: bold;
        color: #000;
    }


    /* ------------------------------
   Hamburger Icon
---------------------------------*/

    .mobile_menu_icon {
        width: 30px;
        height: 17px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1001;
    }

    .bar {
        height: 3px;
        width: 100%;
        background-color: #000;
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    .mobile_menu_icon.open .top {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile_menu_icon.open .middle {
        opacity: 0;
    }

    .mobile_menu_icon.open .bottom {
        transform: rotate(-45deg) translate(5px, -5px);
    }


    /* ------------------------------
   Menu Panel (Slide Down)
---------------------------------*/

    .mobile_menu_panel {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #2b3c4e;
        color: white;
        padding: 20px;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1000;
        animation: fadeIn 0.3s ease-in-out;
    }

    .mobile_menu_panel.show {
        display: flex;
    }


    /* ------------------------------
   Contact Section
---------------------------------*/
    .contact_section {
        text-align: center;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        margin-bottom: 0;
        width: 100%;
    }

    .contact_section p {
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
    }

    .contact_section i {
        color: #fff;
    }


    /* ------------------------------
   Social Icons
---------------------------------*/

    .social_icons {
        display: flex;
        gap: 40px;
        justify-content: center;
        margin-left: auto;
        width: 100%;
        margin-top: 2%;
    }

    .social_icons a {
        color: white;
        font-size: 20px;
        text-decoration: none;
        transition: color 0.3s;
    }

    .social_icons a:hover {
        color: #1da1f2;
    }

    .menu_content {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        height: auto;
    }

    /* ------------------------------
   Animation
---------------------------------*/

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    .hero-section {
        display: grid;
        height: 100vh;
    }

    .hero-content {
        height: 50vh;
        width: 100%;
        padding: 0px 5%;
    }

    .hero-title {
        line-height: normal;
        font-size: 31px;
    }

    .hero-image {
        background: url(/img/banner.png) no-repeat center center;
        width: 100%;
        height: 50vh;
        background-size: cover;
        background-position: center;
    }

    .social-links {
        gap: 20px;
        left: 70px;
    }

    .social-link {
        font-size: 12px;
    }

    .cta-button {
        width: 50%;
    }

    .our-services__intro {
        flex-direction: column;
    }

    .our-services__headline {
        width: 100%;
    }

    .our-services__card-image {
        width: 100%;
    }

    .our-services__card {
        padding: 13px 13px;
    }

    .our-services__card-title {
        margin: 0;
        padding-top: 5%;
    }

    .navy_blue_zone {
        height: auto;
    }

    .navy_blue_zone_layer1 h3 {
        font-size: 41px;
        width: 80%;
    }


    .navy_blue_zone_layer2 {
        gap: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 50px;
    }

    .metrics_card {
        width: auto;
        height: auto;
    }

    .light_blue_row {
        display: flex;
        justify-content: center;
        align-items: initial;
        gap: 1rem;
        flex-direction: column;
    }

    .flex-row-reverse {
        margin-top: 10%;
    }

    .light_blue_row .col-md-6 img {
        width: 200px;
        height: 200px;
    }

    .about_us_section {
        height: auto;
        margin-top: -20%;
        display: flex;
        justify-content: center;
        padding-top: 25%;
        padding-bottom: 10%;
        border-radius: 0 0 100px 100px;
    }

    /* .group-b,
    .text_block {
        width: 100%;
    } */

    .rectangle-d,
    .group-b {
        width: 200px;
        height: 200px;
    }

    .layer1_about_us_section,
    .layer2_about_us_section {
        gap: 1rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .layer2_about_us_section {
        margin-top: 10%;
        flex-direction: column-reverse;
    }

    .our-services__cards {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .our-services__card {
        flex: 0 1 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .our-services__card:last-child {
        flex: 0 1 calc(50% - 12px);
        max-width: calc(50% - 12px);
        margin: 0 auto;
    }

    .about_us_section_container {
        margin-bottom: 0%;
    }

    footer .row {
        padding: 0px 40px;
    }

    .col-md-3 {
        margin-top: 0;
        padding-right: 0;
        padding-left: 0;
    }
}

/* Phablets and small tablets */
@media only screen and (min-width: 481px) and (max-width: 640px) {
    /* Devices: Microsoft Lumia 950, LG Optimus L70, Kindle Fire HDX (compact), smaller Android tablets */

    /* Devices: iPad (7th gen) portrait, Nexus 7, BlackBerry PlayBook */
    .desktop_navbar {
        display: none;
    }


    .mobile_logo {
        display: flex;
        align-items: center;
    }

    .mobile_logo h1 {
        font-size: 25px;
        margin-left: 10px;
    }

    .nav_logo_img_mobile {
        width: 45px;
        height: auto;
    }

    /* ------------------------------
   Mobile Navbar Base Styling
---------------------------------*/

    .mobile_navbar {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99999;
        background-color: #fff;
        padding: 10px 5%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        position: fixed;
    }

    .mobile_navbar.hidden {
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
    }


    .mobile_navbar.visible {
        transform: translateY(0);
        opacity: 1;
        transition: all 0.4s ease;
    }


    /* ------------------------------
   Logo Section
---------------------------------*/

    .mobile_logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav_logo_img_mobile {
        height: 30px;
    }

    .logo_text {
        font-size: 18px;
        font-weight: bold;
        color: #000;
    }


    /* ------------------------------
   Hamburger Icon
---------------------------------*/

    .mobile_menu_icon {
        width: 30px;
        height: 17px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1001;
    }

    .bar {
        height: 3px;
        width: 100%;
        background-color: #000;
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    .mobile_menu_icon.open .top {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile_menu_icon.open .middle {
        opacity: 0;
    }

    .mobile_menu_icon.open .bottom {
        transform: rotate(-45deg) translate(5px, -5px);
    }


    /* ------------------------------
   Menu Panel (Slide Down)
---------------------------------*/

    .mobile_menu_panel {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #2b3c4e;
        color: white;
        padding: 20px;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1000;
        animation: fadeIn 0.3s ease-in-out;
    }

    .mobile_menu_panel.show {
        display: flex;
    }


    /* ------------------------------
   Contact Section
---------------------------------*/
    .contact_section {
        text-align: center;
        display: block;
        align-items: center;
        margin-bottom: 0;
        width: 100%;
    }

    .contact_section p {
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
    }

    .contact_section i {
        color: #fff;
    }


    /* ------------------------------
   Social Icons
---------------------------------*/

    .social_icons {
        display: flex;
        gap: 40px;
        margin-left: auto;
        width: 100%;
        margin-top: 2%;
    }

    .social_icons a {
        color: white;
        font-size: 20px;
        text-decoration: none;
        transition: color 0.3s;
    }

    .social_icons a:hover {
        color: #1da1f2;
    }

    .menu_content {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    /* ------------------------------
   Animation
---------------------------------*/

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    .hero-section {
        display: grid;
        height: 120vh;
    }

    .hero-content {
        height: 70vh;
        width: 100%;
        padding: 0px 5%;
    }

    .hero-title {
        line-height: normal;
        font-size: 31px;
    }

    .hero-image {
        background: url(/img/banner.png) no-repeat center center;
        width: 100%;
        height: 50vh;
        background-size: cover;
        background-position: center;
    }

    .social-links {
        gap: 20px;
        left: 70px;
    }

    .social-link {
        font-size: 12px;
    }

    .cta-button {
        width: 50%;
    }

    .our-services__container {
        margin: 20% 0%;
    }

    .our-services__intro {
        flex-direction: column;
    }


    .our-services__card-text {
        max-width: 100%;
    }

    .our-services__headline {
        width: 100%;
    }


    .our-services__card-image {
        width: 100%;
        height: 50vh;
    }

    .our-services__card {
        padding: 23px 13px;
    }


    .our-services__card-title {
        margin: 0;
        padding-top: 5%;
    }

    .navy_blue_zone {
        height: auto;
    }

    .navy_blue_zone_layer1 h3 {
        font-size: 41px;
        width: 80%;
    }


    .navy_blue_zone_layer2 {
        gap: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 50px;
    }

    .metrics_card {
        width: auto;
        height: auto;
    }

    .light_blue_row {
        display: flex;
        justify-content: center;
        align-items: initial;
        gap: 1rem;
        flex-direction: column;
    }

    .flex-row-reverse {
        margin-top: 10%;
    }

    .light_blue_zone {
        margin: 10% 5%;
    }

    .light_blue_row .col-md-6 img {
        width: 200px;
        height: 200px;
    }

    .about_us_section {
        height: auto;
        margin-top: -30%;
        display: flex;
        justify-content: center;
        padding-top: 25%;
        padding-bottom: 10%;
        border-radius: 0 0 100px 100px;
    }

    /* .group-b,
    .text_block {
        width: 100%;
    } */

    .rectangle-d,
    .group-b {
        width: 200px;
        height: 200px;
    }

    .layer1_about_us_section,
    .layer2_about_us_section {
        gap: 1rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .layer2_about_us_section {
        margin-top: 10%;
        flex-direction: column-reverse;
    }

    .our-services__cards {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .our-services__card,
    .our-services__card:last-child {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0;
    }


    .about_us_section_container {
        margin-bottom: 0%;
    }

    footer .row {
        padding: 0px 40px;
    }

    .col-md-3 {
        margin-top: 0;
        padding-right: 0;
        padding-left: 0;
    }
}

/* Large smartphones */
@media only screen and (min-width: 416px) and (max-width: 480px) {
    .desktop_navbar {
        display: none;
    }


    .mobile_logo {
        display: flex;
        align-items: center;
    }

    .mobile_logo h1 {
        font-size: 25px;
        margin-left: 10px;
    }

    .nav_logo_img_mobile {
        width: 45px;
        height: auto;
    }

    /* ------------------------------
   Mobile Navbar Base Styling
---------------------------------*/

    .mobile_navbar {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99999;
        background-color: #fff;
        padding: 10px 5%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        position: fixed;
    }

    .mobile_navbar.hidden {
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
    }


    .mobile_navbar.visible {
        transform: translateY(0);
        opacity: 1;
        transition: all 0.4s ease;
    }


    /* ------------------------------
   Logo Section
---------------------------------*/

    .mobile_logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav_logo_img_mobile {
        height: 30px;
    }

    .logo_text {
        font-size: 18px;
        font-weight: bold;
        color: #000;
    }


    /* ------------------------------
   Hamburger Icon
---------------------------------*/

    .mobile_menu_icon {
        width: 30px;
        height: 17px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1001;
    }

    .bar {
        height: 3px;
        width: 100%;
        background-color: #000;
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    .mobile_menu_icon.open .top {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile_menu_icon.open .middle {
        opacity: 0;
    }

    .mobile_menu_icon.open .bottom {
        transform: rotate(-45deg) translate(5px, -5px);
    }


    /* ------------------------------
   Menu Panel (Slide Down)
---------------------------------*/

    .mobile_menu_panel {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #2b3c4e;
        color: white;
        padding: 20px;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1000;
        animation: fadeIn 0.3s ease-in-out;
    }

    .mobile_menu_panel.show {
        display: flex;
    }


    /* ------------------------------
   Contact Section
---------------------------------*/
    .contact_section {
        text-align: center;
        display: block;
        align-items: center;
        margin-bottom: 0;
        width: 100%;
    }

    .contact_section p {
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
    }

    .contact_section i {
        color: #fff;
    }


    /* ------------------------------
   Social Icons
---------------------------------*/

    .social_icons {
        display: flex;
        gap: 40px;
        margin-left: auto;
        width: 100%;
        margin-top: 2%;
    }

    .social_icons a {
        color: white;
        font-size: 20px;
        text-decoration: none;
        transition: color 0.3s;
    }

    .social_icons a:hover {
        color: #1da1f2;
    }

    .menu_content {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    /* ------------------------------
   Animation
---------------------------------*/

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    .hero-section {
        display: grid;
        height: 120vh;
    }

    .hero-content {
        height: 70vh;
        width: 100%;
        padding: 0px 5%;
    }

    .hero-title {
        line-height: normal;
        font-size: 31px;
    }

    .hero-image {
        background: url(/img/banner.png) no-repeat center center;
        width: 100%;
        height: 50vh;
        background-size: cover;
        background-position: center;
    }

    .social-links {
        gap: 20px;
        left: 70px;
    }

    .social-link {
        font-size: 12px;
    }

    .cta-button {
        width: 50%;
    }

    .our-services__container {
        margin: 20% 0%;
    }

    .our-services__intro {
        flex-direction: column;
    }


    .our-services__card-text {
        max-width: 100%;
    }

    .our-services__headline {
        width: 100%;
    }


    .our-services__card-image {
        width: 100%;
        height: 50vh;
    }

    .our-services__card {
        padding: 23px 13px;
    }


    .our-services__card-title {
        margin: 0;
        padding-top: 5%;
    }

    .navy_blue_zone {
        height: auto;
    }

    .navy_blue_zone_layer1 h3 {
        font-size: 32px;
        width: 90%;
    }


    .navy_blue_zone_layer2 {
        gap: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 50px;
    }

    .metrics_card {
        width: auto;
        height: auto;
    }

    .light_blue_row {
        display: flex;
        justify-content: center;
        align-items: initial;
        gap: 1rem;
        flex-direction: column;
    }

    .flex-row-reverse {
        margin-top: 10%;
    }

    .light_blue_zone {
        margin: 10% 5%;
    }

    .light_blue_row .col-md-6 img {
        width: 200px;
        height: 200px;
    }


    .about_us_section {
        height: auto;
        margin-top: -60%;
        display: flex;
        justify-content: center;
        padding-top: 25%;
        padding-bottom: 10%;
        border-radius: 0 0 70px 70px;
    }

    /* .group-b,
    .text_block {
        width: 100%;
    } */

    .rectangle-d,
    .group-b {
        width: 200px;
        height: 200px;
    }

    .layer1_about_us_section,
    .layer2_about_us_section {
        gap: 1rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .layer2_about_us_section {
        margin-top: 10%;
        flex-direction: column-reverse;
    }

    .our-services__cards {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .our-services__card,
    .our-services__card:last-child {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0;
    }


    .about_us_section_container {
        margin-bottom: 0%;
    }

    footer .row {
        padding: 0px 25px;
        flex-direction: column;
    }

    .col-md-3 {
        margin-top: 0;
        padding-right: 0;
        padding-left: 0;
    }
}


@media only screen and (max-width: 440px) {
    .our-services__card-image {
        height: 40vh;
    }

    .stacks_section {
        height: 60vh;
    }

    .see-the-tangible-results {
        font-size: 29px;
    }

    .about_us_section {
        margin-top: -115%;
        height: 120vh !important;
    }
}

@media only screen and (max-width: 420px) {
    .stacks_section {
        height: 90vh;
    }

    .see-the-tangible-results {
        font-size: 28px !important;
    }

    .about_us_section {
        height: 148vh !important;
    }
}

/* Medium smartphones */
@media only screen and (min-width: 376px) and (max-width: 415px) {

    .desktop_navbar {
        display: none;
    }


    .mobile_logo {
        display: flex;
        align-items: center;
    }

    .mobile_logo h1 {
        font-size: 25px;
        margin-left: 10px;
    }

    .nav_logo_img_mobile {
        width: 45px;
        height: auto;
    }

    /* ------------------------------
   Mobile Navbar Base Styling
---------------------------------*/

    .mobile_navbar {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99999;
        background-color: #fff;
        padding: 10px 5%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        position: fixed;
    }

    .mobile_navbar.hidden {
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
    }


    .mobile_navbar.visible {
        transform: translateY(0);
        opacity: 1;
        transition: all 0.4s ease;
    }


    /* ------------------------------
   Logo Section
---------------------------------*/

    .mobile_logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav_logo_img_mobile {
        height: 30px;
    }

    .logo_text {
        font-size: 18px;
        font-weight: bold;
        color: #000;
    }


    /* ------------------------------
   Hamburger Icon
---------------------------------*/

    .mobile_menu_icon {
        width: 30px;
        height: 17px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1001;
    }

    .bar {
        height: 3px;
        width: 100%;
        background-color: #000;
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    .mobile_menu_icon.open .top {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile_menu_icon.open .middle {
        opacity: 0;
    }

    .mobile_menu_icon.open .bottom {
        transform: rotate(-45deg) translate(5px, -5px);
    }


    /* ------------------------------
   Menu Panel (Slide Down)
---------------------------------*/

    .mobile_menu_panel {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #2b3c4e;
        color: white;
        padding: 20px;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1000;
        animation: fadeIn 0.3s ease-in-out;
    }

    .mobile_menu_panel.show {
        display: flex;
    }


    /* ------------------------------
   Contact Section
---------------------------------*/
    .contact_section {
        text-align: center;
        display: block;
        align-items: center;
        margin-bottom: 0;
        width: 100%;
    }

    .contact_section p {
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
    }

    .contact_section i {
        color: #fff;
    }


    /* ------------------------------
   Social Icons
---------------------------------*/

    .social_icons {
        display: flex;
        gap: 40px;
        margin-left: auto;
        width: 100%;
        margin-top: 2%;
    }

    .social_icons a {
        color: white;
        font-size: 20px;
        text-decoration: none;
        transition: color 0.3s;
    }

    .social_icons a:hover {
        color: #1da1f2;
    }

    .menu_content {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    /* ------------------------------
   Animation
---------------------------------*/

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    .hero-section {
        display: grid;
        height: 120vh;
    }

    .hero-content {
        height: 70vh;
        width: 100%;
        padding: 0px 5%;
    }

    .hero-title {
        line-height: normal;
        font-size: 31px;
    }

    .hero-image {
        background: url(/img/banner.png) no-repeat center center;
        width: 100%;
        height: 50vh;
        background-size: cover;
        background-position: center;
    }

    .social-links {
        gap: 20px;
        left: 70px;
    }

    .social-link {
        font-size: 12px;
    }

    .cta-button {
        width: 70%;
    }

    .our-services__container {
        margin: 20% 0%;
    }

    .our-services__intro {
        flex-direction: column;
    }


    .our-services__card-text {
        max-width: 100%;
    }

    .our-services__headline {
        width: 100%;
    }


    .our-services__card-image {
        width: 100%;
        height: 259.99px;
    }

    .our-services__card {
        padding: 23px 13px;
    }


    .our-services__card-title {
        margin: 0;
        padding-top: 5%;
    }


    .navy_blue_zone {
        height: auto;
    }

    .navy_blue_zone_layer1 h3 {
        font-size: 32px;
        width: 90%;
    }


    .navy_blue_zone_layer2 {
        gap: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 50px;
    }

    .metrics_card {
        width: auto;
        height: auto;
    }

    .light_blue_row {
        display: flex;
        justify-content: center;
        align-items: initial;
        gap: 1rem;
        flex-direction: column;
    }

    .flex-row-reverse {
        margin-top: 10%;
    }

    .light_blue_zone {
        margin: 10% 5%;
    }

    .light_blue_row .col-md-6 img {
        width: 200px;
        height: 200px;
    }

    .about_us_section {
        height: auto;
        margin-top: -60%;
        display: flex;
        justify-content: center;
        padding-top: 25%;
        padding-bottom: 10%;
        border-radius: 0 0 70px 70px;
    }

    /* .group-b,
    .text_block {
        width: 100%;
    } */

    .rectangle-d,
    .group-b {
        width: 200px;
        height: 200px;
    }

    .layer1_about_us_section,
    .layer2_about_us_section {
        gap: 1rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .layer2_about_us_section {
        margin-top: 10%;
        flex-direction: column-reverse;
    }

    .our-services__cards {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .our-services__card,
    .our-services__card:last-child {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0;
    }


    .about_us_section_container {
        margin-bottom: 0%;
    }

    footer .row {
        padding: 0px 25px;
        flex-direction: column;
    }

    .col-md-3 {
        margin-top: 0;
        padding-right: 0;
        padding-left: 0;
    }
}


/* Standard smartphones */
@media only screen and (min-width: 360px) and (max-width: 376px) {

    .desktop_navbar {
        display: none;
    }


    .mobile_logo {
        display: flex;
        align-items: center;
    }

    .mobile_logo h1 {
        font-size: 25px;
        margin-left: 10px;
    }

    .nav_logo_img_mobile {
        width: 45px;
        height: auto;
    }

    /* ------------------------------
   Mobile Navbar Base Styling
---------------------------------*/

    .mobile_navbar {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99999;
        background-color: #fff;
        padding: 10px 5%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        position: fixed;
    }

    .mobile_navbar.hidden {
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
    }


    .mobile_navbar.visible {
        transform: translateY(0);
        opacity: 1;
        transition: all 0.4s ease;
    }


    /* ------------------------------
   Logo Section
---------------------------------*/

    .mobile_logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav_logo_img_mobile {
        height: 30px;
    }

    .logo_text {
        font-size: 18px;
        font-weight: bold;
        color: #000;
    }


    /* ------------------------------
   Hamburger Icon
---------------------------------*/

    .mobile_menu_icon {
        width: 26px;
        height: 17px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1001;
    }

    .bar {
        height: 3px;
        width: 100%;
        background-color: #000;
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    .mobile_menu_icon.open .top {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile_menu_icon.open .middle {
        opacity: 0;
    }

    .mobile_menu_icon.open .bottom {
        transform: rotate(-45deg) translate(5px, -5px);
    }


    /* ------------------------------
   Menu Panel (Slide Down)
---------------------------------*/

    .mobile_menu_panel {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #2b3c4e;
        color: white;
        padding: 20px;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1000;
        animation: fadeIn 0.3s ease-in-out;
    }

    .mobile_menu_panel.show {
        display: flex;
    }


    /* ------------------------------
   Contact Section
---------------------------------*/
    .contact_section {
        text-align: center;
        display: block;
        align-items: center;
        margin-bottom: 0;
        width: 100%;
    }

    .contact_section p {
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
    }

    .contact_section i {
        color: #fff;
    }


    /* ------------------------------
   Social Icons
---------------------------------*/

    .social_icons {
        display: flex;
        gap: 40px;
        margin-left: auto;
        width: 100%;
        margin-top: 2%;
    }

    .social_icons a {
        color: white;
        font-size: 20px;
        text-decoration: none;
        transition: color 0.3s;
    }

    .social_icons a:hover {
        color: #1da1f2;
    }

    .menu_content {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    /* ------------------------------
   Animation
---------------------------------*/

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    .hero-section {
        display: grid;
        height: 100vh;
        margin-top: 40%;
        gap: 60px;
    }

    .hero-content {
        height: 50vh;
        width: 100%;
        padding: 0px 5%;
        /* justify-content: flex-end; */
    }

    .hero-title {
        line-height: normal;
        font-size: 31px;
    }

    .hero-image {
        background: url(/img/banner.png) no-repeat center center;
        width: 100%;
        height: 50vh;
        background-size: cover;
        background-position: center;
        /* margin-top: 10%; */
    }

    .social-links {
        gap: 20px;
        left: 40px;
    }

    .social-link {
        font-size: 11px;
    }

    .cta-button {
        width: 70%;
    }

    .our-services__container {
        margin-top: 40%;
        margin-bottom: 20%;

    }

    .our-services__intro {
        flex-direction: column;
    }


    .our-services__card-text {
        max-width: 100%;
    }

    .our-services__headline {
        width: 100%;
    }


    .our-services__card-image {
        width: 100%;
        height: 259.99px;
    }

    .our-services__card {
        padding: 23px 13px;
    }


    .our-services__card-title {
        margin: 0;
        padding-top: 5%;
    }

    .stacks_section {
        height: 80vh !important;
    }


    .navy_blue_zone {
        height: auto;
    }

    .navy_blue_zone_layer1 h3 {
        font-size: 28px;
        width: 90%;
    }


    .navy_blue_zone_layer2 {
                gap: 10px;
        display: grid
;
        grid-template-columns: 1fr 1fr;
        margin-top: 50px;
        padding: 0px 20px;
    }

    .metrics_card {
        width: auto;
        height: auto;
    }

    .metrics_card p{
        font-size: 15px;
        /* line-height: 1.5; */
    }

    .light_blue_row {
        display: flex;
        justify-content: center;
        align-items: initial;
        gap: 1rem;
        flex-direction: column;
    }

    .flex-row-reverse {
        margin-top: 10%;
    }

    .light_blue_zone {
        margin: 10% 5%;
    }

    .light_blue_row .col-md-6 img {
        width: 180px;
        height: 180px;
    }

    .about_us_section {
        height: 170vh !important;
        margin-top: -60%;
        display: flex;
        padding-top: 25%;
        border-radius: 0 0 70px 70px;
        justify-content: flex-end;
        padding-bottom: 15%;
    }

    /* 
    .group-b,
    .text_block {
        width: 100%;
    } */

    .rectangle-d,
    .group-b {
        width: 180px;
        height: 180px;
    }

    .layer1_about_us_section,
    .layer2_about_us_section {
        gap: 1rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .layer2_about_us_section {
        margin-top: 10%;
        flex-direction: column-reverse;
    }

    .our-services__cards {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .our-services__card,
    .our-services__card:last-child {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0;
    }


    .about_us_section_container {
        margin-bottom: 0%;
    }

    footer .row {
        display: grid;
    }

    footer .col-md-3 {
        min-width: fit-content;
    }
}

/* Small smartphones */
@media only screen and (max-width: 359px) {

    .desktop_navbar {
        display: none;
    }


    .mobile_logo {
        display: flex;
        align-items: center;
    }

    .mobile_logo h1 {
        font-size: 25px;
        margin-left: 10px;
    }

    .nav_logo_img_mobile {
        width: 45px;
        height: auto;
    }

    /* ------------------------------
   Mobile Navbar Base Styling
---------------------------------*/

    .mobile_navbar {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99999;
        background-color: #fff;
        padding: 10px 5%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        position: fixed;
    }

    .mobile_navbar.hidden {
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
    }


    .mobile_navbar.visible {
        transform: translateY(0);
        opacity: 1;
        transition: all 0.4s ease;
    }


    /* ------------------------------
   Logo Section
---------------------------------*/

    .mobile_logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav_logo_img_mobile {
        height: 30px;
    }

    .logo_text {
        font-size: 18px;
        font-weight: bold;
        color: #000;
    }


    /* ------------------------------
   Hamburger Icon
---------------------------------*/

    .mobile_menu_icon {
        width: 26px;
        height: 17px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1001;
    }

    .bar {
        height: 3px;
        width: 100%;
        background-color: #000;
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    .mobile_menu_icon.open .top {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile_menu_icon.open .middle {
        opacity: 0;
    }

    .mobile_menu_icon.open .bottom {
        transform: rotate(-45deg) translate(5px, -5px);
    }


    /* ------------------------------
   Menu Panel (Slide Down)
---------------------------------*/

    .mobile_menu_panel {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #2b3c4e;
        color: white;
        padding: 20px;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1000;
        animation: fadeIn 0.3s ease-in-out;
    }

    .mobile_menu_panel.show {
        display: flex;
    }


    /* ------------------------------
   Contact Section
---------------------------------*/
    .contact_section {
        text-align: center;
        display: block;
        align-items: center;
        margin-bottom: 0;
        width: 100%;
    }

    .contact_section p {
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
    }

    .contact_section i {
        color: #fff;
    }


    /* ------------------------------
   Social Icons
---------------------------------*/

    .social_icons {
        display: flex;
        gap: 40px;
        margin-left: auto;
        width: 100%;
        margin-top: 2%;
    }

    .social_icons a {
        color: white;
        font-size: 20px;
        text-decoration: none;
        transition: color 0.3s;
    }

    .social_icons a:hover {
        color: #1da1f2;
    }

    .menu_content {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    /* ------------------------------
   Animation
---------------------------------*/

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    .hero-section {
        display: grid;
        height: 120vh;
        margin-top: 40%;
        gap: 60px;
    }

    .hero-content {
        height: 70vh;
        width: 100%;
        padding: 0px 5%;
        /* justify-content: flex-end; */
    }

    .hero-title {
        line-height: normal;
        font-size: 31px;
    }

    .hero-image {
        background: url(/img/banner.png) no-repeat center center;
        width: 100%;
        height: 50vh;
        background-size: cover;
        background-position: center;
        /* margin-top: 10%; */
    }

    .social-links {
        gap: 20px;
        left: 40px;
    }

    .social-link {
        font-size: 11px;
    }

    .left {
        position: relative;
        left: -20px;
    }

    .cta-button {
        width: 80%;
    }

    .our-services__container {
        margin-top: 40%;
        margin-bottom: 20%;

    }

    .our-services__intro {
        flex-direction: column;
    }


    .our-services__card-text {
        max-width: 100%;
    }

    .our-services__headline {
        width: 100%;
        font-size: 25px;
        line-height: normal;
    }


    .our-services__card-image {
        width: 100%;
        height: 259.99px;
    }

    .our-services__card {
        padding: 23px 13px;
    }


    .our-services__card-title {
        margin: 0;
        padding-top: 5%;
    }


    .navy_blue_zone {
        height: auto;
    }

    .navy_blue_zone_layer1 h3 {
        font-size: 28px;
        width: 90%;
    }


    .navy_blue_zone_layer2 {
        gap: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 50px;
    }

    .metrics_card {
        width: auto;
        height: auto;
    }

    .light_blue_row {
        display: flex;
        justify-content: center;
        align-items: initial;
        gap: 1rem;
        flex-direction: column;
    }

    .flex-row-reverse {
        margin-top: 10%;
    }

    .light_blue_zone {
        margin: 10% 5%;
    }

    .light_blue_row .col-md-6 img {
        width: 200px;
        height: 200px;
    }


    .about_us_section {
        height: 207vh !important;
        margin-top: -60%;
        display: flex;
        padding-top: 25%;
        border-radius: 0 0 70px 70px;
        justify-content: flex-end;
        padding-bottom: 15%;
    }

    /* .group-b,
    .text_block {
        width: 100%;
    } */

    .rectangle-d,
    .group-b {
        width: 180px;
        height: 180px;
    }

    .layer1_about_us_section,
    .layer2_about_us_section {
        gap: 1rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .layer2_about_us_section {
        margin-top: 10%;
        flex-direction: column-reverse;
    }

    .our-services__cards {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .our-services__card,
    .our-services__card:last-child {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0;
    }


    .about_us_section_container {
        margin-bottom: 0%;
    }

    footer .row {
        display: grid;
    }

    footer .col-md-3 {
        min-width: fit-content;
    }
}




@media screen and (max-width: 799px) {
    .bottom-navbar {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 70px;
        background: #ffffff;
        display: flex !important;
        justify-content: space-around;
        align-items: center;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

    .nav-item-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #000000;
        text-decoration: none;
        font-size: 12px;
        transition: all 0.3s ease;
    }

    .nav-item-bottom i {
        font-size: 20px;
        margin-bottom: 4px;
        transition: color 0.3s ease;
    }

    .nav-item-bottom.active i {
        color: #D7A76D;
    }

    .nav-item-bottom.active span {
        color: #003A5A;
    }

    .nav-item-bottom span {
        transition: color 0.3s ease;
    }

    .bottom-navbar {
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .bottom-navbar.visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* top navbar styles */



    .mobile_logo {
        display: flex;
        align-items: center;
    }

    .mobile_logo h1 {
        font-size: 25px;
        margin-left: 10px;
    }

    .nav_logo_img_mobile {
        width: 45px;
        height: auto;
    }

    /* ------------------------------
   Mobile Navbar Base Styling
---------------------------------*/

    .mobile_navbar {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99999;
        background-color: #fff;
        padding: 10px 5%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        position: fixed;
    }

    .mobile_navbar.hidden {
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
    }


    .mobile_navbar.visible {
        transform: translateY(0);
        opacity: 1;
        transition: all 0.4s ease;
    }


    /* ------------------------------
   Logo Section
---------------------------------*/

    .mobile_logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav_logo_img_mobile {
        height: 30px;
    }

    .logo_text {
        font-size: 18px;
        font-weight: bold;
        color: #000;
    }


    /* ------------------------------
   Hamburger Icon
---------------------------------*/

    .mobile_menu_icon {
        width: 30px;
        height: 17px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1001;
    }

    .bar {
        height: 3px;
        width: 100%;
        background-color: #000;
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    .mobile_menu_icon.open .top {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile_menu_icon.open .middle {
        opacity: 0;
    }

    .mobile_menu_icon.open .bottom {
        transform: rotate(-45deg) translate(5px, -5px);
    }


    /* ------------------------------
   Menu Panel (Slide Down)
---------------------------------*/

    .mobile_menu_panel {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #2b3c4e;
        color: white;
        padding: 20px;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1000;
        animation: fadeIn 0.3s ease-in-out;
    }

    .mobile_menu_panel.show {
        display: flex;
    }


    /* ------------------------------
   Contact Section
---------------------------------*/
    .contact_section {
        text-align: center;
        display: block;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        margin-bottom: 0;
        width: 100%;
    }

    .contact_section p {
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
    }

    .contact_section i {
        color: #fff;
    }


    /* ------------------------------
   Social Icons
---------------------------------*/

    .social_icons {
        display: flex;
        gap: 40px;
        justify-content: normal;
        margin-left: auto;
        width: 100%;
        margin-top: 2%;
    }

    .social_icons a {
        color: white;
        font-size: 20px;
        text-decoration: none;
        transition: color 0.3s;
    }

    .social_icons a:hover {
        color: #1da1f2;
    }

    .menu_content {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        height: auto;
    }

    /* ------------------------------
   Animation
---------------------------------*/

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.bottom-navbar .nav-item-bottom.active svg {
  /* fill: #D7A76D; */
    stroke: #D7A76D;
}