@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200&display=swap');

html {
  
  height: 100%;
  font-family: 'Inter', sans-serif;
}
* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;


}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

 /*  "intro" section */
.intro {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to right, rgba(32, 76, 115, 2.0), rgba(0, 0, 0, 0.1)), url(images/ivan-bandura-N_FDXbXwQmc-unsplash.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

/* New styles for the image and text */
.intro .image-with-text {
  display: flex;
  align-items: center;
  color: white;
  font-size: 3vw;
  width: 75%;
}

.intro .text-container {
  flex: 1;
  padding-left: 20px; /* Change padding-left to create space between text and image */
  opacity: 0; /* Set initial opacity to 0 for fade-in effect */
  transform: translateX(-50px); /* Initial translateX for slide-in effect from the left */
  animation: slideIn 2s forwards;
}

.intro .image-container {
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.intro .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.5s;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .intro .text-container {
    font-size: 1.5rem; /* Adjust font size for smaller screens */
  }
  .intro .image-with-text {
       width: 100%;
  }
  .intro{
    padding-top: 20%;
    height: 50vh;
  }
}
/* Animation keyframes */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


 
/* styles for the box container and boxes */
.box-container {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; /* Allow boxes to wrap to the next line on smaller screens */
    justify-content: space-between;
    align-items: center;
    width: 90%;
   margin: -7% 20% 0% 10%;
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
    
    
     /* Adjust this value to position the boxes */
  }
  
  .box {
    position: relative;
    flex: 1;
    background-image: linear-gradient(rgba(255, 255, 255, 0.4) ,rgba(32, 76, 115, 2.0));
    color: aliceblue;
    padding: 5% 5%;
    width: 5%;
    height: 150px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    border-radius: 10%;
    border: 2px solid aliceblue; /* 2px width, solid line style, and black color */
    font-size: 2vw;
    min-height: 240px; /* Set a fixed minimum height for the boxes */
    display: flex;
    flex-direction: row;
  justify-content: center;
  align-items: center;
    animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
  }
  
  /* Adjust the positioning of the boxes */
  .box:nth-child(1) {
    margin-left: 10%;
    
  }
  
  .box:nth-child(2) {
    margin-left: 5%;
    
  }
  .box:nth-child(3) {
    margin-left: 5%;
    
  }
  .box:nth-child(4) {
    margin-right: 10%;
    margin-left: 5%;
    
  }
  /* Media query for smaller screens (adjust as needed) */
@media (max-width: 768px) {
  .box-container {
    margin: -7% 0% 0% 0%;
    flex-direction: row; /* Stack boxes vertically on smaller screens */
    align-items: center;
  }

  .box {
    width: 20%; /* Use 100% width for full width on smaller screens */
    height: 125px;
    margin: 0; /* Remove margin for boxes on smaller screens */
    
    border-radius: 0; /* Remove border radius on smaller screens */
    min-height: auto; /* Remove minimum height on smaller screens */
    font-size: 0.75rem;

  }
}
 
    
  

 /* Styling for the services section */
.services {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5%;
    margin-right: 10%;
    margin-left: 10%;
    padding: 100px 0; /* Adjust the padding as needed */
    background-color: white; /* Background color for the services section */
    border-radius: 40px; /* Add border radius */
    overflow: hidden; /* Ensure content stays within rounded borders */
    box-shadow: 0 0px 6px rgba(0,0,0,0.16), 0 0px 6px rgba(0,0,0,0.23);
  }
  
  /* services section */
  .services-content {
    flex: 1;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-left: 10%;
    padding-right: 10%;
  }
  
  .services h2 {
    font-size: 3vw;
    margin-bottom: 20px;
    color: #204C73;
  }
  
  .services p {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #555;
  }
  
  /* Styling for the image within services section */
  .services-image {
    flex: 1;
    padding: 20px;
    text-align: right;
  }
  
  .services-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  /* Media query for smaller screens (adjust as needed) */
@media (max-width: 768px) {
  .services {
    flex-direction: column; /* Stack content vertically on smaller screens */
    padding: 0px;
  }

  .services-content {
    text-align: justify; /* Center-align text on smaller screens */
    padding: 10px;
  }

  .services h2 {
    font-size: 2rem; /* Adjust font size for smaller screens */
  }

  .services p {
    font-size: 1rem; /* Adjust font size for smaller screens */
  }

  .services-image {
    text-align: center; /* Center-align image on smaller screens */
  }
}
  


  /* Styling for the "Our Promise" section */
.promise-section {
    text-align: center;
    margin-top: 2%;
    padding: 100px 0; /* Adjust the padding as needed */
    background-color: white; /* Background color for the promise section */
  }
  
  .promise-section .section-header {
    font-weight: bold;
    font-size: 2.5rem;
    color: #204C73;
    margin-bottom: 30px;
  }
  
  .icon-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .icon {
    width: calc(33.33% - 20px); /* Adjust the width and margins as needed */
    margin-bottom: 40px;
    text-align: center;
  }
  
  .icon img {
    width: 80px;
    height: 80px;
  }
  
  .icon-info {
    font-size: 1.25rem;
    margin-top: 10px;
    color: #555;
  }
  /* Media query for smaller screens (adjust as needed) */
@media (max-width: 768px) {
  .icon-container {
    flex-direction: column; /* Stack icons vertically on smaller screens */
    align-items: center; /* Center-align icons */
    padding: 0% 5%;
  }

  .icon {
    width: 100%; /* Make icons occupy the full width of the container */
    margin: 0 0 30px 0; /* Add vertical spacing between icons */
  }
}


  .what-we-do {
    display: flex;
    justify-content: center;
    align-items: center;
    
    color: #204C73;
    height: 200px; /* Adjust the height as needed */
}

.center {
    text-align: center;
}

.what-we-do h1 {
    font-size: 4rem;
    margin: 0;
}

/* Media query for smaller screens (adjust as needed) */
@media (max-width: 768px) {
  .what-we-do {
    height: 150px; /* Adjust the height for smaller screens */
  }

  .what-we-do h1 {
    font-size: 2.5rem; /* Adjust the font size for smaller screens */
  }
}


/* services section-project-logistics */
.project-logistics-section { /* Updated class name */
  padding: 1% 0;
  background-color: white;
}

.content-container { /* Updated class name */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  margin: 0 auto;
}

.project-logistics-item { /* Updated class name */
  display: flex;
  flex-direction: row;
  margin-right: 10%; /* Adjusted margin for spacing */
  margin-left: 10%; /* Adjusted margin for spacing */
  padding-bottom: 5%;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
}

.image-container { /* Updated class name */
  flex: 1;
  
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* Ensure the container is positioned relatively for absolute positioning */
}

.image-container img { /* Updated class name */
  width: 100%;
  height: auto;
  border-radius: 10%;
  box-shadow: 30px -30px lightgrey;
}

.text { /* Updated class name */
  flex: 1;
  opacity: 0; /* Set initial opacity to 0 for fade-in effect */
  animation-duration: 1s;
  animation-fill-mode: both;
  justify-content: center;
  align-items: center;
  
}

.text-left { /* Updated class name */
  padding-right: 10%;
  
  transform: translateX(-20px); /* Initial translateX for slide-in effect from the left */
  animation-name: slideLeft;
}

.text-right { /* Updated class name */
  padding-left: 5%;

  transform: translateX(20px); /* Initial translateX for slide-in effect from the right */
  animation-name: slideRight;
  text-align: left;
}

.section-header { /* Updated class name */
  font-weight: bold;
  font-size: 2.5rem; /* Use clamp for font size */
  color: #204C73;
}

.section-paragraph { /* Updated class name */
  line-height: 1.6;
  margin-top: 10px; /* Adjusted margin for spacing */
  font-size: 1.25rem; /* Use clamp for font size */
}

.process-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Adjusted alignment for responsiveness */
}
.process {
  display: flex;
  align-items: center; /* Center vertically within the container */
}

.process-text {
  font-size: 1.25rem;
  margin-left: 5%;
  text-align: left;
  padding-top: 2.5%;
}

.circle {
  width: 80px; /* Adjust the circle size as needed */
  height: 80px; /* Adjust the circle size as needed */
  border: 5px solid #204C73;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2vw; 
  color: #204C73;
}

.line-container {
  display: flex;
  
  flex-direction: column;
  align-items: center;
  padding-right: 89%;
}

.line {
  width: 4px;
  visibility: none;
  height: 40px; /* Adjust the height of the connecting lines as needed */
}


/* Animation keyframes */
@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* CSS for the "Uniqueness" row */
.uniqueness-row {
  display: flex;
  padding: 2% 15%;
  justify-content: center; /* Center the content horizontally */
  align-items: flex-end; /* Align the content to the bottom */
   /* Adjust the height as needed */
  background-color: white; /* Background color for the row */
  text-align: center;
}

.uniqueness-text {
  font-style: italic; 
  font-size: 1.5rem;  /* Adjust the font size as needed */
  font-weight: bold; /* Adjust the font weight as needed */
  color:grey; /* Text color */
  
}



/* Styles for the new combined "About" section */
.express-mail-section { /* Updated class name */
  padding: 5% 0;
  background-color: white;
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}



.express-mail-item { /* Updated class name */
  display: flex;
  flex-direction: row;
  margin-right: 10%; /* Adjusted margin for spacing */
  margin-left: 10%; /* Adjusted margin for spacing */
  padding-bottom: 5%;
}

/* Styles for the new combined "About" section */
.cargo-services-section { /* Updated class name */
  padding: 5% 0;
  background-color: white;
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}



.cargo-services-item { /* Updated class name */
  display: flex;
  flex-direction: row;
  margin-right: 10%; /* Adjusted margin for spacing */
  margin-left: 10%; /* Adjusted margin for spacing */
  padding-bottom: 5%;
}

/* Styles for the new combined "About" section */
.packaging-section { /* Updated class name */
  padding: 5% 0;
  background-color: white;
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}



.packaging-item { /* Updated class name */
  display: flex;
  flex-direction: row;
  margin-right: 10%; /* Adjusted margin for spacing */
  margin-left: 10%; /* Adjusted margin for spacing */
 
}


/* Animation for the project-logistics-section */
.animate-section {
  animation-name: fadeInUp;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {

  .uniqueness-row:nth-child(3) {
    margin-top: 0%;
   }
   .uniqueness-row:nth-child(4) {
     margin-top: 0%;
    }
  .image-container { 
    display: none;
  }
  .line-container {
    display: none;
  }
  .section-header { 
    font-weight: bold;
    font-size: 1.5rem; /* Use clamp for font size */
    color: #204C73;
  }
  
  .section-paragraph { /* Updated class name */
    line-height: 1.6;
    margin-top: 10px; /* Adjusted margin for spacing */
    font-size: 1rem; /* Use clamp for font size */
  }

  .process-text {
    font-size: 1rem;
    margin-left: 5%;
    text-align: left;
    margin-top: 0%;
  }
  .uniqueness-text {
    font-size: 1rem;  /* Adjust the font size as needed */    
  }
  
  .text-left { 
    padding-right: 0%;
        
  }
  
  .text-right { 
    padding-left: 0%;
  }
  

  .project-logistics-item { /* Updated class name */
   
    margin-right:10%; /* Adjusted margin for spacing */
    margin-left: 10%; /* Adjusted margin for spacing */
   
  }
  .packaging-item { /* Updated class name */
    margin-right:10%; /* Adjusted margin for spacing */
    margin-left: 10%; /* Adjusted margin for spacing */
    padding-bottom: 25%;
  }
  .cargo-services-item { /* Updated class name */
    margin-right:10%; /* Adjusted margin for spacing */
    margin-left: 10%; /* Adjusted margin for spacing */
    padding-bottom: 25%;
    padding-top: 10%;
  }
  .express-mail-item { /* Updated class name */
    margin-right:10%; /* Adjusted margin for spacing */
    margin-left: 10%; /* Adjusted margin for spacing */
    padding-bottom: 5%;
  }
  .cargo-services-section .uniqueness-row {
    padding-top: 15%;
  }
  
}



hr {

  margin: 0 auto;
  margin-top: 40px;
  width: 50%;
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(32, 76, 115, 1.0), rgba(255, 255, 255, 0.75), rgba(32, 76, 115, 1.0));
}

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 2s all ease;
}
.reveal.active{
  transform: translateY(0);
  opacity: 1;
}