.backimg {
    background: url('assets/images/bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    min-height: 100vh;
}
.logo {
    height: 60px;
    width: auto;
}
.commonButton {
    background-color: #E68939;
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}
.commonButton:hover {
    background-color: #cc7229;
    }
.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
}
    /* second page css */
:host {
    display: block;
    background-color: white;
    color: #333;
}
p {
    font-size: 14px;
    font-weight: 400px;
}
/* third page css */
.card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card-img-top {
    height: 240px !important;
    width: 100%;
    object-fit: cover;
    display: block;
}
.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-title {
    font-size: 14px;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
}
.card-text {
    font-size: 14px;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    margin-bottom: 1rem;
}
.features {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.features i {
    color: #555;
}
.features span {
    font-size: 13px;
}
.btn-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.btn-wrapper .btn {
    border-radius: 25px;
    padding: 6px 18px;
    font-weight: 500;
    font-size: 13px;
    white-space: nowrap;
}
.pill-tabs {
    border-radius: 50px;
}
.pill-tabs .nav-link {
    border-radius: 50px;
    color: #444;
    background-color: transparent;
    transition: 0.3s ease;
}
    .pill-tabs .nav-link.active-tab {
    background-color: #3b8d8a;
    color: #fff;
}
span {
    font-size: 14px;
}
.getQuote {
    background-color: #E68939;
    color: #fff;
}
.getQuote:hover {
    background-color: #cc7229; /* Darkened manually by ~10% */
}
.learnMore {
    border: 1px solid #E68939;
    color: #E68939;
    background-color: transparent;
}
.learnMore:hover {
    background-color: #fbe9d4;
}
    /* fourth page css */
small {
    font-size: 13px;
}
.icons {
    max-height: 50px;
}
.gap-4 {
    gap: 1rem !important;
}
.client-logo {
    max-height: 60px;
    max-width: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
    &:hover {
        transform: scale(1.05);
    }
}
    /* fifth page css */
input, textarea {
    font-size: 14px;
}
button {
    font-weight: 600;
    letter-spacing: 1px;
}
.map-container {
    height: 100%;
    min-height: 300px;
}
    /* last page css */
.footer {
    font-size: 14px;
    a {
        &:hover {
            color: #f39c12;
        }
    }
    img {
        vertical-align: middle;
    }
}
.nav-pills .nav-link.active{
    color:white !important
}
.amenity-label{
    font-family: 'Inter', sans-serif !important;
    font-size: 14px;
    font-weight: 400;
}

.rolling-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.rolling-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.amenity-item {
  flex: 0 0 auto;
  width: 150px;
  margin: 0 20px;
  text-align: center;
}

.amenity-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.amenity-item p {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #000;
  margin: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.call-request-form .form-control {
  height: 40px;
  font-size: 14px;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
}

.request-btn {
  background-color: #E68939;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: background 0.3s ease;
  height: 40px;
}

.request-btn:hover {
  background-color: #c66f2b;
}
.pill-tabs {
  background-color: #f2f2f2;
  border-radius: 40px;
  display: inline-flex;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
}

/* Each tab button */
.pill-tabs .nav-link {
  border-radius: 40px;
  color: #444;
  background-color: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 8px 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Active tab */
.pill-tabs .nav-link.active {
  background-color: #368486; /* Or your preferred active color */
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
