/* #f83435 */

.elegant-footer {
  background-color: #080808;
  color: #fff;
  padding: 60px 0;
  position: relative;
  z-index: 2;
  width: 100%;
}

.elegant-footer {
  background-color: #080808;
  color: #fff;
  padding: 60px 0;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ============================================
   PREMIUM VISUAL STYLE SYSTEM
   ============================================ */
:root {
  /* Colors */
  --primary-red: #dd1900;
  --dark-base: #0f0f0f;
  --soft-light: #fafbfc;
  --text-dark: #000;
  --text-muted: #666;

  /* Shadows */
  --shadow-level1: 0 6px 18px rgba(0, 0, 0, 0.08);
  --shadow-level2: 0 12px 30px rgba(0, 0, 0, 0.12);
  --shadow-level3: 0 18px 40px rgba(0, 0, 0, 0.15);

  /* Border Radius */
  --radius-standard: 14px;
  --radius-large: 16px;
  --radius-pill: 30px;

  /* Transitions */
  --transition-smooth: 0.6s cubic-bezier(.22, .61, .36, 1);
  --transition-fast: 0.3s cubic-bezier(.22, .61, .36, 1);
}

/* ============================================
   GLOBAL ANIMATION SYSTEM
   ============================================ */

/* Fade Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade Left Animation */
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(.22, .61, .36, 1), transform 0.7s cubic-bezier(.22, .61, .36, 1);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade Right Animation */
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(.22, .61, .36, 1), transform 0.7s cubic-bezier(.22, .61, .36, 1);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Zoom Soft Animation */
.zoom-soft {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s cubic-bezier(.22, .61, .36, 1), transform 0.5s cubic-bezier(.22, .61, .36, 1);
}

.zoom-soft.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Animation Delays */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

.stagger-6 {
  transition-delay: 0.6s;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
  color: #000;
  margin: 0;
  padding: 0;
  font-size: 16px;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hclass {
  padding: 0px;
  color: #000;
  font-weight: 600;
  margin-bottom: 1rem !important;
  font-family: 'Poppins', sans-serif;

}

h1,
.hclass {
  font-size: 2rem;
}

h2,
.h2class {
  font-size: 1.8rem;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 12px;
}

a {
  color: #b72626;
  text-decoration: none;
}

a:hover {
  color: #b72626;
  text-decoration: none;
}

/* Navbar */
.navbar .nav-link {
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 18px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #b72626;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  background: #fff;
  border-radius: 0.25rem;
}

/* ============================================
   HERO SECTION - CINEMATIC IMMERSIVE ENTRY
   ============================================ */

/* Hero Carousel Container */
#heroCarousel {
  position: relative;
  overflow: hidden;
}

/* Hero Slide with Parallax Effect */
.hero-slide {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background with Parallax */
.hero-slide .carousel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out;
  will-change: transform;
}

/* Parallax zoom effect on active slide */
.carousel-item.active .carousel-bg {
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}

/* Dark Gradient Overlay - More Cinematic */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

/* Hero Content Container */
.hero-slide .container {
  z-index: 2;
  position: relative;
}

/* Hero Typography */
.hero-slide .display-4 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-slide .lead {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Carousel Indicators */
.carousel-indicators.custom-indicators {
  position: absolute;
  bottom: 5%;
  left: 0%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.custom-indicators button {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border: none;
  border-radius: 50%;
  padding: 0;
  opacity: 1;
  transition: all 0.3s ease;
}

.custom-indicators button.active {
  background-color: #b72626;
}

.custom-indicators button.active::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 25px;
  height: 25px;
  border: 2px solid #b72626;
  border-radius: 50%;
}

.custom-indicators.carousel-indicators [data-bs-target] {
  width: 5px;
  height: 5px;
  margin-right: 20px;
}

/* ============================================
   HERO SEARCH BOX - FLOATING GLASS DESIGN
   ============================================ */

.hero-search-box {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 0 15px;
  width: 100%;
  max-width: 900px;
}

.hero-search {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-standard);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-fast);
}

.hero-search:hover {
  box-shadow: 0 12px 40px rgba(221, 25, 0, 0.2);
  transform: translateY(-2px);
}

.hero-search input,
.hero-search select {
  border: none;
  border-radius: 0;
  padding: 0.5rem;
  text-align: center;
  background: transparent;
  font-size: 15px;
}

.hero-search input:focus,
.hero-search select:focus {
  outline: none;
  box-shadow: none;
  background: rgba(221, 25, 0, 0.05);
}

.hero-search .btn {
  border-radius: var(--radius-standard);
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  transition: all var(--transition-fast);
}

.hero-search .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(221, 25, 0, 0.3);
}

.hero-search select {
  background: transparent;
  font-size: 15px;
  color: #333;
  appearance: none;
}

.hero-search label {
  font-size: 14px !important;
  font-weight: 600;
  color: #666;
  margin-bottom: 0.25rem;
}

.frmmiddl {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive Hero Search */
@media (max-width: 768px) {
  .hero-search-box {
    bottom: 10%;
    padding: 0 20px;
  }

  .hero-search {
    flex-direction: column;
    border-radius: 12px;
  }

  .hero-search input,
  .hero-search select,
  .hero-search .btn {
    border-radius: 0 !important;
    width: 100%;
    padding: 12px 15px;
  }

  .frmmiddl {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .hero-slide .display-4 {
    font-size: 2rem;
  }

  .hero-slide {
    height: 70vh;
  }
}

/* ============================================
   CATEGORY CARDS - FLOATING PREMIUM GRID
   ============================================ */

.banner-cards-wrap {
  padding: 3rem 0;
  background: var(--soft-light);
}

.banner-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-large);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-level1);
}

.banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
  transition: all var(--transition-smooth);
}

.banner-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-level3);
}

.banner-card:hover::before {
  background: linear-gradient(180deg, rgba(221, 25, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.banner-card .overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.banner-card .card-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-fast);
}

.banner-card:hover .card-title {
  transform: translateY(-4px);
}

.banner-card .card-hover-content {
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-fast);
}

.banner-card:hover .card-hover-content {
  opacity: 1;
  transform: translateY(0);
}

.banner-card .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-standard);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.banner-card .explore-link:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(221, 25, 0, 0.3);
}

.banner-card .arrow {
  transition: transform var(--transition-fast);
}

.banner-card .explore-link:hover .arrow {
  transform: translateX(4px);
}

/* Responsive Category Cards */
@media (max-width: 768px) {
  .banner-card {
    height: 220px;
  }

  .banner-card .card-title {
    font-size: 1.25rem;
  }
}

.frmmiddl {
  border-left: 1px solid #dddd;
  border-right: 1px solid #dddd;
}

/* Custom Carousel Indicators */
.custom-indicators {
  bottom: 20px;
}

.custom-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  border: none;
  transition: background-color 0.3s ease;
}

.custom-indicators .active {
  background-color: #b72626;
}

/* ============================================
   FEATURE STORY - CINEMATIC SPLIT SECTION
   ============================================ */

#connector-section {
  background: #fff;
  padding: 4rem 0 2rem;
}

#connector-section .h2class {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

#connector-section .chsmid {
  color: var(--primary-red);
}

#connector-section .taglines {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.contentarea_section {
  padding: 3rem 0;
  background: #fff;
}

.contentarea_section .about_content {
  background: linear-gradient(135deg, var(--primary-red) 0%, #b72626 100%);
  padding: 3rem;
  border-radius: var(--radius-large);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-level2);
}

.contentarea_section .about_content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 30px 30px;
  opacity: 0.3;
}

.contentarea_section .background_layer {
  display: none;
}

.contentarea_section .layer_content {
  position: relative;
  z-index: 2;
}

.contentarea_section .section_title h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.contentarea_section .section_title h2 strong {
  font-weight: 700;
  display: block;
}

.contentarea_section .section_title p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.contentarea_section .heading_line {
  margin-bottom: 1.5rem;
}

.contentarea_section .heading_line::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin-top: 1rem;
}

/* Right Side - Floating Image Carousel */
.contentarea_box {
  position: relative;
}

.contentarea_container {
  background: #fff;
  border-radius: var(--radius-large);
  padding: 2rem;
  box-shadow: var(--shadow-level3);
  position: relative;
}

.contentarea_xcaro {
  position: relative;
}

.contentareas {
  gap: 1rem;
}

.images_box {
  transition: all var(--transition-smooth);
}

.images_box:hover {
  transform: translateY(-8px);
}

.contentarea_img {
  border-radius: var(--radius-standard);
  overflow: hidden;
  box-shadow: var(--shadow-level1);
  transition: all var(--transition-fast);
}

.contentarea_img:hover {
  box-shadow: var(--shadow-level2);
}

.contentarea_img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-smooth);
}

.contentarea_img:hover img {
  transform: scale(1.05);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background: rgba(221, 25, 0, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all var(--transition-fast);
}

#contentcarousel:hover .carousel-control-prev,
#contentcarousel:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary-red);
  transform: translateY(-50%) scale(1.1);
}

/* Responsive Feature Story */
@media (max-width: 991px) {
  .contentarea_section .about_content {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .contentarea_section .section_title h2 {
    font-size: 2rem;
  }

  .contentarea_container {
    margin-left: 0 !important;
  }
}

/* ============================================
   FEATURED PGs - PREMIUM CARD RAIL
   ============================================ */

.featuredpg {
  padding: 4rem 0;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.featuredpg .chsmid {
  color: var(--primary-red);
  font-size: 2.5rem;
  font-weight: 700;
}

/* Property cards will be styled via properties-carousel.php specific styles */

/* ============================================
   EXPLORE GRID - VISUAL BREAK
   ============================================ */

.explorepg {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--soft-light) 0%, #fff 100%);
}

.explorepg h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.explorepg .serimg {
  max-width: 200px;
  margin-bottom: 1.5rem;
}

.explorepg .btn {
  border-radius: var(--radius-standard);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.explorepg .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(221, 25, 0, 0.3);
}

/* Marquee Section */
.marquee-section {
  position: relative;
}

.marquee-box {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.marquee-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.marquee-inner img {
  width: 100%;
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-level1);
  transition: all var(--transition-fast);
}

.marquee-inner img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-level2);
}

.marquee-up .marquee-inner {
  animation: scrollUp 20s linear infinite;
}

.marquee-down .marquee-inner {
  animation: scrollDown 20s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

/* ============================================
   TRUST STATS - MODERN KPI STRIP
   ============================================ */

.stats-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 5rem 0;
  position: relative;
}

.stats-section .card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-large);
  padding: 2.5rem 1.5rem;
  transition: all var(--transition-smooth);
  height: 100%;
}

.stats-section .card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(221, 25, 0, 0.2);
}

.stats-section .card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 0.5rem !important;
}

.stats-section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   WHY CHOOSE ROOMADDA - 3×3 GRID
   ============================================ */

.feat {
  padding: 5rem 0;
  background: var(--soft-light);
}

.feat .section-head h4 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.feat .section-head span {
  color: var(--primary-red);
}

.feat .row {
  gap: 24px 0;
}

.feat .item {
  background: #fff;
  border-radius: var(--radius-large);
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: var(--shadow-level1);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feat .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(221, 25, 0, 0.15);
}

.feat .item .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.feat .item:hover .icon {
  transform: scale(1.1);
}

.feat .feature_box_col_one {
  background: rgba(221, 25, 0, 0.1);
  color: var(--primary-red);
}

.feat .feature_box_col_two {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

.feat .feature_box_col_three {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
}

.feat .feature_box_col_four {
  background: rgba(241, 196, 15, 0.1);
  color: #f1c40f;
}

.feat .feature_box_col_five {
  background: rgba(155, 89, 182, 0.1);
  color: #9b59b6;
}

.feat .feature_box_col_six {
  background: rgba(230, 126, 34, 0.1);
  color: #e67e22;
}

.feat .item h6 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
}

.feat .item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Responsive Why Choose */
@media (max-width: 768px) {
  .feat .item {
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   CTA BAND - HIGH IMPACT
   ============================================ */

.consult-section {
  background: linear-gradient(135deg, var(--dark-base) 0%, #1a1a1a 100%);
  color: #fff;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.consult-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(221, 25, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.consult-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.consult-section p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.consult-section .btn {
  border-radius: var(--radius-pill);
  font-weight: 600;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  box-shadow: 0 8px 20px rgba(221, 25, 0, 0.3);
  position: relative;
  z-index: 2;
}

.consult-section .btn:hover {
  background-color: #fff !important;
  color: var(--dark-base) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(221, 25, 0, 0.4);
}

/* ============================================
   TESTIMONIAL STORY - HIGH-END SECTION
   ============================================ */

.testimonial_section {
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 5rem 0;
}

.testimonial_section:after {
  display: block;
  clear: both;
  content: "";
}

.testimonial_section .about_content {
  background-color: #000;
  padding-top: 40px;
  padding-right: 210px;
  padding-bottom: 40px;
  position: relative;
}

.testimonial_section .about_content .background_layer {
  background-color: #000;
  width: auto;
  margin-left: -200px;
  right: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.testimonial_section .about_content .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}

.testimonial_section .about_content .layer_content .section_title {
  margin-bottom: 24px;
  position: relative;
}

.testimonial_section .about_content .layer_content .section_title:after {
  display: block;
  clear: both;
  content: "";
}

.testimonial_section .about_content .layer_content .section_title h5 {
  color: #fff;
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  color: #818a8f;
  margin-top: -5px;
  margin-bottom: 6px;
}

.testimonial_section .about_content .layer_content .section_title h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 45px;
  line-height: 50px;
  padding-bottom: 51px;
  margin-bottom: 0px;
  color: #fff;
}

.testimonial_section .about_content .layer_content .section_title h2 strong {
  font-weight: 600 !important;
  width: 100%;
  display: block;
}

.testimonial_section .about_content .layer_content .section_title .heading_line {
  position: relative;
}

.testimonial_section .about_content .layer_content .section_title .heading_line span {
  transition: all 0.5s ease-in-out 0s;
  position: relative;
}

.testimonial_section .about_content .layer_content .section_title .heading_line span:after {
  content: "";
  right: auto;
  left: 69px;
  position: absolute;
  bottom: 28px;
  width: 17px;
  margin-left: 0;
  border-bottom-width: 3px;
  border-bottom-color: #cacaca;
  border-bottom-style: solid;
}

.testimonial_section .about_content .layer_content .section_title .heading_line:after {
  content: "";
  left: 1%;
  margin-left: 0;
  position: absolute;
  bottom: 28px;
  width: 59px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #b72626;
}

.testimonial_section .about_content .layer_content .section_title p {
  color: #fff;
  margin: 0 0 15px;
}

.testimonial_section .about_content .layer_content a {
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.testimonial_section .about_content .layer_content a i {
  font-size: 18px;
  vertical-align: middle;
}

.testimonial_section .about_content .layer_content a:hover {
  color: #b72626;
}

.testimonial_section .testimonial_box {
  margin-top: 60px !important;
  position: relative;
}

.testimonial_section .testimonial_box .testimonial_container {
  background-color: #b72626;
  margin-left: -170px !important;
  position: relative;
}

.testimonial_section .testimonial_box .testimonial_container .background_layer {
  background-color: #b72626;
  width: auto;
  margin-right: -200px;
  right: 0;
  background-image: url(../images/map.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel {
  display: block;
  position: relative;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials {
  margin: 10px 0 10px 0;
  padding: 62px 0px 72px 50px;
  position: relative;
  text-align: center;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.13);
  margin-left: 70px;
  margin-top: 0px;
  padding: 45px 40px 45px 40px;
  z-index: 1;
  position: relative;
  background-color: #fff;
  transition: all 0.5s ease-in-out 0s;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption {
  margin-bottom: 15px;
  position: relative;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption:after {
  content: "";
  width: 30px;
  display: block;
  height: 2px;
  text-align: center;
  left: 46%;
  margin-top: 6px;
  background-color: #b72626;
  position: absolute;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption h6 {
  padding-top: 0;
  margin-bottom: -5px;
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  color: #000;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption span {
  font-size: 12px;
  color: #9f9f9f;
  margin: 0;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content p {
  padding: 0;
  margin: 0;
  padding-top: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #5d6576;
  font-style: italic;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img {
  border: none;
  position: absolute;
  top: 0;
  left: 55px;
  top: 80px;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img img {
  border: 5px solid #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  width: 35%;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev {
  position: absolute;
  top: 130px;
  right: 42px;
  border-radius: 0;
  background: #b72626;
  display: block;
  outline: 0;
  width: 34px;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev:hover {
  background: #000;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next {
  position: absolute;
  top: 130px;
  right: 5px;
  border-radius: 0;
  display: block;
  background: #b72626;
  outline: 0;
  width: 34px;
  text-align: center;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next:hover {
  background: #000;
}

@media all and (max-width: 991px) {
  .testimonial_section .about_content {
    padding-right: 15px !important;
  }

  .testimonial_section .about_content .background_layer {
    width: 200% !important;
  }

  .testimonial_section .testimonial_box {
    margin-top: 0 !important;
  }

  .testimonial_section .testimonial_box .background_layer {
    width: 200% !important;
    margin-left: -200px;
  }

  .testimonial_section .testimonial_box .about_content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 28% !important;
  }

  .testimonial_section .testimonial_box .testimonial_container {
    margin-left: 0px !important;
  }

  .testimonial_section .testimonial_box .testimonial_container .testimonials {
    margin: 0px 0 20px 0;
  }

  .testimonial_section .testimonial_box .testimonial_container .testimonials .testimonial_content {
    margin-left: 0px !important;
  }

  .testimonial_section .testimonial_box .testimonial_container .testimonials .images_box {
    display: none;
  }

  .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content {
    margin-top: 0 !important;
    padding: 15px 40px 15px 40px !important;
  }

  .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials {
    margin: 10px 0 10px 0;
    padding: 20px 0px 20px 0px;
  }

  .testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev,
  .testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next {
    top: 60px;

  }

  .testimonial_section .about_content .layer_content .section_title h2 {
    font-size: 1.6rem;
  }
}

.testimonial_section .btn-warning {
  border-radius: 0 !important;
}

.testimonial_section .btn-warning:hover {
  background: #fff !important;
}

/* Footer */
.elegant-footer {
  background-color: #080808 !important;
  color: #cccc !important;
  font-family: 'Montserrat', sans-serif;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  position: relative;
  width: 100%;
  min-height: auto !important;
  height: auto !important;
  margin: 0 !important;
}

/* Removed legacy pseudo-elements, transforms, and padding overrides for .elegant-footer */



.elegant-footer p,
.elegant-footer div,
.elegant-footer a {
  color: #cccc !important;
}

.elegant-footer .footer-title {
  color: #b72626;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cccc;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links a:hover,
.elegant-footer a:hover {
  color: #b72626 !important;
  text-decoration: underline;
}

.footer-social-icons a {
  display: inline-block;
  color: #c8a87c;
  font-size: 18px;
  margin-right: 15px;
  transition: 0.3s;
}

.footer-social-icons a:hover {
  color: #b72626;
}

.footer-divider {
  border-color: #ccc;
}

/* Feature Banner Cards */
.banner-cards-wrap {
  background-color: #fff;
}

.banner-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 80%;
}

.banner-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-6px);
}

.banner-card .overlay {
  position: relative;
  width: 100%;
  padding: 20px;
  color: #fff;
  z-index: 2;
  transition: all 0.4s ease;
  margin-top: 4rem !important;
}

.banner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
  transition: background 0.4s ease;
  z-index: 1;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  transition: opacity 0.3s ease;
}



.card-desc {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.explore-link {
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.arrow {
  transition: transform 0.3s ease;
}

.banner-card::before {
  background: linear-gradient(to bottom, rgba(128, 128, 128, 0.3), rgba(50, 50, 50, 0.7));
}


.banner-card:hover .arrow {
  transform: translateX(5px);
}

.banner-card:hover {
  transform: translateY(5px) !important;
}

/*connector path */

header,
.cta {
  height: 100vh;
  background: #e0f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

#connector-section {

  background: #f4f4f4;
  position: relative;
  background: linear-gradient(to bottom, #f4f4f4 0%, #eaeaea 30%, #dddddd 60%, #d0d0d0 100%);

}

#connector-section0 {

  background: #f4f4f4;

}

#connector-section img {
  box-shadow: 0 12px 30px rgba(225, 225, 225, 0.25);
}

/* choose us*/
.chsmid {
  color: #b72626 !important;
}

.img-about.dots::after {
  position: absolute;
  z-index: 1;
  bottom: -50px;
  right: -70px;
  content: "";
  width: 412px;
  height: 220px;
  background: url("../images/dots.png") no-repeat;
}

.sv-con {
  position: relative;
  z-index: 1;
}

.setimg-l {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 25%;
  border: 4px solid #fff;
  border-left: 0;
}

.setimg-r {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 25%;
  border: 4px solid #fff;
  border-right: 0;
}

.taglines {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #b72626;
}

.consult-section.parallax {
  background-image: url('../images/parellexeff.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 20px;
  position: relative;
  z-index: 1;
}

.consult-section.parallax {
  background-image: url('../images/parellexeff.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 20px;
  position: relative;
  z-index: 1;
}

.consult-section.parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* dark overlay */
  z-index: -1;
}

.stats-section.parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* dark overlay */
  z-index: -1;
}

.consult-section h2,
.consult-section p {
  color: #fff;
}

.consult-section .btn {
  background-color: #b72626;
  color: #fff;
  border: none;
  transition: 0.3s ease;
}

.consult-section .btn:hover {
  background-color: #fff;
  color: #000;
}

.section-title {
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-weight: 400;
  display: inline-block;
  position: relative;
}

.section-title:after,
.section-title:before {
  content: '';
  position: absolute;
  bottom: 0;
}

.display-4 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.btn-warning {
  --bs-btn-color: #fff;
  --bs-btn-bg: #b72626;
  --bs-btn-border-color: #b72626;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #b72626;
  --bs-btn-hover-border-color: #b72626;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b72626;
  --bs-btn-active-border-color: #b72626;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #b72626;
  --bs-btn-disabled-border-color: #b72626;
}

.hero-search ::placeholder {
  color: #888;
  opacity: 1;
  /* Firefox */
}

.hero-search ::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #888;
}


.highlight {
  color: #b72626;
  font-weight: 500;
}

/* Hide placeholder when user types */
.input-wrapper input:not(:placeholder-shown)+.animated-placeholder {
  display: none;
}


#whats-chat {
  position: fixed;
  right: 3%;
  bottom: 10%;
  height: auto;
  width: auto;
  background: #25D366;
  padding: 12.5px;
  border-radius: 50px;
}

#whats-chat:hover {
  cursor: pointer;
  box-shadow: 2px 2px 15px #ccc;
  bottom: 11%;
}

/*===============================*/
#chat-box {
  position: fixed;
  right: -500px;
  bottom: 25%;
  width: 250px;
  height: 200px;
  transition: all .5s;
}

#chat-top {
  width: 100%;
  line-height: 2;
  background: rgb(18, 140, 126);
  color: white;
  text-align: center;
  border-radius: 5px 5px 0 0;
  padding: 0 10px;
}

#chat-msg {
  background: #ece5dd;
  padding: 10px;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 0 25px -10px #999;
}

#chat-msg p {
  font-size: 14px;
  padding: 5px;
  background: white;
  border-radius: 0 15px 15px 15px;
  margin-bottom: 10px;
}

#chat-form {
  display: flex;
}

.chat-in {
  width: 80%;
}

#chat-form input {
  border-radius: 5px 0 5px 5px;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 5px;
  line-height: 2;
}

#send-btn {
  width: 20%;
  padding: 0 10px;
}

#chat-top-right {
  float: right;
  padding: 5px 0;
}

#close-box {
  position: absolute;
  right: -5px;
  top: -3px;
}

.whatname {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}

.right {
  float: right
}

.clear {
  clear: both
}


#whats-chat {
  position: fixed;
  right: 1%;
  bottom: 10%;
  height: auto;
  width: auto;
  background: #25D366;
  padding: 12.5px;
  border-radius: 50px;
  z-index: 9;
}

#whats-chat:hover {
  cursor: pointer;
  box-shadow: 2px 2px 15px #ccc;
  bottom: 11%;
}

/*===============================*/

.whatname {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}

.right {
  float: right
}

.clear {
  clear: both
}

.hero-search-box {
  width: 100%;
  padding: 10px 0;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  /* Force one line */
  width: fit-content;
}

.animated-placeholder {
  position: absolute;
  bottom: 7%;
  left: 55%;
  font-size: 16px;
  color: #888;
  pointer-events: none;
  height: 50%;
  transform: translate(-50%);
}

.animated-placeholder-dt {
  position: absolute;
  bottom: 7%;
  font-size: 16px;
  color: #888;
  pointer-events: none;
  width: 100%;
  background: #fff;
  height: 50%;
}

.form-control-lg,
.form-select {
  padding-top: 22px;
}

.btn-challenge {
  white-space: nowrap;
  flex-shrink: 0;
}

#contentcarousel .carousel-control-prev {
  left: -15%;
}

#contentcarousel .carousel-control-next {
  right: -15%;
}

/*#contentcarousel{
	border:1px solid #878787;
	border-left:5px solid #878787;
	border-bottom:8px solid #878787;
	border-radius:0.5rem;
	padding:2rem;
}*/
.in-txt {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 2rem;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  margin: 1%;
  z-index: 2;
  font-size: 1.1rem;
}

.bck-txt {
  background: #666666;
  border-radius: 1rem;
  position: relative;
  height: 215px;
  rotate: -10deg;
  z-index: 1;
}

.carousel-bg {

  background-position: center;
  transform: scale(1.2);
  transition: transform 1s ease-in-out;
  z-index: 1;
}

.carousel-item .carousel-bg {
  animation: zoomOutSlow 10s ease-in-out forwards;
}

@keyframes zoomOutSlow {
  0% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

#contentcarousel .carousel-inner {
  overflow: unset;
}

.card1img {
  position: absolute;
  top: -1.99rem;
  left: -1.2rem;
}



.cardimg img {
  border: 2px solid #fff;
}

.image-stack {
  position: relative;
  /*height: 300px;*/
}

.stack-img {
  /*position: absolute;*/
  border-radius: 10px;
  transition: transform 0.3s;
  width: 100%;
  height: auto;
}

.stack-img.img1 {
  top: 0;
  left: 0;
  /* transform: rotate(-5deg) !important;*/
  border-right: 5px solid #fff;
  border-bottom: 3px solid #fff;
  border-top: 2px solid #fff;
}

.stack-img.img2 {
  bottom: -10%;
  left: 5%;
  /*	transform: rotate(3deg);*/
  border-top: 3px solid #fff;
  border-right: 5px solid #fff;
}

.stack-img.img3 {
  top: 50%;
  left: -5%;
  /*	transform: rotate(-2deg);*/
  border-top: 5px solid #fff;
  border-left: 3px solid #fff;
}

.stack-img:hover {
  transform: scale(1.05);
  z-index: 10;
}

.in-txt h2 {
  font-size: 1.5rem;
}

.marquee-box {
  height: 400px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  background: #f4f4f4;
  border: 5px solid #fff;
}

.marquee-inner {
  display: flex;
  flex-direction: column;
  animation: scroll-up 20s linear infinite;
}

.marquee-down .marquee-inner {
  animation: scroll-down 20s linear infinite;
}

.marquee-inner img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

.serimg {
  border-radius: 9%;
  margin-left: auto;
  margin-right: auto;
  width: 40% !important;
  margin-bottom: 2rem;
}


/* Content Area */
.contentarea_section {
  display: block;
  overflow: hidden;
}

.contentarea_section:after {
  display: block;
  clear: both;
  content: "";
}

.contentarea_section .about_content {
  background-color: #b72626;
  padding-top: 40px;
  padding-right: 210px;
  padding-bottom: 40px;
  position: relative;
}

.contentarea_section .about_content .background_layer {
  background-color: #b72626;
  width: auto;
  margin-left: -200px;
  right: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.contentarea_section .about_content .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}

.contentarea_section .about_content .layer_content .section_title {
  margin-bottom: 24px;
  position: relative;
}

.contentarea_section .about_content .layer_content .section_title:after {
  display: block;
  clear: both;
  content: "";
}

.contentarea_section .about_content .layer_content .section_title h5 {
  color: #fff;
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  color: #818a8f;
  margin-top: -5px;
  margin-bottom: 6px;
}

.contentarea_section .about_content .layer_content .section_title h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 35px;
  line-height: 45px;
  padding-bottom: 30px;
  margin-bottom: 0px !important;
  color: #fff;
}

.contentarea_section .about_content .layer_content .section_title h2 strong {
  font-weight: 600 !important;
  width: 100%;
  display: block;
}

.contentarea_section .about_content .layer_content .section_title .heading_line {
  position: relative;
}

.contentarea_section .about_content .layer_content .section_title .heading_line span {
  transition: all 0.5s ease-in-out 0s;
  position: relative;
}

.contentarea_section .about_content .layer_content .section_title .heading_line span:after {
  content: "";
  right: auto;
  left: 69px;
  position: absolute;
  bottom: 28px;
  width: 17px;
  margin-left: 0;
  border-bottom-width: 3px;
  border-bottom-color: #cacaca;
  border-bottom-style: solid;
}

.contentarea_section .about_content .layer_content .section_title .heading_line:after {
  content: "";
  left: 1%;
  margin-left: 0;
  position: absolute;
  bottom: 28px;
  width: 59px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #000;
}

.contentarea_section .about_content .layer_content .section_title p {
  color: #fff;
  margin: 0 0 15px;
}

.contentarea_section .about_content .layer_content a {
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.contentarea_section .about_content .layer_content a i {
  font-size: 18px;
  vertical-align: middle;
}

.contentarea_section .about_content .layer_content a:hover {
  color: #b72626;
}

.contentarea_section .contentarea_box {
  margin-top: 60px !important;
  position: relative;
}

.contentarea_section .contentarea_box .contentarea_container {
  background-color: #000;
  margin-left: -170px !important;
  position: relative;
}

.contentarea_section .contentarea_box .contentarea_container .background_layer {
  background-color: #000;
  width: auto;
  margin-right: -200px;
  right: 0;
  background-image: url(../images/map.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}

.contentarea_section .contentarea_box .contentarea_container .layer_content {
  position: relative;
  z-index: 9;
  height: 100%;
}

.contentarea_section .contentarea_box .contentarea_container .layer_content .contentarea_xcaro {
  display: block;
  position: relative;
}

.contentarea_section .contentarea_box .contentarea_container .layer_content .contentarea_xcaro .contentareas {
  padding: 35px 0px 10px 50px;
  position: relative;
  text-align: center;
}

.contentarea_section .contentarea_box .contentarea_container .layer_content .contentarea_xcaro .contentareas .contentarea_content {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.13);
  margin-left: 150px;
  margin-top: 69px;
  padding: 45px 40px 45px 40px;
  z-index: 1;
  position: relative;
  background-color: #fff;
  transition: all 0.5s ease-in-out 0s;
}

.contentarea_section .contentarea_box .contentarea_container .layer_content .contentarea_xcaro .contentareas .contentarea_content .contentarea_caption {
  margin-bottom: 15px;
  position: relative;
}

.contentarea_section .contentarea_box .contentarea_container .layer_content .contentarea_xcaro .contentareas .contentarea_content .contentarea_caption:after {
  content: "";
  width: 30px;
  display: block;
  height: 2px;
  text-align: center;
  left: 46%;
  margin-top: 6px;
  background-color: #000;
  position: absolute;
}

.contentarea_section .contentarea_box .contentarea_container .layer_content .contentarea_xcaro .contentareas .contentarea_content .contentarea_caption h6 {
  padding-top: 0;
  margin-bottom: -5px;
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  color: #000;
}

.contentarea_section .contentarea_box .contentarea_container .layer_content .contentarea_xcaro .contentareas .contentarea_content .contentarea_caption span {
  font-size: 12px;
  color: #9f9f9f;
  margin: 0;
}

.contentarea_section .contentarea_box .contentarea_container .layer_content .contentarea_xcaro .contentareas .contentarea_content p {
  padding: 0;
  margin: 0;
  padding-top: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #5d6576;
  font-style: italic;
}

.contentarea_section .contentarea_box .contentarea_container .layer_content .contentarea_xcaro .contentareas .images_box .contentarea_img img {
  border: 5px solid #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}

.contentarea_section .contentarea_box .contentarea_container .owl-nav .owl-prev {
  position: absolute;
  top: 165px;
  right: 42px;
  border-radius: 0;
  background: #000;
  display: block;
  outline: 0;
  width: 34px;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}

.contentarea_section .contentarea_box .contentarea_container .owl-nav .owl-prev:hover {
  background: #b72626;
}

.contentarea_section .contentarea_box .contentarea_container .owl-nav .owl-next {
  position: absolute;
  top: 165px;
  right: 5px;
  border-radius: 0;
  display: block;
  background: #b72626;
  outline: 0;
  width: 34px;
  text-align: center;
  line-height: 34px;
  height: 34px;
  color: #fff;
  font-size: 23px;
  margin-top: -20px;
  transition: all 0.3s ease-in-out;
}

.contentarea_section .contentarea_box .contentarea_container .owl-nav .owl-next:hover {
  background: #b72626;
}

@media all and (max-width: 991px) {
  .contentarea_section .about_content {
    padding-right: 15px !important;
  }

  .contentarea_section .about_content .background_layer {
    width: 200% !important;
  }

  .contentarea_section .contentarea_box {
    margin-top: 0 !important;
  }

  .contentarea_section .contentarea_box .background_layer {
    width: 200% !important;
    margin-left: -200px;
  }

  .contentarea_section .contentarea_box .about_content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 28% !important;
  }

  .contentarea_section .contentarea_box .contentarea_container {
    margin-left: -15px !important;
  }

  .contentarea_section .contentarea_box .contentarea_container .contentareas {
    margin: 0px 0 20px 0;
    padding: 20px 0px 0px 0px !important;
  }

  .contentarea_section .contentarea_box .contentarea_container .contentareas .contentarea_content {
    margin-left: -36px !important;
  }

}

.contentarea_section .btn-warning {
  border-radius: 0 !important;
}

.contentarea_section .btn-warning:hover {
  background: #fff !important;
}

.navbar {
  background: #000 !important;
}

@media (max-width: 768px) {
  #myCarousel .carousel-inner .carousel-item>div:first-child {
    display: block;
  }
}

#myCarousel .carousel-inner .carousel-item.active,
#myCarousel .carousel-inner .carousel-item-start,
#myCarousel .carousel-inner .carousel-item-next,
#myCarousel .carousel-inner .carousel-item-prev {
  display: flex;
  transition-duration: 10s;
}

/* display 4 */
@media (min-width: 768px) {

  #myCarousel .carousel-inner .carousel-item-right.active,
  #myCarousel .carousel-inner .carousel-item-next,
  #myCarousel .carousel-item-next:not(.carousel-item-start) {
    transform: translateX(25%) !important;
  }

  #myCarousel .carousel-inner .carousel-item-left.active,
  #myCarousel .carousel-item-prev:not(.carousel-item-end),
  #myCarousel .active.carousel-item-start,
  #myCarousel .carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-25%) !important;
  }

  #myCarousel .carousel-item-next.carousel-item-start,
  #myCarousel .active.carousel-item-end {
    transform: translateX(0) !important;
  }

  #myCarousel .carousel-inner .carousel-item-prev,
  #myCarousel .carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-25%) !important;
  }
}

#myCarousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

#myCarousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#myCarousel .carousel-control-next-icon,
#myCarousel .carousel-control-prev-icon {
  background-color: #b72626;
  border-radius: 0.25rem;
}

#myCarousel .carousel-control-prev {
  left: -5%;
  bottom: unset;
  top: 50%;
  transform: translate(0, -50%);
}

#myCarousel .carousel-control-next {
  right: -5%;
  bottom: unset;
  top: 50%;
  transform: translate(0, -50%);
}

#myCarousel img {
  height: 230px;
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

#myCarousel .card {
  border: 0;
  padding: 5px !important;
  position: relative;
}

.feacttop {
  top: 10px;
  position: absolute;
}

.fevtag {
  background: #dddd;
  color: #000;
  padding: 4px 8px 3px 8px;
  left: 10px;
  border-radius: 2rem;
  font-size: 14px;
}

.fevicn {
  text-align: right;
  right: 10px;
}

.explorepg {
  background: url('../images/dots.png');
}

.section-head {
  margin-bottom: 10px;
}

.section-head h4 {
  position: relative;
  padding: 0;
  color: #b72626;
  line-height: 1;
  letter-spacing: 0.3px;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
  margin-bottom: 30px;
}

.section-head h4:before {
  content: '';
  width: 60px;
  height: 3px;
  background: #b72626;
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}

.section-head h4 span {
  font-weight: 700;
  padding-bottom: 5px;
  color: #2f2f2f
}

p.service_text {
  color: #cccccc !important;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.section-head p,
p.awesome_line {
  color: #818181;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.extra-text {
  font-size: 34px;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 25px;
  position: relative;
  text-transform: none;
}

.extra-text::before {
  content: '';
  width: 60px;
  height: 3px;
  background: #b72626;
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}

.extra-text span {
  font-weight: 700;
  color: #b72626;
}

.item {
  background: #fff;
  text-align: center;
  padding: 10px;
  -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  border: 5px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 1.5rem;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover {
  background: #b72626;
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover .item,
.item:hover span.icon {
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover h6,
.item:hover p {
  color: #fff;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item .icon {
  font-size: 40px;
  margin-bottom: 25px;
  color: #b72626;
  width: 90px;
  height: 90px;
  line-height: 96px;
  border-radius: 50px;
}

.item .feature_box_col_one {
  background: rgba(247, 198, 5, 0.20);
  color: #b72626
}

.item .feature_box_col_two {
  background: rgba(255, 77, 28, 0.15);
  color: #b72626
}

.item .feature_box_col_three {
  background: rgba(0, 147, 38, 0.15);
  color: #b72626
}

.item .feature_box_col_four {
  background: rgba(0, 108, 255, 0.15);
  color: #b72626
}

.item .feature_box_col_five {
  background: rgba(146, 39, 255, 0.15);
  color: #b72626
}

.item .feature_box_col_six {
  background: rgba(23, 39, 246, 0.15);
  color: #b72626
}

.item p {
  font-size: 14px;
  line-height: 22px;
}

.item h6 {
  margin-bottom: 6px !important;
  color: #2f2f2f;
  font-size: 18px !important;
}

.mission p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
}

.mission i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #b72626;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
}

.mission .small-text {
  margin-left: 10px;
  font-size: 13px;
  color: #666;
}

.skills {
  padding-top: 0px;
}

.skills .prog-item {
  margin-bottom: 25px;
}

.skills .prog-item:last-child {
  margin-bottom: 0;
}

.skills .prog-item p {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
}

.skills .prog-item .skills-progress {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 20px;
  position: relative;
}

.skills .prog-item .skills-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #b72626;
  width: 10%;
  border-radius: 10px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.skills .prog-item .skills-progress span:after {
  content: attr(data-value);
  position: absolute;
  top: -5px;
  right: 0;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  padding: 3px 7px;
  border-radius: 30px;

}

.feat span,
.feat a,
.feat a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.modal-content {
  border-radius: 0 !important;
  overflow: hidden;
}

.input-group-text {
  border-radius: 0;
}

.form-control:focus {
  border-color: #b72626;
  box-shadow: none;
}

.glow-btn {
  border: none;
  transition: all 0.3s ease-in-out;
}

.glow-btn:hover {
  box-shadow: 0 0 10px #b72626, 0 0 20px #b72626;
  background: #a51f1f;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  color: #fff !important;
  border-radius: 0;
}

.modal-title {
  border-radius: 0 !important;
  color: #fff;
}

#stats .card-body {
  padding: 10px !important;
}

.item p {
  margin-bottom: 0px !important;
}

.display-4 {
  font-size: 3rem;
}

#myCarousel .carousel-control-next,
#myCarousel .carousel-control-prev {

  width: 2%;
  height: 15%;
}

.ronninf {
  font-size: 14px;
  color: #666;
  padding-left: 5px;
  padding-top: 5px;
}

.review-pill {
  background: transparent;
  /* your theme red */
  color: #b72626;
  font-size: 0.7rem;
}

.rating-stars {
  display: flex;
  align-items: center;
}

.stars-outer {
  position: relative;
  display: inline-block;
  font-family: FontAwesome;
  font-size: 0.7rem;
  color: #ddd;
}

.stars-outer::before {
  content: "\f005\f005\f005\f005\f005";
  /* 5 empty stars */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.stars-inner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  color: #ffc107;
}

.stars-inner::before {
  content: "\f005\f005\f005\f005\f005";
  /* 5 filled stars */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.rounded-pill {
  padding: 3px 8px 3px 0px !important;
}

.product-title {
  font-weight: bold;
  margin-bottom: 15px;
}

.checked {
  color: orange;
}

.size,
.color {
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
}

.color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.color.orange {
  background: orange;
}

.color.green {
  background: green;
}

.color.blue {
  background: blue;
}

.not-available {
  opacity: 0.5;
  text-decoration: line-through;
}

.action button {
  margin-right: 10px;
}

.preview-thumbnail img {
  width: 60px;
  height: auto;
  cursor: pointer;
}

.tab-content img {
  width: 100%;
}

.property-divider {
  height: 1px;
  background: #ccc;
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
  text-align: center !important;
  position: relative !important;
}

.property-divider .divider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 6px 15px;
  border-radius: 50%;
  border: 1px solid #b72626;
  font-size: 22px;
  color: #b72626;
}

.productlist .card {
  border: 0px !important;
}

.sidebar {
  position: sticky;
  top: 0;
  background: #000;
  padding: 30px;
  transition: all 0.3s ease;
}

.srtby {
  color: #b72626;
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  padding-bottom: 15px;
  text-align: center;
}

.srtopn {
  color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #888;
}

.pcaroindi .carousel-indicators button.thumbnail {
  width: 50px;
  height: 50px;
}

.pcaroindi .carousel-indicators button.thumbnail:not(.active) {
  opacity: 0.7;
}

.pcaroindi .carousel-indicators {
  position: static;
  margin: 0;
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
}

.aminities i {
  color: #b72626;
}

.btn-outline-danger {
  color: #b72626;
  border-color: #b72626;
}

.btn-outline-danger:hover {
  background-color: #b72626;
}

.divider-icon .fa.fa-building {
  transition: 2s all;
}

.divider-icon .fa.fa-building:hover {
  rotate: 360deg;
  transition: 2s all;
}

.productlista,
.productlista:hover {
  color: #000;
}

.visitCallbackTabsfrm .nav-link {
  color: #000;
}

.visitCallbackTabsfrm .nav-link.active {
  color: #b72626;
}

.btn-callback,
.btn-callback:hover {
  background-color: #b72626;
  color: #fff;
}

.btn-visit,
.btn-visit:hover {
  background-color: #000;
  color: #fff;
}

.btn-outline-primary {
  color: #000;
  border-color: #000;
}

.btn-outline-primary:hover {
  background-color: #b72626;
  border-color: #000;
}

#carouselExampleIndicators .carousel-item,
.pcaroindi .carousel-item {
  --bs-aspect-ratio: 75%;
  position: relative;
  width: 100%;
}

#carouselExampleIndicators .thumbnail img,
.pcaroindi .thumbnail img {
  height: 50px;
}


.masonry-gallery {
  column-count: 3;
  column-gap: 4px;
  padding: 4px;
}

@media (max-width: 768px) {
  .masonry-gallery {
    column-count: 3;
  }
}

@media (max-width: 576px) {
  .masonry-gallery {
    column-count: 1;
  }
}

.masonry-gallery a {
  display: block;
  margin-bottom: 4px;
  break-inside: avoid;
}

.masonry-gallery img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
  border: 3px solid #b72626;
  margin-bottom: 2px;
  margin-top: 2px;

}

.masonry-gallery img:hover {
  transform: scale(1.03);
}

.property-detail {
  padding: 20px;
  background: #000;
  color: #fff;
}

.property-detail h2,
.property-detail i {
  color: #fff;
}

.property-detail i {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

address {
  color: #666;
}

.roomdetails h2 {
  font-size: 1.2rem;
  margin-top: 0.7rem;
  margin-bottom: 0.7rem;
}

.roomdetails h1 {
  font-size: 1.5rem;
  margin-top: 0.7rem !important;
  margin-bottom: 0.7rem !important;
}

.base {
  background: #fff;
  padding: 5px;
  border-top-left-radius: 25%;
  text-align: center;
  box-shadow: 5px 12px 7px #999;
  border-top: 1px solid #b72626;
  transition: 1s all;
}

.base:hover {
  transform: scale(1.1);
  transition: 1s all;
}

.locnear {
  background: #fff;
  padding: 10px;
  border-radius: 0.25rem;
  font-size: 14px;
  text-align: center;
  box-shadow: 5px 12px 7px #999;
  margin-bottom: 1.5rem;
}

.locnear i {
  color: #b72626;
}

.detailfrm {
  margin: 1rem 3rem;
  background: #fff;
  padding: 3rem;
  padding-top: 1rem;
}

.propsmllft {
  font-size: 14px;
}

.contact-container {
  margin: auto;
  background: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.info-box {
  background: #000;
  color: #fff;
  padding: 30px 30px;
}

.info-item {
  margin-bottom: 30px;
}

.info-item i {
  font-size: 28px;
  color: #fff;
  margin-right: 15px;
}

.info-title {
  font-weight: 600;
  font-size: 18px;
}

.info-text {
  font-size: 15px;
  color: #ddd;
}

.contact-form {
  padding: 30px 30px;
}

.contact-container .info-box a {
  color: #fff !important;
}

.form-floating>.form-control {
  border-radius: 30px;
  padding-left: 45px;
}

.form-floating>label {
  padding-left: 45px;
}

.form-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: #b72626;
  font-size: 18px;
  z-index: 3;
}

.contact-form .position-relative {
  margin-bottom: 25px;
}

.contact-form textarea.form-control {
  border-radius: 20px;
  padding-left: 45px;
}

.btn-custom {
  background-color: #b72626;
  color: #fff;
  border-radius: 30px;
  padding: 10px 30px;
  border: none;
}

.btn-custom:hover {
  background-color: #000;
  color: #fff;
}

.bi.bi-chat-dots.form-icon {
  top: 30%;
}

.vrcode {
  padding-left: 30% !important;
}

/* === MANDATORY RECTANGULAR FAQ GRID === */
.faq-section {
  background-color: #FFFFFF !important;
  padding: 60px 0 40px 0;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 991px) {
  .faq-container {
    padding: 0 24px;
  }
}

@media (max-width: 767px) {
  .faq-container {
    padding: 0 16px;
  }
}

.faq-heading {
  text-align: center;
  margin-bottom: 30px !important;
  color: #222222;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.faq-box-card {
  background: #FFFFFF;
  border: 1px solid #EFEFEF;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.035);
  min-height: 68px;
  /* Fixed collapsed height range */
  width: 100%;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Vertically center question when collapsed */
  text-align: left;
  overflow: hidden;
  height: auto;
}

.faq-box-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-box-question {
  font-weight: 600 !important;
  font-size: 15px !important;
  color: #222222 !important;
  margin-bottom: 0 !important;
  line-height: 1.4 !important;
  transition: all 0.22s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  /* Clean spacing between icon and text */
}

.faq-box-question i {
  font-size: 17px;
  color: #b72626;
  /* RoomAdda Brand Red */
  flex-shrink: 0;
}

.faq-box-card.active {
  justify-content: flex-start;
}

.faq-box-card.active .faq-box-question {
  margin-bottom: 10px !important;
  margin-top: 2px;
}

.faq-box-answer {
  font-size: 14px !important;
  color: #555555 !important;
  line-height: 1.5 !important;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.24s ease, max-height 0.24s ease, margin-top 0.24s ease;
}

.faq-box-card.active .faq-box-answer {
  opacity: 1;
  max-height: 500px;
  /* Large enough for any answer */
  margin-top: 10px;
}

.pcaroindi img,
.pcaroindi .thumbnail img {
  border-radius: 0.25rem;
}

.roomdetails .review-pill,
.roomdetails .stars-outer {
  font-size: 1rem;
}

.sidebar {
  border-radius: 0.25rem;
}

.blogpage {
  padding-top: 80px;
  /* Note: pb-5 inside blog.php already adds padding, so 80 is enough combined */
}

.blogpage .sidebar .srtopn a {
  color: #fff !important;
}

.blog-card {
  margin-bottom: 2rem;
}

.team-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 5px 12px 7px #999;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
}

.team-photo {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-top: -65px;
  z-index: 1;
  position: relative;
  margin-bottom: 2rem;
}

.team-card .card-body {
  margin-top: -30px;
}

.team-card .bio {
  font-size: 0.95rem;
  color: #555;
}

.team-card .card-header {
  background: linear-gradient(135deg, #b72626, #020d26);
  height: 100px;
}

.blogpage .card-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.blogpage .card-text {
  font-size: 0.95rem;
  color: #555;
}

.blogpage .object-fit-cover {
  object-fit: cover;
  height: 100%;
}

.careers-header {
  background-color: #020d26;
  color: #fff;
  padding: 60px 0;
}

.careers-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.job-card {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-left: 5px solid #b72626;
  border-radius: 0.5rem;
  padding: 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

.job-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.job-title {
  color: #b72626;
  font-weight: bold;
  font-size: 1.25rem;
}

.btn-apply {
  background-color: #b72626;
  color: #fff;
}

.btn-apply:hover {
  background-color: #a01f1f;
  color: #fff;
}

.careers-header {
  background-color: #020d26;
  color: #fff;
  padding: 60px 0;
}

.careers-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.job-card {
  background-color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 20px;
  margin-bottom: 30px;
  transition: transform 0.18s ease-in-out, box-shadow 0.18s ease-in-out;
  box-shadow: 0 6px 18px rgba(8, 15, 25, 0.04);
}

.job-card:hover {
  box-shadow: 0 12px 28px rgba(8, 15, 25, 0.06);
  transform: translateY(-3px);
}

.job-title {
  color: #0f1720;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Ensure any global left-border accents do not affect careers */
.career-page .job-card {
  border-left: none;
}

.btn-apply {
  background-color: #b72626;
  color: #fff;
}

.btn-apply:hover {
  background-color: #a01f1f;
  color: #fff;
}

#carouselExample .carousel-control-prev {
  left: 0;
  background: #fff;
  height: 20%;
}

#carouselExample .carousel-control-next {
  right: 0;
  background: #fff;
  height: 20%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b72626'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b72626'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#carouselExample .carousel-control-prev,
#carouselExample .carousel-control-next {
  height: 8%;
  width: 5%;
  transform: translate(0, -50%);
  top: 50%;
}

.why-what-how {
  background-color: #f8f9fa;
  padding: 4rem 1rem;
}

.why-what-how .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.why-what-how .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #b72626;
  margin-bottom: 2.5rem;
}

.why-what-how .tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.why-what-how .tab-btn {
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  background: #e4e4e4;
  color: #333;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.why-what-how .tab-btn.active {
  background: #b72626;
  color: #fff;
}

.why-what-how .tab-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.why-what-how .tab-panel {
  display: none;
}

.why-what-how .tab-panel:not(.hidden) {
  display: block;
  animation: fadeIn 0.4s ease;
}

.why-what-how ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero */
.career-hero {
  background: #fff;
  text-align: center;
  padding: 100px 20px;
}

.career-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.career-hero p {
  font-size: 1.2rem;
  color: #555;
}

/* Alternating rows */
.alt-row {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 40px;
}

.alt-row .text {
  flex: 1;
}

.alt-row .image {
  flex: 0.8;
}

.alt-row img {
  max-width: 100%;
  border-radius: 8px;
}

.alt-row.reverse {
  flex-direction: row-reverse;
}

.career-section .intro,
.career-section .outro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* Carousel */
#valuesCarousel .carousel-item {
  text-align: center;
  padding: 40px;
}

#valuesCarousel .carousel-item h3 {
  margin-bottom: 15px;
}

#valuesCarousel .carousel-item p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

/* Jobs */
.job-category {
  margin-bottom: 50px;
}

.job-category h3 {
  margin-bottom: 20px;
}

/*.job-card { border: 1px solid #ddd; border-radius: 8px; padding: 20px; margin-bottom: 20px; background: #f8f9fa; }
    .job-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
    .job-card p { margin: 0; font-size: 0.95rem; color: #444; }*/

/* CTA */
.career-cta {
  background: #f8f9fa;
  text-align: center;
  padding: 60px 20px;
}

.career-cta h2 {
  margin-bottom: 15px;
}

.career-cta p {
  margin-bottom: 25px;
  color: #555;
}

.career-cta .btn {
  background: #b72626;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 500;
}

.career-cta .btn:hover {
  background: #9f1f1f;
  color: #fff;
}

.page-link {
  padding: 2px 6px 2px 6px;
  font-size: 18px;
  border: 0px solid #e2e2e2;
  color: #b72626 !important;
  transition: all 0.4s;
  background-color: transparent !important;
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.active>.page-link,
.page-link.active {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: #cccccc;
}

.page-link:focus {
  z-index: 3;
  color: #b73626;
  background-color: #e2e2e2;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(178, 38, 38, 0.25);
}

.page-item.active {
  border-color: #cccccc;
  border: 1px solid #cccccc;
}

.pl-banner {
  background: url('../images/property-list-bnner1.png') no-repeat center center;
  background-size: contain;
  width: 100%;
  aspect-ratio: 20 / 4;
}

.sidefpg img {
  height: 160px !important;
  /* responsive safe height */
}


/************Responsive******************/

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler {
  border: 1px solid #fff;
  float: right;
}

@media only screen and (max-width:380px) {
  .detailfrm {
    margin: 0.5rem;
    padding: 0.5rem;
  }

}

@media only screen and (max-width:992px) {
  .productlist .sidebar {
    padding: 10px;
  }

  .productlist .sidebar .form-select {
    padding-top: 0.375rem !important;
  }
}

@media only screen and (min-width:992px) {
  .sidebar {
    height: 100vh;
  }
}

@media only screen and (max-width:767px) {
  .hero-search-box {
    position: relative;
    bottom: 0;
    left: 0;
    transform: unset;
  }

  .sercol {
    border-bottom: 1px solid #dee2e6;
  }

  #myCarousel .carousel-control-next {
    right: -2%;
  }

  #myCarousel .carousel-control-prev {
    left: -2%;
  }
}

@media only screen and (max-width:575px) {
  #navbarNav {
    margin-top: 1rem;
  }

  .navbar-nav li {
    margin-left: auto;
    margin-right: auto;
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link.show {
    padding: 10px;
    margin: auto;
  }

  .carousel-indicators.custom-indicators {
    position: absolute;
    bottom: 35%;
    left: 0%;
    transform: unset;
    z-index: 3;
    display: flex;
    gap: 12px;
  }

  h1 {
    font-size: 1.4rem !important;
  }

  h2 {
    font-size: 1.2rem !important;
  }

  .taglines {
    font-size: 15px !important;
  }

  .display-4 {
    font-size: 2.3rem !important;
  }

  .lead {
    font-size: 1.1rem !important;
  }

  .detailfrm {
    margin: 1rem;
    padding: 1rem;
  }

  #myCarousel .carousel-control-next {
    right: 1%;
  }

  #myCarousel .carousel-control-prev {
    left: 1%;
  }

  .navbar-toggler {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
  }

  .base {
    font-size: 14px;
  }
}

@media only screen and (max-width:475px) {
  .captcha {
    position: relative;
    margin-bottom: 25px !important;
    transform: unset;
  }

  .form-floating>label.vrcode {
    left: -60px;
  }

  .hero-search label,
  .hero-search select {
    font-size: 14px !important;
  }

  .hero-search input,
  .hero-search .btn {
    padding: 5px 15px;
    font-size: 14px !important;
  }

  .form-control {
    font-size: 8px !important;
  }

  .hero-search .btn {
    font-weight: 400;
  }
}



@media (min-width:768px) and (max-width:953px) {
  .captcha {
    position: relative;
    margin-bottom: 25px !important;
    transform: unset;
  }

  .form-floating>label.vrcode {
    left: -60px;
  }
}

@media (min-width:575px) and (max-width:767px) {
  .navbar-nav .nav-link {
    font-size: 16px;
  }

  .carousel-indicators.custom-indicators {
    position: absolute;
    bottom: 30%;
    left: 0%;
    transform: unset;
    z-index: 3;
    display: flex;
    gap: 12px;
  }

}

@media (min-width:767px) and (max-width:991px) {
  .nav-item.px-2 {
    padding-right: .4rem !important;
    padding-left: .4rem !important;
  }

  .container {
    max-width: 90%;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
  }

  .hero-search input,
  .hero-search .btn {
    padding: 4px 12px;
  }

  .animated-placeholder-dt,
  .animated-placeholder,
  .hero-search select,
  .hero-search label {
    font-size: 15px !important;
  }

  .detailfrm {
    margin: 1rem 1rem;
    padding: 1rem;
  }

  .roomdetails .ratio {
    --bs-aspect-ratio: 75%;
  }

  .landmarkp {
    padding: 0 !important;
  }

  .landmarkp #locatn {
    text-align: left;
    margin-left: 12px;
    font-size: 15px;
  }
}

@media (min-width:900px) and (max-width:991px) {
  .hero-search-box {
    padding: 0px 7%;
  }
}

@media (min-width:992px) and (max-width:1250px) {
  .roomdetails .ratio {
    --bs-aspect-ratio: 60%;
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .contentarea_section .contentarea_box .contentarea_container {
    margin-left: -100px !important;
  }

  .contentarea_section .about_content {
    padding-top: 20px;
    padding-right: 120px;
    padding-bottom: 20px;
  }

  .testimonial_section .testimonial_box .testimonial_container {
    margin-left: -100px !important;
  }

  .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content {
    margin: 0 !important;
  }

  .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials {
    margin: 10px 0 10px 0;
    padding: 20px 0px 20px 20px;
  }

  .testimonial_section .about_content {
    padding-top: 20px;
    padding-right: 120px;
    padding-bottom: 20px;
  }

  .testimonial_section .about_content .layer_content .section_title h2 {
    font-size: 1.4rem;
    line-height: 32px;
    padding-bottom: 40px;
  }

  .testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev,
  .testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next {
    top: 60px;
  }

  .landmarkp {
    padding: 0 !important;
  }

  .landmarkp #locatn {
    text-align: left;
    margin-left: 15px;
    font-size: 16px;
  }
}

.testimonials .images_box {
  display: none !important;
}

@media only screen and (min-width:767px) {
  .roomdetails .mainthumb {
    height: 600px;
  }

  .masonry-gallery img {
    height: 200px;
  }
}

/* ===============================
   GLOBAL MOBILE WHITE SPACE FIX
================================ */
@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  section,
  .section,
  .container,
  .container-fluid,
  .row {
    height: auto !important;
    min-height: auto !important;
  }

  img,
  video {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

/* ===== FIX UNEVEN HOME BANNER CARDS ===== */

.banner-cards-wrap .row {
  align-items: stretch;
}

/* Force each column to behave like a card */
.banner-cards-wrap .col-md-4 {
  display: flex;
}

/* The actual card wrapper inside the column */
.banner-cards-wrap .col-md-4>div {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Make images uniform */
.banner-cards-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Stretch text/button area evenly */
.banner-cards-wrap .overlay,
.banner-cards-wrap .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stats-section {
  background-image: none !important;
}

.stats-section h2 {
  color: #222;
}

.stats-section p {
  color: #666;

}

/* =========================================
   MODERN MAGAZINE BLOG LAYOUT
   ========================================= */

.modern-blog-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
  margin-top: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Soft premium shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: none;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  /* Fixed height for consistency */
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.08);
  /* Zoom effect */
}

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 8px;
  font-weight: 600;
}

.blog-meta i {
  color: #b72626;
  margin-right: 5px;
}

.blog-title {
  font-size: 1.5rem !important;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px !important;
  color: #111;
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card a {
  text-decoration: none;
}

.blog-title:hover {
  color: #b72626;
}

.blog-excerpt {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
  /* Pushes button down */
}

.read-more-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #b72626;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-top: auto;
  /* Pushes link to the bottom */
}

.read-more-link i {
  margin-left: 6px;
  transition: margin-left 0.3s ease;
}

.read-more-link:hover {
  color: #000;
}

.read-more-link:hover i {
  margin-left: 10px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .modern-blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .modern-blog-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
}

.blog-main-title {
  font-size: 3.2rem !important;
  font-weight: 700 !important;
  margin-top: 2rem;
  margin-bottom: 3rem !important;
}

@media (max-width: 768px) {
  .blog-main-title {
    font-size: 2.5rem !important;
    margin-bottom: 2rem !important;
  }
}

/* =========================================
   INDIVIDUAL BLOG ARTICLE LAYOUT
   ========================================= */

body {
  background-color: #f4f4f4 !important;
  /* Reference site body background */
}

/* White Header Section */
.blog-article-header-wrap {
  background: #fff !important;
  padding: 80px 0 40px !important;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.blog-article-title {
  font-size: 2.8rem !important;
  font-weight: 700 !important;
  color: #000 !important;
  margin-bottom: 15px !important;
  font-family: 'Poppins', sans-serif;
  line-height: 1.3 !important;
}

.blog-article-meta {
  font-size: 0.95rem !important;
  color: #777 !important;
  font-weight: 500;
}

.blog-article-section {
  background-color: #f4f4f4 !important;
  padding: 50px 0 100px !important;
}

/* Responsive Container for Article */
.blog-article-wrap {
  background: #fff !important;
  padding: 50px !important;
  border-radius: 8px !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  /* Bootstrap shadow-sm */
  margin-bottom: 30px;
  overflow: hidden;
  /* Prevent text overflow */
  word-wrap: break-word;
  /* Ensure text breaks inside the box */
}

.blog-article-meta i {
  color: #b72626;
  margin-right: 6px;
}

.blog-article-featured-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 40px;
  object-fit: cover;
}

.blog-article-content {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.1rem !important;
  line-height: 1.8 !important;
  color: #333 !important;
}

.blog-article-content p,
.blog-article-content li,
.blog-article-content div,
.blog-article-content span {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.1rem !important;
  line-height: 1.8 !important;
}

.blog-article-content p {
  margin-bottom: 24px;
}

.blog-article-content h2,
.blog-article-content h3 {
  margin-top: 45px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #111;
}

/* Navigation Buttons */
.blog-nav-wrap {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: center;
  /* Centered buttons */
  gap: 20px;
}

.blog-nav-btn {
  padding: 12px 35px !important;
  border-radius: 4px !important;
  /* Rectangular as requested */
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Center text inside uniform box */
  gap: 10px;
  text-decoration: none !important;
  font-size: 16px !important;
  background-color: #b72626 !important;
  /* RoomAdda Red */
  border: none !important;
  color: #fff !important;
  min-width: 160px !important;
  /* Uniform width */
}

.blog-nav-btn:hover {
  background-color: #000 !important;
  /* Dark hover like reference */
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjsutments */
@media (max-width: 991px) {
  .blog-article-wrap {
    padding: 40px;
    margin: 0 20px;
  }

  /* ===== Career page rewrite styles (scoped) ===== */
  .career-page {
    background-color: #f7f7f7;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .career-page .container>.card,
  .career-page .card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(8, 15, 25, 0.06);
    border: none;
  }

  /* Hero card */
  .hero-card h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: .25rem;
  }

  .hero-card p {
    color: #6b7280;
    margin-bottom: 0;
  }

  /* What we look grid */
  .what-we-look-grid {
    margin: 0 -0.5rem;
  }

  .look-card {
    border-radius: 10px;
    padding: 1.2rem;
    background: #fff;
    box-shadow: 0 10px 28px rgba(8, 15, 25, 0.04);
    border: none;
  }

  .look-card .img-wrap {
    width: 140px;
    height: 140px;
    overflow: hidden;
    margin: auto;
  }

  .look-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .look-card h3 {
    margin-top: .75rem;
    margin-bottom: .5rem;
    font-size: 1.15rem;
  }

  .look-card p {
    color: #6b7280;
  }

  /* Core values carousel: center text */
  #valuesCarousel .carousel-item {
    padding: 1rem 0;
    text-align: center;
  }

  #valuesCarousel h3 {
    font-size: 1.4rem;
    font-weight: 700;
  }

  /* Job categories: grid layout and modern job cards */
  /* Careers — modern role cards */
  .career-page {
    background-color: #f6f7f8;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .career-section .container {
    max-width: 1100px;
  }

  .job-category {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 2.25rem;
    padding: 1rem 0;
    align-items: stretch;
  }

  .job-category>h3 {
    grid-column: 1/-1;
    margin-bottom: 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f1720;
    padding: 0 6px 0.6rem 6px;
    border-bottom: 3px solid rgba(183, 38, 38, 0.06);
  }

  .job-category .job-card {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 6px 18px rgba(8, 15, 25, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 320px;
    height: 100%;
  }

  .job-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #081022;
  }

  .job-card p {
    color: #475569;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Make Apply button calm by default: neutral outline then filled on hover */
  .job-card .apply-now {
    align-self: flex-end;
    margin-top: auto;
    background: transparent;
    color: #b72626;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(183, 38, 38, 0.12);
    box-shadow: none;
    transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
  }

  .job-card .apply-now:hover {
    background: #b72626;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(183, 38, 38, 0.12);
    outline: none;
  }

  .job-card .apply-now:focus-visible {
    box-shadow: 0 0 0 4px rgba(183, 38, 38, 0.08);
    outline: none;
  }

  /* Duplicate legacy CTA removed — using neutral outline style above */

  /* Ensure single-column on smaller viewports and natural heights */
  @media (max-width: 767.98px) {
    .job-category {
      grid-template-columns: 1fr;
    }

    .job-card {
      min-height: auto;
      height: auto;
    }
  }

  /* Visual polish: clean, neutral page and spacing */
  .career-page {
    background-color: #f7f8f9;
  }

  .career-section .card {
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .career-cta .container {
    display: flex;
    justify-content: center;
  }

  .career-cta .container .card {
    width: 100%;
    max-width: 900px;
    padding: 1.8rem;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(8, 15, 25, 0.06);
  }

  .career-cta h2 {
    margin-bottom: .5rem;
  }

  /* Responsive tweaks */
  @media (max-width:767.98px) {
    .look-card .img-wrap {
      width: 110px;
      height: 110px;
    }

    .job-category {
      grid-template-columns: 1fr;
    }
  }

  /* Keep selectors scoped to avoid global conflicts */

  /* ===== Career heading visual polish (remove decorative icons via HTML; style headings) ===== */
  .job-category>h3 {
    font-size: 1.12rem !important;
    font-weight: 700 !important;
    color: #0f1720 !important;
    margin: 0 0 0.6rem 0 !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 1px solid rgba(15, 23, 32, 0.06) !important;
    display: block !important;
  }

  .job-category>h3 small {
    display: none !important;
  }

  /* Reduce any residual emoji spacing in headings (if any left in content) */
  .job-category h3::first-letter {}

  /* Make job headers clearer inside each category */
  .job-card h4 {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #081022 !important;
  }

  /* Ensure headings are text-only and clean (no pseudo-icons) */
  .job-category h3 [class],
  .job-category h3 i {
    display: none !important;
  }




  /* Footer */
  .elegant-footer {
    background-color: #0a0a0a;
    color: #cccc !important;
    font-family: 'Montserrat', sans-serif;
    background-image: url('../images/footer-bg.jpg?v=20260211') !important;
    background-size: auto 370px !important;
    background-repeat: repeat-x !important;
    background-position: center top !important;
    padding-top: 82px !important;
    padding-bottom: 60px !important;
    margin: 0;
    width: 100%;
    min-height: auto !important;
    height: auto !important;
    position: relative;
  }

  .elegant-footer::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 160px;
    background-color: transparent;
    pointer-events: none;
    z-index: 0;
    transform: scale(1.35);
    transform-origin: top center;
  }

  .elegant-footer .container {
    position: relative;
    z-index: 2;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
  }

  /* Reduce footer text size by 1px */
  .elegant-footer p,
  .elegant-footer li,
  .elegant-footer a,
  .elegant-footer div {
    font-size: calc(100% - 1px);
  }

  .elegant-footer h4,
  .elegant-footer h5,
  .elegant-footer .footer-title {
    font-size: calc(100% - 1px);
  }

  .elegant-footer p,
  .elegant-footer div,
  .elegant-footer a {
    color: #cccc !important;
  }

  .elegant-footer .footer-title {
    color: #b72626;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .footer-links {
    list-style: none;
    padding: 0;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    text-decoration: none;
    transition: 0.3s;
  }

  .footer-links a:hover,
  .elegant-footer a:hover {
    color: #b72626 !important;
    text-decoration: underline;
  }

  /* Responsive adjustments */
  @media (max-width: 1400px) {
    .elegant-footer {
      background-size: auto 350px !important;
      padding-top: 82px !important;
    }

    .elegant-footer::before {
      height: 155px;
      top: -10px;
    }
  }

  @media (max-width: 1200px) {
    .elegant-footer {
      background-size: auto 330px !important;
      padding-top: 80px !important;
    }

    .elegant-footer::before {
      height: 150px;
      top: -10px;
    }
  }

  @media (max-width: 992px) {
    .elegant-footer {
      background-size: auto 320px !important;
      padding-top: 78px !important;
    }

    .elegant-footer::before {
      height: 140px;
      top: -9px;
    }
  }

  @media (max-width: 768px) {
    .blog-article-header-wrap {
      padding: 40px 0 20px;
    }

    .blog-article-title {
      font-size: 2rem;
      padding: 0 15px;
    }

    .blog-article-wrap {
      padding: 30px 20px;
      border-radius: 0;
      margin: 0;
    }

    .blog-nav-wrap {
      flex-direction: column-reverse;
      /* Next button usually more important */
      gap: 15px;
    }

    .blog-nav-btn {
      width: 100%;
      justify-content: center;
    }

    .elegant-footer {
      background-size: auto 310px !important;
      padding-top: 78px !important;
      padding-bottom: 40px !important;
    }

    .elegant-footer::before {
      height: 130px;
      top: -8px;
    }
  }

  .elegant-footer .footer-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  @media (max-width: 576px) {
    .elegant-footer {
      background-size: auto 240px !important;
      padding-top: 70px !important;
      padding-bottom: 30px !important;
    }

    .elegant-footer::before {
      height: 100px;
      top: -6px;
    }

    .elegant-footer .footer-title {
      font-size: 15px;
      margin-bottom: 8px;
    }
  }

  /* End of file cleanup */

  /* Cleared previous custom FAQ styles to avoid conflicts */
  @media (max-width: 991px) {
    .faq-heading {
      font-size: 2.2rem !important;
    }
  }
}

/* =========================================
   ABOUT PAGE — SCOPED STYLES
   ========================================= */

/* 1. Hero Banner */
.about-hero {
  position: relative;
  min-height: 420px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #2a0808 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(183, 38, 38, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('../images/parellexeff.jpg') center/cover no-repeat;
  opacity: 0.12;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 180px 20px 80px;
}

.about-hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b72626;
  background: rgba(183, 38, 38, 0.12);
  border: 1px solid rgba(183, 38, 38, 0.3);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.about-hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}

.about-hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-hero {
    min-height: 320px;
  }
}

/* 2. Origin Story */
.about-origin {
  background: #fff;
}

.about-section-label {
  font-size: 2.5rem;
  /* 40px desktop */
  font-weight: 700;
  color: #020d26;
  /* Deep Navy — brand primary */
  letter-spacing: -0.5px;
  text-transform: none;
  margin-top: 70px;
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

/* Subtle red underline accent */
.about-section-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: #b72626;
  border-radius: 2px;
}

@media (max-width: 991px) {
  .about-section-label {
    font-size: 2rem;
    /* 32px tablet */
    margin-top: 48px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .about-section-label {
    font-size: 1.65rem;
    /* ~26px mobile */
    margin-top: 36px;
    margin-bottom: 16px;
  }
}


.about-origin p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 18px;
}

.about-pull-quote {
  position: relative;
  padding: 32px 28px;
  border-left: 4px solid #b72626;
  background: #fef7f7;
  border-radius: 0 12px 12px 0;
}

.about-pull-quote-mark {
  display: block;
  font-size: 5rem;
  line-height: 1;
  color: #b72626;
  opacity: 0.25;
  font-family: Georgia, serif;
  margin-bottom: -20px;
}

.about-pull-quote p {
  font-size: 1.45rem;
  font-weight: 700;
  font-style: italic;
  color: #b72626;
  margin: 0;
  line-height: 1.5;
}

/* 3. Stats Bar */
.about-stats-bar {
  background: #0a0a0a;
  padding: 48px 20px;
}

.about-stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: #b72626;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 4. Founders */
.about-founders {
  background: #f8f8f8 !important;
}

.about-section-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
}

.about-section-sub {
  color: #777;
  font-size: 1rem;
  margin-top: 6px;
}

.about-founder-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.about-founder-banner {
  height: 100px;
  background: linear-gradient(135deg, #b72626, #020d26);
}

.about-founder-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-top: -52px;
}

.about-founder-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.about-founder-body {
  padding: 18px 28px 32px;
  text-align: center;
}

.about-founder-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.about-founder-role {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #b72626;
  background: rgba(183, 38, 38, 0.08);
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.about-founder-bio {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  text-align: left;
  margin-bottom: 10px;
}

/* 5. Story Tabs */
.about-story-section {
  background: #f4f4f4;
}

.about-tabs-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.about-tab-btn {
  padding: 10px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid #ddd;
  border-radius: 50px;
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
}

.about-tab-btn:hover {
  border-color: #b72626;
  color: #b72626;
}

.about-tab-btn.active {
  background: #b72626;
  color: #fff;
  border-color: #b72626;
}

.about-tab-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  max-width: 860px;
  margin: 0 auto;
}

.about-tab-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.about-tab-panel h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

.about-tab-panel p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-feature-chip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fef7f7;
  border: 1px solid rgba(183, 38, 38, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #333;
  height: 100%;
}

.about-feature-chip i {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .about-tab-card {
    padding: 28px 20px;
  }
}

/* 6. Mission CTA Strip */
.about-mission-cta {
  background: linear-gradient(135deg, #0f0f0f 0%, #1c0303 50%, #0f0f0f 100%);
  padding: 80px 20px;
}

.about-mission-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.about-mission-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-mission-title {
    font-size: 1.6rem;
  }

  .about-stat-num {
    font-size: 2rem;
  }
}

/* =========================================================
   Third-Party WhatsApp Widget Overrides
   Fixes broken profile image dynamically injected by JS
   ========================================================= */
/* Hide the broken image forcefully */
#df-btn-cont .df-brand-img img {
  display: none !important;
}

/* Inject the logo safely as a background on the container */
#df-btn-cont .df-brand-img {
  background-image: url("../images/roomadda-logo.jpg") !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #fff !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  width: 45px !important;
  height: 45px !important;
  display: block !important;
}

/* Hide fallback overrides that could cause bloated backgrounds elsewhere */
div[id^="wa-widget"] img,
.wa-widget-icon {
  display: none !important;
}