@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
    font-family: 'Open Sans', sans-serif, Segoe UI, Tahoma, Geneva, Verdana, ;
}


:root {

    --green-color: #0DC269;
    --blue-color: #2736AD;
    --blue-hover: #0050c7;
    --white-color: white;
}

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

body {
    -webkit-user-select: none;
    /* Chrome/Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+ */
    user-select: none;
    /* Standard */
    -webkit-user-drag: none;
}

.about-us {
    opacity: 1;
    transform: translateY(0);
    /* margin: 200px auto;
      max-width: 600px;
      background: #ddd;
      padding: 30px;
      font-size: 20px; */
}



html,
body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

header {
    width: 100%;
    /* height: 100vh; */

}

.bar-container {
    display: flex;
    width: 100%;
    height: 25px;
}

.green-section {
    flex: 1;
    background-color: var(--green-color);
}

.blue-section {
    flex: 1;
    background-color: var(--blue-color);
}



.logo-button-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
}

.logo-1 {
    width: 130px;
    height: auto;
}

.button-right button {
    padding: 18px 12px;
    font-size: 20px;
    background-color: var(--green-color);
    font-weight: 900;
    color: var(--blue-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
}


.main-image {
    width: 100%;
    max-height: 585px;
    overflow: hidden;
    z-index: 0;
}

.main-img-header {
    width: 100%;
    height: 80vh;
    max-height: 585px;
    display: block;
    object-fit: fill;
    z-index: 0;
}


/* .main-img-header {
    width: 100%;
    height: 585px;

} */
.com-logo {
    width: 55px;
    height: 18px;
    position: relative;
    top: 2px;
}

.main-h1 {
    position: absolute;
    top: 200px;
    left: 50px;
    color: var(--green-color);
    font-weight: 800;
    font-size: 70px;

}

.main-h {
    position: absolute;
    top: 310px;
    left: 50px;
    color: var(--blue-color);
    font-weight: 800;
    font-size: 80px;
}


main {
    width: 100%;
}




/* new */


/* 
.text-ship-1 {
    position: relative;
    left: 30%;
    top: -60px;
    color: var(--blue-color);
    font-weight: 900;
    font-size: 30px;
} */
.text-ship-1 {
    position: relative;
    top: -60px;
    left: 40%;
    color: var(--blue-color);
    /* color: #002855; */
    /* color: #FFE600; */
    font-weight: 900;
    font-size: 30px;
}

.service-img {
    width: 400px;
    height: 180px;
    margin: -45px auto 0 auto;
    display: block;
    z-index: 1;
}

.circle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
    justify-content: center;
    place-items: center;
    margin: 20px 0;
    padding: 0;
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.circle.in-view {
    opacity: 1;
    transform: translateY(0);
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.green {
    background: var(--green-color);
}

.blue {
    background: var(--blue-color);
}

@media (max-width: 1024px) {
    .circle-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .circle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .circle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.green {
    background-color: var(--green-color);
}

.blue {
    background-color: var(--blue-color);
}


.circle.green {
    background-color: var(--green-color);
}

.circle.blue {
    background-color: var(--blue-hover);
}

/* about us */
.about-img {
    width: 400px;
    height: 180px;
    margin: 0 auto 0 auto;
    display: block;
}

.about-text {
    position: relative;
    left: 44.5%;
    top: -56px;
    color: var(--green-color);
    font-weight: 900;
    font-size: 33px;
}

/* 
.about-us-content {
    border: 5px solid green;
    border-radius: 30px;
    width: 90%;
    display: block;
    margin: auto;
    height: 500px;
} */
.about-us-content {
    border: 5px solid var(--green-color);
    border-radius: 30px;
    max-width: 90%;
    width: 100%;
    margin: auto;
    padding: 40px;
    font-size: 21px;
    box-sizing: border-box;
    color: var(--blue-color);
    line-height: 1.7;
    height: auto;
    /* Let it grow with content */
}

.about-us-content strong {
    color: var(--green-color);
}

.about-us-content em {
    color: var(--blue-color);
    font-style: italic;
}

.about-us-content p {
    text-align: justify;
    margin-bottom: 15px;
}

/* ✅ Responsive adjustments */
@media screen and (max-width: 768px) {
    .about-us-content {
        padding: 20px;
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .about-us-content {
        padding: 15px;
        font-size: 16px;
    }
}


/* countries */
.countries-img {
    width: 400px;
    height: 180px;
    margin: 0 auto 0 auto;
    display: block;
}

.countries-text {
    position: relative;
    left: 38.9%;
    top: -59px;
    color: var(--blue-color);
    font-weight: 900;
    font-size: 30px;
}

.countries-main-img {
    width: 85%;
    margin: 0 auto;
    display: block;
    height: 700px;

}


/* gallery */

/* Image on top */
.gallery-img-ship {
    width: 400px;
    height: 180px;
    margin: -60px auto 0 auto;
    display: block;
}

/* Gallery Title */
.gallery-text {
    position: relative;
    left: 45.5%;
    top: -55px;
    color: var(--green-color);
    font-weight: 900;
    font-size: 33px;
}

/*  */
/* Grid Layout */
.gallery-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    border-radius: 30px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Common Image Styles */
.gallery-content img {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 6;
    object-fit: fill;
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1.61, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1.61, 0.36, 1),
        filter 0.3s;
    border: 6px solid transparent;
    position: relative;
    /* for glow */
    cursor: pointer;
}

/* Reveal when in view */
.gallery-content img.in-view {
    opacity: 1;
    /* transform will be overridden dynamically */
}

/* Hover: light zoom only */
.gallery-content img:hover {
    transform: scale(1.05) !important;
    filter: brightness(1.07) contrast(1.1);
    z-index: 2;
    /* stay above neighbors */
}

/* Glow following mouse */
.gallery-content img::before {
    content: '';
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s;
}

.gallery-content img:hover::before {
    opacity: 1;
}

/* Alternating Border Colors */
.gallery-content img:nth-child(odd) {
    border-color: var(--blue-color);
}

.gallery-content img:nth-child(even) {
    border-color: var(--green-color);
}

/* Tablet: 2 images per row */
@media (max-width: 992px) {
    .gallery-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile: 1 image per row */
@media (max-width: 576px) {
    .gallery-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .gallery-content img {
        aspect-ratio: 4 / 5;
        border-radius: 15px;
    }
}

/* founder */
.founder-text {
    position: relative;
    left: 45%;
    top: -63px;
    color: var(--blue-color);
    font-weight: 900;
    font-size: 33px;
}
.founder-img-1 {
    border-radius: 30px;
    width: 200px;          /* fixed width */
    height: 250px;         /* corrected height */
    margin: auto;
    overflow: hidden;      /* keeps corners rounded */
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-img-1 img {
    width: 100%;
    height: 100%;
    object-fit:contain; 
    display: block;
}

.founder-content {
    border-radius: 30px;
    /* margin-top: 0; */
    width: 60%;
    height: 650px;
    margin: auto;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-content img {
    width: 100%;
    height: 100%;
    object-fit: fill; 
    border-radius: 30px; 
    display: block;
}

/* client */
.client-img-ship {
    width: 400px;
    height: 180px;
    margin: 0 auto 0 auto;
    display: block;
}

.client-img-ship-quota {
    width: 300px;
    height: 120px;
    margin: 0 auto 0 auto;
    display: block;
}

.client-text {
    position: relative;
    left: 43%;
    top: -60px;
    color: var(--green-color);
    font-weight: 900;
    font-size: 33px;
}

.box-container {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin: 20px 0;
}

.box {
    width: 300px;
    height: 400px;
    border-radius: 25px;
}

.box.green {
    background-color: var(--green-color);

}

.box.blue {
    background-color: var(--blue-color);
}


/* testi */
.testimonials-img {
    width: 400px;
    height: 180px;
    margin: 0 auto 0 auto;
    display: block;
}

.testi-text {
    position: relative;

    left: 42%;
    top: -60px;
    color: var(--green-color);
    font-weight: 900;
    font-size: 33px;

    /* position: relative;
    left: 43%;
    top: -60px;
    color: var(--green-color);
    font-weight: 900;
    font-size: 33px; */
}

/* 
    .testimonial-wrapper {
      overflow: hidden;
      width: 100%;
      padding: 20px 0px;
      box-sizing: border-box;
    
    } */
.testimonial-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 1140px;
    /* same as Bootstrap container for large screens */
    margin: 0 auto;
    /* center it */
    padding: 20px 15px;
    /* top/bottom 20px, left/right 15px like Bootstrap */
    box-sizing: border-box;
    /* color: #003366; */
}



.box-container-testi {
    display: flex;
    gap: 70px;
    animation: scroll 25s linear infinite;
    padding-left: 20px;
    width: max-content;
    /* allow natural width for smooth scroll */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.box {
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 25px;
    padding: 27px;
    box-sizing: border-box;
    font-size: 20px;
    line-height: 1.6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.green-testi {
    border: 5px solid var(--green-color);
}

.blue-testi {
    border: 5px solid var(--blue-color);
}

@media (max-width: 768px) {
    .testi-text {
        font-size: 22px;
    }

    .box-container-testi {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .testi-text {
        font-size: 20px;
    }

    .box-container-testi {
        gap: 30px;
    }
}

/* query */
.drop-text {
    position: relative;
    left: 43%;
    top: -55px;
    color: var(--blue-color);
    font-weight: 900;
    font-size: 30px;
}

.form-container {
    max-width: 600px;
    margin: 0px auto;
    padding: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    text-align: left;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: var(--blue-color);

    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 3px solid var(--green-color);

    border-radius: 25px;

    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}


.form-group:nth-child(2) input {
    border-color: var(--blue-color);

}

.textarea-group label {
    display: block;
    text-align: left;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: var(--blue-color);

    margin-bottom: 5px;
}

.textarea-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--blue-color);
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    resize: vertical;
    min-height: 100px;
}

.form-group .one {
    position: relative;
    left: 10px;
}

.textarea-group .one {
    position: relative;
    left: 10px;
}

.submit {
    border: 4px solid var(--green-color);
    background-color: white;
    color: var(--blue-color);
    padding: 8px;
    font-weight: 900;
    font-size: 20px;
    border-radius: 20px;
}

.form-select {
    width: 100%;
    padding: 10px;
    border: 3px solid var(--green-color);
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    margin-bottom: 15px;
}

.form-select.state {
    border-color: var(--blue-color);
}

label.one {
    display: block;
    text-align: left;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: var(--blue-color);
    margin-bottom: 5px;
    position: relative;
    left: 10px;
}

.form-group:nth-child(1) label {
    color: var(--blue-color);
}

.form-group:nth-child(1) input {
    border: 3px solid var(--blue-color);
}


.form-group:nth-child(2) label {
    color: var(--green-color);
}

.form-group:nth-child(2) input {
    border: 3px solid var(--green-color);
}

.form-group:nth-child(3) label {
    color: var(--blue-color);
}

.form-group:nth-child(3) input {
    border: 3px solid var(--blue-color);
}


label[for="country"] {
    color: var(--green-color);
}

select.country {
    border: 3px solid var(--green-color);
}

label[for="state"] {
    color: var(--blue-color);
}

select.state {
    border: 3px solid var(--blue-color);
}


label[for="city"] {
    color: var(--green-color);
}

select.city {
    border: 3px solid var(--green-color);
}

.textarea-group label {
    color: var(--blue-color);
}

.textarea-group textarea {
    border: 3px solid var(--blue-color);
}


.select-loading {
    opacity: 0.6;
    pointer-events: none;
}


/* footer */
.footer {
    /* text-align: center; */
    margin-top: 20px;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    box-sizing: border-box;
}

.new-a {
    color: white;
    text-decoration: none;
}

.under {
    text-align: center;
}

.footer p {
    margin: 0;
    padding: 6px 0;
    line-height: 1.4;
}

.footer .links {
    color: white;
    padding: 10px;
    background-color: var(--green-color);
    display: inline-block;
    width: 100%;
}

.footer .copyright {
    color: white;
    padding: 10px;
    background-color: var(--blue-color);
    display: inline-block;
    width: 100%;
}

.footer .developed {
    color: var(--blue-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 6px 0;
}


.footer .developed .heart {
    color: red;
}

.flag-icon {
    height: 12px;
    vertical-align: middle;
    margin: 0 4px 2px 3px;
}

.com-logo {
    height: 20px;
    vertical-align: middle;
}


/* footer new  */
.card {
    width: 550px;
    background: #fff;
    border-radius: 10px;
    /* box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06); */
    padding: 20px 25px 25px 25px;
    /* margin: 0 auto; */
    margin-left: 1%;
}

/* LOGO */
.logo-section {
    text-align: left;
    margin-bottom: 16px;
}

.logo-img {
    height: 95px;
    margin-bottom: 3px;
    margin-left: 2px;
}

.catchphrase {
    font-size: 15px;
    color: var(--green-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

/* SOCIAL */
.social-section,
.visit-section,
.contact-section {
    margin-top: 13px;
}

.section-title {
    font-size: 20px;
    color: var(--green-color);
    font-weight: 500;
    margin-bottom: 7px;
}

.social-icons {
    display: flex;
    gap: 25px;
    margin-bottom: 12px;
    margin-top: 7px;
    align-items: center;
}

.icon-circle {
    background: var(--green-color);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}

.icon-circle.instagram {
    background: var(--blue-color);
    font-size: 31px;
}

.icon-circle.x {
    font-size: 34px;
}

/* ADDRESS */
.visit-section .section-title,
.contact-section .section-title {
    color: var(--green-color);
}

.location-row {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 8px;
}

.location-icon {
    background-color: #fff;
    /* white background */
    color: var(--green-color);
    /* green icon */
    font-size: 40px;
    margin-top: 2px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    /* makes it round */
    border: 2px solid var(--green-color);
    /* green border */
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-text {
    color: var(--blue-color);
    font-size: 20px;
    font-weight: 700;
    word-break: break-word;
    line-height: 1.1em;
}

/* CONTACT */
.contact-section {
    margin-top: 18px;
}

.contact-row {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-color);
    margin-bottom: 3px;
    background: #fff;
    width: fit-content;
    padding: 0;
}

.email-row {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-color);
    margin-bottom: 4px;
    margin-left: 10px;
    background: #fff;
    width: fit-content;
    padding: 0;
}

.icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    transform: rotate(90deg);
    background: white;
    color: var(--green-color);
    font-size: 35px;
    margin-right: -10px;
    z-index: 2;
    border: 2px solid var(--green-color);
    box-shadow: 0 0 3px #eee;
}

.icon-holders {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: white;
    color: var(--green-color);
    font-size: 30px;
    margin-right: -10px;
    margin-bottom: -7px;
    z-index: 2;
    border: 2px solid var(--green-color);
    box-shadow: 0 0 3px #eee;
}

.contact-box {
    border: 2px solid var(--green-color);
    border-radius: 32px;
    padding: 8px 22px 8px 28px;
    width: 230px;
    /* more left to account for icon inside circle */
    background: #fff;
    display: flex;
    font-weight: 700;
    align-items: center;
    height: 46px;
}

.social-icons a {
    text-decoration: none;
}

.email-box {
    border: 2px solid var(--green-color);
    border-radius: 32px;
    padding: 6px 22px 6px 28px;
    /* more left to account for icon inside circle */
    background: #fff;
    display: flex;
    font-weight: 700;
    align-items: center;
    height: 46px;
}

.bblue {
    color: var(--blue-color);
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .footer {
        font-size: 15px;
    }

    .footer .developed {
        flex-direction: row;
        gap: 2px;
    }

    .com-logo {
        height: 18px;
    }

    .flag-icon {
        height: 10px;
    }
}


@media (max-width: 480px) {
    .card {
        max-width: 320px;
        padding: 10px 15px 15px 15px;
    }

    .logo-img {
        height: 65px;
    }

    .section-title {
        font-size: 16px;
    }

    .location-icon {
        width: 60px;
        height: 50px;
    }

    .location-text,
    .contact-row,
    .email-row {
        font-size: 16px;
    }

    .icon-circle {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .icon-holder {
        width: 42px;
        height: 42px;
        font-size: 25px;
        margin-right: -6px;
    }


    .icon-holders {
        width: 36px;
        height: 36px;
        font-size: 20px;
        margin-right: -6px;
        margin-bottom: -4px;
    }

    .contact-box,
    .email-box {
        height: 36px;
        padding-left: 16px;
        padding-right: 10px;
        font-weight: 600;
    }

    .email-box {
        padding-left: 13px;
        padding-right: 8px;
    }
}

/* flag */
/* .flag-icon {
    height: 12px;
    vertical-align: middle;
    margin: 0 4px 5px 3px;
} */




/* .quota{
    width: 100%;
    height: 100vh;
} */
@media (max-width: 2050px) {
    /* .text-ship-1 {
        left: 41.5%;
    } */

    header {
        height: auto;
    }

}

@media (max-width: 1160px) {
    .main-h1 {
        font-size: 60px;
    }

    .main-h {
        font-size: 70px;
    }

    .service-img {
        width: 400px;
        height: 180px;
        margin: 0 auto 0 auto;
    }

    .text-ship-1 {
        left: 35%;
        font-size: 30px;
    }

    .circle-container {
        gap: 40px;
    }

    .about-img {
        width: 400px;
        height: 180px;
    }

    .about-text {
        left: 43%;
        font-size: 30px;
    }

    .countries-img {
        width: 400px;
        height: 180px;
    }

    .countries-text {
        left: 33%;
        font-size: 30px;
    }

    .gallery-img-ship {
        width: 400px;
        height: 180px;
    }

    .gallery-text {
        left: 42%;
        font-size: 33px;
    }

    .founder-text {
        left: 44%;
        font-size: 30px;
    }

    .client-img-ship {
        width: 400px;
        height: 180px;
    }

    .client-text {
        left: 41%;
        font-size: 30px;
    }

    .testimonials-img {
        width: 400px;
        height: 180px;
    }

    .testi-text {
        left: 40%;
        font-size: 30px;
    }

    .drop-text {
        left: 40%;
        font-size: 30px;
    }

    header {

        height: auto;
    }

}

@media (max-width: 1090px) {
    .box-container {
        gap: 25px;
    }
}

@media (max-width: 970px) {
    .box-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        margin: 20px auto;
    }
}

@media (max-width: 1000px) {
    .text-ship-1 {
        left: 35%;
        font-size: 30px;
    }

    .circle {
        width: 170px;
        height: 170px;
    }

    .countries-text {
        left: 37%;
        font-size: 30px;
    }
}

@media (max-width: 850px) {


    .circle-container {
        gap: 20px;
    }

    .circle {
        width: 140px;
        height: 140px;
    }


    .main-h1 {
        font-size: 40px;
        left: 20px;
    }

    .main-h {
        font-size: 50px;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .text-ship-1 {
        left: 30%;
        font-size: 30px;
    }

    .about-text {
        left: 40%;
        font-size: 30px;
    }

    .countries-text {
        left: 28%;
        font-size: 30px;
    }

    .founder-text {
        left: 42%;
        font-size: 30px;
    }

    .client-text {
        left: 38%;
        font-size: 30px;
    }

    .testi-text {
        left: 37%;
        font-size: 30px;
    }

    .gallery-img-ship {
        margin: -25px auto 0 auto;

    }

    .gallery-text {
        left: 41%;
        top: -60px;
        font-size: 34px;
    }

    .about-text {
        left: 40%;
        top: -49px;
        font-size: 30px;
    }

    .drop-text {
        left: 37%;

        font-size: 30px;
    }

    .button-right button {
        padding: 11px 8px;
        font-size: 13px;
    }

    .logo-1 {
        width: 100px;
    }

    .box-container {
        /* display: block; */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin: 20px auto;
    }

}

@media (max-width: 768px) {

    /* .main-img-header{
        height: 800px;
    } */
    .main-h1 {

        font-size: 44px;
    }

    .main-h {
        top: 280px;
        font-size: 55px;
    }
}

@media (max-width: 712px) {
    /* .text-ship-1 {
        left: 28%;
        font-size: 30px;
    } */

    .circle-container {
        gap: 10px;
    }

    .circle {
        width: 120px;
        height: 120px;
    }

    /* .gallery-text {
        left: 40%;
    }

    .client-text {
        left: 38%;
    }

    .testi-text {
        left: 36%;
    } */

}

@media (max-width: 640px) {
    .countries-text {
        left: 30%;
        font-size: 20px;
    }

    .main-h1 {
        font-size: 25px;
    }

    .main-h {
        top: 260px;
        font-size: 35px;
    }
}

@media (max-width: 590px) {
    .text-ship-1 {
        left: 29%;
        font-size: 27px;
    }

    /* .about-text {
        left: 38%
    } */

    .circle-container {
        gap: 10px;
    }

    .circle {
        width: 100px;
        height: 100px;
    }

    .founder-text {
        left: 39%;
    }

    .testi-text {
        left: 35%;
    }

    .drop-text {
        left: 33%;
    }

    .main-h1 {
        top: 190px;
        font-size: 25px;
    }

    .main-h {
        top: 230px;
        font-size: 30px;
    }
}



@media (max-width: 490px) {


    .service-img {
        width: 270px;
        height: 140px;
    }

    .text-ship-1 {
        left: 25.5%;
        font-size: 20px;
        top: -47px;
    }

    .about-img {
        width: 270px;
        height: 140px;

    }

    .about-text {
        left: 39%;
        font-size: 20px;
        top: -40px;
    }

    .circle {
        width: 90px;
        height: 90px;
    }

    .countries-img {
        width: 270px;
        height: 140px;

    }

    .countries-text {
        left: 24%;
        top: -45px;
        font-size: 20px;
    }




    .gallery-img-ship {
        width: 270px;
        height: 140px;
    }

    .gallery-text {
        left: 39%;
        top: -45px;
        font-size: 24px;
    }

    .founder-text {
        font-size: 24px;
        left: 37%;
        top: -46px;
    }

    .client-img-ship {
        width: 270px;
        height: 140px;
    }

    .client-text {
        left: 32%;
        font-size: 24px;
        top: -46px;
    }

    .testimonials-img {
        width: 270px;
        height: 140px;
    }

    .testi-text {
        left: 30%;
        font-size: 24px;
        top: -46px;
    }

    .drop-text {
        left: 30%;
        font-size: 22px;
        top: -44px;
    }

    .main-h1 {
        top: 180px;
        font-size: 19px;
    }

    .main-h {
        top: 220px;
        font-size: 22px;
    }

}

@media (max-width: 450px) {
    .main-img-header {
        height: 70vh;
        width: 130%;
        /* overflow: hidden; */
        /* overflow-x: hidden; */
        /* max-width: 100%; */
        display: block;
        margin: 0 auto;
    }

    .main-image {
        display: flex;
        justify-content: center;
        align-items: center;

        height: 7 0vh;
        overflow: hidden;
        background-color: #000;
        /* Optional: fills any background gap */
    }

    .main-h1 {
        top: 200px;
        left: 20px;
        font-size: 28px;
    }

    .main-h {
        top: 260px;
        left: 20px;
        font-size: 33px;
    }

    .box-container {

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin: 20px auto;
    }

    .service-img {
        margin: -0px auto 0 auto;
    }

    .logo-1 {
        width: 75px;
    }

    .button-right button {
        padding: 9px 7px;
        font-size: 11px;
    }

    .logo-button-con {
        padding: 8px 30px;
    }
}

@media (max-width: 768px) {
    .countries-main-img {
        width: 90%;
        height: auto;
        /* Ensure height stays proportional */
    }
}


@media (max-width: 380px) {

    /* .service-img{
        width: 220px;

    } */

    .main-h1 {
        top: 200px;
        left: 20px;
        font-size: 25px;
    }

    .main-h {
        top: 260px;
        left: 20px;
        font-size: 28px;
    }

    .text-ship-1 {
        left: 23%;
        font-size: 20px;
    }

    /* .about-img {
        width: 240px;
    } */

    .about-text {
        left: 37%;
        top: -40px;
        font-size: 22px;
    }

    .countries-text {
        left: 20%;
        top: -45px;
        font-size: 20px;
    }

    .gallery-text {
        left: 39%;
        top: -45px;
        font-size: 22px;
    }

    .founder-text {
        font-size: 23px;
        left: 38.5%;
        top: -45px;
    }

    .client-text {
        left: 30%;
        font-size: 24px;
        top: -46px;
    }

    .testi-text {
        left: 27%;
        font-size: 24px;
        top: -45px;
    }

    .drop-text {
        left: 30%;
        font-size: 22px;
        top: -45px;
    }

}

@media (max-width: 322px) {

    .main-h1 {
        top: 200px;
        left: 20px;
        font-size: 22px;
    }

    .main-h {
        top: 260px;
        left: 20px;
        font-size: 24px;
    }

    .service-img {
        width: 220px;
        height: 120px;

    }

    .text-ship-1 {
        left: 21%;
        top: -39px;
        font-size: 18px;
    }

    .about-img {
        width: 220px;
        height: 120px;
    }

    .about-text {
        left: 35%;
        top: -40px;
        font-size: 20px;
    }

    .countries-img {
        width: 230px;
        height: 120px;
    }

    .countries-text {
        left: 19%;
        top: -36px;
        font-size: 17px;
    }

    .about-img {
        width: 220px;
        height: 120px;
    }

    .founder-text {
        font-size: 20px;
        top: -38px;
        left: 34%;
    }

    .client-img-ship {
        width: 220px;
        height: 120px;
    }

    .client-text {
        font-size: 21px;
        top: -37px;
    }

    .testimonials-img {
        width: 220px;
        height: 120px;
    }


    .testi-text {
        left: 26%;
        font-size: 21px;
        top: -39px;
    }

    .drop-text {
        left: 28%;
        font-size: 20px;
        top: -35px;
    }
}