/* Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

:root {
  --primary-color: #8c1d1c;
  /* Warm yellow */
  --secondary-color: #102344;
  /* Deep blue for contrast */
  --hover-color: #d87c6a;
  /* Muted coral for interactive states */
  --text-dark: #2d2d2d;
  /* Dark gray for readability */
  --text-light: #fcf8ea;
  /* Light background contrast */
  --bg-light: #f5f5f5;
  /* Subtle light background */
  --transition-fast: 0.3s ease;
}

a {
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  background-color: transparent;
}

a:hover {
  color: #333333;
  text-decoration: none;
  background-color: transparent;
}

/* Reusable Components & Utilities */
.btn-success {
  background-color: var(--primary-color);
  /* Updated to use primary color */
  border: none;
}

.margin-top-100-section {
  margin-top: 120px;
}

.d-md-none {
  display: none !important;
}

.text-success {
  color: var(--hover-color) !important;
  /* Updated to use primary color */
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show>.btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: var(--primary-color);
  /* Updated to use primary color */
  border-color: var(--primary-color);
  /* Updated to use primary color */
}

.h2_heading {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  margin-bottom: 10px;
}

.bg-light-topBar {
  background-color: #f5f9ff;
}

.vr {
  background-color: #8b8787;
  height: 30px;
  width: 1px;
}

.bg-gray {
  background-color: #f8f9fa;
}

/* Custom Buttons */
.custom-btn {
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
  padding: 0.6rem 2.2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.custom-btn::before {
  content: "";
  position: absolute;
  background-color: var(--primary-color);
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  transition: left 0.4s ease;
  z-index: -1;
}

.custom-btn:hover {
  color: #fff;
}

.custom-btn:hover::before {
  left: 0;
}

.custom-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px white;
  border-color: white;
  color: white;
  background-color: var(--primary-color);
}

.custom-appointment-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
  color: white !important;
  border: none;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-appointment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(var(--hover-color-rgb), 0.4);
}

.custom-appointment-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px white;
  background-color: var(--hover-color);
}

.custom-btn-outline {
  border: 1px solid #e9e9e9;
  color: #333333;
}

.custom-btn-outline:focus {
  border: 1px solid #e9e9e9;
  box-shadow: none;
}

.custom-btn-outline:hover {
  background: var(--hover-color);
  box-shadow: none;
  color: #fff;
}

/* Navbar */
.navbar-brand img {
  height: 70px;
}

.nav-link.nav-text {
  position: relative;
  overflow: hidden;
}

.nav-link.nav-text {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  color: inherit;
  text-decoration: none;
}

.nav-link.nav-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #d87c6a;
  transition: width 0.2s ease;
}

.nav-link.nav-text.active::after {
  width: 100%;
}



/* Animations */
.animate-navbar {
  animation: slideDown 1s ease-in-out;
}

.animate-logo {
  animation: zoomIn 1s ease forwards;
}

.animate-toggler {
  animation: bounceIn 1.2s ease forwards;
}

.nav-fade {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.nav-fade:nth-child(1) {
  animation-delay: 0.2s;
}

.nav-fade:nth-child(2) {
  animation-delay: 0.4s;
}

.nav-fade:nth-child(3) {
  animation-delay: 0.6s;
}

.nav-fade:nth-child(4) {
  animation-delay: 0.8s;
}

.nav-fade:nth-child(5) {
  animation-delay: 1s;
}

@keyframes slideDown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }

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

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.animate__pulse {
  animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 14, 37, 0.6), rgba(0, 14, 36, 0.6)),
    url("../images/hero.png") no-repeat center center/cover;
  /* background: linear-gradient(rgba(65, 43, 43, 0.6), rgba(255, 209, 209, 0.6)),
    url("./assets/hero.png") no-repeat center center/cover; */
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: 100vh;
  box-sizing: border-box;
}

.hero-content {
  padding-top: 130px;
  padding-bottom: 30px;
}

.hero-content h1 {
  font-size: 3rem;
  color: #ebebeb;
}

.hero-content p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.hero .d-flex div {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero .d-flex div:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

/* Input & Label Styling */
.form-group label {
  font-weight: 400;
  color: #ffffff;
  text-align: left;
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}

.custom-input,
.custom-select-display {
  border: 1px solid #cce0f0;
  border-radius: 4px;
  padding: 20px 15px;
  font-size: 14px;
  height: 46px;
  color: #4a658a;
  transition: all 0.3s ease;
}

.custom-input:focus,
.custom-select-display:focus {
  border-color: var(--primary-color);
  /* Highlight on focus */
  box-shadow: 0 0 0 0.2rem rgba(221, 228, 235, 0.25);
  outline: none;
}

/* Basic styling for custom select wrappers */
.custom-select-wrapper {
  position: relative;
  /* Crucial for positioning the dropdown options */
  display: block;
  /* Ensures it takes up space correctly */
  width: 100%;
  /* Or set a specific width */
}

/* Hide the actual native <select> element */
.custom-select-wrapper select {
  display: none;
}

/* Style for the visible custom select display */
.custom-select-display {
  border: 1px solid #ced4da;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  cursor: pointer;
  background-color: #fff;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Style for the dropdown arrow */
.custom-select-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.5rem;
  vertical-align: middle;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: transform 0.2s ease-in-out;
}

/* Rotate arrow when dropdown is open */
.custom-select-wrapper.open .custom-select-arrow {
  transform: rotate(180deg);
}

/* Styling for the options container */
.select-options {
  position: absolute;
  /* Positions relative to the wrapper */
  top: 100%;
  /* Places it right below the display */
  left: 0;
  right: 0;
  z-index: 1000;
  /* Ensure it appears above other content */
  background-color: #fff;
  border: 1px solid #ced4da;
  border-top: none;
  /* Optical trick to make it look continuous with the display */
  border-radius: 0 0 0.25rem 0.25rem;
  max-height: 200px;
  /* Limits height and adds scroll for many options */
  overflow-y: auto;
  display: none;
  /* HIDDEN BY DEFAULT! */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* When the wrapper has the 'open' class, show the options */
.custom-select-wrapper.open .select-options {
  display: block;
  /* Make it visible! */
}

/* Style for individual options within the dropdown */
.select-options div {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  white-space: nowrap;
  /* Prevent text wrapping */
}

/* Hover and selected state for options */
.select-options div:hover,
.select-options div.selected {
  background-color: #e9ecef;
  color: var(--primary-color);
  /* Highlight selected/hovered item */
}

/* Ensure form controls have consistent height */
.form-control.custom-input {
  /* height: calc(1.5em + 0.75rem + 2px); Standard Bootstrap height */
  height: 46px;
}

.search-box-container {
  padding: 20px 15px 20px 15px;
  width: 100%;
  background-color: #c7c7c738;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: auto;
}

/* Submit Button */
.buttonEnquery {
  /* background: linear-gradient(
    45deg,
    var(--hover-color),
    var(--secondary-color)
  ); */
  background: #d87c6a;
  /* background: linear-gradient(235deg, var(--primary-color), var(--hover-color)); */
  color: white;
  padding: 6px 10px;
  border: none !important;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  /* Keep original blue shadow or adjust */
}

.buttonEnquery:hover {
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  /* Keep original blue shadow or adjust */
  transform: translateY(-2px);
}

.buttonEnquery:focus {
  border: 1px solid #ffffff !important;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  margin-left: -20px;
  z-index: 2;
}

.custom-input:focus {
  border: 1px solid #e9e9e9;
  box-shadow: none;
}

.input-group-text {
  border: 1px solid #e9e9e9;
  border-right: 1px solid gray;
  border-radius: 5px 0 0 5px;
}

.custom-search-btn {
  background-color: var(--primary-color);
  /* Updated to use primary color */
  border: none;
  color: #fff;
}

.custom-search-btn:hover {
  background-color: var(--hover-color);
  /* Updated to use hover color */
}

/* Custom Select */
.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper select {
  appearance: none;
  background-image: none;
  display: none;
  /* Hide the original select element */
}

/* .custom-select-display {
  padding: 10px 40px 10px 15px;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  height: 45px;
  background-color: #fff;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: left;
  cursor: pointer;
  position: relative;
  z-index: 1;
} */

.custom-select-wrapper .custom-select-arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #d87c6a;
  /* Updated to use primary color */
  transform: translateY(-50%);
  z-index: 2;
}

.select-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #e9e9e9;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  z-index: 100;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

.select-options.show {
  display: block;
}

.select-options div {
  padding: 10px 15px;
  cursor: pointer;
  color: #333;
  text-align: left !important;
}

.select-options div:hover {
  background-color: #ebd5d1;
  /* Keep light green or adjust */
  color: #333;
}

.select-options div.selected-option {
  background-color: var(--primary-color);
  /* Updated to use primary color */
  color: #fff;
  text-align: left !important;
}

/* Responsive Spacing */
.px-mx-mobile-view {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* Call to Action (CTA) */
.cta-btn {
  margin-top: 40px;
}

.cta-btn .btn-outline-light {
  border-width: 2px;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
}

.btn-outline-light:hover {
  background: var(--hover-color);
  color: #fff;
  border-color: var(--hover-color);
}

/* Tabs */
.tabs .btn,
.tabs button {
  border: none;
  background: none;
  padding: 10px 15px;
  margin: 4px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tabs .btn.active,
.tabs .active {
  background-color: #edf9f6;
  /* Keep light green or adjust */
  color: var(--primary-color);
  /* Updated to use primary color */
  font-weight: 600;
  box-shadow: none;
}

.tabs .btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* City Tabs */
.city-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.city-tab {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.2s ease;
}

.city-tab.active,
.city-tabs .nav-link.active {
  background-color: #e8f5ef;
  /* Keep light green or adjust */
  color: #009966;
  /* Keep green or adjust */
  font-weight: 600;
  border-color: var(--primary-color);
  /* Updated to use primary color */
}

.city-tab-container {
  border: 1px solid #a8b3b1;
  border-radius: 5px;
  background: #f8f9fa;
  max-width: 422px;
  box-shadow: none !important;
  transition: all 0.3s ease-in-out;
}

.city-tab-container:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Search Box (Section 2) */
.search-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 70%;
  justify-content: center !important;
  margin-top: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.search-box input,
.search-box select,
.search-box .btn {
  height: 48px;
  width: 100%;
}

/* Browser Search (Section 2) */
.browser-serch {
  background: linear-gradient(135deg,
      #0f78b6,
      #0fb690);
  /* Keep original gradient or adjust */
  color: white;
  border-radius: 8px;
}

.browser-serch .btn {
  background-color: var(--primary-color);
  /* Updated to use primary color */
  border: none;
}

/* Location Tabs (Section 3) */
.location-tabs .nav-link {
  border-radius: 8px;
  margin: 0 5px;
  color: #000;
  font-weight: 500;
  color: #333;
  margin: 4px 8px;
  padding: 6px 16px;
  border-radius: 4px;
  transition: 0.3s;
}

.location-tabs .nav-link.active {
  background-color: var(--primary-color);
  /* Updated to use primary color */
  color: #ffffff;
}

.location-tabs .nav-link:hover,
.location-tabs .nav-link.active {
  background-color: var(--primary-color);
  /* Updated to use primary color */
  color: #fff !important;
}

/* Cards */
.card-img-top {
  height: 180px;
  background-size: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.price,
.handover {
  color: var(--primary-color);
  /* Updated to use primary color */
  font-weight: 600;
}

.location {
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-card img {
  height: 150px;
  object-fit: cover;
}

.view-all-btn {
  background-color: #d8f6f1;
  /* Keep light green or adjust */
  color: var(--primary-color);
  /* Updated to use primary color */
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
}

/* Carousels */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  background-image: none;
  /* Override default Bootstrap arrow images */
  border: solid teal;
  /* Keep teal or adjust */
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 10px;
}

.carousel-control-prev-icon {
  transform: rotate(135deg);
}

.carousel-control-next-icon {
  transform: rotate(-45deg);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.custom-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.custom-carousel-btn i {
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
  user-select: none;
  color: #222222;
  pointer-events: none;
}

.custom-carousel-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-control-prev.custom-carousel-btn {
  left: 20px;
}

.carousel-control-next.custom-carousel-btn {
  right: 20px;
}

.custom-carousel-btn:not(.disabled):hover {
  background-color: #ffffff;
}

/* Why Choose Us (Section 4) */
.why-choose-us {
  /* background: linear-gradient(
    to bottom,
    var(--secondary-color),
    var(--primary-color)
  );  */
  /* Updated to use secondary and primary colors */
  /* background: linear-gradient(#7f2f2f, #d87c6a); */
  color: var(--text-dark);
  padding: 20px;
  text-align: center;
}

.why-choose-us h2 {
  margin-bottom: 10px;
}

.why-choose-us p.subtitle {
  font-size: 1rem;
  color: #000;
  /* Keep light blue or adjust */
}

.feature-icon {
  font-size: 40px;
  background-color: rgba(61, 61, 61, 0.1);
  background-color: rgba(216, 124, 106, 0.4);
  /* background: #d87c6a; */
  border-radius: 50%;
  padding: 12px;
  margin-bottom: 20px;
  display: inline-block;
}

.feature-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-description {
  font-size: 0.95rem;
  color: #000;
  /* Keep light green or adjust */
}

.feature-icon i {
  font-size: 30px;
  color: #292929;
  background: rgba(255, 255, 255, 0.3);
  padding: 20px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* .feature-icon:hover i {
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary-color);
  transform: scale(1.1);
} */

/* Stay Update with Fabrico Real estate Article (Carousel) */
.carousel-item>.row>div {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

button:focus {
  border: 1px solid #ffffff !important;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--primary-color);
  /* Updated to use primary color */
}

.carousel-item-image {
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.carousel-item-title {
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.carousel-item-date {
  font-size: 0.875rem;
  color: #718096;
  margin-bottom: 0.5rem;
}

.carousel-item-description {
  font-size: 1rem;
  color: #4a5568;
  flex-grow: 1;
  margin-bottom: 0.5rem;
}

.carousel-item-read-more {
  font-size: 0.875rem;
  color: #2b6cb0;
  /* Keep blue or adjust */
  font-weight: 600;
  transition: color 0.2s ease;
}

/* Real Estate FAQs */
#faqAccordion .card {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  margin-bottom: 0.75rem;
}

#faqAccordion .card-header {
  background-color: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding: 0;
}

#faqAccordion .btn-link {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

#faqAccordion .btn-link:hover {
  color: var(--hover-color);
  /* Updated to use primary color */
  text-decoration: none;
}

/* #faqAccordion .btn-link.collapsed::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: rotate(0deg);
  transition: transform 0.2s ease-in-out;
  font-size: 0.75rem;
}

#faqAccordion .btn-link:not(.collapsed)::after {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: rotate(180deg);
  font-size: 0.75rem;
} */



#faqAccordion .btn-link::after {
  content: "\f078";
  /* Font Awesome chevron-down */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  transform: rotate(0deg);
  transition: transform 0.2s ease-in-out;
}

#faqAccordion .btn-link:not(.collapsed)::after {
  transform: rotate(180deg);
}



#faqAccordion .card-body {
  padding: 1rem 1.25rem;
}


/* Testimonials */
/* Testimonials */
.testimonials-bg {
  background: #fcf8ea
    /* soft beige */
  ;
  color: #334e68;
  /* dark text for contrast */
  padding: 20px;
  text-align: center;
}

.testimonial-card {
  transition: transform 0.3s ease;
  cursor: default;
  height: 100%;
  border: 1px solid #f5d6d0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 14px;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.testimonial-card .quotes{
  width: 24px;
  height: 24px;
}
.testimonial-card .avatar {
  width: 50px;
  height: 50px;
}

.testimonial-text {
  font-style: normal;
  font-size: 0.95rem;
  color: #1a1a1a;
}
.testimonial-card p{
  text-align: left;
  height: 76%;
  font-size: 0.9rem;
  margin-top: 10px;
}
.testimonial-card h5{
  font-size: 1.1rem;
}
.testimonial-card h6{
  font-size: 0.9rem;
  margin-bottom: 0;
}
.testimonial-author-box{
  height: 24%;
}




/* Featured Agencies */
.agency-logo {
  max-width: 150px;
  filter: grayscale(100%);
  transition: 0.3s ease-in-out;
}

.featured-title {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  margin: 50px 0 30px;
}

/* Footer */
.footer {
  background-color: #de998b;
  /* Updated to use primary color */
  color: white;
  padding: 60px 20px 30px;
}

.footer .logo {
  max-width: 150px;
}

.footer p {
  font-size: 14px;
}

.footer .social-icons {
  display: flex;
  gap: 10px;
}

.footer .social-icons a {
  font-size: 14px;
  color: var(--hover-color) !important;
  background: var(--text-light);
  /* Updated to use hover color */
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none !important;
  transition: background 0.3s ease, color 0.3s ease;
  margin-right: 0 !important;
}

.footer .social-icons a:hover {
  background-color: var(--primary-color);
  /* Updated to use secondary color */
  color: var(--text-light) !important;
  /* Updated to use text-light color */
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 20px;
}

.footer a {
  color: white;
  text-decoration: none;
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer a:hover {
  text-decoration: underline;
}

.app-buttons img {
  max-height: 50px;
  margin-right: 15px;
  margin-bottom: 10px;
}

/* Swiper (If applicable, ensure these are at the end or in a separate module) */
.swiper-button-prev,
.swiper-button-next {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #222222;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px;
}

/* ABOUT */

.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("./assets/about.png") no-repeat center center/cover;
  /* Replace with a real image */
  height: 80vh;
  /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 15px;
}

.about-hero .hero-content {
  max-width: 800px;
}


.info-content {
  height: 200px;
  overflow: hidden;
  transition: height 0.5s ease;
}

.read-more-btn {
  cursor: pointer;
}

.gradient-fade {
  content: '';
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, white, transparent);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.info-img {
  height: 160px;
}

.info-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}




/* Our Story Section */
.our-story {
  padding-top: 7rem;
  padding-bottom: 2rem;
}

.our-story .img-fluid {
  border-radius: 8px;
}

.our-story .list-unstyled li {
  font-size: 1rem;
}

.our-story .list-unstyled i {
  font-size: 1.2rem;
  min-width: 25px;
  /* Ensure icon alignment */
}

/* Mission and Vision Section */
.mission-vision {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

.mission-vision .card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.mission-vision .feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  /* Primary Bootstrap color */
  margin-bottom: 15px;
}

/* Our Values Section */
.our-values {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  /* Light background */
}

.our-values .value-item {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.our-values .value-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.our-values .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* _______________________________Blog______________________________ */

/* Header Section */
.blog-header {
  background-image: url("./assets/blog_hero.png");
  /* Replace with your actual Painted Ladies image */
  background-size: cover;
  background-position: center;
  height: 250px;
  /* Adjust height as needed */
  position: relative;
  display: flex;
  align-items: flex-end;
  /* Align content to the bottom */
}

.blog-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  /* Dark overlay */
}

.blog-header .container-fluid {
  position: relative;
  /* Ensure content is above overlay */
  z-index: 1;
}

.blog-header h1 {
  font-weight: 700;
}

.about-header-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/about_banner.png") !important;
  margin-top: 100px;
  color: var(--text-light);
  display: flex;
  background-size: cover !important;
  height: 300px;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.about-mission-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  background-position: center;
  margin-top: 100px;
  color: var(--text-light);
  display: flex;
  background-size: cover !important;
  height: 300px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
}

.blog-header-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/blog_banner.png") no-repeat center center/cover;
  margin-top: 100px;
  color: var(--text-light);
  display: flex;
  background-size: cover !important;
  height: 300px;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.service-header-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("./assets/service_banner.png") no-repeat center center/cover;
  margin-top: 100px;
  color: var(--text-light);
  display: flex;
  background-size: cover !important;
  height: 230px;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.policy-header-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/privacy-banner.jpg") no-repeat center center/cover;
  margin-top: 100px;
  color: var(--text-light);
  display: flex;
  background-size: cover !important;
  height: 300px;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.blog-header .breadcrumb {
  background-color: transparent;
  padding-left: 0;
}

.blog-header .breadcrumb-item a {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.blog-header .breadcrumb-item a:hover {
  color: var(--hover-color);
  text-decoration: none;
}

.blog-header .breadcrumb-item.active {
  color: var(--hover-color);
}

/* Main Blog Post Area */
.blog-post-card {
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
}

.card-main-img {
  height: 24vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-post-card .card-img-top {
  height: 400px;
  /* Fixed height for consistency */
  object-fit: cover;
}

.blog-post-card .card-title {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.blog-post-card .card-text.text-muted {
  font-size: 0.875rem;
}

.blog-post-card .card-text {
  color: var(--text-dark);
  line-height: 1.6;
}

/* Sidebar Widgets */
.sidebar-widget {
  border: none;
  border-radius: 0.5rem;
}

.sidebar-widget .card-title {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--hover-color);
  /* Updated to use primary color */
  padding-bottom: 0.5rem;
  display: inline-block;
  /* To make the border-bottom only under the text */
}

.sidebar-list {
  padding-left: 10px;
}

.sidebar-list li {
  margin-bottom: 0.5rem;
}

.sidebar-list li a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: block;
  /* Make the entire line clickable */
}

.sidebar-list li a:hover {
  color: var(--primary-color);
  /* Updated to use primary color */
}

.sidebar-list li i {
  color: var(--hover-color);
  /* Updated to use primary color */
}

/* Search Widget */
.input-group .form-control {
  border-color: var(--primary-color);
  /* Updated to use primary color */
  box-shadow: none;
}

.input-group .btn-primary {
  background-color: var(--primary-color);
  /* Updated to use primary color */
  border-color: var(--primary-color);
  /* Updated to use primary color */
  transition: background-color var(--transition-fast),
    border-color var(--transition-fast);
}

.input-group .btn-primary:hover {
  background-color: var(--hover-color);
  /* Updated to use hover color */
  border-color: var(--hover-color);
  /* Updated to use hover color */
}

/* Popular Tags */
.tag-buttons {
  margin-left: 10px;
}

.tag-buttons .btn-outline-secondary {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  transition: all var(--transition-fast);
}

.tag-buttons .btn-outline-secondary:hover {
  background-color: var(--hover-color);
  /* Updated to use primary color */
  color: var(--text-light);
  border-color: var(--primary-color);
  /* Updated to use primary color */
}

/* Recent Posts */
.recent-posts-list {
  margin-left: 10px;
}

.recent-posts-list img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.recent-card {
  border: 1px solid rgb(243, 243, 243);
  border-radius: 2px;
  padding: 4px;
  /* Add smooth transition for hover effects */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
}

.recent-card:hover {
  transform: translateY(-5px);
  /* Lifts the card up by 5px */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  /* Adds a larger, softer shadow */
  border-color: #e0e0e0;
  /* Slightly darker border on hover */
}

.recent-posts-list p {
  font-size: 14px;
}

.recent-posts-list small {
  font-size: 12px;
  color: var(--secondary-color) !important;
}

.about-section {
  background-color: var(--bg-light);
  padding: 60px 0;
}

.description {
  font-size: 1rem;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  /* Updated font family */
}

.read-more-btn {
  /* background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--hover-color)
  );  */
  background: #d87c6a;
  /* Updated to use primary and hover colors */
  color: #ffffff;
  border: none;
  padding: 10px 30px;
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition-fast);
  cursor: pointer;
  border-radius: 5px;
}

.read-more-btn:hover {
  background-color: var(--primary-color);
  /* Updated to use primary color */
  color: var(--text-light);
  border-color: var(--primary-color);
  /* Updated to use primary color */
}

button:focus {
  outline: none !important;
  outline: none !important;
}

.signature img {
  height: 50px;
  /* Adjust as needed */
  width: auto;
}

.video-container {
  position: relative;
  display: inline-block;
  /* To ensure the image size dictates the container */
  max-width: 100%;
  background: #d87c6a;
}

.video-container img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.8;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--text-light);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  padding-left: 6px;
}

.play-button:hover {
  background-color: var(--primary-color);
  /* Updated to use primary color */
}

.mirror-container {
  position: relative;
  overflow: hidden;
}

.mirror-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  /* Rounded corners */
}

.mirror-reflection {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://placehold.co/1200x600/3e5e81/fff?text=About+Us+Header");
  background-size: cover;
  background-position: center;
  transform: scaleY(-1);
  opacity: 0.3;
  border-radius: 0.5rem;
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
}

.subtitle {
  color: var(--secondary-color);
}

.btn-custom {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color var(--transition-fast);
}

.btn-custom:hover {
  background-color: var(--hover-color);
  color: var(--text-light);
}

.icon-box {
  color: var(--primary-color);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.counter-box {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition-fast);
}

.counter-box:hover {
  transform: translateY(-5px);
}

/* Basic styling for the team member cards */
.team-member-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  background: #ffeeee;
}

.team-member-img {
  height: 300px;
  overflow: hidden;
}

.team-member-img img {
  border-radius: 0%;
  width: 100%;
  height: auto;
  /* Adjust as needed */
  margin-bottom: 15px;
}

.team-member-content {
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.team-member-content p {
  margin-bottom: 0;
  color: #666;
  font-size: 0.9em;
}


.team-member-card h3 {
  color: #333;
  margin-bottom: 5px;
}



.hover-effect .social-icons {
  margin-bottom: 15px;
}

.hover-effect .social-icons a {
  color: #fff;
  font-size: 1.5em;
  margin: 0 10px;
  transition: color 0.2s ease-in-out;
}

.hover-effect .social-icons a:hover {
  color: var(--primary-color);
}

.hover-effect .view-profile-btn {
  display: inline-block;
  background-color: var(--hover-color);
  color: #fff;
  padding: 4px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
}

.hover-effect .view-profile-btn:hover {
  background-color: var(--primary-color);
  /* Example hover color for button */
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.info-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.info-card:hover {
  transform: translateY(-10px);
}

.info-icon {
  font-size: 30px;
  color: var(--hover-color);
  /* Keep original orange or adjust */
  background: rgba(255, 87, 34, 0.1);
  /* Keep original orange or adjust */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Services Section */
#services {
  padding: 80px 0;
  background-color: #f8f9fa;
}

#services h2,
#properties h2,
#testimonials h2,
#contact h2 {
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  color: #333;
}

.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
  font-size: 3rem;
  color: var(--hover-color);
  /* Updated to use primary color */
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

/* Properties Section */

.property-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.property-card .card-body {
  padding: 20px;
  flex-grow: 1;
}

.property-card .card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #333;
}

.property-card .card-text {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.property-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--hover-color);
  /* Updated to use primary color */
  margin-bottom: 15px;
}

#contact .form-control {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px 15px;
}

#contact .form-control:focus {
  border-color: var(--primary-color);
  /* Updated to use primary color */
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}









/* changed css 30-5-2025 */





.news-empty-shape {
  background: #d87c6a;
}


.why-choose-us .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.choose-card-container {
  display: flex;
  width: 100%;
}

.choose-card {
  background: #ffeeeb;
  margin: 1%;
  border-radius: 8px;
  padding: 20px 10px 0px;
  width: 31.3%;
}

.choose-card:hover .feature-icon i {
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary-color);
  /* Updated to use primary color */
  transform: scale(1.1);
}


.swiper-slide {
  margin-top: 10px;
}


.footer-logo {
  width: 60%;
}

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








#services p {
  width: 80%;
  margin: auto;
}



.about-content div {
  margin-top: 40px !important;
}



/* fixed buttons on screen for contact */
.fixed-on-screen {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.button-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 50px;
  width: 50px;
  padding-left: 13px;
  border-radius: 4px 0 0 4px;
  box-shadow: 0px 0px 2px #5c5c5c;
  overflow: hidden;
  transition: width 0.4s ease;
  color: white;
  cursor: pointer;
}

.icon {
  font-size: 22px;
  margin-right: 10px;
}

.whatsapp-container .icon {
  font-size: 24px;
  transform: scale(1.1);
}

.label {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-left: 4px;
}

.call-container {
  background-color: #007BFF;
  /* background-color: #3fa0e7; */
}

.email-container {
  background-color: #ff5d5d;
}

.whatsapp-container {
  background-color: #25D366;
}

.button-container:hover {
  width: 135px;
  padding-right: 20px;
}

.button-container:hover .label {
  opacity: 1;
}

.whatsapp-container:hover {
  width: 190px;
}

.email-container:hover {
  width: 150px;
}







/* thanlyou popup */
.thank-you-popup {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  background-color: white;
  padding: 20px 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.popup-img {
  width: 20%;
  margin: auto;
}

.popup-img img {
  width: 100%;
  height: 100%;
}

.thank-you-content i {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  border-radius: 4px;
  color: #d87c6a;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.thank-you-content h4 {
  font-weight: 600;
  margin-top: 10px;
}

.thank-you-content p {
  margin-bottom: 2px;
}

.popup-button {
  background: #d87c6a;
  color: #fff;
  padding: 5px 30px;
  font-weight: 500;
  font-size: 16px;
  margin-top: 14px;
}

.popup-button:hover {
  background-color: #8c1d1c;
  color: #fff;
}

.thank-you-content i:hover {
  color: #8c1d1c;
}






.sidebar-widget .card-body {
  padding-top: 0;
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  /* margin-left: 10px; */
}

.submenu li {
  list-style-type: none;
  margin-bottom: 0px;
}

.submenu .text-secondary {
  font-weight: 500;
}

.submenu.open {
  max-height: 200px;
}

.icon-rotate {
  transition: transform 0.3s ease;
}

.icon-rotate.open {
  transform: rotate(90deg);
}






.servicesFull {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin: 0;
  width: 100%;
}

.servicesFull .service-card {
  width: 32%;
  height: auto;
  margin-bottom: 20px;
}

.service-card p {
  margin-top: 10px !important;
}



.swiper-wrapper .swiper-slide {
  width: 33%;
  height: auto;
}














/* blog list page */
.blog {
  margin-bottom: 40px;
}

.blog h4 {
  font-weight: 600;
  font-size: 24px;
}

.blog-latest {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.blog-latest-img {
  width: 60%;
  height: 60vh;
  border-radius: 20px;
  overflow: hidden;
}

.blog-latest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-latest-content {
  width: 36%;
}

.blog-latest-content .blog-date {
  margin-top: 10px;
  color: #868686;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.blog-latest-content h2 {
  font-weight: 600;
  font-size: 40px;
  margin-top: 10px;
}

.blog-latest-content p {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: #636363;
  margin-top: 20px;
  margin-bottom: 30px;
}

.blog-latest-content a {
  color: #d87c6a;
  transition: all 0.2s ease-in-out;
}

.blog-latest-content a:hover {
  background: #d87c6a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: -4px 4px 10px 2px #727272;
}



.blog-left {
  width: 100%;
}

.blog-left-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-left-head h2 {
  font-size: 24px;
  font-weight: 600;
}

.blog-left-body {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  margin-top: 10px;
  overflow: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.blog-card {
  min-width: 31.8%;
}


.blog-scroll-container {
  margin-bottom: 50px;
}




.blog-all-container {
  margin-bottom: 60px;
}

.blog-all-container h2 {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 10px;
}

.blog-all {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2%;
}

.blog-all .blog-all-card {
  width: 32.5%;
  margin-bottom: 1.2%;
  transition: all 0.3s ease-in-out;
}

.blog-all-card:hover {
  box-shadow: -4px 4px 6px 2px #ababab;
  transform: scale(1.01);
}


#readMoreBtn {
  display: block;
  margin: 20px auto;
  padding: 10px 30px;
  cursor: pointer;
}






/* scroll container for faqs */
#faqAccordion {
  margin-right: 10px;
}

.scroll-container {
  max-height: 335px;
  overflow-y: auto;
}

/* Scrollbar track */
.scroll-container::-webkit-scrollbar {
  width: 3px;
}

/* scrollbar track background */
.scroll-container::-webkit-scrollbar-track {
  background: #eaeaea;
}

/* Scrollbar thumb */
.scroll-container::-webkit-scrollbar-thumb {
  background-color: #d87c6a;
  border-radius: 4px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
  background-color: #b85b49;
}








/* filter dropdown in blog page */
.filter-dropdown {
  position: absolute;
  right: 0;
  top: 30px;
  background-color: #fff;
  border: 1px solid #d87c6a;
  list-style: none;
  padding: 4px 0;
  margin: 0;
  width: 150px;
  z-index: 1000;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.filter-dropdown li {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.filter-dropdown li:hover {
  background-color: #f1d7d2;
}

.dropdown {
  position: relative;
}

.dropdown i {
  transition: all 0.3s ease-in-out;
}

.dropdown i:hover {
  color: #303030 !important;
}