:root {
  --bs-body-font-family: "Montserrat", sans-serif;
  --burgundy: #510c14;
  --cream: #ebebeb;
  --mauve: #7a4b52;
  --gray: #7d7474;
  --dark-bg: #1a1a1a;
  --light-bg: #f8f8f8;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



html {
  scroll-behavior: smooth;
}


/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.display-1,
.display-2,
.display-3,
.display-4 {
  letter-spacing: -1px;
  color: #591820;
}

.contact-form label {
  color: #591820;
}




/* Completely Transparent Navbar with Blur */
.navbar-premium {
  background: rgb(0 0 0) !important;
  /* More transparent */
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
}

/* When scrolled, make navbar slightly more visible */
.navbar-premium.scrolled {
  background: rgba(81, 12, 20, 0.6) !important;
  backdrop-filter: blur(20px);
}


/* Ensure floating shapes don't interfere */
.floating-shape {
  z-index: 1;
  opacity: 0.3;
  /* Make them more subtle */
}

/* Ensure other sections stay below navbar */
.services-section,
.why-us-section,
.process-section,
.testimonials-section,
.contact-section,
.cta-section,
.footer {
  position: relative;
  z-index: 1;
}

/* Improve button visibility */
.btn-outline-light {
  border-width: 2px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Stat boxes improvement */
.stat-box {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .lead {
    font-size: 1.1rem;
  }

  .navbar-premium {
    background: rgba(81, 12, 20, 0.7) !important;
    /* More solid on mobile */
  }
}

/* edited css end*/

/* Navbar Glassmorphism */


/* Logo Styling (convert to white using filter) */
.navbar-logo {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.navbar-premium .nav-link {
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: color 0.3s, transform 0.3s;
}

.nav-link-hover:hover {
  color: #EBEBEB !important;
  transform: translateY(-2px);
}

.text-gradient {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Dropdown Styling */
.dropdown-glass .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  transform-origin: top right;
  min-width: 220px;
}

.dropdown-item {
  color: #333 !important;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, #0072ff10, #00c6ff15);
  transform: translateX(4px);
}

/* Smooth Dropdown Animation */
.animate-dropdown {
  animation: fadeSlideDown 0.35s ease forwards;
  opacity: 0;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Toggler icon contrast */
.navbar-toggler-icon,
.navbar-toggler i {
  color: white;
}



.floating-shape {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--mauve) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--burgundy) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 50px;
  left: -150px;
  animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--mauve) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }
}


.badge-premium {
  background: rgba(220, 53, 69, 0.2) !important;
  border: 1px solid rgba(220, 53, 69, 0.5);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-lg {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

.stat-box {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.hero-image-wrapper {
  z-index: 2;
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-container::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(220, 53, 69, 0.3);
  border-radius: 1.5rem;
  z-index: -1;
}

.image-container img {
  display: block;
  max-width: 100%;
  height: auto;
}

@keyframes float-animation {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.animate-float {
  animation: float-animation 4s ease-in-out infinite;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-premium {
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-premium::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-premium:hover::before {
  width: 300px;
  height: 300px;
}

.btn-hover-lift {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


/* Utilities */
.py-120 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-80 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mb-80 {
  margin-bottom: 5rem;
}

.object-cover {
  object-fit: cover;
}

.shadow-xl {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .display-2 {
    font-size: 2rem;
  }

  .hero-section {
    min-height: auto;
    padding: 3rem 0;
  }

  .py-120 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .mb-80 {
    margin-bottom: 2.5rem;
  }

  .service-card-content {
    transform: translateY(0);
    background: linear-gradient(135deg, rgba(81, 12, 20, 0.95) 0%, rgba(122, 75, 82, 0.95) 100%);
  }

  .service-card:hover .service-card-content {
    transform: translateY(0);
  }

  .hero-content {
    margin-bottom: 2rem;
  }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="lines" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><line x1="0" y1="0" x2="100" y2="100" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><line x1="100" y1="0" x2="0" y2="100" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="400" fill="url(%23lines)"/></svg>');
  opacity: 0.5;
}

/* service page css */


/* privacy policy css */
.privacy-hero {
  background: linear-gradient(135deg, var(--burgundy) 0%, #1a1a1a 100%);
  padding: 100px 0 60px;
}

.privacy-content {
  background: var(--light-bg);
  padding: 80px 0;
}

.policy-section {
  background: #fff;
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--burgundy);
}

.section-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--burgundy);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  margin-right: 1rem;
}

.policy-list {
  list-style: none;
  padding-left: 0;
}

.policy-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.policy-list li:last-child {
  border-bottom: none;
}

.policy-list li::before {
  content: "•";
  color: var(--burgundy);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}



@media (max-width: 768px) {
  .privacy-hero {
    padding: 80px 0 40px;
  }

  .policy-section {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }

  .privacy-content {
    padding: 60px 0;
  }
}

/* Terms and condition */
.terms-hero {
  background: linear-gradient(135deg, var(--burgundy) 0%, #1a1a1a 100%);
  padding: 100px 0 60px;
}

.terms-content {
  background: var(--light-bg);
  padding: 80px 0;
}

.terms-section {
  background: #fff;
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--burgundy);
}

.section-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--burgundy);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  margin-right: 1rem;
}

.terms-list {
  list-style: none;
  padding-left: 0;
}

.terms-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 1.5rem;
}

.terms-list li:last-child {
  border-bottom: none;
}

.terms-list li::before {
  content: "•";
  color: var(--burgundy);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.warning-box {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.contact-box {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--mauve) 100%);
  color: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.last-updated {
  background: #f8f9fa;
  border-radius: 0.5rem;
  padding: 1rem;
  border-left: 4px solid var(--burgundy);
}

.legal-note {
  background: #e9ecef;
  border-radius: 0.5rem;
  padding: 1rem;
  font-style: italic;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .terms-hero {
    padding: 80px 0 40px;
  }

  .terms-section {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }

  .terms-content {
    padding: 60px 0;
  }
}

/* About us page css */
.about-wrapper {
  min-height: 100vh;
  background-color: #fff;
}

.about-left {
  background: url('aboutbg.jpg') center center/cover no-repeat;
  position: relative;
}

.about-left::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}

.logo-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
}

.logo-overlay img {
  width: 100px;
  opacity: 0.8;
}

.about-right {
  background-color: #fff;
}

.about-content {
  margin: 0 auto;
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}

.about-us-script {
  font-style: italic;
  font-weight: 400;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

.highlight-text {
  color: #8b0000;
  font-weight: 600;
}

.cause-list,
.benefit-list {
  padding-left: 20px;
}

.cause-list li,
.benefit-list li {
  margin-bottom: 10px;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.about-list li {
  font-size: 1rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8b0000;
  font-weight: bold;
}

.tick-list li::before {
  content: "✓";
  color: #8b0000;
}

.tick-list span {
  font-weight: 600;
  color: #8b0000;
}


/* Faqs ki css */
.faq-hero {
  background: linear-gradient(135deg, rgba(81, 12, 20, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  position: relative;
}

.faq-content {
  background: var(--light-bg);
  padding: 80px 0;
}

.faq-accordion {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #f0f0f0;
  background: transparent;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  background: #fff;
  color: var(--burgundy);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem 2rem;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(81, 12, 20, 0.05), rgba(122, 75, 82, 0.05));
  color: var(--burgundy);
  border-bottom: 2px solid var(--burgundy);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23510c14'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: scale(1.2);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23510c14'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: scale(1.2) rotate(-180deg);
}

.accordion-body {
  padding: 1.5rem 2rem;
  background: #fff;
  color: #555;
  line-height: 1.7;
}

.faq-number {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--burgundy);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-weight: 600;
  margin-right: 1rem;
  font-size: 0.9rem;
}

.quick-links {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
}

.quick-link-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #555;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.quick-link-item:hover {
  background: rgba(81, 12, 20, 0.05);
  color: var(--burgundy);
  border-left-color: var(--burgundy);
  transform: translateX(5px);
}

.quick-link-item i {
  width: 24px;
  margin-right: 0.75rem;
  color: var(--burgundy);
}

.contact-support {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--mauve) 100%);
  border-radius: 1rem;
  padding: 3rem;
  color: white;
  text-align: center;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 100px 0 60px;
  }

  .faq-content {
    padding: 60px 0;
  }

  .accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .accordion-body {
    padding: 1.25rem 1.5rem;
  }

  .quick-links {
    padding: 1.5rem;
  }
}

/* Contact Us page CSS */
.contact-wrapper {
  background-color: #fff;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

.highlight-text {
  color: #8b0000;
  font-style: italic;
}

.opening-hours li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 5px;
}

.opening-hours li span {
  font-weight: 600;
  color: #000;
  margin-right: 5px;
}

.contact-info h5 {
  font-size: 1.1rem;
}

.contact-form-wrapper {
  border: 1px solid #eee;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.btn-burgundy {
  background-color: #8b0000;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-burgundy:hover {
  background-color: #a20d0d;
}

.btn-outline-burgundy {
  border: 1px solid #8b0000;
  color: #8b0000;
  border-radius: 8px;
  font-weight: 500;
}

.btn-outline-burgundy:hover {
  background-color: #8b0000;
  color: #fff;
}

.complaint-box {
  background-color: #fafafa;
}

/* our support css */
.about-section {
  background-color: #fff;
}

.about-bg {
  background: url('aboutbg.jpg') center center/cover no-repeat;
  position: relative;
  height: 100%;
  min-height: 700px;
}

.about-bg .overlay {
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bottom-logo {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.bottom-logo img {
  width: 90px;
  opacity: 0.8;
}

.about-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
}

.highlight-text {
  color: #8b0000;
  font-style: italic;
}

/* New Home Index Css */
/* ===== services grid ===== */
.services-grid-section {
  background: #fff;
}

.small-badge {
  color: var(--burgundy);
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: .5rem;
}

.service-card {
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to bottom, #510c14 0%, #ffffff 100%) border-box;
  border: 2px solid transparent;
  /* Transparent border to show gradient */
  border-radius: 24px;
  padding: 31px;
  /* Adjusted padding */

  /* Deep, bottom-heavy shadow ("button center") */
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.25);

  min-height: 280px;
  /* Taller card */
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Ensure children don't center if that was the case */
  justify-content: space-between;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.service-card hr {
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid #ddd;
  /* Darker, clearly visible line */
  opacity: 1;
  width: 100%;
  /* Full width of content area */
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  width: 100%;
  /* Force full width */
}

.card-title {
  font-size: 0.95rem;
  /* Uppercase, bold, smallish */
  font-weight: 700;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: 70%;
  line-height: 1.3;
}

.card-price {
  font-weight: 400;
  /* Regular weight */
  font-size: 2.2rem;
  /* Large price */
  line-height: 1;
  color: #000;
  white-space: nowrap;
  /* Prevent wrapping */
  margin-left: 10px;
  /* spacing from title */
}

.card-desc {
  color: #333;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.card-footer {
  margin-top: 0;
  /* Handled by hr margin */
  padding-top: 5px;
  width: 100%;
  /* Force full width */
  display: flex;
  /* Ensure flex behavior */
  justify-content: space-between;
  /* Force edges */
  align-items: center;
}

.card-link {
  color: #000;
  font-weight: 700;
  /* Bold link text */
  text-decoration: none;
  font-size: 1rem;
}

.card-footer .card-icon {
  background: #000;
  color: #fff;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  transform: rotate(45deg);
  /* Default diagonal up-right look with up-arrow */
}

.service-card:hover .card-icon {
  transform: rotate(90deg);
  /* Rotate further on hover */
}

/* ===== discover section ===== */
.discover-section {
  background: #fff;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.discover-subtitle {
  color: var(--burgundy);
  font-weight: 700;
  letter-spacing: .4px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.discover-quote {
  font-size: 1.02rem;
  color: #444;
  margin-top: 1rem;
  max-width: 650px;
}

.discover-divider {
  border: none;
  height: 1px;
  background: var(--burgundy);
  width: 100%;
  max-width: 560px;
}

.suitable-note {
  margin-top: 1.6rem;
}

/* button styles */
.btn-outline-burgundy {
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  background: transparent;
  padding: .6rem 1.2rem;
  border-radius: 40px;
}

.btn-outline-burgundy:hover {
  background: var(--burgundy);
  color: #fff;
}

/* Collage Container */
.collage {
  position: relative;
  width: 100%;
  max-width: 100%;
  /* Allow full width of parent */
  margin: auto;
  height: auto;
  min-height: 450px;
  /* Ensure height for bigger images */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* Reduced gap for better fit with bigger images */
  flex-wrap: nowrap;
}

/* Individual Image Container */
.collage-img {
  position: relative;
  flex: 1;
  /* Allow growing */
  max-width: 320px;
  /* Increased from 260px */
  height: auto;
  opacity: 0;
  /* Valid for entrance animation */
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Image Styling */
.collage-img img {
  width: 100%;
  height: 400px;
  /* Increased height from 340px */
  border-radius: 20px;
  /* Slightly more rounded */
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  /* Enhanced shadow */
  transition: transform 0.3s ease;
  animation: gentleFloat 6s ease-in-out infinite;
  /* Continuous attractive animation */
}

/* Staggered Entrance and Float Delays */
.img1 {
  animation-delay: 0.2s;
  z-index: 2;
}

.img1 img {
  animation-delay: 0s;
}

.img2 {
  animation-delay: 0.4s;
  z-index: 3;
  /* Center mostly on top */
  margin-top: 50px;
  /* Vertical offset for center */
}

.img2 img {
  animation-delay: 1.5s;
}

.img3 {
  animation-delay: 0.6s;
  z-index: 1;
}

.img3 img {
  animation-delay: 3s;
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gentleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
    /* Subtle float */
  }
}

/* ========================= */
/*  Mobile responsive fix  */
/* ========================= */
@media (max-width: 991px) {
  .collage {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 0;
    min-height: auto;
  }

  .collage-img {
    width: 100%;
    max-width: 450px;
    /* Bigger on tablet/mobile */
    margin-top: 0 !important;
    /* Reset margin from desktop */
    opacity: 1 !important;
    /* Ensure visible if animation not supported/wanted purely */
    animation: fadeInUp 0.8s ease-out forwards;
    /* Keep animation */
  }

  /* Stagger delays for mobile too */
  .img1 {
    animation-delay: 0.1s;
  }

  .img2 {
    animation-delay: 0.3s;
  }

  .img3 {
    animation-delay: 0.5s;
  }

  .collage-img img {
    height: 300px;
    /* Adjusted height for mobile ratio */
    width: 100%;
  }
}



/* small tweaks */
.lead.text-muted {
  color: #6b6b6b;
}

.text-burgundy {
  color: var(--burgundy);
}

/* why choose us css */
/* --- General Styling --- */
.pecbora-why-choose-us {
  padding-top: 50px;
  padding-bottom: 50px;
}

.why-choose-us-heading {
  color: #b7393d;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.why-choose-us-subtext {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}

/* --- Parabolic Arch (Kept the same) --- */
.parabola-image-mask {
  width: 100%;
  max-width: 500px;
  /* Increased from 400px */
  height: 600px;
  /* Increased from 500px */
  overflow: hidden;
  margin: 0 auto;
  border-radius: 50% / 300px 300px 0 0;
  /* Adjusted for taller/wider arch */
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.05);
}

.pecbora-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  top: 0;
}

@media (max-width: 991px) {
  .parabola-image-mask {
    border-radius: 15px;
    height: auto;
    max-width: 100%;
  }
}

/* --- Button/Feature Styling --- */
.pecbora-features-container {
  /* Add some padding on the right to match the image spacing */
  padding-right: 1.5rem;
}

.feature-row {
  /* Bootstrap's d-flex and justify-content-* handles the alignment (start/end) */
  /* d-flex is applied directly in the HTML class list. */
  flex-wrap: nowrap;
  /* Ensures buttons stay in one row if possible */
  max-width: 100%;
  /* Ensure the row container doesn't overflow */
}

.pecbora-btn {
  padding: 15px 30px;
  /* Reduced horizontal padding slightly */
  border: 2px solid;
  border-radius: 50px;
  font-size: 1.25rem;
  /* Slightly reduced font size for better fit */
  font-weight: 500;
  /* Increased weight for legibility */
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
  /* changed from block to prevent full width forces */
  min-width: 320px;
  /* Fixed minimum width for uniformity */
  white-space: nowrap;
}

/* Dark/Primary Buttons */
.pecbora-btn.primary-bg {
  background-color: #581617;
  /* Dark reddish-brown */
  color: #fff;
  border-color: #581617;
}

/* Light/Secondary Buttons */
.pecbora-btn.secondary-bg {
  background-color: #fff;
  color: #581617;
  /* Dark reddish-brown text */
  border-color: #e0e0e0;
  /* Light border color */
}

/* Mobile Fallback: Stack buttons on small screens if they don't fit side-by-side */
@media (max-width: 575px) {
  .feature-row {
    flex-direction: column;
    align-items: center !important;
    /* Center the column stack */
  }

  .pecbora-btn {
    width: 80%;
    /* Give them some width on mobile */
    margin-right: 0 !important;
    /* Remove margin between them */
    margin-bottom: 10px;
    /* Add margin to stack vertically */
  }
}

/* home page contact us css*/
/* --- General Styling (No change) --- */
.pecbora-contact-us {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* --- Left Column Headings (No change) --- */
.contact-us-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

.contact-us-subtext {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2rem;
}

/* --- Fix 1: Contact Info Icon Styling (The Round Maroon Background) --- */
.pecbora-icon {
  /* Primary Fix: Set size, background, color, and border-radius */
  background-color: #581617;
  /* Maroon background */
  color: #fff;
  /* White icon color */
  border-radius: 30%;
  /* Perfect circle */

  font-size: 1.25rem;
  margin-right: 15px;
  width: 40px;
  /* Increased size for a better circle */
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Prevents icon from shrinking on narrow screens */
}

/* --- Fix 2: Text Styling (Bold and Black) --- */
.info-label {
  font-size: 0.9rem;
  /* Increased size slightly for better visibility */
  color: #000;
  /* Black color */
  font-weight: 700;
  /* Bold */
  margin-bottom: 0 !important;
  line-height: 1.2;
}

.info-detail {
  font-size: 0.95rem;
  color: #333;
  font-weight: 400;
  /* Regular weight for the detail text */
  line-height: 1.2;
}

/* --- Complaint Button (No change) --- */
.complaint-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #581617;
  border-radius: 30px;
  color: #581617;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.complaint-btn:hover {
  background-color: #581617;
  color: #fff;
}


/* --- Right Column: Form Container (No change) --- */
.pecbora-form-container {
  background-color: #581617;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  height: 100%;
  min-height: 600px;
  /* Ensure a minimum height for large forms */
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
}

/* --- Form Inputs (No change) --- */
.pecbora-input {
  background-color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 0.9rem;
  color: #333;
}

.pecbora-textarea {
  resize: none;
  height: 150px;
}

/* --- Fix 3: Submit Button Styling (Black & Fully Rounded) --- */
.pecbora-submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #000;
  /* Changed to Black */
  color: #fff;
  border: none;
  border-radius: 30px;
  /* Changed to fully rounded/pill shape */
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.pecbora-submit-btn:hover {
  background-color: #222;
}

/* Footer section ui CSS */
/* --- CTA Section Styling --- */
.pecbora-footer-cta {
  background-color: #fff;
  /* Ensure it stands out against the dark footer */
}

.cta-heading {
  color: #581617;
  /* Maroon color */
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.cta-subtext {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* --- Main Footer Container and Wrapper --- */
.pecbora-footer-block {
  color: #fff;
  padding-bottom: 0;
  /* Remove bottom padding to let copyright bar sit flush */
}

.pecbora-footer-wrapper {
  /* This is the key element for the large, rounded corners */
  background-color: #1e1e1e;
  /* Dark gray for the main content area */
  padding: 50px 30px;
}

.home-footer-curve {
  /* Only for home page */
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

/* --- Logo and Description --- */
.footer-logo-icon {
  background-color: #581617;
  color: #fff;
  padding: 5px 10px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 8px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-description {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 250px;
}

/* --- Link Columns --- */
.footer-column-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li {
  margin-bottom: 8px;
}

.footer-link-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-link-list a:hover {
  color: #fff;
}

/* --- Newsletter Form --- */
.newsletter-prompt {
  font-size: 0.9rem;
  color: #ccc;
}

.newsletter-form {
  max-width: 300px;
  overflow: hidden;
  border: 1px solid #581617;
  /* Maroon border around the whole form */
  border-radius: 50px;
  /* Fully rounded container */
}

.newsletter-input {
  flex-grow: 1;
  border: none;
  padding: 10px 15px;
  background-color: #ffffff;
  color: #fff;
  outline: none;
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-submit-btn {
  background-color: #581617;
  /* Maroon button */
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
  border-radius: 0 50px 50px 0;
  /* Only right side rounded */
}

.newsletter-submit-btn i {
  display: block;
  /* Ensure the arrow icon is centered */
}

/* --- Copyright Bar --- */
.pecbora-copyright {
  background-color: #000;
  color: #aaa;
  font-size: 0.85rem;
  border-top: 1px solid #333;
  /* Thin line separator */
}

.pecbora-copyright a {
  color: #aaa;
  text-decoration: none;
}

/* Mobile adjustments for stacking */
@media (max-width: 767px) {
  .pecbora-footer-wrapper {
    padding: 30px 15px;
  }

  .pecbora-copyright .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pecbora-copyright p {
    margin-bottom: 5px !important;
  }
}

/* Service Page CSS */
/* variables */
:root {
  --burgundy: #611217;
  /* adjust if you want exact tone */
  --muted: #5d5d5d;
}

/* SECTION LAYOUT */
.service-detail-section {
  background: #fff;
}

.service-detail-section .row {
  min-height: 640px;
}

/* desktop height, adjust if needed */

/* LEFT CONTENT */
.content-col {
  background: #fff;
}

.content-inner {
  max-width: 720px;
  margin: 0 auto;
}

.service-title {
  font-size: 1rem;
  letter-spacing: .6px;
  font-weight: 700;
  color: var(--burgundy);
}

.service-intro {
  color: #2f2f2f;
  line-height: 1.8;
  margin-top: .6rem;
}

/* notes / lists */
.notes-list,
.rates-list,
.advantages-list {
  color: #333;
  margin-left: 1rem;
  margin-top: .6rem;
}

.notes-list li {
  margin-bottom: .45rem;
}

.rates-list li {
  margin-bottom: .45rem;
  list-style: disc;
  margin-left: 1.2rem;
}

.advantages-list li {
  margin-bottom: .45rem;
}

/* CTA button */
.btn-outline-burgundy {
  border: 1.5px solid var(--burgundy);
  color: var(--burgundy);
  background: transparent;
  padding: .6rem 1.1rem;
  border-radius: 40px;
  transition: all .2s ease;
}

.btn-outline-burgundy:hover,
.cta-btn:hover {
  background: var(--burgundy);
  color: #fff;
  text-decoration: none;
}

.cta-btn .cta-arrow {
  margin-left: .6rem;
}

/* RIGHT IMAGE / CARD */
.image-col {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

/* full-cover background image on right column */
.image-bg {
  position: absolute;
  inset: 0;
  right: 0;
  left: 0;
  background-image: url('https://pecbora.toolsworld.site/servicebg.png');
  background-position: center center;
  background-size: cover;
  filter: grayscale(20%) brightness(0.9);
  z-index: 0;
}

/* services card wrapper (on top of bg) */
.services-card-wrapper {
  position: relative;
  z-index: 2;
  width: 320px;
  max-width: 86%;
  background: rgba(97, 14, 21, 0.98);
  /* deep burgundy */
  color: #fff;
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  margin: 40px;
}

/* ALL SERVICES button */
.all-services-btn {
  width: 100%;
  display: inline-block;
  background: #fff;
  color: var(--burgundy);
  border: none;
  padding: 12px 18px;
  border-radius: 28px;
  font-weight: 700;
  letter-spacing: .6px;
  margin-bottom: 18px;
}

/* services list */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 14px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background .18s ease, transform .18s ease;
}

.svc-item:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateX(6px);
}

.svc-item .svc-icon {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

/* small screens: stack and keep everything readable */
@media (max-width: 991px) {
  .service-detail-section .row {
    min-height: auto;
  }

  .content-col {
    padding: 28px 20px;
  }

  .image-col {
    min-height: 420px;
    padding: 28px 20px;
  }

  .services-card-wrapper {
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    padding: 18px;
  }

  .image-bg {
    background-position: center top;
  }

  .services-list .svc-item {
    padding: 10px 8px;
  }
}

/* very small screens */
@media (max-width: 576px) {
  .service-title {
    font-size: .95rem;
  }

  .service-intro {
    font-size: .95rem;
  }

  .services-card-wrapper {
    padding: 14px;
  }

  .all-services-btn {
    padding: 10px;
    font-size: .95rem;
  }
}


/* Customer dashboard ui css */
.customer-dashboard {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

/* Header Section */
.customer-header {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  border-radius: 18px;
  padding: 40px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.customer-header img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.customer-header input[type="file"] {
  display: none;
}

.profile-upload {
  position: relative;
  display: inline-block;
}

.upload-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #fff;
  color: #2563eb;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.customer-header h3 {
  font-weight: 600;
  margin-bottom: 6px;
}

.customer-header p {
  margin: 0;
  opacity: 0.9;
}

/* Tabs Navigation */
.dashboard-tabs {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.dashboard-tab {
  flex: 1;
  background: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.dashboard-tab i {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
  color: #b7393d;
}

.dashboard-tab.active,
.dashboard-tab:hover {
  background: #b7393d;
  color: #fff;
}

.dashboard-tab.active i,
.dashboard-tab:hover i {
  color: #fff;
}

/* Section Content */
.section-content {
  background: #fff;
  margin-top: 30px;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  display: none;
}

.section-content.active {
  display: block;
}

/* Profile Form */
.profile-info label {
  font-weight: 500;
  margin-bottom: 6px;
}

.profile-info input,
.profile-info textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 16px;
  transition: border 0.2s;
}

.profile-info input:focus {
  border-color: #b7393d;
  outline: none;
}

.save-btn {
  background: #b7393d;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.save-btn:hover {
  background: #b7393d;
}

/* Services List */
.service-card {
  border: 1px solid #b7393d;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s;
}

.service-card:hover {
  border-color: #b7393d;
  background: #f9fafc;
}

.service-card h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.service-status {
  font-size: 0.85rem;
  color: #2563eb;
  font-weight: 500;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

/* Responsive */
@media(max-width: 768px) {
  .customer-header {
    flex-direction: column;
    text-align: center;
  }

  .dashboard-tab {
    flex: 1 1 calc(50% - 10px);
  }
}

/* Service Form Css Start */
.modal-content {
  border-radius: 1rem;
  overflow: hidden;
}

.modal-body {
  background-color: #fff;
}

@media (max-width: 768px) {
  .modal-dialog {
    max-width: 95%;
  }

  .modal-body {
    padding: 1rem;
  }
}

/* Property inspection css */
.text-burgundy {
  color: #6f1d1b;
}

.bg-burgundy {
  background-color: #6f1d1b;
}

.btn-burgundy {
  background-color: #6f1d1b;
  color: #fff;
  border: none;
  transition: 0.3s;
}

.btn-burgundy:hover {
  background-color: #8c2320;
}

.circle-logo i {
  font-size: 22px;
}

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  padding: 12px 14px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

@media(max-width:768px) {
  .inspection-form-wrapper .row>div {
    padding: 0 !important;
  }

  .border {
    border: none !important;
  }
}

/* for map css */
.pac-container {
  z-index: 99999 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid #ddd !important;
  margin-top: 5px !important;
}

.pac-item {
  padding: 8px 12px !important;
  cursor: pointer !important;
  border-bottom: 1px solid #f0f0f0 !important;
}

.pac-item:hover {
  background-color: #f8f9fa !important;
}

.pac-item-selected {
  background-color: #e9ecef !important;
}

.pac-icon {
  margin-right: 8px !important;
}

.modal {
  z-index: 1050;
}

.modal-backdrop {
  z-index: 1040;
}

.address-field-group {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  background: #f8f9fa;
}

.address-field-group h6 {
  color: #8B0000;
  margin-bottom: 0.5rem;
}

/* customer dashboard ui css start */
.dashboard-section {
  background: #fff;
  font-family: "Montserrat", sans-serif;
}

.dashboard-container {
  display: flex;
  min-height: 100vh;
  background-color: #1a0f19;
  /* Sidebar color for faux column */
}

/* Sidebar */
.dashboard-sidebar {
  background: #1a0f19;
  color: #fff;
  width: 270px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.dashboard-sidebar .user-info {
  text-align: center;
  position: relative;
}

.user-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 15px 0;
}

.bell-icon {
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 18px;
}

.dashboard-sidebar h5 {
  font-size: 15px;
  margin-bottom: 2px;
}

.dashboard-sidebar p {
  font-size: 13px;
  color: #bbb;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.sidebar-menu li {
  padding: 10px 15px;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.sidebar-menu li i {
  margin-right: 10px;
}

.sidebar-menu li.active,
.sidebar-menu li:hover {
  background: #fff;
  color: #000;
  font-weight: 600;
}

.logout-link {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
}

.logout-link:hover {
  color: #fff;
}

/* Dashboard Main */
.dashboard-content {
  flex: 1;
  padding: 40px;
  background-color: #fff;
}

.dashboard-header h4 {
  color: #640c1b;
  font-weight: 700;
}

.dashboard-header select {
  border-radius: 6px;
  padding: 5px 10px;
}

.maroon-btn {
  background: #640c1b;
  color: #fff;
  border: none;
  font-weight: 600;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.dashboard-card {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 20px 25px;
  position: relative;
}

.dashboard-card h6 {
  color: #640c1b;
  font-weight: 700;
  margin-bottom: 15px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
}

.table-row.header {
  font-weight: 600;
  border-bottom: 2px solid #999;
}

.view-link {
  color: #640c1b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  position: absolute;
  right: 20px;
  bottom: 10px;
  border-bottom: 2px solid #640c1b;
}

.dashboard-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.bottom-card {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 25px;
}

.bottom-card h6 {
  color: #640c1b;
  font-weight: 700;
  margin-bottom: 12px;
}

.bottom-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .dashboard-container {
    flex-direction: column;
    background-color: #fff;
  }

  .dashboard-sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }

  .dashboard-content {
    padding: 25px 15px;
  }
}

.dashboard-header {
  flex-wrap: wrap;
  row-gap: 10px;
}

@media (max-width: 576px) {
  .dashboard-header select {
    width: 100%;
  }

  .dashboard-header .btn {
    width: 100%;
  }
}

ul.sidebar-menu li.active a,
ul.sidebar-menu li:hover a {
  color: black;
  text-decoration: none;
}

ul.sidebar-menu li a {
  color: white;
  text-decoration: none;
}

/* ===== Sidebar becomes Bottom Navigation on Mobile + Tablet ===== */
@media (max-width: 1024px) {
  .dashboard-sidebar {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 70px !important;
    background: #1a0f19 !important;
    color: #fff !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px 0 !important;
    z-index: 99999 !important;
    border-radius: 15px 15px 0 0 !important;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3) !important;
  }

  /* Hide user info and logout from bottom nav */
  .dashboard-sidebar .user-info,
  .dashboard-sidebar .logout-link {
    display: none !important;
  }

  /* Specific elements to hide on mobile */
  .dashboard-sidebar .sidebar-menu li.hide-on-mobile {
    display: none !important;
  }

  /* Make sidebar-menu as bottom nav items */
  .dashboard-sidebar .sidebar-menu {
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 5px !important;
  }

  .dashboard-sidebar .sidebar-menu li {
    flex: 1 !important;
    text-align: center !important;
    background: transparent !important;
    border-radius: 0 !important;
    font-size: 10px !important;
    color: #fff !important;
    padding: 6px 0 !important;
  }

  .dashboard-sidebar .sidebar-menu li a {
    color: #fff !important;
    text-decoration: none !important;
    display: block !important;
  }

  .dashboard-sidebar .sidebar-menu li i {
    display: block !important;
    font-size: 20px !important;
    margin: 0 auto 5px !important;
  }

  .dashboard-sidebar .sidebar-menu li.active a,
  .dashboard-sidebar .sidebar-menu li:hover a {
    color: #ffbebe !important;
    font-weight: 600 !important;
  }

  /* Prevent overlap with bottom bar */
  .dashboard-content {
    padding-bottom: 80px !important;
  }
}


/* ===== Tabs (Details / Date / Status) ===== */
.dashboard-tabs {
  display: flex;
  justify-content: space-between;
  background: #000;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.dashboard-tabs div {
  flex: 1;
  padding: 0.8rem;
}

/* ===== Service Timeline ===== */
.service-timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px dotted #6a0e0e;
}

.service-item {
  position: relative;
  margin-bottom: 1.8rem;
}

.service-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: #6a0e0e;
  border-radius: 50%;
}

.service-item .user-type {
  font-weight: 600;
  color: #000;
}

.service-card {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.service-card .details {
  flex: 1;
}

.service-card .details h6 {
  font-weight: 700;
  margin: 0;
}

.service-card .details small {
  display: block;
  margin-bottom: 5px;
  color: #666;
}

.service-card .actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.6rem;
}

.service-card .actions a {
  color: #6a0e0e;
  font-weight: 600;
  text-decoration: underline;
  font-size: 0.95rem;
}

.service-card .status {
  font-weight: 700;
  color: #e07c55;
  /* awaiting */
}

.service-card .status.completed {
  color: #6a0e0e;
}

/* ===== Pagination ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.pagination a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.pagination a.active {
  color: #6a0e0e;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .service-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .service-card .status {
    align-self: flex-end;
  }
}

/* ===== SERVICE HISTORY TABLE DESIGN ===== */
.service-history-container {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}

/* ==== Table Header ==== */
.service-history-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: #000;
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 12px 20px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.service-history-header div {
  text-transform: uppercase;
  font-size: 0.95rem;
}

/* Notifications page css start*/
.notifications-header {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  background: #000;
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 12px 20px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.notifications-header div {
  text-transform: uppercase;
  font-size: 0.95rem;
}

/* Notifications page css end*/

/* ==== Table Rows ==== */
.service-history-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-history-row:hover {
  background: #f0f0f0;
}

/* Notifications page css start*/
.notifications-header {
  display: grid;
  grid-template-columns: 80px 3fr 1fr;
  /* Reduced ID col, expanded Details */
  padding: 10px 1.5rem;
  font-weight: 600;
  font-size: 0.9em;
  letter-spacing: 0.5px;
}

.notifications-header div:last-child {
  text-align: right;
  /* Aligns Status header to right */
}

.notifications-row {
  display: grid;
  grid-template-columns: 80px 3fr 1fr;
  /* Matching columns */
  align-items: center;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.notifications-row:hover {
  background: #f0f0f0;
}

.service-date p {
  font-size: 0.87em;
  color: #640c1b;
  font-weight: 500;
}

/* Notifications page css end*/
.service-date small {
  font-size: 0.87em;
  color: #777;
  font-weight: 500;
}

.notifications-row>div:last-child {
  text-align: right;
}


/* Details Column */
.service-details small {
  display: block;
  color: #640c1b;
  margin-bottom: 3px;
}

.service-details h6 {
  font-weight: 700;
  margin: 0;
  color: #000;
}

.service-actions {
  display: flex;
  gap: 1rem;
  margin-top: 6px;
}

.service-actions a {
  color: #6a0e0e;
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Date Column */
.service-date {
  color: #333;
  font-weight: 600;
  text-align: left;
}

/* Status Column */
.service-status {
  font-weight: 700;
  text-align: right;
}

.service-status.upcoming {
  color: #5feb5a;
}

.service-status.awaiting {
  color: #e07c55;
}

.service-status.completed {
  color: #6a0e0e;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .service-history-header {
    display: none;
    /* hide table header on mobile */
  }

  .service-history-row {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .service-details {
    margin-bottom: 0.6rem;
  }

  .service-date,
  .service-status {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-top: 5px;
  }

  .service-date::before {
    content: "Date:";
    font-weight: 600;
    color: #555;
  }

  .service-status::before {
    content: "Status:";
    font-weight: 600;
    color: #555;
  }
}

/* customer profile css start*/
/* Profile Card */
.profile-card {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 25px;
  margin-top: 10px;
}

/* Header inside card */
.profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.profile-avatar {
  width: 70px;
  height: 70px;
  border-radius: 100px;
  margin-right: 15px;
}

.profile-header h5 {
  margin: 0;
  font-weight: 700;
  color: #222;
}

.profile-header p {
  margin: 0;
  color: #555;
}

/* Buttons in header */
.profile-actions {
  display: flex;
  gap: 10px;
}

.profile-btn {
  padding: 8px 18px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.edit-btn {
  background: #800000;
  color: #fff;
}

.pass-btn {
  background: #222;
  color: #fff;
}

.save-btn {
  background: #800000;
  color: #fff;
}

/* Inputs */
.profile-input {
  border: 1px solid #a94442 !important;
  background: #fff;
  font-size: 14px;
  padding: 10px 12px;
}

.manual-entry {
  font-size: 12px;
  color: #000;
  margin-top: 3px;
  display: inline-block;
}

.add-email-btn {
  margin-top: 8px;
  background: #800000;
  color: #fff;
  padding: 6px 14px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

/* customer profile css end */

/* About Us Page Custom Styles */
.about-wrapper {
  overflow: hidden;
  padding-bottom: 0 !important;
  /* Ensure no bottom padding so it touches footer */
  margin-bottom: 0 !important;
  /* Ensure no bottom margin */
  background: white;
}

.about-wrapper .row {
  margin: 0;
  /* Remove row margins */
  display: flex !important;
  /* Ensure flex for equal height columns */
  flex-wrap: wrap;
}

.about-left {
  background-color: #581617;
  /* Burgundy */
  color: #fff;
  display: block;
  min-height: 100%;
  /* Stretch to match right column */
  position: relative;
  border-radius: 0 !important;
  /* Ensure no border radius if inherited */
}

.logo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0;
}

.logo-overlay img {
  width: 60%;
  max-width: 60%;
  height: auto;
  filter: none;
  display: block;
  padding-bottom: 20px;
}

/* Ensure right content stretches too if needed */
.about-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 992px) {
  .about-left {
    min-height: 600px;
    /* Ensure visual height on desktop */
  }
}