
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
  overflow-x: hidden;

    
}





/* Utility base */
:root {
  --primary-font: "Montserrat", sans-serif;
  --font-weight: 500;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


  


/* ---------- HEADER Company name ---------- */
.lnr_header {
  background-color: #fff;
  display: flex;
  justify-content: center;    
  align-items: center;
  padding: 0.5rem 5vw;
  box-sizing: border-box;
}

.header_heading {
  text-align: center;
  flex-grow: 1;
}

.header_heading span {
  display: flex;
  align-items: flex-end;      
  justify-content: center;
  gap: 8px;
}

.brand-main {
  font-family: "Racing Sans One", sans-serif;
  font-weight: 400;
  font-size: 80px;            
  color: #ff2400;
  margin: 0;
  line-height: 1;
}

.brand-sub {
  font-family: "Racing Sans One", sans-serif;
  font-weight: 400;
  font-size: 45px;            
  position: relative;
  top: -4px;
  right: 10px;
  color: #ff2400;
  margin: 0;
  line-height: 1;
}

/* ---------- MOBILE (≤600px) ---------- */
@media (max-width: 600px) {
  .brand-main {
    font-size: 55px;  
            /* 🔻 scaled down */
  }

  .brand-sub {
    font-size: 30px;         
    top: -5px;
    left: 0.2px
  }

  .header_heading span {
    gap: 0px;                 
  }
}




/* NAVIGATION */
.lnr_nav {
  background-color: #000;
  padding: 0.5rem 5vw;
}

.lnr_container-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.lnr_container-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  gap: 1rem;
}

.lnr_container-nav ul li a {
  font-family: var(--primary-font);
  font-size: 1rem;
  font-weight: 450;
  color: #fff;
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border: 1.5px solid transparent;
  transition: border 0.3s;
}

.lnr_container-nav ul li a:hover {
  border: 1.5px solid #fff;
}

/* MOBILE MENU ICON */
.mobile-menu-icon {
  display: none;
  font-size: 0.5rem;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
}



/* ---------- MOBILE NAV (≤600px) ---------- */
@media (max-width: 600px) {
  .lnr_container-nav {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }
  .lnr_nav{
     padding: 0.4rem 5vw;
  }

  .mobile-menu-icon {
    display: block;
    font-size: 1.2rem;  
  }

  .lnr_container-nav ul {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background-color: #000;
    margin-top: 0.5rem;
  }

  .lnr_container-nav ul.show {
    display: flex;
  }

  .lnr_container-nav ul li {
    width: 100%;
    border-top: 1px solid #333;
  }

  .lnr_container-nav ul li a {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
  }
}











/*--hero image --*/
.image-container {
    position: relative;
    background-color: #f8f4ed;
    ;
}

.image-list {
    display: flex;
    overflow: hidden;
}

.image-item {
    min-width: 100%;
    height: 600px;
    

}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Tablet view */
@media (max-width: 992px) {
    .image-item {
        height: 400px;      /* reduce height proportionally */
    }

    .image-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Mobile view */
@media (max-width: 600px) {
    .image-item {
        height: 250px;      /* smaller height for small screens */
    }

    .image-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

  
  /* Footer */

  .footer-section{ background: #1a2129; } 
  .footer-container{ display: flex; justify-content: center; padding: 40px 20px; color: #fff; } 
  .footer-container .f-h-c{ width: 220px; margin: 0 5; } 
  .footer-container .f-h-c h4{ text-transform: capitalize; margin-bottom: 10px; } 
  .footer-container .f-h-c ul { list-style: none; } 
  .footer-container .f-h-c ul li { margin: 15px 0; font-size: 17px; } 
  .footer-container .f-h-c ul li a{ margin-top: 10px; color: #fff; font-size: 1rem; text-transform: capitalize; text-decoration: none; } 
  .footer-container .f-h-c ul li a:hover{ color: #fabebe;; } 
  .footer-container-2{ border-top: 1px solid #aaa; padding-top: 20px; padding-bottom:50px ; } 
  .footer-container-2 .f-t-top{ display: flex; color: #fff; justify-content: center; margin-bottom: 40px; } 
  .logo{ margin-right: 30px; } .select-lang-box:hover .language-select-box{ display: block; } 
  .f-b-bottom ul{ display: flex; color: #fff; justify-content: center; list-style: none; } 
  .f-b-bottom ul li{ margin: 0 10px; font-size: .9rem; } 
  .last-footer-info{ color: #fff; padding: 20px; background: #0F1111; display: flex; text-align: center; justify-content: center; }

  

  


/* Tablet View */

@media screen and (min-width: 601px) and (max-width: 992px) {
  .footer-container {
    justify-content: center;     
    flex-wrap: wrap;             
    padding: 30px 15px;          
    gap: 25px;                   
  }

  .footer-container .f-h-c {
    width: 180px;               
    margin: 0 10px;
    text-align: center;          
  }

  .footer-container .f-h-c h4 {
    font-size: 18px;             
    margin-bottom: 8px;
  }

  .footer-container .f-h-c ul li {
    font-size: 15px;            
    margin: 10px 0;
  }

  .footer-container .f-h-c ul li a {
    font-size: 0.95rem;         
  }

  .last-footer-info {
    font-size: 0.85rem;         
    padding: 15px 10px;
  }

  .footer-container img {
    max-width: 160px;            
    height: auto;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;   
    justify-content: center;      
    gap: 20px;
    padding: 20px 0px; 
    margin: 0 ;              
    width: 100%;                  
    box-sizing: border-box;
  }

  .footer-container .f-h-c {
    flex: 1 1 auto;
    max-width: 90%;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    padding: 10px 0;             
  }
  
  .footer-container .f-h-c h4 {
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 8px;
  }


  .footer-container .f-h-c ul li {
    font-size: 14px;
    margin: 6px 0;
    line-height: 1.4;
     word-break: break-word;
  }

  .footer-container .f-h-c ul li a {
    font-size: 0.9rem;
  }

   .last-footer-info {
    font-size: 0.8rem;
    padding: 12px 8px;
  }
}

  /*industries we serve */
  .industries {
      margin: 0;
      padding: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #f4f4f4;
      font-family: Arial, sans-serif;
    }

    h1 {
      margin-top: 50px;
      font-size: 36px;
      color: #333;
      text-align: center;
    }

    .iws_cards-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin-top: 40px;
      margin-bottom: 100px;
      flex-wrap: wrap; /* Mobile responsive */
    }
    .iws_icon{
      margin: auto 20px;
      font-size: 30px;
      color: #eceff4;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .iws_content{
      width: 190px;
      height: auto;
      margin-right: 10px;
      justify-content: center;
      align-items: center;
      display: flex;
      justify-self: center;

      padding: 5px;
    }
    .iws_content p{
      font-family: "Montserrat", sans-serif;
      font-optical-sizing: auto;
      font-weight: 470;
      font-style: normal;
      color: #ffffff;
      font-size: 18px;
    
      justify-self: center;
      align-self: center;
      position: relative;
    }

    .iws_card {
      width: 250px;
      height: 100px;
      background-color: rgb(182, 20, 20);
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 20px;
      font-weight: bold;
      border-radius: 10px;
      transition: 0.3s;
      padding: auto 10px;
    }

    .iws_card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    /*experience*/

  .exp_rectangle {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
  background-color: rgb(182, 20, 20);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  gap: 20px;
}

.exp_element {
  flex: 1 1 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.exp_symbol {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 10px;
  color: #fff;
}

.exp_heading {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: bold;
  margin-bottom: 5px;
  color: #ffffff;
}

.exp_subheading {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #ffffff;
}


/* Mobile View */
@media (max-width: 768px) {
  .exp_body{
    display:none;
  }
  .exp_rectangle {
    flex-direction: column;  
    gap: 10px;                
    padding: 8px;            
    width: 75%; 
    height: auto;             
  }

  .exp_element {
    flex: 1 1 auto;
    max-width: 80%;        
    margin: 0 auto;
    height: 100px;

  }

  .exp_symbol {
    font-size: 1.3rem;      
    margin-bottom: 4px;     
  }

  .exp_heading {
    font-size: 1rem;         
    margin-bottom: 2px;      
  }

  .exp_subheading {
    font-size: 0.8rem;       
  }
}





/*contact us form*/


  .cuss_body {
    top:300px;
    background-color: #eceff4;
    background-image: linear-gradient(to bottom, rgba(25, 25, 25, 0.8) 0%, rgba(44, 43, 43, 0.8) 100%),url(/au_images/au_1.jpg);
    background-size: cover;
    background-position: center ;
    background-repeat: no-repeat;
    opacity: 1;
    object-fit: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  



  
  