:root {
  --primary-color: #24cbd3; /* Dark Blue */
  --primary-shade: #1aaeb5; /* Darker Blue */
}
/* Header Section */
.header-section {
  background: url('../../images/house4.jpg') no-repeat center center/cover;
  color: white;
  position: relative;
  padding: 100px 20px;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
}

.header-content {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-section:before {
  background: #212529;
  content: "";
  display: block;
  opacity: 0.8;
  z-index: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.header-section-top{
    background: var(--primary-color);
    position: absolute;
    padding: 30px;
    height: 1px;
    width: 100%;
    clip-path: polygon(0 96%, 100% 0, 100% 5%, 0% 100%);
}

.header-section-bottom{
    background: var(--primary-color);
    padding: 30px;
    margin-top: -60px;
    height: 1px;
    width: 100%;
    clip-path: polygon(0 96%, 100% 0, 100% 5%, 0% 100%);
}

/* Navigation Bar */
.navbar-light {
  background-color: #f8f9fa !important;
}

/* Call to Action Button */
.btn-cta {
  padding: 6px 16px;
}

/* Section Spacing */
.section {
  padding: 60px 20px;
}

.listing-section img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.mk-floating-horizontal {
    -webkit-animation: 2s linear infinite mk_floatx;
    -moz-animation: 2s linear infinite mk_floatx;
    -ms-animation: mk_floatx 2s infinite linear;
    -o-animation: 2s linear infinite mk_floatx;
    position: relative;
}

@-webkit-keyframes mk_floatx {
    0% { left : 0; }
    50% { left : -15px;}
    100% { left : 0; }
}

.navbar{
  padding-top: 15px;
}

.nav-item{
  margin-right: 10px;
      padding: 0 10px;
}

.nav-link {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 5px;
}

.nav-link:hover::after,
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 5px;
  bottom: 0;
  width: 85%;
  height: 2px; /* underline thickness */
  background-color: currentColor; /* uses current text color */
}


.col_dark_text{
  color: var(--primary-color);
}
.col_dark_bg{
  background-color: var(--primary-color);
}

.offer-btn:hover{
  background-color: var(--primary-shade);
}

.hc-left{
  padding-right: 5%;
}

.hc-right .form-control,
.last-form .form-control{
  line-height: 1.8;
  border-radius: 0;
}

.hc-right{
    border: 3px solid var(--primary-color);
}

.uniform-img {
  height: 250px; /* Set consistent height */
  object-fit: cover; /* Ensures image fills the box neatly */
  border-radius: 0.5rem 0.5rem 0 0; /* match card style */
}

.object-fit-cover {
  object-fit: cover;
}

.bg-action{
  background-color: #006e74;
}

.offer_btn_div{
    margin-top: 80px;
}

.offer-form-section .form-control,
.offer-form-section .form-select {
    line-height: 2;
    border-radius: 0;
}
.offer-form-section .form-label{
    font-weight: 600;
    color: #212529;
}


@media (min-width: 1400px) {
  .container{
    max-width: 1200px;
  }
  .homepage .container{
    max-width: 1400px;
  }

}



.homepage .header-section {
    min-height: 300px;
  position: relative;
}

.homepage .header-section .tagline span {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 10px;
}

.homepage ul {
  padding-left: 0;
  list-style: none;
}
.homepage ul li {
  margin-bottom: 6px;
}

.pad_left{
  padding-left: 3%;
}


@media (max-width: 768px) {
  .homepage .header-section .tagline {
    font-size: 1.75rem;
  }

  .homepage .header-section .tagline span {
    font-size: 1.2rem;
  }
}
