@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }

  main > section:nth-last-of-type(1) {
    padding-bottom: 50px;
}
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    transition: transform 0.3s ease;
  }
  
  header.hidden {
    transform: translateY(-100%);
  }
  
  .nav-links {
    display: flex;
    margin-left: auto;
    list-style: none;
    overflow: hidden;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #6a9ef7;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    padding: 37px 20px;
    flex-shrink: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .nav-links a:hover, .nav-links a.active {
    background-color: #e9eef7;
    color: #004aad;
  }
  
  body {
    margin-top: 100px;
  }
  
  .upper-hover-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 999;
  }
  
.logo img {  
    height: 140px;  
    padding: 30px;
}  

/* Slider Section */
.slider {
    position: relative;
    width: 100%;
    height: 50vh;   
    overflow: hidden; 
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: calc(100% * (5 + 2)); 
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

button.prev {
    left: 15px;
}

button.next {
    right: 15px;
} 

.content-section {  
    display: flex;  
    margin: 0; 
    padding: 0; 
    gap: 20px; 
    align-items: center;  
    justify-content: space-between;  
    flex-wrap: wrap;  
    max-width: 100%;  
    overflow: hidden;  
}  

.content-section .content, .content-section .image {  
    flex: 1;  
    text-align: center;  
    padding: 20px;  
}  

.content-section img {  
    width: 100%;  
    max-width: 800px;  
    height: 400px;  
    object-fit: cover;  
    border-radius: 10px;  
}  

.content-section h2 {  
    position: relative;  
    margin-bottom: 0; 
}  

.content-section h2::after {  
    content: "";  
    display: block;  
    width: 50%;  
    height: 2px;  
    background-color: #000;  
    margin: 10px auto 0;  
}  

#about-us {  
    background-color: #192f66;  
    color: white;  
    padding: 0;  
}  

#products {  
    background-color: #d1d5e0;  
    color: black;  
    padding: 0;  
}  

#request-quote {  
    background-color: white;  
    color: black;  
    padding: 0;  
}  

#order-tracking {  
    background-color: #d1d5e0;  
    color: black;  
    padding: 0;  
}  

h2 {  
    font-size: 42px;  
    font-weight: bold;  
    margin-bottom: 10px;   
}  

#about-us h2::after {  
    background-color: white;   
}  

#products h2::after {  
    background-color: black;   
}  

#request-quote h2::after {  
    background-color: black;  
}  

#order-tracking h2::after {  
    background-color: black;  
}  

button {  
    background-color: black;  
    color: white;  
    border: none;  
    padding: 15px 20px;   
    font-size: 20px;  
    border-radius: 13px;  
    cursor: pointer;  
}  

button:hover {  
    background-color: grey;  
    color: black;  
}  

/* Vision and Mission Section */  
#vision-mission {  
    display: flex;             
    align-items: stretch;      
    margin: 0;  
    padding: 20px; 
    background-color: #192f66;  
    position: relative;         
}  

#vision-mission h2 {  
    font-size: 42px;  
    font-weight: bold;  
    position: relative;  
}  

#vision-mission h2::after {  
    content: "";  
    display: block;  
    width: 50%;  
    height: 2px;  
    background-color: white;  
    margin: 10px auto 0;  
}  

#vision-mission .content {  
    flex: 1;                     
    background-color: #192f66;   
    color: #fff;  
    padding: 20px;  
    border-radius: 10px;  
    text-align: center;  
}  

#vision-mission::after {  
    content: "";  
    width: 2px;  
    height: max-content;  
    background-color: white;    
    position: absolute;          
    left: 50%;                   
    top: 0;                      
    bottom: 0;                   
    transform: translateX(-50%);   
}  

/* Footer */  
footer {  
    padding: 10px;  
    margin: 0;  
    background-color: white;  
    color: black;  
}  

footer .footer-content {  
    display: flex;  
    justify-content: space-between;  
    align-items: center;  
}  

footer .social-icons {  
    display: flex;  
}   

footer .social-icons img {  
    width: 36px;  
    height: 36px;  
    margin: 0 5px;  
}