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

body {
    font-family: 'Raleway', sans-serif;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    margin: 0 auto;
}

/* About Us Section with background image and text animation */
.about2-section {
    background-image: url('ship.jpg');
    background-size: cover;
    background-position: center;
    padding: 300px 0;
    text-align: center;
    color: white;
    animation: backgroundZoom 5s ease-in-out infinite;
}

@keyframes backgroundZoom {
    0% { background-size: 100%; }
    50% { background-size: 105%; }
    100% { background-size: 100%; }
}

.about2-section h2, .about2-section p {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInText 1.5s ease-in forwards;
}

.about2-section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    animation-delay: 0.5s;
}

.about2-section p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    animation-delay: 1s;
}
@media only screen and (max-width: 768px) {
  .about2-section {
    display: none;
  }
}
@keyframes fadeInText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trusted Partners Section */
.trusted-partners-section {
    background-color: #e9ecef;
    padding: 60px 0;
    text-align: center;
}

.trusted-partners-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.partners-nav {
    margin: 20px 0;
}

/* Partner Button Styles */
.partner-btn {
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    background-color: #333;
    color: white;
    border: none;
    transition: background-color 0.3s ease, border-radius 0.3s ease;
    border-radius: 25px;
}

.partner-btn.active {
    background-color: #007bff;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.logo-box {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-box img {
    max-width: 100%;
    object-fit: cover;
}

.hidden {
    display: none;
}

/* View More Button */
.view-more-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.view-more-btn:hover {
    background-color: #0056b3;
}

/* Meet Our Managers Section */
.managers-section {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.managers-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.manager-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.manager-card {
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.manager-card:hover {
    transform: translateY(-10px);
}

.manager-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.manager-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.manager-card p {
    font-size: 1rem;
    color: #666;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .manager-grid {
        grid-template-columns: 1fr;
    }

    .about2-section {
        padding: 150px 0;
    }
}
