*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins','Noto Sans Sinhala', sans-serif;
}

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding: 0;
}

/* NAVBAR */

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
}
header.scrolled {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.logo img{
height:50px;
width:auto;
object-fit:contain;
}

.navbar{
background:#fff;
padding:5px 0;
}

.nav-wrapper{
display:flex;
justify-content:space-between;
align-items:center;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
text-decoration:none;
color:#616161;
font-weight:600; 
font-size: 18px;
}

nav a:hover{
	color:#ff6a00;
}

nav .active{
color:#ff6a00;
}

/* TOGGLE BUTTON */
.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* MOBILE STYLE */
@media(max-width:768px){

  .menu-toggle{
    display:block;
  }
  .nav-wrapper {
padding: 5px 10px;
}

  nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    max-height:0;
    overflow:hidden;
    transition:0.3s ease;
  }

  nav.active{
    max-height:300px;
  }

  nav ul{
    flex-direction:column;
    gap:15px;
    padding:20px;
  }

}
/* HERO */

.hero{
  position: relative;
  background-image: url("asset/Herobanner.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 610px;
  display: flex;
  align-items: center;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.hero-content{
position:relative;
color:white;
}

.hero h1{
font-size:50px;
line-height:1.3;
margin-bottom:20px;
}

.hero h1 span{
color:#ff7a1a;
}
.hero h2{
 font-size:26px;
 margin-bottom: 10px;
}
.hero h3{
 font-size:16px;
 margin-bottom: 30px;
}
.hero p{
font-size:16px;
margin-bottom:15px;
}
.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}
.btn{
padding:12px 25px;
border-radius:8px;
text-decoration:none;
font-weight:600;
display:inline-block;
}

.primary{
background:#ff7a1a;
color:white;
}
.phone{
border:2px solid white;
color:white;
}
.phone:hover{
	background-color: #fff;
	color: #ff7a1a;
}

@media(max-width:768px){
  .hero h1{
  font-size:28px;
  }
  .hero h2{
 font-size:14px;
 }
 .hero h3{
 font-size:14px;
 margin-bottom: 20px;
 }
 .hero p{
 font-size:14px;
 margin-bottom:10px;
}
.hero-content{
  padding: 14px;
}
.btn{
  font-size: 14px;
}
.equipment{
  padding: 40px 15px !important;
}
}
/*END Hero Sections*/

/* equipment Sections*/
.equipment-section{
  background-color: rgba(234, 234, 234, 1);
}
 .equipment{
 max-width:1200px;
 padding: 40px 0;
 margin-left: auto;
 margin-right: auto;
 }

 .equipment h2{
 	font-size: 32px;
 	font-weight: 700;
 }

.subtitle {
  color: #000;
  font-size: 24px;
  font-weight: 600;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.card {
  border-radius: 10px;
  padding: 15px;
  color: #000;
}

.card.orange {
  background: linear-gradient(180deg, #EC7523, rgba(208, 99, 60, 0.89));
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card.dark {
  background: linear-gradient(180deg, #000000, rgba(49, 46, 46, 0.89));
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px;
  border-radius: 10px 10px 0px 0px;
  margin-bottom: 5px;
}
.card-header h3{
	font-size: 16px;
  font-weight: 600;
}

.card-header img {
  width: 30px;
}

.orange-cards li {
  display: flex;
  justify-content: space-between;
  background: rgba(217, 217, 217, 0.32);
  padding: 8px;
  margin-bottom: 5px;
}
.dark-cards li {
  display: flex;
  justify-content: space-between;
  background: rgba(217, 217, 217, 0.32);
  padding: 8px;
  margin-bottom: 5px;
}

.product-card-orange, .product-card-dark {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
}

.text h2 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.product-card-orange .text p {
  margin: 5px 0 0;
  color: #434343;
  font-size: 14px;
}
.product-card-dark .text p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

.status {
  background: #0A5824;
  color: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 8px;
  font-weight: 600;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px){
  .grid {
    grid-template-columns: 1fr;
  }
  .equipment h2{
    font-size: 24px;
  }
  .subtitle{
    font-size: 18px;
  }
  .text h2 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
}
/* End - equipment Sections*/

/* 2nd Sections*/
 .equipment-2nd{
  background-color: #fff;
}
 .card-header-2nd {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff !important;
  padding: 30px;
  border-radius: 10px 10px 0px 0px;
  margin-bottom: 5px;
}
.card-full-image {
width: 130px !important;
margin: 0 auto;
}
.text-2nd {
  display: flex;
  flex-direction: column;
  flex: 1; /* 👈 meka important */
}
.text-2nd h3{
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  font-weight: 600;
  padding-top: 20px;
  padding-bottom: 10px;
}
.text-2nd h4{
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  padding-top: 2px;
}
.text-p {
margin-bottom: 15px;
}

.text-2nd p{
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  padding-bottom: 7px;
}
.btn-transparent {
  display: inline-block;
  padding: 8px 25px;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 16px;
  text-align: center;
  margin-top: auto;
  margin-bottom: 20px;
}

/* Hover Effect*/
.btn-transparent:hover {
  background: #fff;
  color: #ff7a1a;
}
/* END - 2nd Sections*/

/* 3rd Sections*/
.equipment-3rd{
  background-color: #EAEAEA;
}
/* 4th Sections*/
 .equipment-4th{
  background-color: #fff;
}
.card-top {
    display: flex;
    align-items: center;
    background: #f3f3f3;
    padding: 15px 4px 30px 4px;
    border-radius: 10px 10px 0px 0px;
    position: relative;
}
.icon img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.badge {
    position: absolute;
    right: 0px;
    bottom: 0px;
    background: #f4c20d;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 10px 0px 0px 0px;
}
/* END - 2nd Sections*/

/* 5th Sections*/
 .equipment-5th{
  background-color: #EAEAEA;
}
.grid5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}
@media(max-width:768px){
  .grid5{
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20; 
  }
  .grid5 > *{
    min-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
  .grid5::-webkit-scrollbar{
    display: none;
  }
}

.card-choose {
    display: flex;
    align-items: center;
    background: #f3f3f3;
    padding: 15px 10px 15px 10px;
    border-radius: 10px 10px 0px 0px;
    position: relative;
}
.choose-img{
  width: 60px;
}
/*END- 5TH Sections*/

/* 6th Sections */
 .equipment-6th{
  background-color: #2F2D2C;
}
.service-area {
  text-align: left;
  margin-bottom: 40px;
}
.service-area h2 {
 font-size: 32px;
 font-weight: 700;
 color: #EC7523;
}
.service-area p {
 font-size: 22px;
 font-weight: 600;
 color: rgba(255, 255, 255, 0.46);
 padding-bottom: 40px;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.area {
  padding: 10px 30px;
  border: 2px solid #ff7a2f;
  border-radius: 6px;
  transition: 0.3s;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.light-text {
  color: rgba(255, 255, 255, 0.48);
  font-size: 16px;
}
.area:hover {
  background: #ff7a2f;
}
/*END- 5TH Sections*/

/* 8th Sections */

 .equipment-8th{
  background-color: #131212;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.contact-info {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #EC7523;
}
.info-box {
  display: flex;
  background: #ff7a2f;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 6px;
  position: relative;
  align-items: center;
}
.contact-text h3{
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.contact-text h4{
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.contact-text p{
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.contact-img{
  width: 60px;
  margin-right: 10px;
}
.contact-text {
margin-top: -15px;
}
.map-box {
  background: #333;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  margin-top: 15px;
}
.map-box p{
  margin-bottom: 1px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.map-box a {
  color: orange;
  text-decoration: none;
}
.contact-form {
  background: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(49, 46, 46, 0.89));
  padding: 20px;
  border-radius: 10px;
}
.contact-form h2{
  font-size: 24px;
  color: #EC7523;
}
.contact-form h3{
  font-size: 16px;
  color: rgba(255, 255, 255, 0.46);
  padding-bottom: 20px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #555;
  background: transparent;
  color: #fff;
  border-radius: 5px;
}
.contact-form textarea {
  min-height: 100px;
}
.contact-form button {
  background: #ff7a2f;
  border: none;
  padding: 12px;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #e5671f;
}
.contact-links {
  margin-top: 10px;
  font-size: 18px;
  color: #ff7a2f;
  text-align: center;
  padding-top: 20px;
  font-weight: 600;
  text-decoration: none;
}
.contact-links img{
  width: 18px;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .area-list {
    flex-direction: column;
    align-items: center;
  }
  .area {
    width: 80%;
    text-align: center;
  }
}
/*END- 8TH Sections*/

/* FOOTER */
.footer{
  background-color: #000;
  padding: 20px;
}
.footer-text{
  font-size: 16px;
  color: #fff;
  text-align: center;
}

@media (max-width: 992px) {
   .container{
   padding: 0px 10px;
 }
 .equipment{
  padding: 20px 10px;
 }
}