@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');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    font-style: normal;
}

body {
    width: 100%;
}

/* Add this to your styles/style.css or styles/mobile.css */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 70px 30px 50px;
    flex-wrap: wrap;
    /* background-color: black; */
}

navbar h2 {
    width: 260px;
    height: 50px;
}

navbar h2 img {
    cursor: pointer;
    width: 100%;
}

.menus ul li, a {
    list-style: none;
    text-decoration: none;
    color: black;
}

.menus ul {
    display: flex;
    column-gap: 30px;
}

navbar .menus ul li a {
    list-style: none;
    text-decoration: none;
    color: black;
    transition: color 0.3s ease, transform 0.3s ease; /* Add transition for smooth animation */
}

navbar .menus ul li a:hover {
    color: #0288d1; /* Change color on hover */
}

navbar .menus ul li a.active {
    color: #0288d1; /* Highlight color for the active page */
    font-weight: bold; /* Optional: make the text bold */
}

/* ////////////// SECTIONS INdex page*/
main .sect1 {
    background-color: #0288d1;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    color: white;
    padding: 40px;
}

.sect1 h1 {
    font-size: 60px;
    font-weight: bold;
    width: 580px;
}

.sect1 button {
    color: white;
    padding: 15px;
    border-radius: 25px;
    cursor: pointer;
    border: 1px white solid;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s; /* Adjusted transition for smoother effect */
}

.sect1 button:hover {
    background-color: #ffffff;
    color: black;
}

/* /////////SECTION2 */
main .sect2 {
    background-color: #ffffff;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 100px;
    row-gap: 50px;
}
/* ////// about us section */
.sect2 .about-description {
    /* width: 300px; */
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: start;
    /* text-align: start; */
}

.sect2 .about-description h3{
    font-size: 48px;
}

.sect2 .about-description p{
    font-size: 16px;
    width: 400px;
}

.sect2 .about-description button{
    font-size: 16px;
    padding: 15px;
    border-radius: 30px;
    background-color: transparent;
    /* margin-top: 40px; */
    border: 1px black solid;
    cursor: pointer;
}

.sect2 .about-description button:hover {
    background-color: #0288d1;
    color: #ffffff;
    border: 1px white solid;
    transition: background-color 0.3s, color 0.3s; /* Adjusted transition for smoother effect */
}
/* /////// about us end */

.sect2 .about-image img {
    height: 73vh;
    width: 400px;
    border-radius: 20px;
    object-fit: cover; 
}

/* /////////SECTION3  */
main .sect3 {
    background-color: #0288d1;
    padding: 40px 0;
    text-align: center;
    display: grid;
    row-gap: 30px;
    color: white;
}
 
.sect3 .shipping-services-intro {
    row-gap: 20px;
    display: grid;
}

.sect3 .shipping-services-intro h2 {
    font-size: 48px;
    font-weight: 350; 
}

.sect3 .shipping-services-intro p {
    font-size: 16px;
    font-weight: 350;
    width: 590px;
    text-align: center !important; /* Force the paragraph text to center */
    margin: 0 auto; /* Ensure the paragraph is centered within its container */
}

.sect3 .shipping-services-details {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    column-gap: 40px;
} 

.shipping-services-details .red-ship-img img{
    height: 60vh;
    width: 90vh;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
}

.sect3 .marine-equipment-info {
    text-align: left;
    width: 450px;
}

.sect3 .shipping-services-details .marine-equipment-info h5 {
    font-size: 18px; /* Set font size for h5 */
    font-weight: 600;
    margin-bottom: 10px; /* Add gap between h5 and p */
}

.sect3 .shipping-services-details .marine-equipment-info p {
    font-size: 16px; /* Set font size for p */
    font-weight: 300;
    line-height: 1.5; /* Set line height for p */
    margin-bottom: 20px; /* Add gap after each p */
}

/* //////// SECTION 5  */

.sect5 {
    background-color: #0288d1;
    width: 100%;
    padding: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    border-top-right-radius: 30px;
}

.sect5 .ContactUs {
    background-color: #ffffffff;
    padding: 30px;
    width: 60vw;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
    border-radius: 20px;
}

.sect5 .ContactUs p {
  font-size: 30px;
  font-weight: bold;
}

.sect5 .ContactUs button{
    cursor: pointer;
    background-color: black;
    padding: 10px;
    column-gap: 40px;
    border-radius: 30px;
    padding: 15px;
    border: none;
    color: white;
}

.sect5 .ContactUs button:hover {
    background-color: #0288d1;
}

/* //////////// statistic style page  */
.statistics-section {
    text-align: center;
    padding: 50px 20px;
}

.statistics-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.statistics-section p {
    margin-bottom: 40px;
    font-size: 1.2em;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-box {
    /* flex: 1 1 200px; */
    max-width: 250px;
    padding: 30px 20px;
    background:  #0288d1;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.stat-box h3 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-box span {
    font-size: 1.2em;
    color: #f3f3f3;
}

footer {
    background-color: #004d40;
    padding: 20px;
    color: #ffffff;
    text-align: center;
    align-items: center;
    display: grid;
}


/* ///////////////// ABOUT US STYLES */

 /* // Start of Selection */
.about1 {
    display: flex; /* Use flexbox to separate the about-description and about-image divs */
    justify-content: space-evenly; /* Space between the two divs */
    align-items: center; /* Center align items vertically */
    padding: 50px;
    gap: 30px;
    /* flex-wrap: wrap; */
}

.about1 .about-description {
    display: grid;
    row-gap: 20px;
}

.about-description h3 {
    width: 400px;
    font-weight: 400;
    font-size: 45px;
}

.about-description p {
    width: 550px;
    font-size: 16px;
}

.about-description .about-stats {
    display: flex;
}

.about-stats .stat-item {
    width: 200px;
    color: #0288d1;
}

.about-stats h4 {
    font-size: 43px;
    font-weight: 400;
}

.about-stats p {
    font-size: 15px;
    color: black;
    font-weight: 350;
}

/* ////////// about image */
.about1 .about-image img{
    height: 70vh;
    width: 82vh;
    border-radius: 20px;
    object-fit: cover; 
}



/* ///////// contact us page style  */

.contact1 {
    display: flex; /* Use flexbox to separate the about-description and about-image divs */
    justify-content: space-evenly; /* Space between the two divs */
    align-items: center; /* Center align items vertically */
    padding: 70px 10px;
    flex-wrap: wrap;
}

.contact1 .contact-info {
    display: grid;
    row-gap: 30px;
}

.contact-info h3 {
    width: 400px;
    font-weight: 400;
    font-size: 40px;
    margin-bottom: -30px;
} 

.contact-info p {
    width: 470px;
    font-size: 14px;
}

.location-info h4{    
    font-weight: 550;   
}

.location-info p{
    font-weight: 300;   
    width: 215px;   
    margin-bottom: 20px;
}
.location-info span{
    font-weight: 500;   
}


/* /////////////////// products page styles */

/* .products {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.product-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}
.product-item:hover {
    transform: translateY(-10px);
}
.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.product-item h2 {
    margin: 15px 0 10px;
    font-size: 1.5em;
    color: #1e3a8a;
}
.product-item p {
    color: #4b5563;
} */

/* .footer {
    background-color: #1e3a8a;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
} */


/* //////////////// new style product & service page */

.ProductTiSu {
    text-align: center;
    margin: 40px 0 20px;
    color: #001F54;
}

.products-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px auto;
    max-width: 100%;
}

.product-card {
    text-align: center;
    cursor: pointer;
    width: 170px;
    margin: 10px;
}

.product-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ccc;
}

.product-card p {
    margin: 0;
    font-weight: 600;
}



