/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background: #f4f4f4;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    max-width: 150px;
    height: auto;
}

header h1 {
    margin: 10px 0;
    flex: 1;
    text-align: center;
}

.contact-info {
    text-align: right;
}

.contact-info p {
    margin: 5px 0;
}

/* Navigation */
nav {
    background: #333;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
}

nav ul li {
    margin: 0;
    position: relative;
}

nav ul li a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
}

nav ul li a:hover,
nav ul li a:focus {
    background: #555;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #333;
    min-width: 145px;
    z-index: 1;
    left: 0;
    right: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li a {
    padding: 5px 15px;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
}

.hero .slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hero .slides {
    display: flex;
    transition: transform 0.5s ease;
    animation: slide-animation 12s infinite;
    width: 100%; /* 100% * number of slides */
}

.hero .slide {
    width: 100%;
    flex-shrink: 0;
}

.hero .slide img {
    width: 100%;
    height: auto;
    max-height: 400px; /* Adjust this value to set the maximum height for images */
}

@keyframes slide-animation {
    0%, 20% { transform: translateX(0%); }
    25%, 45% { transform: translateX(-100%); }
    50%, 70% { transform: translateX(-200%); }
    75%, 100% { transform: translateX(0%); }
}

/* Manual Navigation */
input[type="radio"] {
    display: none;
}

.manual-nav {
    position: absolute;
    width: 100%;
    bottom: 20px;
    display: flex;
    justify-content: center;
}

.manual-nav label {
    border: 2px solid #ffffff;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 5px;
    transition: background 0.3s;
}

.manual-nav label:hover {
    background: rgba(255, 255, 255, 0.7);
}

#slide1:checked ~ .slides {
    transform: translateX(0%);
    animation: none;
}

#slide2:checked ~ .slides {
    transform: translateX(-100%);
    animation: none;
}

#slide3:checked ~ .slides {
    transform: translateX(-200%);
    animation: none;
}

/* Content */
.content {
    padding: 20px 0;
}

.content h2 {
    text-align: center;
    margin-bottom: 20px;
}/* Expertise Section */
.expertise {
    background: #f4f4f4;
    padding: 20px 0;
}

.expertise h2 {
    text-align: center;
    margin-bottom: 20px;
}

.expertise-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.expertise-content .text {
    flex: 1;
    padding-right: 20px;
}
.expertise-content .images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expertise-content .images img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
/* Contact Section */
.contact {
    padding: 20px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-details {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
}

.contact-details h3 {
    margin-top: 0;
}

.contact-details p {
    margin: 10px 0;
}
/* About Us Section */
.about-us {
    padding: 20px 0;
}

.about-us h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.about-content .text {
    flex: 1;
    padding: 0 15px;
}
.about-content .image {
    flex: 1;
    text-align: center;
}

.about-content .image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.core-areas {
    background: #e8f4ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.core-areas h3 {
    margin-top: 0;
}
.core-areas ul {
    list-style: none;
    padding: 0;
}

.core-areas ul li {
    margin: 10px 0;
}

.mission-vision {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mission, .vision {
    flex: 1;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    margin: 10px;
    text-align: center;
}

.mission h3, .vision h3 {
    margin-top: 0;
}
/* Crew management Section */
.crew-management {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.mission-vision {
    margin-bottom: 40px;
}

h2 {
    color: #003366;
}

h3 {
    color: #003366;
}
p {
    margin: 0 0 1em;
    line-height: 1.6;
}

.crew-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.crew-image {
    flex: 1;
    margin-right: 20px;
}

.crew-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
.crew-text {
    flex: 2;
}

.highlight-box {
    background-color: #e0f7fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.highlight-box h3 {
    color: #00796b;
}

.highlight-box ul {
    list-style-type: disc;
    padding-left: 20px;
}

.highlight-box ul li {
    margin-bottom: 0.5em;
    color: #00796b;
}

.crew-sidebar {
    margin-top: 20px;
}

footer {
    background-color: #003366;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    position: relative;
    width: 100%;
}
/* Tech management Section */
.tech-management {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.tech-section {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.tech-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.tech-section .text {
    flex: 1;
    padding-right: 20px;
}

.tech-section img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-left: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.tech-section img:hover {
    transform: scale(1.05);
}

.tech-section h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.8em;
    font-weight: bold;
}

.tech-section p {
    color: #666;
    font-size: 1.1em;
}
/* Procurement Section */
.pro {
    padding: 20px 0;
}

.pro h2 {
    margin-bottom: 20px;
}

.pro-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.pro-content .text {
    flex: 1;
    padding: 0 60px;
}
.pro-content .image {
    flex: 0.5;
    text-align: center;
}

.pro-content .image img {
    max-width: 100%;
    height:auto;
    border-radius: 25px;
}
/* Risk Section */
.risk {
    padding: 20px 0;
}

.risk h2 {
    margin-bottom: 20px;
}

.risk-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.risk-content .text {
    flex: 1;
    padding: 0 10px;
}
.risk-content .image {
    flex: 0.5;
    text-align: center;
}

.risk-content .image img {
    max-width: 100%;
    height:auto;
    border-radius: 25px;
}
.sections, .monitor {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.containers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}

.sections {
    width: 300px;
}

.sections h3, .monitor h3 {
    color: #007bff;
    margin-top: 0;
}

.sections ul, .monitor ul {
    list-style-type: square;
    padding: 0;
}

.sections ul li, .monitor ul li {
    margin: 10px 0;
}

.monitor {
    width: 700px;
}
/* Vet Section */
.vet {
    padding: 20px 0;
}

.vet h2 {
    margin-bottom: 20px;
}

.vet-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.vet-content .text {
    flex: 1;
    padding: 0 10px;
}
.vet-content .image {
    flex: 0.5;
    text-align: center;
}

.vet-content .image img {
    max-width: 100%;
    height:auto;
    border-radius: 25px;
}
.sections1, .monitors {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.containers1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}

.sections1 {
    width: 300px;
}

.sections1 h3, .monitors h3 {
    color: #007bff;
    margin-top: 0;
}

.sections1 ul, .monitors ul {
    list-style-type: square;
    padding: 0;
}

.sections1 ul li, .monitors ul li {
    margin: 10px 0;
}

.monitors {
    width: 700px;
}
/* Ves Section */
.ves {
    padding: 20px 0;
}

.ves h2 {
    margin-bottom: 20px;
}

.ves-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ves-content .text {
    flex: 1;
    padding: 0 10px;
}
.ves-content .image {
    flex: 0.5;
    text-align: center;
}

.ves-content .image img {
    max-width: 100%;
    height:auto;
    border-radius: 25px;
}
.sections2 {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.containers2 {
    display: flex;
    flex-wrap: wrap;
    justify-content:none;
    gap: 20px;
    margin: 20px;
}

.sections2 {
    width: 300px;
}

.sections2 h3 {
    color: #007bff;
    margin-top: 0;
}

.sections2 ul {
    list-style-type: square;
    padding: 0;
}

.sections2 ul li {
    margin: 10px 0;
}
/* life Section */
.life {
    padding: 20px 0;
}

.life h2 {
    margin-bottom: 20px;
}

.life-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.life-content .text {
    flex: 1;
    padding: 0 10px;
}
.life-content .image {
    flex: 0.5;
    text-align: center;
}

.life-content .image img {
    max-width: 100%;
    height:auto;
    border-radius: 25px;
}
.sections3 {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.containers3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}

.sections3 {
    width: 300px;
}

.sections3 h3 {
    color: #007bff;
    margin-top: 0;
}

.sections3 ul {
    list-style-type: square;
    padding: 0;
}

.sections3 ul li {
    margin: 10px 0;
}
/* Dry Section */
.dry {
    padding: 20px 0;
}

.dry h2 {
    margin-bottom: 20px;
}

.dry-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dry-content .text {
    flex: 1;
    padding: 0 10px;
}
.dry-content .image {
    flex: 0.5;
    text-align: center;
}

.dry-content .image img {
    max-width: 100%;
    height:auto;
    border-radius: 25px;
}
.sections5, .monitor5 {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.containers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}

.sections5 {
    width: 300px;
}

.sections5 h3, .monitor5 h3 {
    color: #007bff;
    margin-top: 0;
}

.sections5 ul, .monitor5 ul {
    list-style-type: square;
    padding: 0;
}

.sections5 ul li, .monitor5 ul li {
    margin: 10px 0;
}

.monitor5 {
    width: 700px;
}
/* Media Queries */
@media (max-width: 1024px) {
    .contact-info {
        text-align: center;
    }

    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .hero .slide img {
        max-height: 300px; /* Adjust height for smaller screens */
    }
}

@media (max-width: 480px) {
    .hero .slide img {
        max-height: 200px; /* Adjust height for smallest screens */
    }
}
@media (max-width: 768px) {
    .section {
        width: 100%;
    }

    .monitor {
        width: 100%;
    }
}
