body,html{
    margin: 0;
    padding: 0;
}
header {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
   padding: 10px 20px;
  background-color: white;
  position: sticky; 
  top: 0;            
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

#logo{
    background-image:url(images/logo.jpg);
    background-size: contain;    
   background-repeat: no-repeat;
   background-position:0%;
    width: 60px;
    height: 60px;
    margin:0;
}
.company-name {  
  margin: 0;
  font-weight: bold;
  font-size: 20px;
}
.companynamee{
  margin: 0;
  
  font-size: 15px;
}
ul {
  list-style: none;  
  display: flex;
  gap: 40px; 
  font-weight: bold;     

}
a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}

a:hover {
  font-weight: bold;
  color: black;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
   
}

#text{
 position: absolute;
  bottom: 60px;
  right: 20px;
  top: 470px;
  color: white;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  width: 350px;
  font-size: 25px;
}

#ship{
background-image:url(images/ship.jpg);
height: 100vh;
width: 100%;
position: relative;

}
#container{
  background-image:url(images/container.jpeg);
  background-size: cover;
  background-position: center;
  width: 550px;
  height: 600px;
  flex-shrink: 0;
  margin: 20px;   
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  margin-left: auto;
}
#ship2{
background-image:url(images/Ship2.jpg);
height: 500px;
width: 500px;
position: relative;
background-size: cover;
background-position: center;
flex-shrink: 0;
margin: 20px;   
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
margin-left: auto
}
.row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px;
  min-height: 100vh;
 }

.left-text {
  flex: 0.6;  
  width: 40%; 
  align-items: center;
  padding-left: 60px;
}
.about-title {
  font-family: 'Bebas Neue', sans-serif;  
  font-size: 72px;                         
  letter-spacing: 2px;                    
  margin-bottom: 10px;
  line-height: 1;
}

.established {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-style: italic;                     
  font-size: 18px;                         
  color: #555;
  margin-bottom: 20px;
}

.about-para {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  max-width: 600px;
 
}

#Services {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  background-color: #f9f9f9;
  height: auto;           
  min-height: 100vh;      
}

.services-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.services-grid {
  display: flex;
  gap: 80px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start; 
}

.service-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 220px;        
  text-align: center;
}
.service-circle .about-para {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgb(52, 52, 52);
  max-width: 100%;  
}
.circle-icon {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 4px solid #c8a96e;
  transition: transform 0.3s ease;  
  cursor: pointer;
}

.circle-icon:hover {
  transform: scale(1.15);
}

#circle-customs {
  background-image: url(images/customclearence.jpg);
}

#circle-forwarding {
  background-image: url(images/forwarding.jpg);
}

#circle-unloading {
  background-image: url(images/unloading.jpg);
}

#circle-door {
  background-image: url(images/doortodoor.jpg);
}

.service-circle h3 {
  font-size: 18px;
  font-weight: bold;
  color: #1a1a2e;
  margin-top: 10px;
  margin-bottom: 0%;
}

.service-circle p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin-top: 0%;
}

#ContactUs {
  color: black;
  background-image:url(images/ship.jpg);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;   
  justify-content: center; 
  height: 100vh;
  position: relative;
}

#ContactUs h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

#ContactUs p {
  margin-bottom: 10px;
  line-height: 1.8;
  color: black;
 font-size: 18px;
}


#ContactUs a {
 color: black;
  font-size: 18px;       
  text-decoration: none;
}

#ContactUs a:hover {
  text-decoration: underline; 
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;

  padding: 40px;             
  border-radius: 12px;      
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ddd;    
  border-radius: 8px;
  background-color: #f9f9f9; 
   color: black;
 font-size: 18px;      
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-form button {
  padding: 14px;
  background-color: #c8a96e; 
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #b8935a;
}
.contact-box {
  display: flex;
  gap: 40px;
  width: 80%;
  padding: 60px;
  background-color: rgba(255, 255, 255, 0.95); 
  border-radius: 16px;
  position: absolute;
  
}

@media (max-width: 768px) {

 
  header {
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 10px;
    gap: 0;
  }

  .company-name {
    font-size: 11px;
  }

  .companynamee {
    font-size: 9px;
  }

  #logo {
    width: 65px;
    height: 65px;
  }

  ul {
    gap: 8px;
  }

  ul li a {
    font-size: 11px;
    font-weight: normal;
  }

  .row {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    padding: 30px 20px;
  }

  .left-text {
    width: 100%;
    padding-left: 0;
  }

  .about-title {
    font-size: 42px;
  }

  #container {
    width: 100%;
    height: 300px;
    margin: 0;
  }

  .services-grid {
    gap: 30px;
  }

  .service-circle {
    max-width: 45%;
  }

  #ContactUs {
    height: auto;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contact-box {
    flex-direction: column;
    width: 90%;
    padding: 20px;
    margin: 20px 0;
  }

  .contact-form {
    padding: 0;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px;
  }

  .contact-form textarea {
    height: 100px;
  }


  #text {
    top: auto;
    left: 10px;
    right: auto;
    transform: none;
    bottom: 30px;
    width: 60%;
    font-size: 12px;
    text-align: left;
  }
 
  ul li a {
    font-size: 9px;
    white-space: nowrap;
  }

  #ship {
    background-position: center ;
     background-attachment: scroll;  
    background-size: cover;
  }
 .parallax {
    background-attachment: scroll;
  }
  .service-circle {
    max-width: 200px;
  }

  .services-grid {
    gap: 15px;
  }
 
  footer {
    background-color: #1a1a2e;
    color: white;
    font-size: 11px;
    padding: 10px;
    text-align: center;
  }

}
@media (max-width: 390px) {

  
  .company-name {
    font-size: 10px;
  }

  .companynamee {
    font-size: 8px;
  }
  header {
  padding: 5px 10px;   
  gap: 0;
}

  #logo {
    width: 70px;
    height: 70px;
  }

  ul li a {
    font-size: 8px;
    white-space: nowrap;
  }


  #ContactUs {
    padding: 10px;
    overflow: hidden;
    height: auto;
    min-height: 100vh;
    margin: 0;
  }

  .contact-box {
    width: 80%;
    padding: 10px;
    gap: 8px;
    overflow: hidden;
    margin: 0;
    position: relative;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 6px;
    font-size: 11px;
  }

  .contact-form textarea {
    height: 60px;
  }

  .contact-form button {
    padding: 8px;
    font-size: 13px;
  }

  #ContactUs h2 {
    font-size: 18px;
  }

  #ContactUs p {
    font-size: 11px;
  }

}
nav a.active {
  font-weight: bold;
  color: #c8a96e;  
  border-bottom: 2px solid #c8a96e;
}

footer {
  background-color: #020204;  
  color: white;
  text-align: center;
  padding: 3px;
  font-size: 13px;
}

