/* Common */
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
}
p {
  font-size: 16px;
  color: #666;
  font-weight: 300;
}
ul li {
  font-weight: 300;
  line-height: 1.7em;
}
h1, h2, h3, h4, h5, h6 {
    padding-bottom: 10px;
    line-height: 1.4em;
    font-weight: 800;
}
a {
  text-decoration: none;
  color: unset;
}
strong {
    font-weight: 700;
}
.text-white p{
  color: #fff;
}
.text-red {
  color: #9d1104;
}
.big-text {
  font-size: 20px;
}
.bottom-border {
  border-bottom: 2px solid;
}
.dark-bg {
  background: #f4f4f4;
}

/* Buttons */
.btn {
  font-size: 19px;
  padding: 10px 30px;
  border-radius: 2px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}
.btn:hover {
  padding-right: 35px !important;
  padding-left: 25px !important;
}
.btn.shadow-sm{
  box-shadow: 0 12px 18px -6px rgba(0, 0, 0, .3) !important;
}
.btn-red {
  background: #9d1104;
  color: #ffffff !important;
}
.btn-red:hover {
  background: #7c0d03;
}
.btn-yellow {
  background: #e0c600;
  color: #fff !important;
}
.btn-yellow:hover {
  background: #c7b000;
}
.btn-outline-gray {
  color: #ffffff !important;
  background: rgba(255,255,255,.24);
}
.btn-outline-gray:hover {
  background: rgb(255 255 255 / 51%);
}
.header-btn {
  font-size: 14px;
}
.btn-check:checked+.btn, 
.btn.active, 
.btn.show, 
.btn:first-child:active, 
:not(.btn-check)+.btn:active {
  background-color: #7c0d03;
}

/* Header */
.top-bar {
  background: #5c5c5c;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 0;
}
.top-bar i {
  color: #fff;
  margin-right: 6px;
}
.header-top-bar a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  margin-right: 10px;
}
.navbar {
  background: #ffffff;
}
.navbar-brand img {
  height: 70px;
}
.nav-link {
  color: #5c5c5c !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
}
.nav-link:hover {
    opacity: .7;
    -webkit-transition: .4s 
ease-in-out;
    transition: all .4s 
ease-in-out;
}
.navbar-expand-lg .navbar-nav {
  flex-direction: row;
  gap: 15px;
}


/* Home page start */
/* Banner section */
.hero {
  background: url('../images/hero-image.jpg') center/cover no-repeat;
  color: #ffffff;
  position: relative;
  padding: 80px 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
p.banner-text {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 29px;
}
p.text-uppercase.small {
    letter-spacing: 1px;
}
.badges img {
  height: 120px;
  margin: 15px;
}
.quote-box .form-headings {
  background: #9d1104;
  padding: 25px;
  color: #ffffff;
}
.form-headings p {
  margin-bottom: 0;
}
.quote-box .hero-form {
  background: #fff;
  padding: 25px;
}
.form-style input, 
.form-style textarea {
  margin-bottom: 10px;
  padding: 14px 12px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 14px;
  border: 1px solid #bbb;
}
.form-style button {
  color: #ffffff;
  font-weight: 600;
}
.quote-box .hero-form form{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}
.quote-box .hero-form form input.form-control.half {
  width: 48%;
}

/* Services section */
.services-section h2 {
  line-height: 1.4;
}
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #9d1104;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto;
}

/* Business section */
.business-section {
  background: #fff;
}
.business-section .right-clm {
  background: url(../images/business-section-clm.jpg) center / cover no-repeat;
  position: relative;
  height: auto;
  min-height: 1px;
}

/* Business section */
.trust-section {
  background: #f9f9f9;
  color: #5c5c5c;
}
#testimonialCarousel {
  background: #5c5c5c;
  border-left: 6px solid #9d1104;
  padding: 0 6%;
}
.testimonial-box p{
  color: #fff;
  font-size: 16px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 50% 50%;
}
#testimonialCarousel .carousel-control-prev i,
#testimonialCarousel .carousel-control-next i {
  font-size: 25px;
  color: #fff;
}
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  transition: all .2s ease-in-out;
  opacity: 0;
}
#testimonialCarousel .carousel-control-prev {
  left: -22px;
}
#testimonialCarousel .carousel-control-next {
  right: -22px;
}
#testimonialCarousel:hover .carousel-control-prev {
  left: 0px;
  opacity: 1;
}
#testimonialCarousel:hover .carousel-control-next {
  right: 0px;
  opacity: 1;
}
.testimonial-img-clm {
  background: url(../images/testimonial-section-clm.jpg) center / cover no-repeat;
  position: relative;
  height: auto;
  min-height: 1px;
  width: 46%;
}

/* Our work section */
.our-work {
  background: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.gallery-item {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  border: 1px solid #ddd;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.gallery-item:hover::after {
  opacity: 1;
}
.hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.4rem; /* adjust size to match reference */
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover .hover-icon {
  opacity: 1;
}
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
}
.lightbox-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
/*.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  height: 100%;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.our-work .col-md {
  height: 230px;
  overflow: hidden;
  width: auto;
  flex: 0 0 auto;
}*/


/* Areas We Service Section */
.areas-we-service {
  position: relative;
  z-index: 1;
  background: url('../images/Background-min.jpg') center/cover no-repeat;
}
.service-card {
  border-left: 5px solid #9d1104;
}
/* Home page end */

/* Sticky WhatsApp icon */
.whatsapp-float {
      position: fixed;
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 20px;
      color: white;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .whatsapp-float:hover {
      text-decoration: none;
      color: white;
    }

    .whatsapp-icon {
      width: 30px;
      height: 30px;
    }


@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-header div#navbarNav {
    position: absolute;
    top: 100%;
    background-color: rgb(255, 255, 255);
    z-index: 999999;
    width: 100%;
    left: 0px;
/*    padding: 25px;*/
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
    margin-right: 0 !important;
  }
  .navbar-expand-lg .navbar-nav li {
    padding: 5px 25px;
    border-bottom: 1px solid #ddd;
  }
  a.btn.header-btn {
    margin: 0px 25px 25px;
  }
  button.navbar-toggler {
    border: none;
    border-radius: 0;
  }
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .badges img {
    height: 100%;
    margin: 15px 0;
    width: 100%;
  }
  .quote-box .hero-form form input.form-control.half {
    width: 100%;
  }
  .business-section .right-clm {
    min-height: 200px;
  }
  .business-section .row,
  .trust-section .row {
    margin-left: 0;
    margin-right: 0;
  }
  .business-section .row .col-md-6,
  .trust-section .row .col-md-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .testimonial-img-clm {
    width: 100%;
    min-height: 200px;
  }
  .header-top-bar a,
  .top-bar i{
    font-size: 11px;
  }
  .top-bar-icon-list {
    width: 100%;
  }
  .navbar-brand img {
    height: 50px;
  }
  #testimonialCarousel .carousel-control-prev {
    left: -5px;
    opacity: 1;
  }
  #testimonialCarousel .carousel-control-next {
    right: -5px;
    opacity: 1;
  }
}
