body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0px;
    background-color: #f3f3f3;
}
.container {
    max-width: 2560px;
}





.hero-mobile {
    display: none;
}

.hero {
    position: relative;
    text-align: left;
    color: white;
    margin-top: 50px; /* Adjust margin-top to prevent content from being hidden behind the fixed header */
    margin-bottom: 0px;
    background-color: #015397; /* keeps white hero text legible while the large JPG loads (no white flash) */
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1920 / 900; /* reserve the hero's height before the image loads so it can't collapse */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    color: #74d0f3;
    width: 100%;
    height: 99.4%;
    opacity: 0.5;
    z-index: 1;
}


.hero-text {
    position: absolute;
    top: 50%;
    left: 31%;
    max-width: 700px;
    transform: translate(-50%, -50%);
    z-index: 2;
}
hero-text a:nth-child(3) {
   margin-top: 20px;
}

.hero-text h1 {
    font-size: 3em;
    margin: 0;
    font-weight: bold;
}

.hero-text p {
    font-size: 1.0em;
    margin: 10px 0;
}
.hero-buttons{
    display: flex;
    gap: 20px;
}

.usghBtn,
.ghBtn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px; /* Adjust padding for resizing */
    background-color: #74d0f3;
    border: 2px solid transparent;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    text-align: center;
    text-decoration: none; /* Ensure it's treated as a button */
    font-weight: normal;
    font-weight: 550;
}

.usghBtn:hover {
    background-color: #2e63af;
    color: #fff;
}
.ghBtn:hover {
    background-color: #ffffff;
    color: #015397;
    border-color:  #ffffff;

}
.usghBtn{
    color: #022542;

}
.ghBtn{
    background-color: transparent;
    border: 2px solid #eaa00d; 
}

/* --- SCROLL DOWN ARROW --- */
.scroll-down-wrapper {
    position: absolute;
    bottom: 70px; /* Distance from the bottom edge of the hero */
    left: 50%;
    border: 1px solid #74d0f3; /* Border color for the circular wrapper */
    border-radius: 50%;
    padding: 10px; /* Space around the arrow */
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-decoration: none;
    animation: bounceArrow 2s infinite; /* Smooth hovering loop */
}

/* Creating the downward chevron using border lines */
.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 3px solid #74d0f3; /* Your primary light blue theme color */
    border-bottom: 3px solid #74d0f3;
    transform: rotate(45deg); /* Rotates the square border to look like an arrow pointer V */
    transition: border-color 0.3s ease;
    align-self: center;
}

/* Subtle hover color shift */
.scroll-down-wrapper:hover .scroll-arrow {
    border-right-color: #eaa00d; /* Shifts to your accent orange/gold on hover */
    border-bottom-color: #eaa00d;
  
}
.scroll-down-wrapper:hover {
    border-color: #eaa00d; /* Shift the wrapper border color on hover for added effect */
}

/* Smooth, floating keyframe animation */
@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px); /* Moves up slightly */
    }
    60% {
        transform: translate(-50%, -4px);  /* Gentle secondary drop drop */
    }
}
.explore-button{
    margin: 50px 0;
}

.content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 20px; /* Adjust padding as needed */
    background-image: url('images/content-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0px;
}

.content-text {
    flex: 1;
    max-width: 90%;
    z-index: 1; /* Ensure text is above background image */
    position: relative; /* Ensure relative positioning for absolute positioning within */
    text-align: left;
    background: rgba(255, 255, 255, 0.0); /* Optional: Semi-transparent background for readability */
    padding: 50px; /* Optional: Padding for content text */
}

.content-text h2 {
    font-size: 2.5em;
    color: #2e63af;
    margin-bottom: 20px;
    margin-top: 0px;
}

.content-text p {
    font-size: 1.2em;
    color: #666;
}


.content-image {
    flex: 1;
    text-align: center;
    margin-right: 50px; /* Adjust margin as needed to move it further right */
    z-index: 1; /* Ensure image is above background image */
}

.content-image img {
    max-width: 97%;
    height: auto;
}
.content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.0); /* Optional: Overlay color for better contrast */
}

.services-mobile {
    display: none;
}
.services {
    padding: 160px 20px; /* Increased padding to increase height */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px 30px; /* Reduced vertical gap and kept horizontal gap */
    background: linear-gradient(to bottom right, white, #74d0f3); /* Gradient background */
    scroll-margin-top: 100px; /* Adjust this value to offset the scroll position */
  }
  
.service {
    position: relative; /* For positioning the text */
    width: 300px; /* Set the width */
    height: 350px; /* Fixed height */
    overflow: hidden; /* Clip any overflow */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content at the bottom */
    align-items: center; /* Center align the text */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow to the service box */
    border-radius: 10px; /* Optional: rounded corners for a softer look */
    cursor: pointer;
  }
.service img {
    width: 100%; /* Make the image take the full width of the service box */
    height: 100%; /* Make the image take the full height of the service box */
    object-fit: cover; /* Ensure the image covers the area without stretching */
    position: absolute; /* Position the image absolutely */
    top: 0;
    left: 0;
    z-index: 1; /* Ensure the image is behind the text */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5); /* Add shadow to the image */
  }
  
.service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 99, 175, 0.4); /* Semi-transparent overlay */
    z-index: 2; /* Ensure the overlay is above the image but below the text */
  }
  .service:nth-child(1),
  .service:nth-child(2) {
    margin-bottom: 30px; /* Adjust this value to reduce the spacing */
  }

  .service h2{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.0em;
    font-weight: bold;
    margin-bottom: 5px;
    z-index: 10;
    text-align: center;
    padding: 0 10px;
    width: 100%;
}
.service p{
    display: flex;
    text-align: center;
    position: absolute;
    color: #fff;
    font-size: 1.0em;
    margin-bottom: 20%;
    justify-self: center;
    z-index: 3;
    padding: 0 10px;
}
.service:hover{
    filter: brightness(1.2); /* Adjust brightness on hover */
    transform: translateY(-3px); /* Move icon up slightly on hover */
}
  
.additional-content {
    padding: 200px 150px;
    background-color: #f0f0f0;
    text-align: center;
    background-image: url('images/background-image.jpg');
    background-size: cover; /* Maintain aspect ratio and cover entire section */
    background-position: center center; /* Center the background image */
}

.additional-content-text h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.additional-content-text p {
    font-size: 1.2em;
    color: #666;
}

.whatsapp-icon {
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 1005; 
    justify-content: right;
    align-items: center;
}
.whatsapp-icon a img {
    width: 50px;
    margin-left: auto;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition */
}
.whatsapp-icon:hover{
    filter: brightness(1.2); /* Adjust brightness on hover */
    transform: translateY(-3px); /* Move icon up slightly on hover */
}



/* --- USA TO GHANA LANDING HERO --- */
.hero-landing {
    position: relative;
    text-align: left;
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 0px;
    min-height: 560px;
    overflow: hidden;
}

.hero-landing img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-landing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(1, 83, 151, 0.85), rgba(1, 83, 151, 0.85));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 31%;
    max-width: 700px;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #74d0f3;
    margin-bottom: 30px;
    font-weight: 400;
}

.btn-primary-cta {
    display: inline-block; 
    padding: 15px 35px; 
    background-color: #eaa00d; 
    color: #ffffff; 
    text-decoration: none; 
    border-radius: 6px; 
    font-weight: 600; 
    font-size: 1.1rem; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
    transition: transform 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    background-color: #c9880a;
}

/* --- PICKUP WRAPPER SECTION BLOCK --- */
.pickup-section {
    padding: 40px 20px; 
    background-color: #f8fafc;
}

.section-header {
    text-align: center; 
    margin-bottom: 20px;
    margin-top: 80px;
}

.section-title {
    font-size: 2rem; 
    color: #015397; 
    font-weight: 700; 

}

.section-subtitle {
    color: #64748b; 
    max-width: 600px; 
    margin: 0 auto;
}

@media (max-width: 1250px) {
    .container{
        width: 100%;
    }

    .service{
        width: 250px;
        height: 290px;
    }

    .footer-nav{
        flex-wrap: wrap;
        padding: 30px 30px;
    }
}


@media (max-width: 1205px) {
    .container {
        width: 100%;
    }

    .hero-text {
        margin-left: 50px;
    }

    .hero-content {
        left: 38%;
    }

    .services {
        gap: 20px 50px;
    }
}

@media (max-width: 1100px){
    .container{
        width: 100%;
    }

    .services {
        gap: 20px 50px;
    }
}

@media (max-width: 1125px) {
    .container {
        width: 100%;
    }

 

    .hero-text{
        margin-left:100px;
    }
    .hero-content {
        left: 42%;
    }
    .services {
        gap: 20px 50px;
    }
}

@media (max-width: 1020px){
    .container{
        width: 100%;
    }

    .content{
        flex-direction: column;
        padding: 10px 20px;
    }
    .content-text{
        text-align: center;
    }
    .content-image{
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 5%;
    }

    .additional-content-text p{
        text-align: center;
    }
}

@media (max-width: 1005px) {
    .container{
        width: 100%;
    }

}

@media (max-width: 974px){
    .container{
        width: 100%;
    }


}

@media (max-width: 878px) {
    .container {
        width: 100%;
    }

 
    .hero{
        padding-top: 60px;
    }

    .hero-text{
        margin-top: 30px;
        margin-left: 70px;
        margin-bottom: 50px;
    }
    .hero-text h1{
        font-size: 2em;
    }
    .hero-text p{
        font-size: 0.8em;
        padding-right: 100px;
    }

    .hero img{
        width:100%;
        height: auto;
    }

    .hero-landing {
        margin-top: 0;
        min-height: 500px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        max-width: none;
        transform: translateY(-50%);
    }

    .hero-title {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding-right: 40px;
    }

    .content{
        padding: 20px 20px;
    }
    .content-text h2{
        font-size: 1.8em;
    }
    .content-text p{
        font-size: 1em;
    }

    .footer-nav{
        margin-top: 50px;
        flex-wrap: wrap;
    }


}


@media (max-width: 768px) {
    .container {
        width: 100%;
    }

  




    .usghBtn,
    .ghBtn{
        padding: 10px 25px;
        font-size: 0.8;
    }
    
      .additional-content{
        padding: 100px;
    }
    .additional-content-text h2{
        font-size: 2em;
    }
    .additional-content-text p{
        font-size: 1em;
        text-align: justify;
    } 

    .services {
        gap: 30px 50px;
        flex-wrap: wrap;
    }
    .service{
        width: 200px;
        height: 200px;
    }
    .service h2{
        font-size: 1.5em;
    }
    .service p{
        font-size: 0.8em;
        margin-bottom: 5%;
    }

    .whatsapp-icon a img {
        width: 40px;
    }    
    .footer-nav{
        margin-top: 20px;
        flex-wrap: wrap;
    }
}


/**For Mobile Phones Only**/
@media (max-width: 591px) {

    .container {
        width: 100%;
    }


    .hero {
        display: none;
    }
    .hero-mobile {
        display: flex;
        flex-wrap: wrap;
        padding-top: 50px;
    }

    .hero-landing {
        min-height: 480px;
    }

    .hero-content {
        left: 16px;
        right: 16px;
    }

    .hero-title {
        font-size: 1.6em;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        padding-right: 0;
    }

    .btn-primary-cta {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .hero-mobile-text {
        position: absolute;
        margin-top: 400px;
        left: 40%;
        transform: translate(-50%, -50%);
        z-index: 2;
        color: #fff;
    }
    .hero-mobile-text h1 {
        font-size: 2em;
        font-weight: bold;
    }

    .content{
        padding: 5% 0;
    }
    .content-text{
        margin-top: 0;
        max-width: 100%;
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .content-text h2{
        font-size: 1.5em;
    }
    .content-text p{
        font-size: 1.0em;
        text-align: center;
    }
    .content-text .learn-more-button{
        padding: 5px 20px;
        font-size: 0.6;
    }

    .services {
        display: none;
    }

    .services-mobile {
        padding: 0px 70px; /* Adjust padding as desired */
        padding-top: 35%;
        padding-bottom: 35%;
        display: flex;
        flex-wrap: nowrap; /* Prevent wrapping to make horizontal scrolling work */
        justify-content: flex-start;
        gap: 70px; /* Horizontal gap between items */
        background: linear-gradient(to bottom right, white, #74d0f3);
        overflow-x: auto; /* Enable horizontal scrolling */
        scroll-snap-type: x mandatory; /* Optional: Snap to each item when scrolling */
        scroll-margin-top: 10px; /* Adjust this value to offset the scroll position */
    }

    .service-mobile::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(46, 99, 175, 0.3); /* Semi-transparent overlay */
        z-index: 2; /* Ensure the overlay is above the image but below the text */
        border-radius: 10px;
      }
    
    .service-mobile {
        flex: 0 0 auto; /* Prevent flex-grow for individual items */
        position: relative;
        display: inline-block;
        text-align: center;
        cursor: pointer;
        width: 300px;
        height: 400px;
        border-radius: 50px;
        scroll-snap-align: center; /* Optional: Align each item in the center on scroll */
    }
    
    .service-mobile img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
    }
    
    .service-mobile h2 {
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.5em;
        font-weight: bold;
        z-index: 10;
    }
    
    .service-mobile:hover {
        filter: brightness(1.2);
        transform: translateY(-3px);
    }
    
    /* Hide scroll bar on desktop for aesthetic, but allow touch scroll */
    .services-mobile::-webkit-scrollbar {
        display: none;
    }
    .services-mobile {
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }
    
    

    .additional-content-text h2{
        font-size: 1.5em;
    }
    .additional-content-text p{
        font-size: 1.0em;
        text-align: center;
    } 

    .whatsapp-icon a img {
        width: 35px;
    }  


}


@media (max-width: 449px) {
    .container {
        width: 100%;
    }


    .hero-mobile-text{
        font-size: 0.8em;
        margin-top: 280px;
    }

    .services-mobile{
        padding: 00px 70px;
        gap: 20px 50px;
        padding-top: 25%;
        padding-bottom: 25%;
    }
    .service {
        display: none;
    }
    .service-mobile::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
    .service-mobile{
        position: relative;
        display: inline-block;
        text-align: center;
        cursor: pointer;    
        border-radius: 50px; 
        width: 230px;
        height: 300px;
    }
    .service-mobile img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow to the service box */
        border-radius: 10px;
    }
    .service-mobile h2{
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.1em;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .additional-content-text p{
        font-size: 1.0em;
        text-align: center;
    }

    .footer {
        padding-left: 20px;
        padding: 0;
    }
    .footer-info{
        font-size: 0.8em;
    }
    .footer-nav h3{
        font-size: 0.8em;
    }
    
    .footer-nav ul li {
        font-size: 0.8em;
    }
    .footer-info-copyright{
        font-size: 0.6em;
    }
    .social-media img {
        height: 20px;
    }
    .addresses {
        gap: 50px;
        align-self: center;
        padding-right: 20px;
    }
}

@media (max-width: 450px){
    .container{
        width: 100%;
    }


    .content{
        padding: 50px 5px;
    }

    .additional-content{
        padding: 50px 30px;
    }
    .additional-content-text h2{
        font-size: 1.5em;
    }
}