/* header css */
@font-face {
  font-family: "Neulis Sans";
  src: url("../fonts/fonnts.com-Neulis_Sans_Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neulis Sans";
  src: url("../fonts/fonnts.com-Neulis_Sans_Bold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-regular-font: "Neulis Sans";
  --primary-font-weight: 600;
  --regular-font-weight: 500;
}

.transparent-header {
  background: rgb(255 255 255 / 34%);
  backdrop-filter: blur(3px);
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*z-index: 10;*/
  padding: 0px;
}


.navbar-nav .nav-link {
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--primary-regular-font);
}

.navbar-nav li {
  padding: 0 6px;
}


/*  MOBILE FIX */
@media (max-width: 991px) {

  .transparent-header {
    background: #000 !important;
  }

  .navbar-nav .nav-link {
    color: #fff !important;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .navbar-toggler {
    border-color: #fff;
  }

  .navbar-toggler-icon {
    filter: brightness(100);
  }
}

.scrolled-header {
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scrolled-header .nav-link {
  color: #000 !important;
}

/* logo  */

.logo-img {
  height: auto;
  max-width: 140px;
  margin-bottom: 5px;
  border-radius: 10px;
}

@media (max-width: 575px) {
  .logo-img {
    width: 80px;
  }
}


/* footer css start here */

.subscribe-box {
  background: #faf8f8;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  padding: 5px;
  border: 1px solid #d4d4d4;
}

.subscribe-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 120px 10px 10px;
}

.subscribe-btn {
  background: #076871;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 10px 25px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 4px;
}

@media (max-width: 480px) {
  .subscribe-btn {
    padding: 8px 18px;
    right: 10px;
  }

  .subscribe-input {
    padding-right: 110px;
  }
}

.sub-now {
  border: 1px solid #d4d4d4;
}

.social-icon {
  background: #076871;
  color: #fff !important;
  width: 35px;
  height: 35px;
  margin: 0 5px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.social-icon:hover {
  opacity: 0.8;
}

/* Footer Menu */
.footer-title {
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  position: relative;
}

.footer-section a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.list-types {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.list-types li {
  list-style: none;
}

.footer-section a:hover {
  color: #000;
}


@media (max-width: 767px) {
  /* .footer-title::after {
    content: "+";
    float: right;
    font-size: 22px;
  } */

  .footer-section ul {
    padding-left: 10px;
  }
}


/* index css start here */

.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


.sliders {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.sliders.active {
  opacity: 1;
}

/* WHITE TRANSPARENT OVERLAY */
.sliders::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 11%);
  z-index: 1;
}

/* TEXT ABOVE OVERLAY */
.sliders-content {
  position: relative;
  z-index: 2;
  color: #000;
}


.banner-btn {
  background: #0A7173;
  padding: 10px 28px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}

.header-btn {
  background: #0A7173;
  padding: 10px 28px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
  border: 0 !important;
  font-family: var(--primary-regular-font);

}

.banner-btn:hover {
  background: #08595C;
}


.sliders-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}

.hero-banner .sliders-content p {
  max-width: 550px;
}

@media (max-width: 768px) {
  .hero-banner .sliders-content p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .sliders-content {
    top: 45%;
    left: 5%;
    transform: translateY(-45%);
  }
}

.sliders h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

.sliders p {
  font-size: 18px;
}

/* .sliders::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
} */

@media (max-width: 600px) {
  .sliders h2 {
    font-size: 26px;
  }

  .sliders p {
    font-size: 16px;
  }
}

.sliders:nth-child(1) {
  background-image: url("../image/realestate-banner.jpg");
}

.sliders:nth-child(2) {
  background-image: url("../image/trans.webp");
}

.sliders:nth-child(3) {
  background-image: url("../image/air.webp");
}

@media (max-width: 480px) {
  .hero-banner {
    height: 70vh;
  }
}


/* 2nd section css start header */


.big-text {
  font-size: 40px;
  line-height: 46px;
  font-weight: 300;
  padding-bottom: 30px;
  color: #000;
}


/* hover tab  css  start here*/
.hoverTabs-section {
  background: #2a8c96;
  color: white;
  padding-bottom: 60px;
  font-family: var(--primary-regular-font) !important;
}

.hoverTabs {
  display: flex;
  justify-content: center;
  gap: 120px;
  padding: 40px 0;
  font-size: 22px;
}

.hoverTab {
  padding-bottom: 5px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.hoverTab:hover {
  border-bottom: 2px solid #ffcc00;
}

.hoverTabs-active {
  border-bottom: 2px solid #ffcc00 !important;
}

.hoverTabs-container {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: auto;
  padding-top: 30px;
}

.hoverTabs-text,
.hoverTabs-image {
  opacity: 1;
  transition: opacity 0.9s ease;
}

.hoverTabs-text {
  width: 45%;
}

.hoverTabs-image {
  width: 45%;
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

.hoverTabs-text button {
  padding: 8px 25px;
  border-radius: 20px;
  background: #2a8c96;
  border: 1px solid #fff;
  color: #fff;
  transition: all .5s;
}

.hoverTabs-text button:hover {
  background: #d2ab67;
  border: 1px solid #d2ab67;
  color: #fff;
}

@media (max-width: 768px) {

  .hoverTabs {
    gap: 20px;
    font-size: 16px;
    padding: 20px 0;
  }

  .hoverTabs-container {
    flex-direction: column;
    width: 90%;
    gap: 30px;
    padding-top: 20px;
  }

  .hoverTabs-text {
    width: 100%;
  }

  .hoverTabs-image {
    width: 100%;
    height: 250px;
  }

  .hoverTabs-section {
    padding-bottom: 30px;
  }

  .hoverTabs-text h2,
  .hoverTabs-text h1 {
    font-size: 22px;
  }

  .hoverTabs-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .hoverTabs-text button {
    padding: 7px 20px;
    font-size: 14px;
  }
}


/* hemang css */


.vertical-tabs {
  /* border-left: 1px solid rgba(255,255,255,0.2); */
  padding-left: 20px;
}

.left-tab-box {
  padding: 20px 70px;
}

.display-4 {
  font-size: 80px !important;
}

.vertical-tabs .tab {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  letter-spacing: .01em;
  height: 74px;
  line-height: 74px;
  position: relative;
  transition: all .4s;
  height: 70px;
  line-height: 70px;
  cursor: pointer;
}

.vertical-tabs .tab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transition: all .2s;
  background-color: #dfdfdf;
}

.vertical-tabs .tab.active,
.vertical-tabs .tab:hover {
  opacity: 1;
  font-size: 18px;
}

.vertical-tabs .tab.active::after,
.vertical-tabs .tab:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: #d4a043;
  transition: all .2s;
}




.rf-section {
  background: #f8f2e8;
  /* light background similar to reference */
  border-radius: 10px;
}

.rf-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding: 30px;
}

.rf-content {
  padding-right: 25px;
}

.rf-logo {
  max-width: 220px;
}

.rf-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.rf-btn {
  padding: 8px 22px;
  border-radius: 25px;
  border: 1px solid #333;
  background: transparent;
  transition: 0.3s ease;
}

.rf-btn:hover {
  background: #333;
  color: #fff;
}

.rf-slider img {
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
}

.aboutImg {
  width: 700px;
}






/* Responsive */
@media (max-width: 991px) {
  .rf-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .rf-slider img {
    height: 300px;
  }

  .secondSection {
    padding: 13px;
  }

  .aboutImg {
    width: auto;
  }

  .big-text {
    font-size: 20px;
    line-height: 30px;
  }
}

/* Show dropdown on hover (desktop) */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Dropdown styling */
.dropdown-menu {
  border-radius: 0;
  padding: 10px 0;
  background: #ffffff;
  min-width: 180px;
}

.dropdown-item:hover {
  background: #f3f3f3;
}