/* /home/ubuntu/app/propertyhub/css/bootstrap-styles.css */

/* Custom CSS Variables for PropertyHub */
:root {
  --primary-color: #b4353d;
  --primary-hover: #b4353d;
  --secondary-color: #ffb627;
  --accent-color: #b4353d;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-tertiary: #999999;
  --background-color: #ffffff;
  --surface-color: #fafafa;
  --border-color: #e5e5e5;
  --success-color: #10b981;
  --white-color: #fff;
}
.bg-primary-new {
  background: #b4353d;
}
/* For Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
/* Global Styles */
body {
  font-family: "Inter", system-ui, sans-serif;
  background-color: var(--background-color);
  color: var(--text-primary);
  line-height: 1.6;
}

.tel-phone {
  border: 1px solid #b4353d;
  padding: 6px;
  border-radius: 5px;
  font-weight: 700;
}

.tel-phone:hover {
  background-color: #b4353d;
  color: #fff;
  transition: 0.4s;
}

/* Custom Navbar Styles */

.navbar-brand svg {
  height: 40px;
  width: auto;
}

.navbar-nav .nav-link {
  color: #353535;
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 2px;
  width: 0;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.btn-login {
  background-color: #b4353d;
  border-color: #b4353d;
  color: white;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background-color: #b4353d;
  border-color: #b4353d;
  color: white;
  transform: translateY(-1px);
}

.header-section.scrolled {
  background-color: #fff !important;
  transition: 0.3s;
}

.header-section.scrolled .navbar-nav .nav-link {
  color: #353535;
}

.header-section.scrolled .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.header-section.scrolled .navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section Styles */
.hero-section .hero-content {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.search-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.background-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url("https://regrob.com/wp-content/uploads/2020/03/slider1.jpg");
}

.background-video video {
  bottom: 0;
  right: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* Property Type Radio Buttons */
.property-type-wrapper {
  margin-bottom: 1.5rem;
}

.property-type-label {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  background-color: white;
  color: var(--text-primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0.25rem;
}

.property-type-input:checked + .property-type-label {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: white;
}

.property-type-input {
  display: none;
}

.property-card .card-body p {
  height: 40px;
}

.slick-track {
  margin-left: 0;
}

/* Search Button */
.btn-search {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-search:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: white;
}

/* Section Styles */
.section-bg {
  background-color: var(--surface-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

/* Property Cards */
.property-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.property-image {
  height: 16rem;
  object-fit: cover;
}

.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-sale {
  background-color: var(--primary-color);
  color: white;
}

.badge-rent {
  background-color: var(--secondary-color);
  color: white;
}

.badge-lease {
  background-color: var(--accent-color);
  color: white;
}

.property-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-color);
}

.property-location {
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

.btn-contact {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: white;
}

.common-css-slider .slick-arrow svg {
  fill: #000;
}

.common-css-slider .slick-arrow:before {
  display: none;
}

.common-css-slider .slick-list {
  padding: 0 7px;
}

.common-css-slider .slick-track .slick-slide {
  margin: 15px;
}

.common-css-slider .slick-arrow {
  margin: 0;
  border: 1px solid #00000087;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: 0.4s;
  z-index: 1;
  background: #fff;
}

.common-css-slider .slick-prev {
  transform: translateX(40px);
  opacity: 0;
  visibility: hidden;
}

.common-css-slider .slick-next {
  transform: translateX(-40px);
  opacity: 0;
  visibility: hidden;
}

.common-css-slider:hover .slick-prev,
.common-css-slider:hover .slick-next {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

/* Category Cards */
.category-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.category-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.category-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* .icon-primary {
  background-color: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
}

.icon-secondary {
  background-color: rgba(255, 182, 39, 0.1);
  color: var(--secondary-color);
}

.icon-accent {
  background-color: rgba(255, 140, 66, 0.1);
  color: var(--accent-color);
}

.icon-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
} */
.icon-primary,
.icon-secondary,
.icon-accent,
.icon-success {
  background-color: rgba(255, 107, 53, 0.1);
  color: #ffffff;
  border: 1px solid #ffffff94;
}

.category-count {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* contact-us page css */
.contact-page {
  position: relative;
}

.contact-page .nav-link {
  color: #000;
}

.getintouch input,
.getintouch textarea {
  border-radius: 12px !important;
  height: 50px;
  border: 1px solid #b4353d;
}

.getintouch button {
  border: none;
  border-radius: 12px;
  font-weight: 500;
  height: 45px;
  line-height: 1;
  padding: 0 16px;
  background: #b4353d;
}

.contact-us-section {
  padding: 50px 0 100px;
}

.contact-details {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-details li a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
}

.contact-details li a i {
  background: #f5f5f5;
  border: 1px solid #b4353d;
  border-radius: 8px;
  display: grid;
  height: 40px;
  min-width: 40px;
  place-content: center;
  color: #b4353d !important;
}

.getintouch .card iframe,
.getintouch .card {
  border-radius: 20px;
}

.contact-details li:last-child a {
  align-items: flex-start;
}

.contact-details {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
}

.contact-details li {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-details li:last-child:after {
  display: none;
}

.contact-num {
  padding-top: 40px;
}

.contactus-image-text,
.trustdeal-image-text,
.smartguidence-image-text,
.widechoice-image-text,
.futurevalue-image-text {
  position: relative;
  padding-top: 25%;
  width: 100%;
  height: 100%;
}

.contactus-image-text img,
.trustdeal-image-text img,
.smartguidence-image-text img,
.widechoice-image-text img,
.futurevalue-image-text img {
  max-width: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contactus-image-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #0000;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.futurevalue-image-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #7c3aed;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.widechoice-image-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #f97316;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.smartguidence-image-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #10b981;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.trustdeal-image-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #1e3a8a;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contactus-text {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 11%);
  color: #fff;
}

.intl-tel-input,
.iti {
  width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgb(180 53 61 / 7%);
  border-radius: 10px 0 0 10px;
}

.line-notice {
  background: #b4353d;
  color: #fff;
  padding: 9px 0;
  border-radius: 10px;
  box-shadow: 0 0 4px #000;
}

.line-notice a {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.line-notice a::after {
  content: " || ";
  margin: 0 8px;
  color: #fff;
  /* change color if needed */
  font-weight: bold;
}

/* Remove || after last link */
.line-notice a:last-child::after {
  content: "";
}

/* media query start */
@media (max-width: 767px) {
  .contact-details {
    flex-wrap: wrap;
    gap: 10px;
  }

  .contact-details li:after {
    display: none;
  }

  .contact-details li:first-child {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .contact-num {
    padding: 40px 0;
  }

  .contactus-image-text,
  .trustdeal-image-text,
  .smartguidence-image-text,
  .widechoice-image-text,
  .futurevalue-image-text {
    padding-top: 75%;
  }
}

/* /contact-us page css */
/* Footer Styles */
.footer-custom {
  background-color: var(--text-primary);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.social-icon {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: white;
}

.property-section-bg {
  background: #f1f1f1;
  padding-top: 80px !important;
}

.footer-section .logo img {
  max-width: 100%;
}

.footer-section {
  background: #0000009c;
  color: #fff;
  padding: 60px 0 0;
}

.footer-links h4 {
  font-size: 18px;
}

.contact-box {
  align-items: center;
  background: #ffffff1a;
  border-radius: 20px;
  display: flex;
  gap: 16px;
  padding: 16px;
}

.contact-box div a {
  color: #b4353d !important;
  text-decoration: none;
  font-weight: 600;
}

.form-part .form-control {
  border-radius: 12px !important;
  height: 50px;
}

.primary-button {
  border: none;
  border-radius: 12px;
  font-weight: 500;
  height: 50px;
  line-height: 50px;
  padding: 0 16px;
  background: #b4353d;
}

.footer-links ul li a {
  color: #ffffffb8;
  display: block;
  padding: 5px 0;
  position: relative;
  text-decoration: none;
  margin: 0;
  line-height: 1.3;
  font-size: 14px;
}

.footer-links ul li {
  list-style: none;
}

.footer-links ul {
  padding: 0;
  margin: 0;
}

.footer-bottom a {
  color: #ffffffb8;
  margin-left: 10px;
  font-size: 25px;
}

footer ul li a i {
  left: -25px;
  position: absolute;
}

.footer-links ul li a i {
  /* color: #b4353d !important; */
  color: #fff !important;
}

.property-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.category-card {
  border-radius: 16px;
  text-align: center;
  padding: 30px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: gradientShift 6s ease-in-out infinite;
  background-size: 300% 300%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-card h3 {
  font-size: 22px;
  margin: 10px 0;
}

.category-card p {
  font-size: 14px;
  margin-bottom: 15px;
}

.category-card .count {
  font-size: 30px;
  font-weight: bold;
  display: block;
}

.icon-wrapper {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Different Colors for Each Card */
.category-card.red {
  /* background-image: linear-gradient(-45deg, #ff6b6b, #c44545, #ff8a8a, #ff4e4e); */
  background: #2dd4bf;
}

.category-card.yellow {
  /* background-image: linear-gradient(-45deg, #ffd166, #f4a261, #ffe29a, #ffb347); */
  background: #fbbf24;
}

.category-card.blue {
  /* background-image: linear-gradient(-45deg, #118ab2, #06d6a0, #3ab4d9, #07beb8); */
  background: #64748b;
}

.category-card.green {
  /* background-image: linear-gradient(-45deg, #06d6a0, #1db954, #56c596, #4caf50); */
  background: #84cc16;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* about */
/* ===== General Section Styling ===== */
.about-section {
  position: relative;
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.about-section .section-title {
  font-size: 16px;
  font-weight: 600;
  color: #b4353d;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-section .main-title {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.about-section p {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

.aboutus-section .about-images-area img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.aboutus-section .about-images-area .author-img {
  text-align: center;
  display: inline-block;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
  padding: 18px 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -62px;
  margin-left: -140px;
  z-index: 1;
  animation: upDown 2s ease-in-out infinite;
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  /* thoda upar */
  100% {
    transform: translateY(0);
  }

  /* wapas niche */
}

.aboutus-section .about-images-area .author-img h3 {
  color: #030e0f;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.about-images-area {
  position: relative;
}

.space30 {
  height: 30px;
}

.aboutus-section .heading1 h5 {
  color: #073b3a;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  text-transform: capitalize;
  padding: 5px 10px;
  border-radius: 2px;
  font-style: italic;
  background: rgba(7, 59, 58, 0.1);
  display: inline-block;
}

.aboutus-section .about-heading {
  padding: 0 0 0 15px;
}

.aboutus-section .heading1 p {
  color: #252728;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
}

.about-heading h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
}

.accordion-item h2 {
  margin: 0;
}

.aboutus-section .accordion-item {
  border: 1px solid #0000003d !important;
  margin-bottom: 10px;
  border-radius: 0 !important;
}

.accordion-item h2 button {
  background: #d62d38cc !important;
  border-radius: 0 !important;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff !important;
}

.accordion-item h2 button:after {
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(70.5);
}

.aboutus-section {
  padding: 70px 0;
}

.properties-btn {
  padding: 11px 10px;
  display: inline-block;
  background: #b4353d;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
  line-height: 1;
}

.properties-btn .arrow1 svg {
  transform: rotate(-45deg);
}

.space18 {
  height: 18px;
}

.aboutus-section .about-images-area .author-img img {
  max-width: 150px;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

@media (max-width: 767px) {
  .aboutus-section .about-heading {
    padding: 0;
    margin-top: 30px;
  }

  .about-images-area .img2.image-anime.reveal {
    margin-bottom: 30px;
  }

  .aboutus-section .about-images-area .author-img {
    top: 30%;
    left: 50%;
    margin-top: 0;
    margin-left: 0;
    z-index: 2;
    width: 100%;
    max-width: 300px;
    animation: none;
    transform: translateX(-50%);
  }

  .aboutus-section {
    padding: 30px 0;
  }
}

/* ==== Image Layout ===== */
.about-images-circle {
  position: relative;
}

.about-images img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-images .circle-badge {
  position: absolute;
  top: 30px;
  right: -50px;
  background: #fff;
  border-radius: 50%;
  padding: 15px;
  border: 2px solid #ddd;
  text-align: center;
  font-size: 14px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #111;
}

/* ===== Features List ===== */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item i {
  font-size: 18px;
  background: #ffeceb;
  color: #e63946;
  padding: 12px;
  border-radius: 50%;
}

.feature-item h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #000;
}

.feature-list a {
  text-decoration: none;
}

.feature-item p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* ===== CTA Button & Contact ===== */
.about-cta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-cta .btn-primary {
  background: #111;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
}

.about-cta .contact-info {
  font-size: 16px;
}

.about-cta .contact-info span {
  display: block;
  font-size: 14px;
  color: #888;
}

.about-cta .contact-info strong a {
  font-size: 15px;
  text-decoration: none;
  color: #000000c2;
}

/* properties page */
.properties-page .section-title {
  text-align: left;
  margin-bottom: 40px;
}

.select-new select {
  height: 46px;
  border-color: rgb(204, 204, 204);
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  padding: 0 8px;
  color: #000000b0;
}

.filter-popup ul li select {
  width: 100%;
}

.filter-popup ul li {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.filter-popup ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.filter-popup ul li ul .row li {
  margin: 0;
}

.filter-popup ul li:last-child {
  margin: 0;
}

.filter-popup ul li .select-new select {
  height: 46px;
  border-radius: 10px;
  padding: 0 12px;
}

.select-new input {
  height: 46px;
}

.filter-popup .modal-content {
  border-radius: 30px;
}

.modal-footer button {
  height: 48px;
  padding: 0px 20px;
  border-radius: 10px;
}

.modal-footer .apply-button {
  background: #b4353d;
  border: 1px solid #b4353d;
}

.data_not_found img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 30px;
}

.data_not_found {
  text-align: center;
}

.data_not_found {
  margin: 0;
  padding: 100px 0;
}

.properties-page {
  min-height: 700px;
}

.loader-row svg {
  width: 100px;
  height: 100px;
  margin: 50px;
  display: inline-block;
}

.loader-row {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#L6 rect[fill="#fff"] {
  fill: #b4353d;
}

#L6 rect[fill="none"] {
  stroke: #b4353d;
}

/* /properties page */
/* ===== Responsive ===== */

@media (max-width: 992px) {
  .about-section {
    text-align: center;
  }

  .about-cta {
    flex-direction: column;
    align-items: center;
  }

  .about-images {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .filter-popup ul li:last-child {
    margin-bottom: 10px;
  }

  .filter-popup ul li {
    margin-bottom: 10px;
  }

  .filter-popup .modal-content .modal-body {
    padding-bottom: 0;
  }
}

.about-images .circle {
  position: absolute;
  top: 15%;
  right: -18%;
  background: #fff;
  width: 150px;
  height: 150px;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  /* position: absolute; */
  width: 120px;
  height: auto;
  background: url(../../assest/images/logo2.png);
  background-size: cover;
  border-radius: 0;
  background-position: center;
}

.about-images .circle .logo {
  height: 40px;
  width: 70px;
}

.about-images-circle .text {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: consolas;
  color: #000;
  font-size: 17px;
  animation: textRotation 25s linear infinite;
}

@keyframes textRotation {
  to {
    transform: rotate(360deg);
  }
}

.text span {
  position: absolute;
  left: 50%;
  font-size: 0.9em;
  transform-origin: 0 74px;
  font-family: inherit;
  text-transform: uppercase;
  font-weight: 600;
}

.about-images-3 {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: end;
}

.about-images-3 img:first-child {
  margin-bottom: 10px;
}

.about-images-1 img:first-child {
  margin-bottom: 10px;
}

.feature-item img {
  filter: brightness(0.7);
}

/* Newsletter Section */
.newsletter-section {
  background-color: var(--primary-color);
  padding: 4rem 0;
}

.newsletter-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.newsletter-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-subscribe {
  background-color: white;
  color: var(--primary-color);
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background-color: #f8f9fa;
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.925rem;
  }

  .property-type-label {
    display: block;
    margin-bottom: 0.5rem;
  }

  .hero-content .hero-title {
    font-size: 25px;
    width: 100%;
    max-width: 300px;
    margin: auto;
  }

  .hero-content .hero-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-content .search-card {
    padding: 10px;
    border-radius: 10px;
  }

  .hero-content .search-card .property-type-wrapper label {
    margin: 0;
    margin-bottom: 7px;
    padding: 10px;
    font-size: 14px !important;
    display: inline-block;
  }

  .hero-content .search-card .property-type-wrapper {
    margin-bottom: 10px;
  }

  .hero-content .search-card .form-select {
    font-size: 14px;
  }

  .header-section.active {
    background-color: #fff !important;
    box-shadow: 0 0 15.2px 0px #00000080;
  }

  .header-section.active .navbar-nav .nav-link {
    color: #000;
  }

  .header-section .navbar-toggler {
    background: #ffffff;
    padding: 1px 4px;
    border-radius: 3px;
    border: none;
  }

  .header-section .navbar-toggler:focus {
    box-shadow: none !important;
  }

  .header-section .navbar-nav li .nav-link {
    padding-left: 0;
  }

  .header-section .navbar-nav li {
    width: max-content;
  }

  .header-section .navbar-nav {
    margin-bottom: 10px;
  }

  .header-section.scrolled .navbar-nav .nav-link:hover {
    color: #000;
  }

  .navbar-nav .nav-link:hover::after {
    background-color: transparent;
  }

  .header-section.scrolled .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
  }

  .navbar-nav .nav-link.active::after {
    background-color: var(--primary-color) !important;
  }

  .common-css-slider .slick-prev {
    transform: translateX(30px) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .common-css-slider .slick-next {
    transform: translateX(-30px) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .common-css-slider .slick-arrow {
    width: 30px;
    height: 30px;
  }

  .property-price {
    font-size: 1.1rem;
  }

  .newsletter-title {
    font-size: 1.5rem;
  }

  .footer-links h4 {
    background: #ffffff1a;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-size: 16px;
  }

  .footer-links ul {
    padding: 0 10px 10px;
  }

  .footer-links .col-md-3:last-child ul {
    padding: 0 10px 10px 30px;
  }

  .contact-box img {
    max-width: 100px;
  }

  h4 {
    font-size: 18px;
  }

  footer .col-lg-4 {
    margin-bottom: 14px;
    text-align: center;
  }

  footer .row {
    row-gap: 16px;
  }

  .footer-links {
    gap: 0 !important;
    margin-top: 24px;
  }

  .logo {
    margin: auto;
  }

  .footer-bottom > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .about-images .circle {
    top: 15%;
    right: -30%;
    width: 115px;
    height: 115px;
  }

  .text span {
    font-size: 0.7em;
    transform-origin: 0 57px;
  }

  .about-images .circle .logo {
    height: 33px;
    width: 60px;
  }

  .about-images-circle {
    padding: 0;
  }

  .about-section {
    text-align: left;
    padding: 60px 15px;
  }

  .about-section .main-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .about-section p {
    font-size: 14px;
  }

  .feature-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .about-cta {
    flex-direction: row;
  }

  .about-cta .btn-primary {
    padding: 12px 10px;
    width: 100%;
    max-width: 50%;
  }

  .about-cta .contact-info strong {
    font-size: 13px;
  }

  .background-video video {
    height: 101%;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.stagger-item {
  height: 100%;
}

.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  animation: staggerIn 0.6s ease-out forwards;
}

.stagger-item:nth-child(1) {
  animation-delay: 0.1s;
}

.stagger-item:nth-child(2) {
  animation-delay: 0.2s;
}

.stagger-item:nth-child(3) {
  animation-delay: 0.3s;
}

.stagger-item:nth-child(4) {
  animation-delay: 0.4s;
}

.stagger-item:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes staggerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */

.navbar-brand img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

/* post property */
.page-banner-section {
  background-image: url(../../assest/images/download-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 100px;
  margin-top: 81px;
}

.page-banner-title {
  font-size: 36px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  margin-top: -5px;
  margin-bottom: 10px;
}

.section-title h1 {
  font-weight: 600;
  margin: 0;
  font-size: 30px;
  line-height: 1;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}

.section-title h1:before {
  content: "";
  position: absolute;
  height: 3px;
  width: 100px;
  left: 0;
  right: 0;
  background-color: #b4353d;
  bottom: 0;
  margin: auto;
}

.page-banner-section::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000000;
  opacity: 0.55;
  z-index: -1;
}

.contact-section {
  padding: 60px 0;
}

.contact-form input,
.contact-form select {
  border-radius: 12px !important;
  height: 50px;
  border: 1px solid #b4353d;
  width: 100%;
  padding: 8px 15px;
}

.property-detail-btn li input {
  height: 20px;
  width: 20px;
}

.property-detail-btn {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.property-detail-btn li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.backcolor {
  background: #b4353d;
  border: 0;
  outline: 0;
}

.backcolor:hover {
  border: 0;
  outline: 0;
  background: #b4353de6;
}

.textarea-text {
  border-radius: 12px !important;
  height: 110px;
  border: 1px solid #b4353d;
  width: 100%;
  padding: 8px 15px;
}

/* blog section */
.blog-row {
  /* display: flex;
  flex-wrap: wrap;
  gap: 20px; */
  margin-bottom: 20px;
}

.blog {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex: 1 0 calc(33.33% - 20px);
  display: flex;
  flex-direction: column;
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 250px;
  transition: transform 0.3s;
  object-fit: cover;
}

.blog-image img:hover {
  transform: scale(1.05);
}

.blog-image .date {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
}

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.blog-content p {
  flex-grow: 1;
  color: #000;
  margin-bottom: 20px;
}

.blog-content a {
  align-self: flex-start;
  background-color: #b4353d;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
  line-height: 1;
}

.blog-content a:hover {
  background-color: #0056b3;
}

/* /blog section */
/* faq section */
.faq-section-part .faq-main-section h2 {
  margin: 0;
  padding-bottom: 20px;
  font-size: 25px;
}

.faq-section-part .faq-main-section {
  padding: 0;
}

.faq-section-part .faq-text-cvr h3 {
  font-size: 17px;
}

.faq-section-part .faq-text-cvr p {
  font-size: 14px;
}

.faq-section-part {
  padding: 40px 0;
}

.faq-left-image img {
  max-width: 100%;
}

.view-more-btn a {
  padding: 10px 20px;
  line-height: 1;
  background: #b4353d;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.view-more-btn {
  margin-top: 15px;
  display: inline-block;
}

/* /faq section */
/* post-property-section */
.box1-img img {
  max-width: 100%;
}

.post-property {
  padding: 100px 0;
}

.post-property-box h2 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  width: 100%;
  max-width: 300px;
}

.post-property-box p {
  font-size: 17px;
  width: 100%;
  max-width: 350px;
}

.post-property-box a {
  padding: 12px 20px;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
  color: #fff;
  background: #b4353d;
}

.box1-img {
  padding: 0 50px 0 0;
}

@media (max-width: 767px) {
  .post-property {
    padding: 50px 0;
  }

  .box1-img {
    padding: 0;
    max-width: 200px;
    width: 100%;
    margin: auto;
    margin-bottom: 10px;
  }

  .post-property-box.box1 {
    text-align: center;
  }

  .post-property-box h2 {
    font-size: 24px;
    margin: 0 auto 10px;
  }

  .post-property-box p {
    font-size: 14px;
    margin: 0 auto 17px;
  }

  .post-property-content .row .col-lg-6 {
    margin-bottom: 30px;
  }
}

/* multiple outer layers */
.outer1 {
  width: 220px;
  height: 220px;
  border: 3px solid rgb(180 53 61);
  animation: pulse1 3s infinite;
}

.outer2 {
  width: 190px;
  height: 190px;
  border: 3px dashed rgb(180 53 61 / 45%);
  animation: rotate 8s linear infinite;
}

.outer3 {
  width: 200px;
  height: 200px;
  border: 2px solid rgb(180 53 61 / 51%);
  animation: pulse2 5s infinite;
}

.circle-container {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: 0.3s;
  top: 0;
  left: 0;
}

/* inner circle */
.inner {
  width: 210px;
  height: 210px;
  /* background: linear-gradient(135deg, #ac2327c7, #b4353dd4); */
  display: flex;
  justify-content: center;
  align-items: end;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  box-shadow: 0 0 25px rgb(180 53 61 / 18%);
  transition: 0.3s;
  line-height: 1.2;
  background-image: url(../../assest/images/download-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  position: relative;
  padding-bottom: 50px;
}

.inner:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #0000004a;
  z-index: 1;
  border-radius: 0;
}

.inner h3 {
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes pulse1 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes pulse2 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.4;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 767px) {
  .post-requirment .row {
    width: 100% !important;
    gap: 30px;
  }

  .post-requirment a {
    padding-top: 50%;
  }

  .inner {
    background-position: center;
    padding-bottom: 30px;
  }

  .inner h3 {
    font-size: 16px;
    margin: 0;
  }

  .post-property-section {
    padding: 20px 0;
  }

  .post-requirment {
    gap: 20px;
  }
}

/* property details */
.property-image-slider .slick-arrow:before {
  display: none;
}

.property-image-slider .slick-arrow {
  background: #cccccca3;
  width: 30px;
  height: 30px;
  z-index: 1;
  border-radius: 50px;
  border: 1px solid #00000057;
}

.property-image-slider .slick-arrow svg {
  fill: #000;
}

.property-image-slider .slick-arrow.slick-prev {
  left: -15px;
}

.property-image-slider .slick-arrow.slick-next {
  right: -15px;
}

.property-img-big {
  margin-bottom: 2px;
}

.property-img-small .slick-slide {
  border: 2px solid #fff;
}

.property-img-small .slick-list {
  margin: 0 -2px 0 0;
}

.property-img-cover img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-img-cover {
  position: relative;
  padding-top: 70%;
  width: 100%;
  height: 100%;
}

.property-details-section {
  padding-bottom: 70px;
}

.property-features-v2 > span {
  align-items: center;
  border-color: #ddd;
  display: flex;
  font-size: 16px;
  margin-right: 10px;
  padding: 5px 15px 5px 5px;
  text-wrap: nowrap;
  border: 1px solid #ececec;
  border-radius: 20px;
}

.property-features-v2 > span svg {
  background: #ffb40059;
  border: 1px dashed #ffb400;
  border-radius: 50%;
  height: 30px;
  padding: 6px;
  width: 30px;
}

.property-features span svg {
  font-size: 16px;
  margin-right: 5px;
}

.property-content .card {
  border-color: #ececec;
  border-radius: 20px;
  overflow: hidden;
  padding: 16px;
}

.text-primary {
  --bs-text-opacity: 1;
  color: rgb(180 53 61) !important;
}

.property-content .btn {
  height: 50px;
  background: #b4353d;
  border: none;
  outline: none;
  border-radius: 10px;
}

.property-big-img img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
}

.property-big-img {
  position: relative;
  padding-top: 70%;
  width: 100%;
  height: 100%;
}

.property-image-slider {
  position: sticky;
  top: 90px;
}

@media (max-width: 767px) {
  .property-image-slider .slick-arrow.slick-prev {
    left: -10px;
  }

  .property-image-slider .slick-arrow {
    width: 25px;
    height: 25px;
  }

  .property-image-slider .slick-arrow svg {
    width: 13px;
  }

  .property-img-small .slick-list {
    margin: 0px -2px 0px -2px;
  }

  .property-details-section {
    padding: 0 15px 40px;
  }

  .d-flex.flex-wrap.property-features {
    gap: 10px 0;
  }

  .property-content div div h3 {
    font-size: 18px;
  }

  .property-content div div p {
    font-size: 11px;
  }
}

/* testimonial */
.testimonial {
  padding: 70px 0;
}

.testimonial .sub-title {
  color: #b4353d;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial-client img {
  border: 1px solid #ececec;
  border-radius: 50%;
  display: block;
  height: 70px;
  object-fit: cover;
  width: 70px;
}

.testimonial-client {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.testimonial-slider-section .slick-arrow:before {
  display: none;
}

.testimonial-slider-section .slick-arrow {
  background: #ffffff;
  width: 60px;
  height: 35px;
  border-radius: 6px;
  border: 1px solid #00000030;
  transform: translate(0, 0);
  bottom: -45px;
  top: auto;
  left: 0;
}

.testimonial-slider-section .slick-arrow svg {
  fill: #000;
}

.testimonial-slider-section .slick-next {
  left: 80px;
}

@media (max-width: 767px) {
  .testimonial {
    padding: 30px 0 70px;
  }

  .testimonial-content-part {
    text-align: center;
    margin-bottom: 40px;
  }

  .testimonial-content-part span {
    font-size: 14px;
  }

  .testimonial-content-part .title {
    font-size: 19px;
  }

  .testimonial-text p {
    font-weight: 400;
    font-size: 15px;
  }

  .testimonial-slider-section .slick-arrow {
    bottom: -25px;
  }
}

/* /testimonial */

/* whatsaap section */
.whatsaap-section a img {
  max-width: 100%;
}

.whatsaap-section {
  position: fixed;
  bottom: 7%;
  right: 4%;
  width: 100%;
  max-width: 60px;
  z-index: 1;
}

@media (max-width: 767px) {
  .whatsaap-section {
    bottom: 5%;
    max-width: 51px;
  }


  .widget-property-search-form.horizontal .tabs {
    display: flex;
    justify-content: center;
    padding: 0;
}
}

/* counter-wrapper */
.count {
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
}

.counter-inner {
  padding: 30px 0;
}

.count-icon {
  font-size: 48px;
  color: #ffffff;
}

.count span,
.counter-inner div {
  color: #ffffff;
}

.counter-box {
  border: 1px solid #00000040;
  padding: 40px 10px !important;
  box-shadow: 0 0 36px -18px #0000006e;
  border-radius: 6px;
  color: #fff;
}

.counter-box p {
  color: #ffffff;
  font-size: 20px;
  margin: 0;
}

/* Common icon style */
.count-icon {
  font-size: 2.5rem;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Box 1 - Blue → Cyan */
.counter-wrapper .row .col-6:nth-child(1) .counter-box {
  /* background: linear-gradient(135deg, #b4353dcc, #b4353da8); */
  background: #2dd4bf !important;
}

/* Box 2 - Purple → Pink */
.counter-wrapper .row .col-6:nth-child(2) .counter-box {
  /* background: linear-gradient(135deg, #8053a7d1, #a9468fb0); */
  background: #fbbf24 !important;
}

/* Box 3 - Orange → Yellow */
.counter-wrapper .row .col-6:nth-child(3) .counter-box {
  /* background: linear-gradient(135deg, #28146e96, #1b507c85); */
  background: #64748b !important;
}

/* Box 4 - Green → Lime */
.counter-wrapper .row .col-6:nth-child(4) .counter-box {
  /* background: linear-gradient(135deg, #bf434394, #ff000045); */
  background: #84cc16 !important;
}

.counter-wrapper .row .col-6 .counter-box .count-icon {
  border: 1px solid #fff;
}

@media (max-width: 767px) {
  .count-icon {
    font-size: 20px;
  }

  .count-icon {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }

  .count span,
  .counter-inner div {
    font-size: 19px;
    line-height: 1.2;
  }

  .counter-box p {
    color: #ffffff;
    font-size: 15px;
    margin: 0;
  }

  .counter-box {
    padding: 20px 10px !important;
  }

  .counter-wrapper .row {
    gap: 0;
  }

  .count {
    font-size: 25px;
  }
}

/* /whatsaap section */
/* ============================================== */

/* faq
================================================= */
/* .blog-section .blog-row{
  display: inline-block;
} */
.faq-main-section {
  padding: 40px 0 70px;
}

.faq-main-title h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin: 30px 0;
}

.faq-child-section {
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.faq-text-cvr p {
  font-size: 16px;
  margin: 0;
  display: none;
  width: 100%;
  padding: 10px 15px;
}

.faq-text-cvr {
  border: 1px solid #00000052;
  margin: 0 0 15px;
  border-radius: 4px;
}

.faq-text-cvr h3 {
  margin-bottom: 0;
  padding-bottom: 10px;
  padding: 15px;
  font-size: 21px;
  font-weight: 600;
  margin: 0;
  cursor: pointer;
  background: #b4353d;
  color: #fff;
  position: relative;
  padding-right: 30px;
}

/* Arrow (down by default) */

.faq-text-cvr.active h3::after {
  transform: translateY(-50%) rotate(-135deg);
}

.faq-text-cvr h3::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-text-cvr.active h3 {
  border-bottom: 1px solid #fff;
}

@media (max-width: 767px) {
  .faq-text-cvr h3 {
    padding: 10px;
    font-size: 19px;
  }

  .faq-main-title h2 {
    font-size: 32px;
    margin: 0 0 30px;
  }

  .faq-text-cvr p {
    font-size: 14px;
    padding: 10px;
    line-height: 1.3;
  }
}

/* social icon */
.icons a {
  display: inline-flex;
  width: 45px;
  height: 50px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 40px;
  margin: 4px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);

  background-size: 100% 200%;
  background-position: 0% 5%;

  transition:
    background-position 0.5s,
    color 0.5s;
}

.icons a:nth-child(1) {
  color: #1976d3;
  background-image: linear-gradient(#fff 50%, #1976d3 50%);
}

.icons a:nth-child(2) {
  color: #db6f44;
  background-image: linear-gradient(
    #fff 50%,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888 80%
  );
}

.icons a:nth-child(2):hover {
  background-image: linear-gradient(
    #fff 40%,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888 80%
  );
}

.icons a:nth-child(3) {
  color: #0077b5;
  background-image: linear-gradient(#fff 50%, #0077b5 50%);
}

.icons a:nth-child(4) {
  color: #29a61a;
  background-image: linear-gradient(#fff 50%, #29a61a 50%);
}

.icons a:hover {
  background-position: 0% 100%;
  color: #fff;
}

.icons {
  position: fixed;
  top: 130px;
  right: 25px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.icons a i {
  font-size: 20px;
}

@media (max-width: 767px) {
  .icons a {
    width: 40px;
    height: 40px;
  }

  .icons {
    right: 11px;
  }
}

.navbar-custom {
  border-bottom: 1px solid #e5e5e542;
  transition: all 0.3s ease;
  position: fixed;
  width: 100%;
  z-index: 2;
  background: #fff;
}

.smart-guidance {
  padding: 100px 0 70px;
}

.smart-content span {
  text-align: center;
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  line-height: 1;
  color: #000000b8;
}

.smart-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #000000d9;
  margin-bottom: 15px;
}

.bullet-point-content {
  margin-top: 15px;
}

.smart-content p {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 0px;
}

.samrt-guidance {
  padding: 70px 0;
}

.our-title h2 {
  font-size: 20px;
  font-weight: 700;
}

.our-title p {
  font-size: 15px;
  color: #000;
}

.our-title {
  margin-bottom: 30px;
}

.our-commitment-content {
  border: 1px solid #b4353d5e;
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s;
}

.our-commitment-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #b4353d;
}

.our-commitment-content:hover {
  background: #b4353d;
  color: #fff;
}

.our-commitment-content:hover h2 {
  color: #fff;
}

.our-commitment-content p {
  font-size: 13px;
  padding-top: 10px;
  margin: 0;
  margin-bottom: 7px;
}

.our-commitment-content span {
  font-size: 12px;
  font-style: italic;
}

.bullet-point-section {
  padding: 70px 0;
}

.bullet-point-section .smart-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.smart-content span {
  display: block;
  text-align: left;
}

.smart-content a {
  display: inline-block;
  padding: 10px 20px;
  line-height: 1;
  text-decoration: none;
  background: #b4353d;
  color: #fff;
  border-radius: 4px;
  margin-top: 10px;
}

.smart-content a:nth-child(2) {
  background: #12294c;
}

.smart-content a:nth-child(3) {
  background: transparent;
  display: flex;
  align-items: center;
  color: #000;
  gap: 10px;
  padding: 0 !important;
}

.smart-content a:nth-child(3) .tel-call {
  width: 40px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #fff;
  background: #b4353d;
  border-radius: 4px;
}

.smart-content a svg {
  width: 20px;
}

.smart-content a:nth-child(3) p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .our-commitment-box .row {
    gap: 15px;
  }

  .smart-content a {
    padding: 8px 11px;
    font-size: 10px;
  }
}

.form-section {
  position: relative;
}

.form-select-new {
  /* border: 1px solid #00000066; */
  padding: 7px 10px 10px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  width: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}

.form-select-new label {
  font-size: 13px;
  padding-bottom: 3px;
}

.form-select-new select,
.form-select-new input {
  height: 40px;
}

.search-btn button {
  border: none;
  background: #b4353d;
  fill: #fff;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  outline: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.search-btn button svg {
  width: 20px;
}

.searchBtn {
  margin: 0;
  color: #fff;
  display: none;
}

.search-btn {
  text-align: center;
}

.feature-list a:hover h5,
.feature-list a:hover p {
  color: #b4353d;
}
.smart-content a:nth-child(3) div:hover {
  background: #12284c;
  transition: 0.4s;
}

@media (max-width: 767px) {
  .form-select-new {
    position: static;
    width: 100%;
    transform: translate(0, 0);
  }

  .form-section {
    margin-top: -125px;
  }

  .form-select-new .row {
    gap: 10px;
  }

  .search-btn button {
    width: 100%;
  }

  .searchBtn {
    display: block;
  }
}
