body{
    margin:0;
    font-family:Arial, sans-serif;
    padding-top:100px;
  }
  
  .main-header{
    background:#fff;
    padding:0px 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    z-index:999;
  }
  
  .navbar-brand img{
    height:80px;
  }
  
  .menu-link{
    position:relative;
    font-weight:600 !important;
    color:#000 !important;
    padding-bottom:5px;
  }
  
  .menu-link::after{
    content:"";
    position:absolute;
    width:0%;
    height:3px;
    left:0;
    bottom:0;
    background:#000;
    transition:0.4s ease;
  }
  
  .menu-link:hover::after{
    width:100%;
  }
  
  .brands-title{
    background:#f39c12;
    padding:30px 0;
  }
  
  .brands-title h1{
    color:#fff;
    font-size:40px;
    font-weight:700;
  }
  
  .brands-section{
    background:#fff;
    padding:70px 0;
  }
  
  .brand-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:70px 40px;
    align-items:center;
    justify-items:center;
  }
  
  .brand-grid img{
    max-width:140px;
    transition:0.3s;
  }
  
  /* .brand-grid img:hover{
    transform:scale(1.1);
  } */
  
  @media(max-width:992px){
    .brand-grid{
      grid-template-columns:repeat(3,1fr);
    }
  }
  
  @media(max-width:768px){
    .brand-grid{
      grid-template-columns:repeat(2,1fr);
    }
  
    .brands-title h1{
      font-size:30px;
    }
  }
  

  #backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none; 
    z-index: 1000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    color: #000;
    border: none;
    background-color: #e9ecef !important;
    line-height: 50px;
    box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.2rem rgba(0, 0, 0, 0.2) !important;
}


  .brands-section{
    width:100%;
  }
  
  .brand-item{
    position:relative;
    overflow:hidden;
  }
  
  .brand-item img{
    width:100%;
    height:550px;
    object-fit:cover;
    transition:0.5s ease;
  }
  
  .brand-item .overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    transition:0.5s ease;
  }
  
  .brand-item h3{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    color:#fff;
    font-weight:600;
    font-size:26px;
    margin:0;
    z-index:2;
  }
  
  /* .brand-item:hover img{
    transform:scale(1.05);
  } */
  
  @media(max-width:991px){
    .brand-item img{
      height:500px;
    }
  }
  
  @media(max-width:576px){
    .brand-item img{
      height:500px;
    }
  }
  
 /* Home Title Section */
.home-title {
  background: linear-gradient(90deg, #7d8dff, #7d8dff);
  padding: 75px 0;
  text-align: center;
}

.home-title h2 {
  color: #fff;
  font-weight: 700;
  margin: 0;
  font-size: 36px;
}

.image-grid {
  width: 100%;
}

.grid-item {
  position: relative;
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: 400px; 
  object-fit: cover;
  transition: 0.4s ease;
}

.big-img img {
  height: 800px;
  background-size: cover;
}

.col-lg-6 > .row > .col-4 .grid-item img {
  height: 400px; 
}

/* .grid-item:hover img {
  transform: scale(1.05);
} */

/* About Us Section */
.about-us-section {
  font-family: Arial, sans-serif;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.about-header {
  background-color: #f6921e; 
  padding: 15px 20px;
  margin-bottom: 30px;
}

.about-header h2 {
  color: #fff;
  margin: 0;
  font-size: 28px;
  font-weight: bold;
}

.about-content {
  display: flex;
  /* gap: 20px; */
  align-items: flex-start;
  flex-wrap: wrap; 
}

.about-image {
  flex: 1 1 50%;
}

.about-image img {
  width: 85%;
  height: 520px;
  /* border-radius: 5px; */
  object-fit: contain;
}

.about-text {
  flex: 1 1 45%;
  color: #7a7a7a;
  margin-left: -60px;
  line-height: 2.0;
  font-size: 16px;

}

.about-text p {
  margin-bottom: 10px;
  width: 520px;
}

@media (max-width: 992px) {
  .about-content {
      flex-direction: column;
  }
  .about-us-section {
    padding: 0px;
  }

  .about-image img {
    width: 365px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover !important;
    height: auto;
  }

  .about-image{
      flex: 1 1 100%;
  }

  .about-text{ 
    font-size: 14px;
    padding: 20px;
    width: 300px;
    text-align: justify;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .about-text p {
    margin-bottom: 10px;
    width: 365PX;
    /* padding: 32px; */
    margin-left: 180px;
  }

}



.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding: 80px 0px 50px 0px;
  justify-content: center;
  
}

.contact-details {
  flex: 1 1 300px;
  max-width: 550px;
}

.contact-details h2 {
  color: #F29100; /* Orange like image */
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  text-align: center;
}

.contact-details h3 {
  font-weight: bold;
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.contact-details p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
}

.contact-details p i {
  color: #F29100; /* Icon color */
  font-size: 1.2rem;
  margin-right: 20px;
  text-align: center;
}

.contact-form {
  flex: 1 1 400px;
  max-width: 550px;
}

.contact-form h2 {
  color: #f7941d;
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 10px;
  text-align: center !important;
}

.contact-form p.description {
  color: #6c757d;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center !important;

}

.contact-form .form-control {
  margin-bottom: 15px;
  border-radius: 6px;
}

.contact-form .form-control:focus {
  outline: none; /* removes default blue ring */
  box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.5); /* orange glow */
  border-color: #f7941d; /* optional: changes border to match color */
}

.contact-form textarea.form-control {
  height: 120px;
}

.contact-form button {
  width: auto;
  font-size: 14px;
  height: auto;
  line-height: normal;
  text-align: center;
  background: #f29100;
  border-width: 1px;
  border-color: #f29100;
  border-style: solid;
  color: #ffffff;
  cursor: pointer;
  font-weight: normal;
  border-radius: 8px;
  text-shadow: none;
  padding: 8px 16px;
  box-sizing: border-box;
  box-shadow: 0 1px 1px #eeeeee;
  margin: 10px;
  margin-left: 0;
  margin-right: 0;
  vertical-align: middle;
}

/* Responsive */
@media(max-width: 768px) {
  .contact-section {
    flex-direction: column;
    gap: 30px;
  }
}