/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Include this to ensure padding and border are included in element's total width and height */
}

body, html {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Header and Navigation */
header {
    width: 100%;
    background-color: #2c2c2c;
    position: fixed; /* Ensures the header remains fixed at the top */
    top: 0;
    z-index: 1000; /* Ensure header is above other content */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease; /* Smooth transition for link color change */
}

.nav-links a:hover {
    color: rgb(101, 178, 233); /* Change link color on hover */
}

.menu-toggle {
    display: none; /* Initially hide the hamburger menu on larger screens */
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 2px;
    width: 25px;
    background: white;
    margin: 4px;
    transition: 0.3s;
}

 /* @media (max-width: 768px) {
    header {
        width: 100%; 
        max-width: 100%;
    }

    .menu-toggle {
        display: flex; 
        width: 60%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px; 
        left: 0;
        width: 100%;
        background-color: rgb(75, 74, 74);
        color: #fff;
        text-align: center;
        padding-top: 10px;
        z-index: 999; 
    }

    .nav-links.show {
       width: 50%;
        display: flex; 
        flex-direction: column;
       
    }

    .nav-links li {
        margin: 10px 0;
        color: #fff;
    }
}   */

@media (max-width: 768px) {
    header {
        width: 100%; /* Full width on smaller screens */
        max-width: 100%; /* Ensure header takes up full width */
    }

    .menu-toggle {
        display: flex; 
        width: 20%; /* Adjust width of hamburger menu for better visibility */
    }

    .nav-links {
        display: none; /* Initially hide the navigation links on smaller screens */
        position: absolute;
        top: 60px; /* Position below the header */
        left: 0;
        width: 100%; /* Full width */
        max-width: 100%; /* Ensure navigation takes up full width */
        background-color: rgb(75, 74, 74);
        color: #fff;
        text-align: center;
        padding-top: 10px;
        z-index: 999; 
    }

    .nav-links.show {
        width: 100%; /* Adjusted width when menu is open */
        display: flex; 
        flex-direction: column;
    }

    .nav-links li {
        margin: 10px 0;
        color: #fff;
    }
}

/* Main Section */
.main-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.6); /* Dark blue overlay with 60% opacity */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 3em;
    margin: 0;
}

.content p {
    justify-content: center;
    font-size: 1.8rem;
}

.contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #07235e; /* Button background color */
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #899fb4; /* Button hover color */
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
    z-index: 0;
}

.bg-image.active {
    opacity: 1;
}

/* Default styles for larger screens */
/* Default styles for larger screens */
.services {
    padding: 20px;
    background-color: #345474; /* Light background */
    height: 350px;
}

.services h2, .services p {
    color: #fff;
}

.service-box {
    text-align: center;
    margin: 0 auto;
    position: relative;
    max-width: 1000px;
    overflow: hidden;
}

.service-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.service-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    justify-content: flex-start; /* Start items from left */
}

.service-item {
    margin: 10px;
    padding: 20px;
    background-color: rgb(218, 221, 221);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 0 auto;
}

.service-icon {
    color: #5b99cc;
    font-size: 24px;
    margin-bottom: 10px;
}

.service-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.service-description {
    font-size: 14px;
}

.prev, .next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}
@media (max-width: 768px) {
    .services {
      /* padding: 30px;  */
      width: 100%;
      max-width: 115%;
      padding-left: 10px;
    }
    .service-box{
        max-width: 90%;
        width: 90%;
    }
  
  
    .service-card {
       
      flex: 0 0 100%; 
      background-color: #f0f0f0;
      padding: 20px;
      text-align: center;
      margin-bottom: 20px;
    }
  
    .service-card h2 {
      margin-bottom: 5px;
      font-size: 20px; 
    }
  
    .service-card p {
      
      font-size: 14px;
      text-align: left; 
      margin-bottom: 11px;
    }
  
    .arrow-buttons {
      display: flex; 
      justify-content: space-between; /* Space evenly between arrows */
      margin-top: 20px; /* Add space above arrows */
    }
  }
  

/* About Us Section */
.about-us {
    padding: 100px 0;
    background-color: #fff;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    flex: 1;
    padding-right: 20px;
}

.about-content h2 {
    font-size: 45px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(59, 58, 58);
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    margin-left: 40px;
    max-width: 80%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-content {
        padding-right: 0;
    }
    .about-content, .about-image {
        flex: 1 0 100%;
    }
    .about-image {
        margin-top: 20px;
    }
}

/* Stevedoring Section */
.steve-section {
    padding: 100px 0;
    background-color: #fff; /* Light background */
    color: #333; /* Text color */
    overflow: hidden; /* Ensure contents stay within bounds */
}

.steve-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.steve-image {
    flex: 1;
    max-width: 50%;
    order: 1; /* Ensure image is on the left */
    margin-right: 20px; /* Space between image and content */
}

.steve-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.steve-content {
    flex: 1;
    max-width: 50%;
    order: 2; /* Ensure content is on the right */
    padding-left: 20px; /* Space between content and image */
    color: black;
}

.steve-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #007bff; /* Blue color for headings */
}

.steve-content p {
    font-size: 1.2em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steve-container {
        flex-direction: column;
        align-items: center; /* Center align items */
    }

    .steve-image {
        max-width: 200%;
        margin-bottom: 20px; /* Add bottom margin for separation */
    }

    .steve-content {
        max-width: 100%;
        text-align: center;
    }
 
    .steve-content h2 {
        font-size: 24px;  
        margin-top: 20px;  
    }

    .steve-content p {
        font-size: 16px;
        width: auto; 
        padding: 0 20px; 
        margin-bottom: 20px; 
    }
}


/* LCL Section */













/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    /* background-color: #f4f4f4; */
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.sect {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    text-align: center;
}

.sect .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/shipping.jpg'); 
    background-size: cover;
    background-position: center;
    /* z-index: -1; */
}

.card {
    /* background-color: rgb(222, 228, 227)  ; */
    background-color: rgba(231, 222, 213, 0.7); /* Semi-transparent black overlay */

    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-content {
    
    padding: 40px;
}

.card h2 {
    font-family: "Mukta", sans-serif;

    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card p {
    font-family: "Mukta", sans-serif;

    font-size: 1.1rem;
    line-height: 1.8;
    color: #0c0c0c;
}

/* Media Query for Responsive Design */
@media (max-width: 768px) {
    .card h2 {
        font-size: 2rem; /* Adjust heading size for smaller screens */
    }
    .card p {
        font-size: 1rem; /* Adjust paragraph font size for smaller screens */
    }
}

.sect h2 {
    font-family: "Mukta", sans-serif;

    font-size: 2.5rem;
    margin-bottom: 30px;
}

.sect p {
    font-family: "Mukta", sans-serif;

    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.sect ul {
    list-style-type: none;
    padding: 0;
}

.sect ul li {
    font-family: "Mukta", sans-serif;

    margin-bottom: 10px;
}

/* nvocc */


#nvocc-movements {
    background-color: #ffffff;
}
/* General styling for sections */
.section {
    padding: 100px 0;
    background-color: #f8f9fa; /* Light background color */
    color: #333; /* Text color */
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contents {
    flex: 1;
    max-width: 45%;
    padding: 0 20px;
}

.contents h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #007bff; /* Blue color for headings */
}

.contents p {
    font-size: 1.2em;
    line-height: 1.6;
}

.image {
    flex: 1;
    max-width: 45%;
}

.image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .contents, .image {
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .contents h2 {
        font-size: 2em;
    }

    .contents p {
        font-size: 1em;
    }
}






/* lcl section */
/* General styling for LCL Consolidation section */
.lcl-section {
    padding: 100px 0;
    background-color: #18426b; /* Light background */
    color: #333; /* Text color */
    overflow: hidden; /* Ensure contents stay within bounds */
}

.lcl-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lcl-image {
    flex: 1;
    max-width: 50%;
    order: 1; /* Ensure image is on the left */
    margin-right: 20px; /* Space between image and content */
}

.lcl-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.lcl-content {
    flex: 1;
    max-width: 50%;
    order: 2; /* Ensure content is on the right */
    padding-left: 20px; /* Space between content and image */
    color: white;
}

.lcl-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff; /* Blue color for headings */
}

.lcl-content p {
    font-size: 1.2em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .lcl-container {
        flex-direction: column;
    }

    .lcl-image, .lcl-content {
        max-width: 100%;
        order: initial; /* Reset order for mobile layout */
        margin: 0; /* Remove margin for better stacking */
        text-align: center;
    }

    .lcl-content h2 {
        font-size: 2em;
    }

    .lcl-content p {
        font-size: 15px;
    
    }
}



/* afghan section */
.afghan-section {
    padding: 100px 0;
    background-color: #ffffff; /* White background */
    color: #333; /* Text color */
}

.afghan-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.afghan-content {
    flex: 1;
    max-width: 50%;
    padding-right: 20px; /* Space between content and image */
}

.afghan-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #007bff; /* Blue color for headings */
}

.afghan-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.afghan-content li {
    font-size: 1.2em;
    line-height: 1.6;
}

.afghan-image {
    flex: 1;
    max-width: 50%;
}

.afghan-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .afghan-container {
        flex-direction: column;
    }

    .afghan-content, .afghan-image {
        max-width: 100%;
        margin: 0; /* Remove margin for better stacking */
        text-align: center;
    }

    .afghan-content h2 {
        font-size: 1.5em; /* Adjust font size for better readability on smaller screens */
    }

    .afghan-content li {
        font-size: 14px; /* Slightly reduce font size for better fit */
        width: 100%; /* Make list items full width */
        max-width: 100%; /* Ensure it doesn't overflow the container */
    }
}


/* freight section */

.freight-section {
    position: relative;
    padding: 100px 0;
    background-color: #f8f9fa; 
    color: #333; 
    text-align: center;
}

.background-image {
    position: relative;
    background-image: url('../images/p_0006.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 80%;
    font-family: 'mukta', sans-serif;
font-size: 15px;
    padding: 20px;
    background-color: rgba(38, 85, 97, 0.7); /* Semi-transparent black overlay */
    color: #fff; /* Text color */
    border-radius: 10px;
}

.overlay-text h2 {
    font-family: 'mukta', sans-serif;
    font-size: 3em;
    margin-bottom: 20px;
}

.overlay-text p {
    font-size: 1.5em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .overlay-text {
        width: 100%;
        height: 85%;
     padding: 15px; 
    }

    .overlay-text h2 {
       font-size: 20px;
       font-family: 'mukta', sans-serif;
    }

    .overlay-text p {
        font-size: 15px;
        font-family: 'mukta', sans-serif;
    }
}















/* CFS Stations */

.cfs-container {
    margin-top: -100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background-color: #18426b; /* Light background */

    color: #fff; /* Text color */
}

.cfs-content {
    flex: 1;
    padding: 0 40px;
}

.cfs-content h2 {
    margin-top: -10px;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.cfs-content p {
    font-family: 'mukta', sans-serif;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.cfs-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
}

.cfs-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.cfs-image:hover img {
    transform: scale(1.05); /* Optional: Scale image on hover for visual effect */
}

@media (max-width: 768px) {
    .cfs-container {
        flex-direction: column;
        text-align: center;
    }

    .cfs-content,
    .cfs-image {
        flex: none;
        width: 100%;
    }

    .cfs-content h2 {
        font-size: 3em;
    }

    .cfs-content p {
        font-size: 14px;
    }
}






/* General Styles */
/* body, html {
    margin: 0;
    padding: 0;
    font-family: "Mukta", sans-serif;
} */

section {
    padding: 0; /* Remove default padding */
}

#contact-us {
    padding: 0px; /* Remove padding from top and bottom */
    text-align: center; 
    position: relative;
    color: #fff; 
    overflow: hidden; /* Ensure overflow hidden for background image */
}

#contact-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/p_0006.jpg"); /* Your background image path */
    background-size: cover;
    background-position: center;
    filter: blur(1px); /* Blur effect */
    z-index: -1; /* Place the pseudo-element behind the content */
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1; /* Ensure content appears above background image */
    max-width: 1100px;
    margin: 0 auto; 
    min-height: 100vh; /* Ensure the container takes up full viewport height */
}

.contact-form {
    max-width: 600px;
    width: 100%;
    background-color: rgba(42, 42, 82, 0.7); /* Dark blue with transparency */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Shadow for the form */
    text-align: left; /* Align text left within the form */
}

.contact-form h2 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff; /* White text color */
    font-family: "Mukta", sans-serif;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #fff; /* White background for inputs */
    color: #333; /* Text color */
}

.contact-form textarea {
    height: 150px; /* Set textarea height */
    resize: vertical; /* Allow vertical resizing */
}

.contact-form button {
    background-color: #4CAF50; /* Button background color */
    color: #fff; /* Button text color */
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #45a049; /* Darker background color on hover */
}

.contact-form i {
    margin-right: 5px;
}







#footer {
    background-color: rgba(31, 31, 85, 0.7); 
    color: #fff; 
    text-align: center; 
   
    padding: 10px 20px; 
   
}

#footer p {
    margin: 0; 
    margin-left: 30%;

}

#footer .company-name {
   
    display: block; 
    margin-top: 10px; 
}

@media (min-width: 768px) {
    #footer {
        padding-left: 20px;
        padding-right: 20px; 
    }

    #footer .company-name {
        margin-top: 0; 
        text-align: left; 
    }
}