/* font-family */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("../css/header_footer.css");
html {
  scroll-behavior: smooth;
}
body.menu-open {
    overflow: hidden;
}
body{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #555555;
  background: #F4F4F4;
  overflow-x: hidden;
}
a:hover, :hover{
  color: #000080;
}
a, a:hover{
  text-decoration: none;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
section{scroll-margin-top: 120px;}
.hero-section{
  width: 100%;
  height: 100dvh;
  padding: 250px 0;
  background: url(../images/hero-image.png)no-repeat;
  background-position: 100% 100%;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-section::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.hero-txt{
  z-index: 1;
  position: relative;
}
.hero-top{
  display: flex;
  align-items: center;
  grid-gap: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 15px;
}
.hero-txt h1{
  font-weight: 700;
  font-size: 60px;
  color: #FFFFFF;
  margin-bottom: 15px;
}
.hero-txt p{
  font-weight: 400;
  font-size: 15px;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.hero-btns{
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.outline-btn{
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  border: 1px solid #fff;
  padding: 14px 24px;
  border-radius: 90px;
}
.outline-btn:hover{
  background: #fff;
  color: #000080;
}
.milling-section{
  background: #000080;
  padding: 30px 0;
}
.milling-section ul{
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 166px;
}
.milling-section ul li{
  display: flex;
  align-items: center;
  grid-gap: 12px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 5%;
  color: #fff;
  position: relative;

}
.milling-section ul li::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 -83px 0 0;
  border-right: 1px solid #FFFFFF4D;
  height: 46px;
}
.milling-section ul li:last-child::before{
  border: 0;
}
.about-section{
  padding: 80px 0;
}
.about-img img{
  width: 100%;
  height: auto;
  transition: all .3s;
}
.about-img img:hover{
  transform: translateY(-5px);
}
.section-heading span{
  padding: 9px 24px;
  border: 1px solid #18191A1A;
  font-weight: 400;
  font-size: 14px;
  color: #18191A;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 8px;
  width: fit-content;
  border-radius: 90px;
  margin-bottom: 15px;
}
.section-heading span svg{
  border-radius: 50%;
}
.section-heading h3{
  color: #000080;
  font-weight: 700;
  font-size: 45px;
  margin-bottom: 0;
  z-index: 1;
  position: relative;
}
.section-heading{
  margin-bottom: 40px;
}
.about-section p{
  color: #555555;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 12px;
}
.services-section {
  padding: 60px 0;
}
.services-section {
  box-shadow: 0px 14px 34px 0px #0000001A;
  border-radius: 30px;
  padding: 50px 0px;
  margin: 0 20px;
  background: #fff;
}
.services-section .section-heading span, .gallery-section .section-heading span{
  margin: 0 auto 12px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto 70px;
}

.service-card {
  padding: 30px;
  transition: background 0.3s ease;
  cursor: pointer;
  position: relative;
  background: #FFFFFF1A;

}
.service-card h3{
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 10px;
}
.service-card p{
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
}
/* Right divider — only for cards NOT in last column */
.service-card:not(:nth-child(3n)) {
  border-right: 1.5px solid #00000026;
  
}

/* Bottom divider — only for top row cards */
.service-card:nth-child(-n+3) {
  border-bottom: 1.5px solid #00000026;
}

/* Hover: blue border around that specific card only */
.service-card:hover,
.service-card.active {
  background: #fff;
  outline-offset: -2px;
  backdrop-filter: blur(30px);
  box-shadow: 10px 10px 43px 0px #00008026;
  z-index: 1;
}
.service-card:hover h3,
.service-card.active h3{
  color: #000080;
}
.service-icon{
  background: #F1F1F1;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all .3s;
}
.service-icon:hover{
    transform: translateY(-5px);
}
.serv-note{
  margin-bottom: 0;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  text-align: center;
}
.serv-note a{
  text-decoration: underline;
  color: #000080;
  font-weight: 700;
}
.gallery-section{
  padding: 100px 0 80px; 
}
.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  grid-auto-rows:10px;
}

.gallery .item{
  overflow:hidden;
  border-radius:14px;
  transition: all .3s;
}
.gallery .item:hover{
  transform: translateY(-5px);
}
.gallery .item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* exact layout */
.item-1{grid-row:span 12;}
.item-2{grid-row:span 14;}
.item-3{grid-row:span 12;}

.item-4{grid-row:span 12;}
.item-5{grid-row:span 12;}
.item-6{grid-row:span 10;}

@media(max-width:768px){
  .gallery{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .gallery{
    grid-template-columns:1fr;
    grid-auto-rows:auto;
  }

  .item{
    grid-row:auto !important;
  }
}
/* ----------------Equipment------------ */
.equipment-section{
  position: relative;
  padding-bottom: 80px;
}

.equipment-banner{
  height: 420px;
  background: url('../images/equipment-bg.png') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.equipment-banner .overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .69);
}
.equipment-banner .section-heading span{
  margin: 0 auto;
  border: 1px solid #fff;
  z-index: 1;
  position: relative;
  color: #fff;
}
.equipment-heading{
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.equipment-heading .tag{
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 15px;
}

.equipment-heading h2{
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
}

.equipment-cards{
  margin: -70px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.equipment-card{
  background: #fff;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  transition: .3s;
}
.equipment-card:hover{
  transform: translateY(-5px);
}
.equipment-img{
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.equipment-img img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.equipment-card h3{
  font-weight: 600;
  font-size: 20px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #000080;
  line-height: normal;
  margin-bottom: 5px;
}

.equipment-card p{
  font-weight: 400;
  font-size: 15px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: rgb(0 0 0 / 50%);
  margin-bottom: 0;
}

/*  */
.why-us{
  box-shadow: 0px 14px 34px 0px #0000001A;
  background: #fff;
  border-radius: 30px;
  margin: 0 20px;
  padding:80px 0;
}
.why-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}
.why-us .section-heading{
  margin-bottom: 15px;
}

.sub-title{
  font-size:12px;
  color:#777;
  display:inline-block;
  margin-bottom:15px;
}

.why-content h2{
  font-size:42px;
  font-weight:700;
  color:#06145d;
  margin-bottom:25px;
}

.why-list{
    list-style:none;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px 25px;
    margin-bottom:35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #18191A1A;
}

.why-list li{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}
.why-list li svg{
  width: 22px;
}
.why-bottom{
  display:flex;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}
.why-bottom .requ-btn{
  background: #000080;
  color: #fff;
  border: 1px solid #000080;
  transition: all .3s;
}
.why-bottom .requ-btn:hover{
  background: transparent;
  color: #000080 !important;
}
.why-bottom .requ-btn span{
  background: #fff;
}
.why-bottom .requ-btn:hover span{
  background: #000080;
}
.why-bottom .requ-btn:hover span svg path{
  fill: #fff;
}
.help-box{
  display:flex;
  align-items:center;
  gap:12px;
}
.help-icon{
  width:52px;
  height:52px;
  border-radius:50%;
  background:#000080;
  display:flex;
  align-items:center;
  justify-content:center;
}
.help-box small{
  display:block;
  color:#727272;
  margin-bottom:4px;
}

.help-box strong{
  font-size:20px;
  color:#18191A;
  font-weight: 600;
  
}
.contact-section{
  padding: 80px 0;
}
.contact-section form .form-group{
  margin-bottom: 24px;
  position: relative;
}
.contact-section form .form-control{
  background: #FFFFFF;
  box-shadow: 0px 4px 14px 0px #0000001A;
  padding: 12px 15px;
  border-radius: 12px;
  border: 0;
  font-weight: 400;
  font-size: 14px;
  color: #000;
}
.contact-section form .form-control::placeholder{
  color: rgba(0, 0, 0, 0.4);
}
.contact-section select{
  -moz-appearance: window;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: #FFFFFF url(../images/down-arrow.png) no-repeat 97% center !important;
}
.error{
  font-size: 12px;
  color: red;
  margin: 5px 0 0;
  display: none;
}
.submit-btn{
  background: #000080;
  border: 1px solid #000080;
  color: #fff;
  padding: 12px 24px;
  border-radius: 90px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
  width: fit-content;
  transition: all 0.5s ease-in-out;

}
.submit-btn:hover{
  background: transparent;
  color: #fff;
}
/* ---------------Quote------------------ */
.iner-section{
  background: url(../images/contact-bg.png)no-repeat;
  width: 100%;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
}
.iner-section::before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: auto;
}
.iner-section h1{
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;

}
.breadcrumb{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.breadcrumb-item a{
  color: rgba(255,255,255,.6);
  font-weight: 400;
  font-size: 18px;
  line-height: 0;
}
.breadcrumb-item.active{
  color: #fff;
}
.upload-box{
    width:100%;
}

.upload-field{
    background:#fff;
    border:1px solid #e3e3e3;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 15px;
    cursor:pointer;
    transition:.3s ease;
    margin-bottom: 25px;
}

.upload-field:hover{
    border-color:#cfcfcf;
}

#fileName{
  color:#a0a0a0;
  font-size:14px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:70%;
}

.upload-btn{
  display:flex;
  align-items:center;
  gap:8px;
  color:#000050;
  font-size:14px;
  font-weight:600;
  flex-shrink:0;
}

.upload-btn svg{
  width:20px;
  height:20px;
}
.contact-form .submit-btn{
  margin: 0 auto;
  text-align: center;
  display: block;
}