/* hero section */
.hero {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

/* Fullscreen background image */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures perfect fullscreen coverage */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Black overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}
.hero-overlay-1 {

       background: rgba(0, 0, 0, 0.20) !important;
  
}

/* Centered text */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
}

/* services section */
.img-title-1 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 0px;
    border-radius: 0px 0px 5px 5px;
    color: #ffffff;
    text-align: center;
    background: #fa0d2d;
    padding: 5px 0px;
}
.xb-team-item .xb-item--img {
  border: 2px solid #3f3f3f; /* border color */
  border-radius: 5px 5px 0px 0px; /* smooth rounded corners */
  overflow: hidden; /* ensures image follows the radius */
}

.xb-team-item .xb-item--img img {
  width: 100%;
  height: auto;
  border-radius: 5px; /* match same radius */
  display: block;
}

.xb-item--link a:hover {
  background: #fff !important; /* white background on hover */
  color: #3f3f3f !important; /* red text (change to your color) */
}

/* partner logo section */
/* Section Container */
.xb-logo-top {
  background: #f3f4f6; /* Background color */
  padding: 80px 20px;
  text-align: center;
}

/* Section Heading */
.xb-logo-top .section-title h2 {
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 45px;
}

/* Image Row */
.brand-items {
  display: flex;
  justify-content: space-around;
  gap: 40px;
}

/* Image Styling */
.brand-items .item img {
  border-radius: 12px; /* Rounded corners */
  /* background: #fff; */
  padding: 8px; /* Inside padding */
  transition: 0.3s ease;
}

/* Hover Effect (Optional) */
.brand-items .item img:hover {
  transform: scale(1.05);
  border-color: #999;
}

/*  */

/* Section Spacing */
.pt-140 {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Sub Heading */
.details-sub {
  font-size: 20px;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 30px;
}

/* Image Title */
.img-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 0px;
  color: #ffffff;
  background: #fa0d2d;
  padding: 8px 0;
}

/* Glass Card */
.glass-card {
  background: #3f3f3f;
  padding: 5px;
  border-radius: 5px 5px 0px 0px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

/* tank monitoring */

.glass-card-1 {
    background: #3f3f3f;
    padding: 5px;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

/* LEFT SIDE - TWO VERTICAL IMAGES */

/* TITLE WIDTH FIX (Desktop Only) */
@media (min-width: 1200px) {
  .Accreditation .sec-title .title {
    align-items: center;
  }
}

/* RESET SPACING */
.pb-140 {
  padding-bottom: 30px;
  padding-top: 30px;
}

/* LEFT SIDE - TWO VERTICAL IMAGES */
.two-vertical-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.two-vertical-images .img-box {
  overflow: hidden;
  border-radius: 12px;
}

.two-vertical-images img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* GLASS BORDER */
.img-border {
  background: #3f3f3f;
  padding: 5px;
  border-radius: 5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

/* RIGHT SIDE — 2×2 GRID POINTS */
.custom-blog-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
}

.custom-blog-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  width: 400px;
}

.custom-blog-grid li i {
  color: #fa0d2d;
  font-size: 20px;
  min-width: 22px;
  margin-top: 3px;
}

/* ---------------------- */
/* RESPONSIVE DESIGN BELOW */
/* ---------------------- */

/* Laptop & Medium Screens (991px → 1400px) */
@media (min-width: 991px) and (max-width: 1400px) {
  .two-vertical-images {
    gap: 15px;
  }
  .custom-blog-grid li{
    width: 300px;
  }

  .custom-blog-grid {
    gap: 14px 20px;
  }

  .custom-blog-grid li {
    font-size: 16px;
  }

  .title {
    width: 100% !important; /* prevent overflow on medium screens */
    font-size: 34px !important;
    font-weight: 600 !important;
    line-height: 50px !important;
  }
}

/* Tablets (<991px) */
@media (max-width: 991px) {
  .two-vertical-images {
    gap: 15px;
  }

  .custom-blog-grid {
    grid-template-columns: 1fr 1fr; /* still 2 per row */
    gap: 16px 20px;
  }

  .title {
    width: 100% !important;
    font-size: 24px;
  }
}

/* Mobile (<768px) */
@media (max-width: 768px) {
  .two-vertical-images {
    flex-direction: row; /* images side-by-side */
    gap: 12px;
  }

  .two-vertical-images .img-box {
    flex: 1;
  }

  .custom-blog-grid {
    grid-template-columns: 1fr; /* stack points */
    gap: 16px;
  }
}

/* Extra Small (<480px) */
@media (max-width: 480px) {
  .two-vertical-images {
    flex-direction: column; /* back to vertical */
    gap: 12px;
  }

  .title {
    font-size: 20px;
  }
}

/* navigation */

.three-sets-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 90px;
  margin-top: 30px;
}

.set-box {
  width: 33%;
}

.set-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
    margin-bottom: 10px;
    display: flex;
    font-size: 18px;
    align-items: baseline;
    width: 150%;
}

.custom-list li i {
  color: #fa0d2d;
  margin-right: 10px;
}

/* gas dedection */

.points-row {
  display: flex;
  justify-content: center;
  gap: 200px;
  margin: 25px 30px 35px 0;
}
.point-item {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.point-item i {
  color: #fa0d2d; /* theme red */
  font-size: 18px;
}

@media (max-width: 768px) {
  .points-row {
    flex-direction: column;
    gap: 10px;
  }
}


/* LSA-&-FFA */







/* IGG & IGS */
.custom-blog-grid-1 {
    display: block !important;
    padding: 0;
    margin: 0;
}

.custom-blog-grid-1 li {
    display: block !important;
    margin-bottom: 10px;
}


.custom-blog-grid-1 li {
    display: flex !important;
    align-items: center;
    gap: 8px;
}


/* logo */


.brand-items-1 {
    display: flex !important;
    justify-content: space-evenly !important;

}



.xb-logo-top-1 {
    background: #f3f4f6 !important;
    padding: 80px 150px !important;
    text-align: center !important;
}

.xb-logo-top-1 .section-title h2 {
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 45px;
}

.brand-items-1 .item img:hover {
    transform: scale(1.05);
    border-color: #999;
}
.brand-items-1 .item img {
    border-radius: 12px;
    background: #fff;
    padding: 8px;
    transition: 0.3s ease;
}



