/* Body text */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
/* Company List Hover */
.company-list .list-group-item {
  cursor: pointer;
  transition: all 0.3s ease;
}
.company-list .list-group-item:hover {
  background-color: var(--bs-primary);
  color: #fff;
  padding-left: 1.5rem;
}
/* Full-screen carousel */
.hero-carousel,
.hero-carousel .carousel-item {
  height: 100vh; /* full viewport height */
}
/* Images fill the slide area */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* cover entire area */
  object-position: center; /* keep subject centered */
  display: block;
}
/* Caption Top Left */
.custom-caption {
  position: absolute;
  top: 0px;
  left: 0px;
  right: auto;
  bottom: 0;
  text-align: left;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  width: 100%;
}
/* Caption Text Styling */
.custom-caption h1 {
  color: #fff;
  font-size:25px;
}
.custom-caption p {
  color: #ffffff;
  margin-top: 10px;
  font-size:25px;
  text-align: justify;
  font-family: sans-serif;
}
/* Ensure carousel has positioning context */
.hero-carousel {
  position: relative;
}

/* Floating stats bottom-left for large screens */
.floating-stats {
  position: absolute;
  bottom: 12px;
  left: 12px;      /* changed from right to left */
  display: flex;
  flex-direction: row;
  gap: 10px;
  z-index: 20;
}

/* Individual stat boxes */
.floating-stats .stat-item {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  min-width: 80px;
  backdrop-filter: blur(6px);
}

/* Icon */
.floating-stats i {
  display: block;
  font-size: 1rem;
  color: var(--bs-primary);
  margin-bottom: 2px;
}

/* Number */
.floating-stats strong {
  font-size: 1rem;
  font-weight: 600;
  display: block;
}

/* Label */
.floating-stats span {
  font-size: 0.7rem;
  opacity: 0.85;
  display: block;
}
/* Header Logo Size Fix */
.header .logo img,
.branding .logo img {
  max-height: 70px;   /* try 60–70px */
  width: auto;
}

/* Mobile: center bottom */
@media (max-width: 768px) {
  .floating-stats {
    bottom: -240px;
    left: 50%;
    transform: translateX(-50%);
    gap: 6px;
  
    justify-content: center;
  }

  .floating-stats .stat-item {
    padding: 6px 8px;
    min-width: auto;
  }
}
@media (max-width: 768px) {
  .branding .logo img {
    max-height: 50px;
  }
}

