body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.nav-top {
  background: #ffffff;
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
  padding: 8px 0;
}

.top-section-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offcanvas-body .top-right-section {
  display: none;
}

.top-right-section {
  display: flex;
  gap: 10px;
  align-items: center;
}

.top-bar .info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
  white-space: nowrap;
}

.top-bar .info-item i {
  color: #0c3e8b;
}

.top-right-section .info-link {
  color: #333;
  text-decoration: none;
}

.top-bar .info-link:hover {
  text-decoration: underline;
}

.top-bar .consult-btn {
  background-color: #0c3e8b;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 0 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-bar .consult-btn:hover {
  background-color: #092f6a;
}

.header {
  position: relative;
  z-index: 999;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.facebook {
  background-color: #1877f2;
}

.instagram {
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
}

.youtube {
  background-color: #ff0000;
}

.sticky-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background-color: #fff;
  /* or any color you want */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* header */
.navbar-brand img {
  width: 150px;
}

.nav-link {
  padding: 8px 16px;
  text-transform: uppercase;
  font-size: 15px;
}

.nav-link.enquiry {
  background-color: #0c3e8b;
  color: #fff;
  font-weight: 600;
  padding: 8px 25px !important;
  transition: background-color 0.3s ease, padding-right 0.3s ease;
  border-radius: 50px;
  margin-left: 20px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 14px;
}

.dropdown-item {
  font-size: 13px !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #0c3e8b !important;
  color: #fff;
}

/* Icon using ::after */
.nav-link.enquiry::after {
  content: "\f590";
  /* Font Awesome icon unicode (paper plane) */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: right 0.3s ease, opacity 0.3s ease;
  color: #fff;
}

/* On hover - show icon and shift text */
.nav-link.enquiry:hover {
  background-color: #0a3573;
  padding-right: 40px !important;
}

.nav-link.enquiry:hover::after {
  right: 10px;
  opacity: 1;
}

.carousel.slide {
  position: relative;
}

.carousel-item {
  height: 80vh;
  min-height: 500px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 10;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  animation: fadeInDown 1s ease-out;
}

.carousel-caption .sub-line {
  text-transform: capitalize;
  font-size: 20px;
  color: #01b2ff;
}

.carousel-caption h1 span {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  animation: fadeInDown 1s ease-out;
}

.carousel-caption-box p {
  font-size: 1.25rem;
  color: #fff;
  animation: fadeInUp 1.2s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  top: 375px;
  position: absolute;
  width: 100%;
  z-index: 99;
}

.info-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 18px;
  padding-top: 15px;
}

.info-flex span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  font-size: 14px;
}

.text-success {
  color: #01b2ff !important;
  /* Bootstrap success green */
}

.carousel-caption-box p span {
  /* background-color: #007bff; */
  color: #000;
  padding: 5px 20px;
}

.carousel-caption a.btn {
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  background-color: #0c3e8b;
  transition: all 0.3s ease-in-out;
  animation: slideInLeft 1.4s ease-out;
}

/* Indicator Style */
.carousel-indicators {
  bottom: 25px;
  gap: 10px;
  justify-content: center;
}

.carousel-indicators button {
  background-color: transparent;
  border: 2px solid #007bff;
  color: #007bff;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-weight: 500;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 10px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000;
  background-clip: padding-box;
  border: 3px solid #0c3e8b;
  opacity: 0.5;
  transition: opacity 0.6s ease;
  border-radius: 50%;
}

/* .carousel-indicators button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #007bff;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: none;
} */

.carousel-indicators button:hover::before,
.carousel-indicators button:focus::before {
  opacity: 0.1;
}

.carousel-indicators .active {
  color: #fff;
  border-color: #007bff;
}

.carousel-indicators .active::before {
  opacity: 1;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* whoweare */

.whoweare {
  position: relative;
  overflow: hidden;
}

.whoweare .whoweare-Happy_Family {
  position: relative;
  float: inline-end;
  top: -100px;
}

.section-title {
  margin-bottom: 15px;
}

.section-title h3 {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  text-transform: capitalize;
  color: rgb(1 178 255) !important;
  padding-left: 35px;
  margin-bottom: 20px;
}

.section-title h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../Images/Home/icon-sub-heading.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  width: 24px;
  height: 5px;
}

.section-title h2 {
  font-size: 33px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
  color: rgb(1 178 255);
}


.whoweare-content .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.whoweare-content .feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f3f3f3;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.whoweare-content .feature-box i {
  color: #01b2ff;
  font-size: 28px;
  min-width: 32px;
  text-align: center;
}

.whoweare-content .feature-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

.whoweare-content .feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* whoweare */

/* ---------------------------------------------------- */
/*-------------------- Counts------------------------- */
/* -------------------------------------------------- */

.counter-rk {
  padding: 40px 0 0;
}


.counter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  padding: 20px;
}

.counter-box {
  text-align: center;
  width: 200px;
  padding: 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.counter-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.counter-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(1, 178, 255, 0.3);
}

.counter-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.counter-box:hover .counter-image {
  transform: scale(1.1) rotate(5deg);
}

.counter {
  font-size: 42px;
  font-weight: bold;
  background: linear-gradient(90deg, #01b2ff, #0080ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.counter-title {
  font-size: 16px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .counter-box {
    width: 150px;
    padding: 15px;
  }

  .counter {
    font-size: 32px;
  }

  .counter-image {
    width: 50px;
    height: 50px;
  }

  .counter-title {
    font-size: 14px;
  }
}



/* Counts */

/* Projects */

.All-projects {
  padding-top: 60px;
}

.All-projects {
  h2 {
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
  }

  .filter-btns {
    text-align: center;
    margin-bottom: 30px;
  }

  .filter-btns .btn {
    margin: 0 10px 10px;
    position: relative;
    overflow: hidden;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    color: #fff;
    background-color: #01b2ff;
    transition: all 0.3s ease;
  }

  .filter-btns .btn::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0;
    left: 0;
    top: 0;
    background: #212529;
    z-index: -1;
    transition: 0.4s ease;
  }

  .filter-btns .btn:hover::before {
    width: 100%;
  }

  .filter-btns .btn.active {
    background-color: #212529;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
  }

  .project-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .project-card:hover {
    transform: scale(1.02);
  }

  .project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    text-align: center;
    display: none;
  }

  .project-card:hover .project-overlay {
    transform: translateY(0);
  }

  .project-title {
    font-size: 1.2rem;
    font-weight: bold;
  }

  .project-description {
    font-size: 0.9rem;
    margin-top: 8px;
  }

  .read-more-btn {
    background-color: #01b2ff;
    color: #000;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 12px;
    transition: background-color 0.3s ease;
  }

  .read-more-btn:hover {
    background-color: #01b2ff;
  }

  .h2x {
    grid-row: span 2;
  }

  .w2x {
    grid-column: span 2;
  }

  @media (max-width: 992px) {
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .projects-grid {
      grid-template-columns: 1fr;
    }
  }
}

/* Projects */

/*  Animated cards */

.why-agarwal-sec {
  background: url(https://agarwalestates.com/images/why-agarwal-bg.png);
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.why-agarwal-sec h4 {
  text-align: center;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #0e4b83 0%, #1777b7 64.77%, #2b98d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-family: "Humanst521-BT-Bold";
  font-size: 30px;
  padding-top: 80px;
  margin-bottom: 5%;
}

.agarwals-img {
  position: relative;
  z-index: 1;
}

.agarwals-img div {
  transition: 1s;
}

.agarwals-list:hover .agarwals-img div {
  animation: bounce 2s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes bounce {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, 18px, 0);
  }
}

.agarwals-img_1 {
  width: 185px;
  margin: auto;
  display: block;
}

.agarwals-img_2 {
  width: 50px;
  position: absolute;
  left: 8%;
  right: 0;
  margin: auto;
  top: 11%;
}

.agarwals-list-out {
  position: relative;
  width: 20%;
  padding: 20px;
}

/* For even items (2nd, 4th) — slightly pushed down */
.agarwals-list-out:nth-child(2n) {
  margin-top: 9%;
}

/* Zig-zag connector for odd items except the last */
.agarwals-list-out:nth-child(2n + 1):not(:last-child)::after {
  content: "";
  position: absolute;
  right: -50%;
  top: 120px;
  width: 100%;
  height: 18px;
  background: #f5f5f5;
  transform: rotate(-155deg);
  z-index: -1;
}

/* Zig-zag connector for even items except the last */
.agarwals-list-out:nth-child(2n):not(:last-child)::after {
  content: "";
  position: absolute;
  right: -50%;
  top: 0px;
  width: 100%;
  height: 18px;
  background: #f5f5f5;
  transform: rotate(155deg);
  z-index: -1;
}

.agarwals-list h5 {
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #015493;
  font-family: "Poppins-SemiBold";
  margin-bottom: 5px;
  margin-right: -35px;
}

.agarwals-list .h-line {
  background: #015493;
  width: 95px;
  height: 1px;
}

.agarwals-list p {
  font-size: 12px;
  line-height: 21px;
  color: rgba(16, 16, 16, 0.8);
  opacity: 0.9;
  font-family: "Poppins-Medium";
  margin-top: 12px;
}

.agarwals-list-cnt {
  width: 90%;
  margin: auto;
}

.why-agarwal-sec h6 {
  text-align: center;
  letter-spacing: 0.03em;
  color: #06426c;
  font-size: 32px;
  padding: 35px 10px 40px;
}

.agarwal-easy {
  padding-top: 13%;
}

.agarwal-easy h6 {
  color: #000;
  letter-spacing: 0.02em;
  font-family: "Humanst521-BT-Bold";
  font-size: 15px;
}

.agarwal-easy h5 {
  letter-spacing: 0.03em;
  color: #06426c;
  font-size: 32px;
  text-align: center;
  margin-top: 35px;
}

.agarwal-easy h5 sup {
  font-size: 14px;
  top: -18px;
}

@media (max-width: 600px) {
  .why-agarwal-sec h4 {
    padding-top: 50px;
    margin-bottom: 0%;
  }

  .agarwals-list-out {
    position: relative;
    width: 100%;
    padding: 0 20px 20px;
  }

  .agarwal-easy h5 sup {
    font-size: 12px;
    top: -6px;
  }

  .agarwal-easy h5 {
    font-size: 18px;
    padding: 0px 10px;
  }

  .agarwal-easy h6 {
    font-size: 11px;

    width: 90%;
    text-align: center;
    line-height: 12px;
  }

  .agarwal-easy {
    margin-top: 12%;
  }

  .why-agarwal-sec h6 {
    font-size: 18px;
  }

  .agarwals-img_2 {
    position: unset;
    float: left;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    width: 74px;
    padding: 10px;
    margin-right: 14px;
    border-radius: 5px;
  }

  .agarwals-list-cnt {
    width: 100%;
  }

  .agarwals-list .h-line {
    margin-left: 30%;
  }

  .agarwals-list-out:nth-child(2n)::after {
    display: none;
  }

  .agarwals-list-out:nth-child(2n + 1)::after {
    display: none;
  }

  .agarwals-list-out:nth-child(2n) {
    margin-top: auto;
  }

  .agarwals-list-out:nth-child(2n) .agarwals-list .h-line {
    margin-left: auto;
    margin-right: 30%;
  }

  .agarwals-list-out:nth-child(2n) .agarwals-list h5 {
    text-align: right;
    margin-right: 17%;
  }

  .agarwals-list p {
    text-align: justify;
  }

  .agarwals-list-out:nth-child(2n) .agarwals-list p {
    text-align: justify;
  }

  .agarwals-list-out:nth-child(2n) .agarwals-img_2 {
    float: right;
    margin-left: 14px;
    margin-right: auto;
  }

  .agarwals-list-out {
    margin-bottom: 0px;
  }

  .agarwals-list h5 {
    font-size: 12px;
  }

  .why-agarwal-sec h4 {
    font-size: 24px;
    /* padding-top: 80px; */
    margin-bottom: 10%;
    margin-top: 9%;
  }
}

@media screen and (min-width: 600px) and (max-width: 992px) {
  .agarwal-easy h5 {
    font-size: 23px;
  }

  .agarwal-easy h6 {
    font-size: 14px;
  }

  .easy-icon-8 h6 {
    margin-left: -20%;
  }

  .agarwal-easy {
    margin-top: 8%;
  }

  .why-agarwal-sec h6 {
    font-size: 23px;
  }

  .agarwals-img_2 {
    position: unset;
    float: left;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    width: 74px;
    padding: 10px;
    margin-right: 14px;
    border-radius: 5px;
  }

  .agarwals-list-cnt {
    width: 100%;
  }

  .agarwals-list .h-line {
    margin-left: 15%;
  }

  .agarwals-list-out:nth-child(2n)::after {
    display: none;
  }

  .agarwals-list-out:nth-child(2n + 1)::after {
    display: none;
  }

  .agarwals-list-out:nth-child(2n) {
    margin-top: auto;
  }

  .agarwals-list-out:nth-child(2n) .agarwals-list .h-line {
    margin-left: auto;
    margin-right: 17%;
  }

  .agarwals-list-out:nth-child(2n) .agarwals-list h5 {
    text-align: right;
    margin-right: 17%;
  }

  .agarwals-list-out:nth-child(2n) .agarwals-list p {
    text-align: right;
  }

  .agarwals-list-out:nth-child(2n) .agarwals-img_2 {
    float: right;
    margin-left: 14px;
    margin-right: auto;
  }

  .agarwals-list-out {
    margin-bottom: 35px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .agarwal-easy h5 {
    font-size: 28px;
  }

  .agarwals-list-out {
    width: 20%;
  }

  .agarwals-img_1 {
    width: 165px;
  }

  .agarwals-img_2 {
    width: 43px;
  }

  .agarwals-list-out:nth-child(2n + 1)::after {
    content: "";
    position: absolute;
    right: -107px;
    width: 100%;
    height: 18px;
    top: 82px;
  }

  .agarwals-list-out:nth-child(2n)::after {
    content: "";
    position: absolute;
    right: -138px;
  }

  .agarwals-list-cnt {
    width: 93%;
    margin: auto;
  }

  .agarwals-list h5 {
    font-size: 13px;
  }

  .agarwals-list p {
    font-size: 12px;
    line-height: 21px;
  }

  .why-agarwal-sec h6 {
    font-size: 28px;
  }
}

@media screen and (min-width: 1199px) and (max-width: 1365px) {
  .agarwals-list h5 {
    font-size: 13px;
  }
}

@media screen and (min-width: 1365px) and (max-width: 1399px) {
  .agarwals-list h5 {
    font-size: 14px;
  }
}

/*---------------- ongoing-projects-section------------------- */

.only-ongoing-projects {
  padding: 60px 0;
}

.only-ongoing-projects .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.only-ongoing-projects .header h2 {
  font-size: 28px;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
}

.only-ongoing-projects .custom-nav {
  display: flex;
  gap: 10px;
}

.only-ongoing-projects .custom-nav button {
  background: #01b2ff;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.only-ongoing-projects .custom-nav button:hover {
  background: #0199d9;
}

.only-ongoing-projects .property-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.only-ongoing-projects .property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.only-ongoing-projects .property-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.only-ongoing-projects .property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.only-ongoing-projects .property-card:hover .property-image img {
  transform: scale(1.05);
}

.only-ongoing-projects .property-details {
  padding: 20px;
}

.only-ongoing-projects .property-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.only-ongoing-projects .property-location {
  display: flex;
  align-items: center;
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.only-ongoing-projects .property-location i {
  margin-right: 8px;
  color: #01b2ff;
}

.only-ongoing-projects .property-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.only-ongoing-projects .feature {
  text-align: center;
}

.only-ongoing-projects .feature-value {
  font-size: 16px;
  font-weight: 700;
  color: #01b2ff;
}

.only-ongoing-projects .feature-label {
  font-size: 12px;
  color: #888;
}

.only-ongoing-projects .property-actions {
  display: flex;
  justify-content: space-between;
}

.only-ongoing-projects .btn-call,
.btn-whatsapp {
  flex: 1;
  padding: 10px 0;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.only-ongoing-projects .btn-call {
  background: #01b2ff;
  color: white;
  margin-right: 10px;
}

.only-ongoing-projects .btn-call:hover {
  background: #0199d9;
}

.only-ongoing-projects .btn-whatsapp {
  background: #25d366;
  color: white;
}

.only-ongoing-projects .btn-whatsapp:hover {
  background: #128c7e;
}

.only-ongoing-projects .owl-stage {
  display: flex;
  padding: 20px 0;
}

.only-ongoing-projects .owl-item {
  margin-right: 20px;
}

.only-ongoing-projects .owl-dots {
  display: none !important;
}

.only-ongoing-projects .property-status {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #01b2ff;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.view-360 {
  width: 30px;
  height: 30px;
}

.btn-ogp {
  background-color: #0c3e8b;
  padding: 10px 15px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 768px) {
  .only-ongoing-projects .header {
    flex-direction: column;
    align-items: center;
  }

  .only-ongoing-projects .custom-nav {
    margin-top: 15px;
  }

  .only-ongoing-projects .property-actions {
    flex-direction: column;
    gap: 10px;
  }

  .only-ongoing-projects .btn-call {
    margin-right: 0;
  }
}

/*---------------- ongoing-projects-section------------------- */

/* ---------------Testimonals--------------- */

.testimonals-carosal {
  padding-top: 100px;
}

.testimonals-carosal .testimonial {
  padding: 20px;
}

.testimonial .pic {
  width: 122px;
  height: 122px;
  float: left;
  margin-right: 50px;
  position: relative;
}

.testimonial .pic:before,
.testimonial .pic:after {
  content: "";
  display: block;
  height: 50%;
  width: 50%;
  position: absolute;
}

.testimonial .pic img {
  width: 100%;
  height: auto;
}

.testimonial .testimonial-content {
  display: table;
  position: relative;
}

.testimonial .testimonial-content:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: -47px;
  left: 20px;
  font-size: 38px;
  color: #d8dad6;
  z-index: 6;
  /* display: contents; */
  display: none;
}

.testimonial .testimonial-title {
  font-size: 24px;
  color: #0199d9;
  text-transform: capitalize;
}

.testimonial .post {
  font-size: 13px;
  font-weight: 600;
  color: #585f62;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  margin-left: 5px;
  padding-left: 5px;
}

.testimonial .description {
  font-size: 15px;
  color: #7c7c7c;
  line-height: 22px;
  margin-top: 12px;
  font-style: italic;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background-color: #0199d9;
}

@media only screen and (max-width: 980px) {

  .testimonals-carosal .testimonial {
    padding: 0px 20px !important;
  }

  .testimonals-title {
    justify-content: center;
    margin-bottom: 0px !important;
  }



  .testimonial .pic {
    float: none;
  }

  .testimonial .testimonial-content {
    display: block;
    margin-top: 30px;
  }

  .testimonial .testimonial-content:before {
    z-index: 1;
    top: -200px;
  }

  .testimonals-carosal .owl-theme .owl-nav {
    position: relative;
    top: auto;
    right: auto;
    display: flex;
    gap: 10px;
    justify-content: center;
  }
}

.testimonals-title p {
  font-size: 20px;
  text-align: center;
}

.testimonals-title h3 {
  color: #000;
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.testimonals-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonals-carosal .owl-theme .owl-nav {
  position: relative;
  top: auto;
  right: auto;
  display: flex;
  gap: 10px;
}

.testimonals-carosal .owl-theme .owl-nav [class*="owl-"] {
  color: #0199d9;
  font-size: 55px;
  background: none;
  border: none;
  width: auto;
  height: auto;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: none;
  margin: 0 10px;
}

.testimonals-carosal .owl-theme .owl-nav [class*="owl-"]:hover {
  color: #0199d9;
  background: none;
}

.exp-box {
  text-align: center;
}

.exp-icon {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}

.exp-text {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  color: #222;
  margin: 0;
}

/* -------------Testimonals------------------ */

/* ------------------------------------------- */
/* --------------Footer----------------------- */
/* ------------------------------------------ */

.footer-section {
  background-color: #232323;
  color: #fff;
  padding: 80px 0;
}

.footer-section ul li {
  list-style-type: none;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-section ul {
  padding: 0;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
}

.contact-info-footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.contact-info-footer .Address-info {
  font-size: 14px;
  line-height: 1.6;
}

.contact-info-footer .fa-solid {
  color: #007bff;
  margin-top: 3px;
}

.contact-info-footer .no a {
  color: #fff;
  text-decoration: none;
}

.contact-info-footer a:hover {
  color: #0056b3;
}

.contact-info-footer .me-2 {
  margin-right: 0.5rem;
}

.contact-info-footer .btn-transparent {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.contact-info-footer .btn-transparent:hover {
  background-color: #fff;
  color: #000;
}

.img-logo-footer {
  width: 80px;
  height: 80px;
}

.footer-section .line-footer {
  width: 100px;
  height: 2px;
  background-color: #fff;
  margin: 5px 0 20px;
  border-radius: 2px;
}

.footer-section img {
  width: 150px;
  margin-bottom: 10px;
}

.copy-right {
  background-color: var(--dark-blue);
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 10px 0;
}

.copy-right a {
  color: #fff;
}

/* footer */

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: #0c3e8b;
  color: white;
  border: none;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#backToTop i {
  font-size: 16px;
  transform: rotate(45deg);
}

#backToTop:hover {
  background-color: #00b1fe;
}

/* Back to Top Button */

@media (max-width: 767.98px) {
  .top-bar .info-col {
    text-align: center;
    margin-bottom: 6px;
  }

  .top-bar .consult-btn {
    width: 100%;
    justify-content: center;
    border-radius: 5px;
  }

  .carousel-caption {
    font-size: 14px;
    padding: 0px;
  }

  .carousel-item img {
    height: 50vh;
  }

  .spann {
    display: none !important;
  }

  .carousel-caption span i {
    display: none;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    animation: fadeInDown 1s ease-out;
    margin-top: 20px;
  }

  .carousel-caption h1 br {
    display: none;
  }

  .carousel-caption {
    position: relative;
    top: 0%;
    left: 0%;
    transform: translateY(0%);
    text-align: left;
    z-index: 10;
    text-align: center;
  }

  .carousel-indicators {
    bottom: 0px !important;
    top: 20px;
    position: relative !important;
  }
}

/* ------------------------------------------------- */
/* ---------------ABOUT US - PAGE------------------ */
/* ----------------------------------------------- */

.whoweare-rkland {
  padding: 80px 0;
}

.reasons_choose_myeduate {
  padding: 80px 0;
}

.reasons_choose_myeduate .flex-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.reasons_choose_myeduate .flex-container img {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

.reasons_choose_myeduate .text-content {
  flex-grow: 1;
}

.text-content h5 {
  margin-bottom: 10px;
}

.title-choose-myeduate h3 {
  font-weight: bold;
  color: #01386b;
  font-size: 37px;
}

.reasons_choose_myeduate .flex-container h5 {
  color: #0a3573;
  font-weight: bold;
}

.reasons_choose_myeduate .flex-container p {
  font-size: 14px;
}

.whychoose-title {
  margin-bottom: 40px;
}

.whychoose-title h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.contact-us {
  background: #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-hero {
  background: linear-gradient(rgb(12 26 15 / 90%), rgb(3 10 5 / 80%)),
    url(https://images.unsplash.com/photo-1574362848149-11496d93a7c7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1984&q=80);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 60px 40px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-horizontal {
  display: flex;
  justify-content: space-around;
  padding: 50px 40px;
  background: #f9fdfa;
  border-bottom: 1px solid #e8f5e9;
  flex-wrap: wrap;
  gap: 30px;
}

.info-item-horizontal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.info-icon-horizontal {
  width: 70px;
  height: 70px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c3e8b;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.info-item-horizontal:hover .info-icon-horizontal {
  background: #0c3e8b;
  color: #fff;
  transform: translateY(-5px);
}

.info-details-horizontal h3 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #0c3e8b;
  font-size: 1.3rem;
}

.info-details-horizontal p {
  color: #666;
  line-height: 1.6;
}

.info-details-horizontal a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.info-details-horizontal a:hover {
  color: #0c3e8b;
}

.map-section {
  padding: 50px 40px;
}

.map-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #0c3e8b;
  margin-bottom: 30px;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 30px;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-info-horizontal {
    padding: 40px 30px;
    flex-direction: column;
  }

  .map-section {
    padding: 40px 30px;
  }

  .map-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    grid-template-columns: 1fr;
  }

  .quote-icon {
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 30px 20px;
  }

  .contact-hero h1 {
    font-size: 1.8rem;
  }

  .contact-info-horizontal {
    padding: 30px 20px;
  }

  .map-section {
    padding: 30px 20px;
  }

  .map-container {
    height: 300px;
  }
}

/* -------------------------------------------------- */
/* -------------------All-projects------------------ */
/* ------------------------------------------------ */

.projects-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #f8fcff);
}

.projects-section .section-title {
  position: relative;
  margin-bottom: 50px;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  padding-bottom: 50px;
}

.projects-section .section-title h2 {
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.projects-section .project-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(1, 178, 255, 0.15);
  height: 100%;
  position: relative;
}

.projects-section .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.projects-section .project-image:hover img {
  transform: scale(1.03);
}

.projects-section .sold-out-badge {
  position: absolute;
  top: 15px;
  left: 15px;
}

.projects-section .sold-out-badge h5 {
  background-color: #e21f27;
  padding: 4px 20px;
  border-radius: 50px;
  color: #fff;
}

.projects-section .ongoing-badge {
  position: absolute;
  top: 15px;
  left: 15px;
}

.projects-section .ongoing-badge h5 {
  background-color: #01b2ff;
  padding: 4px 20px;
  border-radius: 50px;
  color: #fff;
}

.Property-title {
  backdrop-filter: blur(2px) saturate(180%);
  -webkit-backdrop-filter: blur(2px) saturate(180%);
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
  padding: 8px 0px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.Property-title h4 {
  color: #fff;
}

.projects-section .nav-pills {
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  justify-content: space-between;
}

.projects-section .nav-pills .nav-link {
  color: #555;
  font-weight: 600;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 14px;
}

.projects-section .nav-pills .nav-link.active {
  background-color: #01b2ff;
  color: white;
  box-shadow: 0 5px 15px rgba(1, 178, 255, 0.3);
}

.projects-section .nav-pills .nav-link i {
  margin-right: 10px;
  font-size: 18px;
}

.projects-section .tab-content {
  padding: 25px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-top: 20px;
}

.projects-section .tab-content h3 {
  color: #0190d5;
  margin-bottom: 20px;
  font-weight: 700;
}

.projects-section .price-tag {
  font-size: 24px;
  font-weight: 700;
  color: #01b2ff;
  margin-bottom: 15px;
}

.projects-section .writeup-project {
  font-size: 14px;
}

.projects-section .property-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  /* justify-content: space-between; */
}

.projects-section .detail-item {
  /* display: flex;
    align-items: center; */
  background: #f8fcff;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: 500;
}

.projects-section .detail-item i {
  margin-right: 8px;
  color: #01b2ff;
}

.projects-section .amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.projects-section .amenity-badge {
  background: rgba(1, 178, 255, 0.1);
  color: #0190d5;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
}

.projects-section .location-details {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.projects-section .btn-primary {
  background-color: #01b2ff;
  border-color: #01b2ff;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 8px;
}

.projects-section .btn-primary:hover {
  background-color: #0190d5;
  border-color: #0190d5;
}

.projects-section .btn-outline-primary {
  color: #01b2ff;
  border-color: #01b2ff;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 8px;
}

.projects-section .btn-outline-primary:hover {
  background-color: #01b2ff;
  color: white;
}

.og-project-360 img {
  width: 40px;
  height: 40px;
}

.spaceing-projects {
  padding-top: 80px;
}

@media (max-width: 992px) {
  .projects-section .project-image {
    height: 400px;
    margin-bottom: 30px;
  }
}

/* --------------------------------------------- */
/* --------------Testimonals-page-------------- */
/* ------------------------------------------- */

.patient-testimonals h1 {
  font-weight: 700;
  font-size: 33px;
  text-align: center;
  color: #333;
  padding-top: 40px;
  transition: font-size 0.5s ease;
}

.patient-testimonals .col {
  width: 100%;
  border-bottom: 1px solid #9ac6da;
  overflow: visible;
  position: relative;
  padding: 3em;
}

.patient-testimonals .col:before {
  content: "\f10d";
  font-family: FontAwesome;
  font-size: 5em;
  color: #555;
  z-index: -100;
  position: absolute;
  top: 5px;
  left: 25px;
  font-size: 40px;
}

.patient-testimonals p.person {
  text-align: right;
  color: #01b2ff;
  font-weight: 700;
  font-size: 1.5em;
}

.carousel-item .project-image{
  display: none;
}
@media (max-width: 768px) {
  .nav-top {
    display: none;
  }

  .carousel-item {
    background-image: none !important;
    height: auto !important;
  }

 .carousel-item .project-image {
    display: block !important;
  }

  /* .carousel-item {
        height: auto;
        min-height: auto;
        background-position: center;
        background-size: cover;
        position: relative !important;
    }

    .carousel-caption {
        position: relative;
        top: 15%;
        left: 10%;
        transform: translateY(-50%);
        text-align: left;
        z-index: 10;
    }

    .carousel-caption h1 {
        font-size: 2rem;
        font-weight: 700;
        color: #000000;
        text-transform: uppercase;
        animation: fadeInDown 1s ease-out;
    } */


  .carousel-caption {
    bottom: 0 !important;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    animation: fadeInDown 1s ease-out;
  }

  .carousel-caption h1 br {
    display: none;
  }

  .carousel-caption {
    position: relative;
    top: 0%;
    left: 0%;
    transform: translateY(0%);
    text-align: left;
    z-index: 10;
    text-align: center;
  }

  .info-flex {
    display: none;
  }

  .whoweare-content {
    padding: 12px;
  }

  .whoweare-content .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
    max-width: 1000px;
    margin: auto;
  }

  .whoweare-content .feature-box {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f3f3f3;
    padding: 15px 10px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
  }

  .stats-section {
    margin: 0;
  }

  .counts {
    padding: 0 0 60px 0;
  }

  .whoweare-rkland {
    padding: 30px 0 0px;
  }

  .reasons_choose_myeduate {
    padding: 50px 0;
  }

  .whychoose-title {
    margin-bottom: 20px;
    text-align: center;
  }

  .whychoose-title span br {
    display: none;
  }

  .whychoose-title span {
    font-size: 30px;
    display: block;
  }

  .reasons_choose_myeduate br {
    display: none;
  }

  .projects-section .nav-pills .nav-link i {
    margin-right: 10px;
    font-size: 18px;
    display: none;
  }

  .projects-section .nav-pills .nav-link {
    color: #555;
    font-weight: 600;
    padding: 7px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 12px;
  }

  .projects-section .btn-primary {
    background-color: #01b2ff;
    border-color: #01b2ff;
    padding: 10px !important;
    font-weight: 600;
    border-radius: 8px;
  }

  .projects-section .price-tag {
    font-size: 20px;
    font-weight: 700;
    color: #01b2ff;
    margin-bottom: 15px;
  }

  .offcanvas-body .enquiry-btn {
    display: none !important;
  }

  .offcanvas-body .top-right-section {
    display: flex !important;
    /* margin-top: 50px; */
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 60px;
    flex-direction: column;
    transform: translateX(-50%);
    left: 50%;
    width: 100%;
  }

  .info-item {
    margin-bottom: 2px;
  }

  .whoweare {
    margin-top: 70px;
  }

  .counter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0px;
  }

  .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: unset;
  }

  .All-projects {
    padding-top: 30px;
  }


  .nav-link { 
    font-size: 18px;
}

}