/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #8d2929;
  --secondary-color: #d2ae6d;
  --text-color: #0b143a;
  --light-bg: #faf6f2;
  --border-light: #e6d9c5;
  --background-color: #fff9e8;
}

body {
  font-family: 'Arial, sans-serif';
  background-color: var(--background-color);
  color: var(--text-color);
  padding-top: 90px;
  /* to prevent content hiding behind fixed header */
}

p {
  line-height: 1.6;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

ul {
  list-style: none;
}

/*================== HEADER ==============================*/
.main-header {
  background: var(--secondary-color);
  padding: 0px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  position: fixed;
  width: 100%;
}

.logo img {
  width: 150px;
}

/* Desktop Nav */
/* TOP NAV LINKS */
.nav-menu a {
  position: relative;
  color: var(--text-color);
  text-decoration: none;
  margin: 0 18px;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* UNDERLINE EFFECT */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #8d2929;
  /* underline color */
  transition: all 0.3s ease;
}

/* Hover state */
.nav-menu a:hover {
  color: #8d2929;
  /* text color change */
}

.nav-menu a:hover::after {
  width: 100%;
  /* underline slide grow */
}

/* Download Button Desktop */
.brochure-btn {
  background: #8d2929;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(141, 41, 41, 0.5);
  animation: pulseGlow 1.6s infinite ease-in-out;
  transition: 0.3s ease;
}

/* Hover effect */
button.btn.brochure-btn:hover {
  background: #000;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

/* Pulse Animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px rgba(141, 41, 41, 0.4);
  }

  50% {
    box-shadow: 0 0 15px rgba(141, 41, 41, 0.9);
  }

  100% {
    box-shadow: 0 0 5px rgba(141, 41, 41, 0.4);
  }
}

/* MOBILE MENU ICON */
.mobile-menu i {
  font-size: 32px;
  color: #8d2929;
  cursor: pointer;
  z-index: 999999;
}

/* MOBILE MENU PANEL */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  /* ✅ Hide panel on load */
  width: 100%;
  height: 100vh;
  background: var(--primary-color);
  padding: 50px 20px;
  transition: right 0.4s ease;
  z-index: 999999;
}

.close-mobile {
  color: #fff;
  font-size: 35px;
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
}

.mobile-nav-panel a {
  display: block;
  color: #ffffff;
  font-size: 18px;
  margin: 20px 0;
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile Button */
.m-btn {
  background: #fff;
  color: #0b143a;
  width: 100%;
  padding: 12px;
  margin-top: 30px;
}

/*====================================end header styles=================*/
/*======================================hero styles======================*/
/* ===== general reset for hero images ===== */
.hero-wrapper img,
.mobile-slider img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile image height smaller */

/* Overlay common */

.hero-content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 560px;
  color: #fff;
}
.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--secondary-color) !important;
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 3;
}
.hero-slider .owl-nav button.owl-prev span,
.hero-slider .owl-nav button.owl-next span {
  display: inline-block;
  transform: translateY(-1px);
}

.hero-slider .owl-prev {
  left: 28px;
}

.hero-slider .owl-next {
  right: 28px;
}

.hero-slider .owl-dots {
  display: none !important;
}

/* Mobile: hide arrows, show dots */
.mobile-slider .owl-nav {
  display: none !important;
}

.mobile-slider .owl-dots {
  text-align: center;
  margin-top: 12px;
}

/* dot style */
.mobile-slider .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 50%;
  background: var(--secondary-color);
}

.mobile-slider .owl-dots .owl-dot.active span {
  background: var(--primary-color);
  opacity: 1;
}
.hero-bottom figure img {
    width: 100%;
}
/* small responsive tweaks */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 1399.98px) {
  .hero-content {
    left: 5%;
  }
}

@media (max-width: 991.98px) {
  .hero-content {
    display: none;
  }

  /* hide just in case */
}

/*=============================hero section styles==================================*/
/*=============================overview section styles==================================*/
.project-title {
  font-size: 20px;
  margin: 8px 0 18px;
  font-weight: 500;
  color: #111;
}
.overview-list {
  list-style: disc;
  line-height: 1.8;
  font-size: 16px;
}
@media (min-width: 992px) {
  .project-overview { padding: 0; }
  .project-title { font-size: 22px; }
  .overview-list { font-size: 17px; }
}
.overview-sec {
  background-color: #F9F9F9;
}
/*=============================end about section styles==================================*/
/*=============================Location section styles===================================*/
.location-section {
  padding: 60px 0;
}
.info-box {
    background: #fff;
    border-radius: 14px;
    padding: 25px 28px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    border: 1px solid transparent;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

/* Hover Effect */
.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px var(--secondary-color);
    border-color: var(--primary-color);
}

/* Top blue glow bar */
.info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8d2929, #d2ae6d);
    transition: 0.35s ease;
}

.info-box:hover::before {
  left: 0;
}

/* Title */
.info-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

/* Icon animation */
.info-box h4 i {
  margin-right: 10px;
  font-size: 22px;
  color: var(--primary-color);
  transition: 0.35s ease;
}

.info-box:hover h4 i {
  transform: scale(1.2) rotate(-5deg);
  color: var(--secondary-color);
}

/* List */
.info-box ul {
    padding-left: 20px;
    text-align: left;
    list-style-type: disclosure-closed;
}

.info-box ul li {
  font-size: 15px;
  color: #333;
  margin-bottom: 6px;
  transition: 0.3s;
}

.info-box ul li:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.info-box-list {
    display: flex;
    align-items: start;
    justify-content: space-between;
    border-style: double;
    padding: 10px;
}
/* Responsive */
@media (max-width: 767px) {
  .main-heading {
    font-size: 26px;
  }
  .info-box {
    padding: 20px;
    min-height: 200px;
  }
  .info-box ul li{
    font-size: 13px;
  }
  .info-box h4{
      font-size:17px;
  }

}

/*================================project highlights styles===========================*/
.section-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
/* Underline Animation */
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.35s ease;
}
/* HOVER EFFECT */
.section-title:hover {
  color: var(--text-color);
  /* Optional: change color */
  transform: translateY(-3px);
  /* Slight lift */
}
.section-title:hover::after {
  width: 100%;
  /* Underline full width on hover */
}
.highlight-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: 0.3s;
}
.highlight-box .icon {
  font-size: 45px;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.highlight-box h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
}
.highlight-box:hover {
  transform: translateY(-5px);
}

.highlight-box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
}
.highlight-box:hover .icon {
  transform: scale(1.2);
  color: var(--secondary-color);
}
.highlight-box:hover h4,
.highlight-box:hover p {
  color: var(--secondary-color);
}

@media (max-width: 767px) {
  .highlight-box h4 {
    font-size: 16px;
  }
  .highlight-box{
    min-height: 180px;
  }
  .highlight-box .icon {
    font-size: 30px;
  }

  .highlight-box p {
    font-size: 14px;
  }
  .section-title {
    font-size: 22px;
    text-align: center;
}
.amenity-item span {
    font-size: 14px;
}
section.about-us-section{
  text-align: center;
}
.about-content p {
    font-size: 16px;
}

}

/*============================end project highlights styles===========================*/
/*=============================See price section styles===============================*/
.config-table {
  border: 1px solid #ddd;
}

.table-responsive {
  max-width: 940px;
  margin: auto;
}

.config-table th {
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  padding: 14px;
  font-size: 18px;
  text-align: center;
}

.config-table td {
  padding: 14px;
  font-size: 16px;
  color: #333;
  border: 1px solid var(--secondary-color);
  text-align: center;
  vertical-align: middle;
}

section.project-configurations {
  background-color: #F9F9F9;
}
@media (max-width: 768px) {
  .config-table th,
  .config-table td {
    font-size: 12px;
    padding: 10px;
  }
}
/*============================end see price section styles===========================*/
/* Background */
.amenities-section {
  background: #fff9e8;
}

/* Amenity Items */
.amenity-item {
  display: flex;
  align-items: center;
  font-size: 18px;
  padding: 15px 20px;
  font-weight: 500;
  transition: 0.3s ease;
  background-color: #8d2929;
  margin-bottom: 10px;
  border-radius: 0px 20px;
  color: #fff;
}

/* ICON STYLE */
.amenity-item i {
  font-size: 24px;
  width: 38px;
  height: 38px;
  color: #d6a645;
  /* GOLD */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(214, 166, 69, 0.12);
  border-radius: 10px;
  margin-right: 12px;
  transition: 0.3s ease;
}

/* HOVER - PREMIUM LIFT EFFECT */
.amenity-item:hover i {
  transform: translateY(-3px) scale(1.2);
  background: #d6a645;
  color: #fff;
}

.amenity-item:hover {
  padding-left: 12px;
}

/*=============================Gallery styles===========================*/
.gallery-section {
  background-color: var(--light-bg)
}
.gallery-tab {
  padding: 11px 32px;
  border: 2px solid var(--primary-color);
  background: transparent;
  border-radius: 40px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-tab.active {
  background: var(--primary-color);
  color: #fff;
}

.gallery-tab:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Tab Content */
.gallery-box {
  display: none;
}

.gallery-box.active {
  display: block;
}

/* Carousel Images */
.g-img {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  object-fit: cover;
}
.blur-img {
  filter: blur(5px);     /* Blur amount */
  cursor: pointer;
}
/* Owl Navigation — ONLY gallery-slider */
.gallery-slider .owl-nav button.owl-prev,
.gallery-slider .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-color) !important;
  color: #fff !important;
  font-size: 25px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.gallery-slider .owl-prev {
  left: -22px;
}

.gallery-slider .owl-next {
  right: -22px;
}

.gallery-slider .owl-nav button:hover {
  background: var(--secondary-color) !important;
  color: var(--text-color) !important;
}

/* Force show arrows even if disabled */
.gallery-slider .owl-nav.disabled {
  display: flex !important;
  pointer-events: auto !important;
  opacity: 1 !important;
}

@media(max-width:768px) {
  .g-img {
    height: 240px;
  }

  .gallery-slider .owl-prev {
    left: -10px;
  }

  .gallery-slider .owl-next {
    right: -10px;
  }

.gallery-tab {
    padding: 6px 12px;
    font-size: 11px;
}
}

/*=============================end Gallery styles===========================*/
/*=============================Location Advantages styles===========================*/
/* Accordion Outer Rounded */
.accordion-item {
  margin-bottom: 12px;
  border: 1px solid var(--border-light);
  border-radius: 12px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 3px 10px rgba(141, 41, 41, 0.08);
  /* primary color shadow */
}
/* Buttons */
.accordion-button {
  background: var(--light-bg);
  font-size: 18px;
  padding: 18px 20px;
  color: var(--text-color);
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  border-radius: 12px !important;
}
/* REMOVE Bootstrap default arrow */
.accordion-button::after {
  background-image: none !important;
  transform: none !important;
  width: auto;
  height: auto;
  font-size: 18px;
  margin-left: auto;
  color: var(--primary-color);
  transition: 0.3s ease;
  content: "▼";
  /* CLOSED Arrow */
}
/* ACTIVE Arrow */
.accordion-button:not(.collapsed)::after {
  content: "▲";
  color: #fff;
}
/* Active Button */
.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: #fff;
  border: none;
  box-shadow: none;
}
/* LIST */
.accordion-body ul li {
  font-size: 16px;
  padding: 6px 0;
  color: var(--text-color);
}
section.location-advantage {
  background-color: #F9F9F9;
}
/* Map Box */
.map-box iframe {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  border: 3px solid var(--secondary-color);
  box-shadow: 0px 4px 10px rgba(210, 174, 109, 0.25);
}
/* Responsive */
@media (max-width: 768px) {
  .map-box iframe {
    height: 300px;
  }

  .location-advantage .section-title {
    text-align: center;
  }
}
/*============================end Location Advantages styles===========================*/
/*=============================loan provided banks styles===========================*/
.partner-logo {
  max-height: 65px;
  object-fit: contain;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 14px;
  /* PREMIUM TRANSITION */
  transition: all 0.45s cubic-bezier(0.19, 1, 0.22, 1);
  /* Base Shadow (soft) */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

/* ULTRA PREMIUM HOVER */
.partner-logo:hover {
  transform: translateY(-10px) scale(1.08);
  /* DEEP SHADOW */
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.20),
    0 4px 12px rgba(0, 0, 0, 0.10) inset;
  /* PREMIUM GLOW OUTLINE */
  outline: 3px solid var(--primary-color);
  outline-offset: 4px;
  /* Subtle glass reflection */
  background: linear-gradient(135deg, #ffffff 60%, #f4f8ff);
}

/*-----------------------------end loan provided banks styles===========================*/
/*=========================================video-sectin-styles===========================*/
.normal-video-section {
  width: 100%;
  padding: 40px 0;
  background: #f7f7f7;
}

.normal-video-container {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}

.normal-video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

/*===========================================end video-section-styles=======================*/
/*===========================================footer styles===============================*/
.premium-footer {
  text-align: center;
  background: #f7f7f7;
  padding: 40px 0 0;
}

.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.footer-address {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0 auto;
  max-width: 560px;
}

.footer-address i {
  color: #d9534f;
  margin-right: 5px;
}

.address-link {
  color: #000;
  text-decoration: underline;
  cursor: pointer;
}

.footer-bottom {
    margin-top: 30px;
    background: var(--background-color);
    padding: 15px 10px;
    font-size: 15px;
    border-top: 1px solid #ddd;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #000;
  margin: 0 8px;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  color: #555;
}
/*===========================================end footer styles===========================*/
/*==========float-btn-styles=================*/
#floating-actions-vertical {
  position: fixed !important; /* enforce fixed */
  left: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column; /* vertical stack: one above another */
  gap: 14px;
  z-index: 2147483647; /* very high to ensure visible */
  pointer-events: auto;
  align-items: center; /* center icons in column */
}

/* Each button: circular icon */
.fab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.14);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s;
  background: var(--light-bg); /* default fallback, icons have their own color bg */
  overflow: visible;
}

/* Icon circle inside button (colored) */
.fab-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
}

/* Individual colors */
.fab-whatsapp i { background: #25D366; }
.fab-call i     { background: #007bff; }
.fab-map i      { background: #ff4d4f; }

/* Hover/focus effects */
.fab-btn:hover, .fab-btn:focus {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
  opacity: 1;
}

/* Make sure mobile is fine: slightly smaller */
@media (max-width: 520px) {
  #floating-actions-vertical { left: 12px; bottom: 12px; gap: 10px; }
  .fab-btn { width: 50px; height: 50px; }
  .fab-btn i { width: 40px; height: 40px; font-size: 20px; }
}

/* Accessibility focus outline */
.fab-btn:focus {
  outline: 3px solid rgba(0,123,255,0.18);
  outline-offset: 3px;
}
/*==========end float-btn-styles=================*/
/*==popup form styles==*/
.form-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.form-box {
  width: 90%;
  max-width: 580px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width:767px) {
  .form-box {
    width: 100%;
}
}
.form-header {
  background: var(--primary-color);
  color: white;
  padding: 16px;
  font-size: 20px;
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  font-size: 26px;
}

form {
  padding: 20px;
}

form input,
form select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #dcdcdc;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.submit-btn {
  width: 100%;
  background: var(--primary-color);
  color: white;
  padding: 12px;
  border: none;
  font-size: 16px;
  border-radius: 4px;
}

.submit-btn:hover {
  background: var(--secondary-color);
  color: #000;
}

/*=====end popup form styles=====*/
/* THANK YOU POPUP */
.thankyou-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.ty-box {
  background: #fff;
  width: 90%;
  max-width: 420px;
  text-align: center;
  padding: 30px 20px;
  border-radius: 6px;
  animation: popIn 0.3s ease-out;
}

.ty-logo {
  width: 100px;
  margin-bottom: 10px;
}

.ty-box h2 {
  font-size: 28px;
  font-weight: 700;
  color: #8d2929;
  margin-bottom: 10px;
}

.ty-box p {
  color: #444;
  font-size: 16px;
  margin-bottom: 20px;
}

.ty-btn {
  background: #8d2929;
  color: #fff;
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  border: none;
}
button.btn.ty-btn:hover {
    background-color: var(--secondary-color);
}
/* Popup animation */
@keyframes popIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/*=====end thank you popup styles=====*/