.bunkering{
    padding: 50px;
}

/* Bunkering Section Styling */
.bunkering-details {
    /* max-width: 900px; */
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
}

/* Title */
.bunkering-title {
    font-size: 28px;
    font-weight: bold;
    color: #0073cc; /* Blue color for professional look */
    margin-bottom: 15px;
}

/* Paragraphs */
.bunkering-text {
    font-size: 16px;
    margin-bottom: 15px;
}

/* List Styling */
.bunkering-list {
    margin-bottom: 15px;
    padding-left: 20px;
}

.bunkering-list li {
    font-size: 16px;
    margin-bottom: 8px;
}


/* Bunkering Service Section */
.bunkering-service {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Map Image */
.map-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.map-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Bunkering Info */
.bunkering-info {
    text-align: left;
}

.bunkering-description {
    font-size: 16px;
    margin-bottom: 15px;
}



/* Growth Message Box */
.growth-message {
    background-color: #E8F3FF;
    padding: 20px;
    border-radius: 12px;
    max-width: 800px;
    margin: 20px auto;
}

.growth-text {
    font-size: 18px;
    font-weight: bold;
    color: #0056b3;
}

/* Image Container */
.growth-visual {
    background-color: #E8F3FF;
    padding: 20px;
    border-radius: 12px;
    max-width: 900px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
}

/* Image Styling */
.image-frame {
    max-width: 100%;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}



/* Slider Wrapper */
.gallery-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 90%;
    padding-bottom: 30px;
    margin: 0 auto;
}

/* Slider Container */
.gallery-container {
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
}

/* Slides Track */
.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Each Slide */
.gallery-slide {
    display: flex;
    min-width: 100%;
    justify-content: space-between;
}

/* Images */
.gallery-slide img {
    width: 32%;
    border-radius: 8px;
}

/* Navigation Buttons */
.nav-button {
    background-color: rgba(0, 0, 0, 0.795);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px 19px;
    z-index: 29;
    border-radius: 50%;
    /* position: absolute; */
    top: 50%;
    margin-top: 50px;
    transform: translateY(-50%);
}

.prev-button { margin-right: -15px; }
.next-button { margin-left: -15px; }

.nav-button:hover {
    background-color: rgba(252, 6, 6, 0.904);
}





/* Responsive Design */
/* Responsive Design */
@media (max-width: 900px) {
    .gallery-slide img {
        width: 48%;
    }
}

@media (max-width: 600px) {
    .gallery-slide img {
        width: 100% !important;
    }
}
@media (max-width: 768px) {
    .bunkering-details {
        padding: 20px;
    }
    
    .bunkering-title {
        font-size: 24px;
    }
    
    .bunkering-text,
    .bunkering-list li {
        font-size: 14px;
    }

    .bunkering-service {
        padding: 20px;
    }

    .bunkering-description {
        font-size: 14px;
    }
    .growth-message {
        padding: 15px;
    }

    .growth-text {
        font-size: 16px;
    }

    .growth-visual {
        padding: 15px;
    }
}