*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    object-fit: contain;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== HEADER ========== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
}

/* ----------First Navigation Bar ---------- */

.first_nav_bar {
    min-height: 40px;
    width: 100%;
    background-color: rgb(16, 16, 62);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.first_nav_bar i {
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.first_nav_bar i:hover {
    color: #4facfe;
}

.f_right_nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
}

.f_right_nav a {
    color: white;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.f_right_nav a:hover {
    color: #4facfe;
}

.f_right_nav button {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.f_right_nav button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

.social-icons {
    display: flex;
    gap: 15px;
}

/* -------------Second Navigation Bar----------- */

.second_nav_bar {
    min-height: 70px;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
}

.s_left_nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.s_left_nav .logo {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    /* border: 1px solid black; */
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

.s_left_nav h2 {
    color: #1e3c72;
    font-size: 1.5rem;
    white-space: nowrap;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    align-items: center;
}

.nav-links a {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    align-content: center;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    transition: width 0.3s ease-in;
}

.nav-links a:hover::after {
    width: 50%;
}

.nav-links a:hover {
    color: #4facfe;
}

.nav-links li {
    position: relative;
}

/* DROPDOWN LIST */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: white;
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropbtn:hover {
    background: #005fa3;
    color: white;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 540px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 12px;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1s ease, transform 1s ease;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    gap: 20px;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-section {
    display: flex;
    flex-direction: column;
}

.dropdown-section h3 {
    margin: 0 0 8px;
    font-size: 14px;
    color: #0077ccbd;
    border-bottom: 1px solid #ddd;
    padding-bottom: 4px;
}

.dropdown-section a {
    text-decoration: none;
    color: #333;
    padding: 6px 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.dropdown-section a:hover {
    color: #0077cc;
    transform: translateX(4px);
}



.dropdown2 {
    position: relative;
    display: inline-block;
}

.dropbtn2 {
    background: white;
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropbtn2:hover {
    background: #005fa3;
    color: white;
}

.dropdown-menu2 {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 340px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 12px;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1s ease, transform 1s ease;
}

.dropdown2:hover .dropdown-menu2 {
    display: flex;
    gap: 20px;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-section2 {
    display: flex;
    flex-direction: column;
}

.dropdown-section2 h3 {
    margin: 0 0 8px;
    font-size: 14px;
    color: #0077ccbd;
    border-bottom: 1px solid #ddd;
    padding-bottom: 4px;
    width: 300px;
}

.dropdown-section2 a {
    text-decoration: none;
    color: #333;
    padding: 6px 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.dropdown-section2 a:hover {
    color: #0077cc;
    transform: translateX(4px);
}

.dropdown,
.dropdown2 {
    position: relative;
    display: inline-block;
}

/* Specific widths for desktop */
.dropdown-menu {
    min-width: 540px;
}

.dropdown-menu2 {
    min-width: 300px;
}

/* Desktop Hover Effects */
@media (min-width: 769px) {

    .dropdown:hover .dropdown-menu,
    .dropdown2:hover .dropdown-menu2 {
        display: flex;
        gap: 20px;
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MOBILE RESPONSIVE STYLES (The Fix) --- */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        /* Stack main nav items */
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .dropdown,
    .dropdown2 {
        width: 100%;
        /* Make dropdown buttons full width */
    }

    .dropbtn,
    .dropbtn2 {
        width: 100%;
        text-align: left;
        padding: 12px;
    }

    .dropdown-menu,
    .dropdown-menu2 {
        position: static;
        /* Remove absolute positioning so it pushes content down */
        min-width: 100%;
        display: none;
        /* Controlled by JS or CSS toggle */
        box-shadow: none;
        background: #f9f9f9;
        transform: none;
        opacity: 1;
        flex-direction: column;
        /* Stack sections inside */
    }

    /* Show menu when button is clicked (Requires a small JS toggle or :focus) */
    .dropdown.active .dropdown-menu,
    .dropdown2.active .dropdown-menu2 {
        display: flex;
    }

    .dropdown-section2 h3 {
        width: 100%;
        /* Fix the hardcoded 300px width */
    }


    /* Ensure the menu is strictly hidden when not active */
    .dropdown-menu,
    .dropdown-menu2 {
        display: none !important;
    }

    .dropdown.active .dropdown-menu,
    .dropdown2.active .dropdown-menu2 {
        display: flex !important;
        flex-direction: column;
    }

    /* Target the links that aren't currently aligned */
    .s-nav-otop {
        padding-left: 0.68rem !important;
        /* Adjust this value to match your dropdowns */
        margin-left: 0;
        display: block;
        text-align: left;
    }

    /* If Service/Manage are inside a container with specific padding */
    .navbar-nav {
        padding-left: 0;
    }
}

/* ------------Hamburger Menu----------- */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1e3c72;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* --------------Footer Base--------------- */
.site-footer {
    background-color: #17274e;
    /* Deep Navy */
    color: #f8fafc;
    padding: 70px 0 20px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Column Styling */
.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #3b82f6;
    /* Accent Blue */
    margin-top: 10px;
}

.footer-form input {
    border-radius: 4px;
    height: 22px;
}

/* Logo & About */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 45px;
    border-radius: 50%;
}

.footer-logo h2 {
    font-size: 1.6rem;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

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

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}

/* Links */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #3b82f6;
    padding-left: 5px;
}

/* ----------intro-section----------------- */

.intro-section {
    display: flex;
    flex-direction: column;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Warehouse_asset/jacques-dillies-jcav1COVvOc-unsplash.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 42vh;
    color: white;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    /* font-size: 1rem; */
    position: relative;
    justify-content: center;
    align-items: center;
}

.intr-jnr-parent {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 2.5vh;
    gap: 2.5dvh;
    /* border: 1px solid red; */
    justify-content: center;
}

.intr-heading {
    font-size: 2rem;
    font-weight: 300;
    left: 16.5vw;
    left: 16.5dvw;
    position: relative;

}

.intr-child {
    left: 16.5vw;
    left: 16.5dvw;
    position: relative;


}

.intr-sub_txt {
    font-size: 1.2rem;
    font-weight: 400;
}

.int-promices ul {
    display: flex;
    flex-direction: row;
    gap: 5vw;
    gap: 5dvw;
    list-style: none;

}

.int-promices li {
    font-size: 1.2rem;
    font-weight: 400;
    transition: 0.3s ease;
    cursor: pointer;
}

.int-promices li:hover {
    color: #50acfc;
    transform: translateX(5px);

}

.intr-btn {
    display: inline-block;
    width: 6vw;
    width: 6dvw;
    height: 4vh;
    height: 4dvh;
    text-align: center;
    align-content: center;
    background: linear-gradient(135deg, #00d4ff 0%, #2e8ef5 100%);
    opacity: 1;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 0.94rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: none;
    border: 1px solid rgb(0, 140, 255);
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.intr-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #00d4ff 0%, #2e8ef5 100%);
    box-shadow: 0 0 2px 2px #4facfe;
    border: 1px solid #4facfe;
}

/* --------------------Lower Navigation----------------- */

.lower-nav {
    width: 100%;
    /* width: 100dvw; */
    height: auto;
}

.lower-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    /* border: 1px solid #000000; */
    width: 67%;
    height: auto;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    font-weight: bold;
    border-bottom: 2px solid #dfdfdf;
    padding-bottom: 0
}

.lower-nav-items {
    text-decoration: none;
    color: #333;
    position: relative;
    padding-bottom: 8px;
}

.lower-nav-items::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.lower-nav-items:hover::after {
    width: 100%;
}

/* --- Active State Underline --- */
.lower-nav-items.active::after {
    width: 100%;
}

/* -------------------Intro Overview Section----------------- */

.intro-container {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-parent {
    width: 70%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #000000; */
    padding: 40px 0 15px;
    margin-top: 2rem;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}

.intro-child1 {
    width: 50%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 0 5px;
}

.intro-child1-head {
    font-size: 1.8rem;
    font-weight: 100;
    line-height: 1.3;
    color: #13264b;
}

.intro-child1-subtxt1,
.intro-child1-subtxt2 {
    font-size: 1.01rem;
    font-weight: 500;
    color: #5f5f5f;
    line-height: 1.5;
}

.intro-child1-head,
.intro-child1-subtxt1,
.intro-child1-subtxt2 {
    padding: 0 20px;
    max-width: 90%;
}

.intro-child2 {
    width: 50%;
    height: auto;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1), 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    /* border: 1px solid #000000; */
}

/* -------------------Why Choose Us Section----------------- */

.why-main {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 0 5rem;
}

.why-main-jr {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-main-container {
    width: 70%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    align-items: center;
    /* border: 1px solid #000000; */
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}

.why-header {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: auto;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #000000; */


}

.why-header-head {
    height: 5rem;
    width: 100%;
    font-size: 1.8rem;
    font-weight: 100;
    line-height: 1.3;
    color: #13264b;
    max-width: 100%;
    height: auto;
    justify-content: center;
    text-align: center;
    /* border: 1px solid #000000; */
    display: flex;
}

.why-header-head-txt {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.why-header-head-txt::before,
.why-header-head-txt::after {
    content: "";
    width: 4rem;
    height: 2px;
    background-color: #3b82f6;
}

.why-header-subtxt {
    max-width: 80%;
    height: auto;
    font-size: 1.01rem;
    font-weight: 500;
    color: #5f5f5f;
    line-height: 1.5;
    justify-content: center;
    text-align: center;
    /* border: 1px solid #000000; */
    padding-top: 0.9rem;
}

.why-pic {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    justify-content: center;
    align-items: center;
}

.why-pic-child {
    width: 25%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    gap: 0.7rem;
    /* border: 1px solid #000000; */
}

.why-pic-child p {
    max-width: 80%;
    height: auto;
    font-size: 1.01rem;
    font-weight: 500;
    color: #5f5f5f;
    line-height: 1.5;
    justify-content: center;
    text-align: center;
    align-self: center;
}

.why-pic-child-subtxt {
    display: flex;
    /* border: 1px solid #000000; */
    max-width: 100%;
    justify-content: center;
    align-items: center;
}

.why-pic-child-head {
    width: 100%;
    height: auto;
}

.why-icon {
    padding-top: 2.2rem;
}

.why-icon i {
    color: #3b82f6;
    font-size: 3rem;
    ;
}

/* --------------------Services Section----------------- */
.our-services-main {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 6rem 0 5rem; */
}

.our-services-cont {
    width: 70%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #000000; */
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}

.our-services-jr-cont {
    width: 100%;
    height: 55vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    /* border: 1px solid #000000; */
    margin-bottom: 3vh;
}

.our-services-child-header {
    height: auto;
    width: 100%;
    font-size: 1.6rem;
    font-weight: 100;
    line-height: 1.3;
    color: #13264b;
    display: flex;
    justify-content: center;
    text-align: center;
    /* border: 1px solid #000000; */
}

.our-services-child-header-txt {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #000000; */
}

.our-services-child-header-txt::before,
.our-services-child-header-txt::after {
    content: "";
    width: 5rem;
    height: 2px;
    background-color: #3b82f6;
}

.our-services-jr-sub_child-head {
    height: 3rem;
    width: 100%;
    font-size: 1.21rem;
    font-weight: 500;
    line-height: 1.3;
    color: #13264b;
    max-width: 100%;
    height: auto;
    justify-content: center;
    text-align: center;
    align-items: center;
    /* border: 1px solid #000000; */
}

.our-services-child-body {
    width: 100%;
    height: 45vh;
    background-color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid #000000; */
}

.our-services-jr-child {
    max-width: 22%;
    height: 90%;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    border: 1px solid #d8d8d8;
    transition: all 0.3s ease;
}

.our-services-jr-sub_child-pic {
    width: 100%;
    height: 10rem;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    /* border: 1px solid #000000; */
    object-fit: cover;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: block;
}

.our-services-jr-sub_child-txt {
    max-width: 100%;
    height: auto;
    color: #5f5f5f;
    /* border: 1px solid #000000; */
    display: flex;
}

.our-services-jr-sub_child-txt p {
    max-width: 93%;
    height: auto;
    font-size: 1.01rem;
    font-weight: 500;
    color: #5f5f5f;
    line-height: 1.5;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.our-services-jr-child:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* ------------------How Trance Works Section----------------- */

.how-work-container {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5rem;
}

.how-work-parent {
    width: 70%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #000000; */
    padding: 40px 0 15px;
    margin-top: 2rem;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}

.how-work-child1 {
    width: 50%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 0 5px;
}

.how-work-child1-head {
    font-size: 1.8rem;
    font-weight: 100;
    line-height: 1.3;
    color: #13264b;
}

.how-work-child1-subtxt1,
.how-work-child1-subtxt2 {
    font-size: 1.01rem;
    font-weight: 500;
    color: #5f5f5f;
    line-height: 1.5;
}

.how-work-child1-head,
.how-work-child1-subtxt1,
.how-work-child1-subtxt2 {
    padding: 0 20px;
    max-width: 90%;
}

.how-work-child2 {
    width: 50%;
    height: auto;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1), 0 1px 4px 0 rgba(0, 0, 0, 0.1);
}

/* ----------------World Map Section----------------- */

.world-map-container {
    width: 100%;
    /* height: auto; */
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;

}

.world-map-parent {
    width: 100%;
    min-height: 30rem;
    background-color: none;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #000000; */
    padding: 60px 20px;
    margin-top: 2rem;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    background-size: cover;
    background-position: center;
    /* background-image: url(Warehouse_asset/ChatGPT\ Image\ Apr\ 17\,\ 2026\,\ 11_21_04\ PM.png); */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('Warehouse_asset/ChatGPT Image Apr 17, 2026, 11_21_04 PM.png');
}

.world-map-child1-head {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    color: #ffffff;
    text-align: center;
    backdrop-filter: blur(1px);
}
.world-map-child1-head h3 {
    font-size: clamp(1.5rem, 5vw, 2.8rem); /* Fluid typography */
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

.world-map-child1-subtxt1 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    text-align: center;
    max-width: 100%;
    backdrop-filter: blur(2px);
}

.world-map-child1 {
    width: 90%;
    max-width: 800px;
    /* height: auto; */
    background-color: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* padding: 5px; */
    align-items: center;
}

.world-map-child1-buttons {
    display: flex;
    justify-content: center;
    /* flex-direction: column; */
    gap: 20px;
    width: 100%;
    align-items: center;
}

.w-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    height: 50px;
    text-align: center;
    /* align-content: center; */
    background: linear-gradient(135deg, #00d4ff 0%, #2e8ef5 100%);
    opacity: 1;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 0.94rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: none;
    border: 1px solid rgb(0, 140, 255);
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}


.w-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #00d4ff 0%, #2e8ef5 100%);
    box-shadow: 0 5px 15px rgba(0, 136, 255, 0.541);
    border: 1px solid #4facfe;
}


/* ========== RESPONSIVE DESIGN ========== */

/* Tablet & Smaller Desktop (1024px and below) */
@media (max-width: 1024px) {

    .intro-parent,
    .why-main-container,
    .our-services-cont,
    .how-work-parent,
    .lower-nav-container {
        width: 90%;
        /* Expand width on smaller screens */
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns for footer instead of 4 */
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {

    /* Navigation Adjustments */
    .first_nav_bar {
        justify-content: center;
        padding: 10px;
    }

    .f_right_nav {
        gap: 10px;
        justify-content: center;
    }

    .hamburger {
        display: flex;
        /* Show the hamburger */
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: -100%;
        /* Hide off-screen */
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 20px;
    }
    
    .nav-links.active {
        left: 0;
        /* Slide in when active */
    }

    /* Hero Section (Strategic Warehousing) */
    .intr-heading {
        left: 0;
        text-align: center;
        font-size: 1.5rem;
    }

    .intr-child {
        left: 0;
        text-align: center;
        margin: 0 auto;
    }

    .int-promices ul {
        justify-content: center;
    }

    .intr-btn {
        width: 120px;
    }

    /* Side-by-Side Sections (Intro & How it works) */
    .intro-parent,
    .how-work-parent {
        flex-direction: column;
        /* Stack image on top of text */
        text-align: center;
    }

    .intro-child1,
    .intro-child2,
    .how-work-child1,
    .how-work-child2 {
        width: 100%;
    }

    .intro-child2,
    .how-work-child2 {
        order: -1;
        /* Move images to the top of the text */
        margin-bottom: 20px;
    }

    /* Lower Nav (Scrollable on mobile) */
    .lower-nav-container {
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        gap: 20px;
        padding-bottom: 10px;
    }

    /* Why Us Section */
    .why-pic-child {
        width: 50%;
        /* 2 per row on mobile */
        margin-bottom: 20px;
    }

    /* Services Section */
    .our-services-jr-cont {
        height: auto;
    }

    .our-services-child-body {
        height: auto;
        flex-direction: column;
        gap: 20px;
    }

    .our-services-jr-child {
        max-width: 100%;
        /* Cards take full width */
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        /* 1 column for footer */
        text-align: center;
    }

    .footer-column h3::after {
        margin: 10px auto;
        /* Center the blue line */
    }

    .footer-logo,
    .footer-social {
        justify-content: center;
    }

    .world-map-child1-buttons {
        flex-direction: row;
        /* Side by side on desktop */
        justify-content: center;
    }

    .world-map-child1 {
        width: 70%;
    }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
    .why-pic-child {
        width: 100%;
        /* Stack everything 1 per row */
    }

    .f_right_nav li:not(:last-child) {
        display: none;
        /* Hide secondary links on tiny screens to save space */
    }
}