/* ===== Brand Colors ===== */
:root {
  --brand-blue: #2A6F9E;
  --brand-blue-dark: #1E4E70;
  --gray: #6c757d;
  --gray-dark: #495057;
  --white: #ffffff;
  --coral: #FF7F50;
  --light-gray: #F5F5F5;
  --table-header: #2A6F9E;
}

/* ===== Navbar ===== */
.navbar-custom {
    background-color: var(--brand-blue);
    border-bottom: 1px solid var(--brand-blue-dark);
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--white);
    font-weight: bold;
    transition: color 0.3s;
}

.navbar-brand:hover {
    color: #d9d9d9;
}

.navbar-nav .nav-link {
    color: var(--white);
    margin: 0 5px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #d9d9d9;
}

.navbar .badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--coral);
}

/* Dropdown Menu */
.dropdown-menu {
    min-width: 250px;
    background-color: var(--light-gray);
    border-radius: 5px;
    padding: 0.25rem 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dropdown-item {
    color: #212529;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-item i {
    margin-right: 8px;
}

.dropdown-item:hover {
    background-color: var(--brand-blue);
    color: var(--white);
}

/* ===== Footer ===== */
.footer-custom {
    background-color:black;
    border-top: 1px solid var(--brand-blue-dark);
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

/* ===== Buttons ===== */
.btn-action {
    background-color: var(--brand-blue);
    color: var(--white);
    padding: 8px 20px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.btn-action:hover {
    background-color: var(--brand-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Cancel Button */
.btn-close-custom {
    background-color: var(--gray);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.9rem;
    cursor: not-allowed;
    opacity: 0.8;
    transition: all 0.3s;
}

.btn-close-custom:hover {
    background-color: var(--gray-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ===== Hero Section ===== */
.hero-section .carousel-item {
    min-height: 80vh;
    position: relative;
}

.hero-section .carousel-item::before {
    content: "";
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-section .carousel-item > .d-flex {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 1.5rem;
}

/* ===== Settings Menu ===== */
.settings-menu {
    max-width: 400px;
    margin: 40px auto;
    text-align: left;
}

.settings-menu-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-blue);
    border-left: 5px solid var(--brand-blue-dark);
    padding-left: 12px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.settings-menu .list-group {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.settings-menu .list-group-item {
    border: none;
    padding: 12px 16px;
    font-weight: 500;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.settings-menu .list-group-item i {
    font-size: 1.1rem;
    margin-right: 10px;
    color: var(--brand-blue);
}

.settings-menu .list-group-item:hover {
    background-color: var(--brand-blue);
    color: var(--white);
}

.settings-menu .list-group-item:hover i {
    color: var(--white);
}

.settings-menu .list-group-item.active {
    background-color: var(--brand-blue-dark);
    color: var(--white);
    border-color: var(--brand-blue-dark);
}

.settings-menu .list-group-item.active i {
    color: var(--white);
}

/* ===== Table Header ===== */
.thead {
    background-color: var(--table-header);
    color: var(--white);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 200px;
    }
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

/* ===== Homeable-Inspired Landing ===== */
.modern-hero {
  background: #f8f9fa;
  padding: 80px 0;
}
.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
}
.hero-text .text-brand {
  color: var(--brand-blue);
}
.hero-text p {
  color: var(--gray-dark);
  font-size: 1.1rem;
}
.hero-image img {
  max-width: 90%;
  border-radius: 16px;
  transition: transform 0.5s;
}
.hero-image img:hover {
  transform: scale(1.03);
}

/* ===== Button Styling (Peach Accent with Hover Effect) ===== */
.modern-hero .btn-action {
  background-color: #ffffff;
  color: #2A2A2A;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.modern-hero .btn-action:hover {
  background-color: #c8c9ca;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline-primaryy {
  color: #000000;
  background-color: #f3f3f3;
}

.btn-outline-primaryy:hover {
  background-color: #919ca8;
  color: #2A2A2A;
}

/* ===== Hero Image Animation ===== */
.hero-image img {
  max-width: 90%;
  border-radius: 20px;
  transition: transform 0.5s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

/* ===== Responsive Fix ===== */
@media (max-width: 768px) {
  .hero-text {
    border-right: none;
    padding-right: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .hero-text h1 {
    font-size: 2.3rem;
  }
}



/* ===== Animated Changing Word (Smooth + Slower) ===== */
.changing-word {
  color: #2A6F9E; /* brand blue */
  display: inline-block;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos].aos-animate {
  opacity: 1;
}

/* ===========================
   RICH SCROLL ANIMATED BACKGROUNDS
   =========================== */





/* ===== Navbar Animation (only homepage) ===== */
.animated-navbar {
  transform: translateY(-100%);
  opacity: 0;
  animation: navbarSlideDown 1.2s ease forwards;
}

@keyframes navbarSlideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Navbar scroll effect only for homepage */
.animated-navbar.scrolled {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background 0.5s ease, box-shadow 0.3s ease;
}

/* ===== Modern Cool Navbar ===== */
.cool-navbar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 12px 0;
  transition: all 0.4s ease;
}

.cool-navbar .navbar-brand {
  font-size: 1.3rem;
  color: #7b8cec !important;
  letter-spacing: 0.5px;
}

.cool-navbar .navbar-nav .nav-link {
  color: #000000 !important;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}



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

.cool-navbar .navbar-nav .nav-link:hover::after {
  width: 60%;
}

/* Navbar Buttons */
.cool-navbar .btn {
  font-weight: 600;
  border-radius: 25px;
  padding: 6px 16px;
  transition: all 0.3s ease-in-out;
}

.cool-navbar .btn-outline-light:hover {
  background: #fff;
  color: #2A6F9E !important;
}

/* Dropdown Styling */
.cool-navbar .dropdown-menu {
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  border: none;
}

.cool-navbar .dropdown-item {
  color: #2A6F9E;
  font-weight: 500;
  padding: 10px 15px;
  transition: all 0.2s;
}

.cool-navbar .dropdown-item:hover {
  background-color: #2A6F9E;
  color: white;
}

/* Navbar animation (homepage only) */
.animated-navbar {
  transform: translateY(-100%);
  opacity: 0;
  animation: navbarSlideDown 1.2s ease forwards;
}

@keyframes navbarSlideDown {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* 🎨 FILTER BAR DESIGN — Glassmorphism Style */
.filter-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  color: #fff !important;
}

.filter-glass input,
.filter-glass select {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.filter-glass input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.filter-glass select option {
  color: #000; /* ensures dropdown text is visible */
}

.filter-glass .btn-action {
  background: linear-gradient(135deg, #007BFF, #6610f2);
  border: none;
  color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.filter-glass .btn-action:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255,255,255,0.3);
}

.listings-page .container,
.listings-page .row,
.listings-page form {
  background: transparent !important;
}

/* Remove bg-light (white) on form filters */
.listings-page form.bg-light {
  background: rgba(95, 91, 91, 0.596) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
  
.listings-container {
  opacity: 0;
  transform: translateY(40px);
  animation: containerFadeIn 0.8s ease-out forwards;
}

/* The animation keyframes */
@keyframes containerFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.listings-container {
  opacity: 0;
  transform: translateY(40px);
  animation: containerFadeIn 0.9s ease-out 0.2s forwards; /* 0.2s delay */
}

/* Fix white line below navbar */
body, html {
  margin: 0;
  padding: 0;
  background: none !important;
}

.navbar {
  margin-bottom: 0 !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background-clip: border-box;
}

/* Ensure listing section connects smoothly to navbar */
.listings-page {
  margin-top: 0 !important;
  padding-top: 90px; /* keeps content below navbar */
}

/* ===== FIX MODAL OVERLAY ISSUE ===== */
.modal {
  z-index: 2000 !important;
}

.modal-backdrop {
  z-index: 1990 !important;
}

/* The animated background should never clip or block modals */
.listings-page {
  position: relative;
  z-index: 1; 
  overflow: visible !important; /* ✅ allow modal overlay */
}

/* Optional: smooth fade-in for page container */
.listings-page .container {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInListing 0.8s ease-out forwards;
}

@keyframes fadeInListing {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ Modal appearance fix */
.listings-page .modal-content {
  background: rgba(30, 30, 30, 0.95) !important; /* deep dark glass look */
  color: #fff !important;
  backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Optional: make the modal header/footer slightly distinct */
.listings-page .modal-header,
.listings-page .modal-footer {
  background: rgba(255, 255, 255, 0.08);
  border: none;
}

/* Ensure text in the modal stays readable */
.listings-page .modal-body p,
.listings-page .modal-body strong {
  color: #fff !important;
}

.text-brand {
  color: #eee5e5 !important;
  transition: all 0.3s ease;
}

.text-brand:hover {
  text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.5);
  transform: scale(1.1);
}

/* 🌆 HOW IT WORKS - REVEALING GLASS VERSION */





/* 💠 Step Layout - Horizontal Flow */
.timeline-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.timeline-step {
  flex: 1 1 calc(33.333% - 40px);
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: #111;
}

.timeline-step:hover {
  transform: translateY(-8px);
}

.timeline-bubble {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.timeline-step:hover .timeline-bubble {
  background: #000;
  transform: scale(1.05);
}

.timeline-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 25px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.timeline-card p {
  font-size: 0.95rem;
  color: #333;
}

/* ✨ Responsive */
@media (max-width: 992px) {
  .timeline-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .timeline-step {
    width: 85%;
  }
}




.application-section {
  background: linear-gradient(135deg, #FFE5B4, #FFDAB9, #FFCCBC);
  animation: gradientShift 6s ease infinite alternate;
  min-height: 100vh;
  padding-top: 100px;
}

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

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}



.dashboard-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(-45deg, #FFD6A5, #FFB5A7, #FCD5CE, #F8EDEB);
  background-size: 400% 400%;
  animation: dashboardFlow 15s ease infinite;
  color: #333;
  transition: background 0.5s ease;
}

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

.dashboard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  z-index: 1;
}

/* 🌈 Soft background (static blend, no moving gradient) */
body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #FFD6A5, #FFB5A7, #FCD5CE, #F8EDEB);
  background-attachment: fixed;
  background-size: cover;
  font-family: 'Poppins', sans-serif;
  color: #333;
  overflow-x: hidden;
}

/* 🌫 Overlay for soft glow */
.dashboard-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  z-index: 0;
}

/* 🌟 Fade-in animation when page loads */
.fade-in-dashboard {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInDashboard 0.8s ease-out forwards;
}

@keyframes fadeInDashboard {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✨ Optional: stagger effect for smoother card entry */
.dashboard-animate {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInDashboard 0.8s ease-out forwards;
}

.dashboard-animate:nth-child(1) { animation-delay: 0.2s; }
.dashboard-animate:nth-child(2) { animation-delay: 0.4s; }
.dashboard-animate:nth-child(3) { animation-delay: 0.6s; }
.dashboard-animate:nth-child(4) { animation-delay: 0.8s; }

/* 💳 Card hover effect for interactivity */
.card {
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* --- Primera Living Peach-Themed Settings Background --- */
.settings-bg {
  background: linear-gradient(135deg, #FFE5D4, #FFD1B3, #FFF0E0);
  background-size: 300% 300%;
  animation: bgFlow 25s ease infinite;
  position: relative;
  z-index: 0;
  color: #333;
}

/* Animated gradient flow */
@keyframes bgFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Soft overlay for gentle warmth and depth */
.settings-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 243, 236, 0.5); /* Light peach overlay */
  backdrop-filter: blur(10px);
  z-index: 1;
}

/* Keep content above the overlay */
.settings-bg > * {
  position: relative;
  z-index: 2;
}


/* --- Fade-in animation for Settings page --- */
.fade-in-settings {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInSettings 1.2s ease-out forwards;
}

@keyframes fadeInSettings {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  60% {
    opacity: 0.7;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.settings-section {
  opacity: 0;
  transform: translateY(20px);
  animation: sectionFade 1s ease forwards;
  animation-delay: 0.4s;
}

@keyframes sectionFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🖼️ Background Image */
.transaction-bg {
  background: url('../images/bg1.jpg') center/cover no-repeat fixed;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #000;
}

/* ✨ Card Styling */
.transaction-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* 🩶 Buttons */
.btn-dark {
  background-color: #111;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background-color: #333;
}

.btn-outline-dark {
  border: 1px solid #111;
  color: #111;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: #111;
  color: #fff;
}

/* 📋 Table */
.table thead th {
  background-color: #f8f9fa;
  color: #fffcfc;
  font-weight: 600;
}

.table tbody tr:hover {
  background-color: #f1f1f1;
  transition: background-color 0.2s ease;
}

/* Smooth fade-in */
.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* --- Primera Living Dark Background Image --- */
.payment-bg {
  position: relative; /* important for the overlay to sit correctly */
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 4rem;

  /* ✅ your actual image */
  background: url('../images/bg1.jpg') center center / cover no-repeat fixed;
  background-attachment: fixed;
  overflow: hidden;
}



/* Ensure content appears ABOVE the overlay */
.payment-bg > * {
  position: relative;
  z-index: 1;
}


/* --- Card Styling --- */
.payment-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  animation: fadeIn 1s ease;
  position: relative;
  z-index: 1;
}

/* --- Fade In Animation --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Buttons --- */
.btn-action {
  background-color: #000;
  color: #fff;
  border: 1px solid #444;
  transition: all 0.3s ease;
}

.btn-action:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.btn-close-custom {
  background-color: #ddd;
  color: #555;
  border: 1px solid #ccc;
}

.btn-close-custom:disabled {
  opacity: 0.7;
}

/* --- Table --- */
.table th {
  background-color: #000 !important;
  color: #fff;
  border: none;
}

.table td {
  background-color: rgba(255, 255, 255, 0.9);
}

.table td, .table th {
  vertical-align: middle;
}

/* --- Heading --- */
.payment-title {
  color: #2c2e30;
  font-weight: 700;
  position: relative;
  z-index: 1;
  
}


/* === Primera Living Peach Gradient Background === */
  .tickets-bg {
    background: linear-gradient(135deg, #FFE5D4, #FFD6A5, #FFF3E2);
    background-size: 300% 300%;
    animation: bgFlow 25s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

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

  /* === Fade-in Animation === */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* === Card/Table Container === */
  .tickets-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    animation: fadeIn 0.8s ease;
  }

  /* === Table Header === */
  .table thead {
    background-color: #2A6F9E !important;
    color: white;
  }

  /* === Buttons === */
  .btn-primary {
    background-color: #2A6F9E;
    border: none;
  }

  .btn-primary:hover {
    background-color: #1f5678;
    transform: scale(1.05);
    transition: 0.3s;
  }

  .btn-success {
    background-color: #5348eb;
    border: none;
  }

  .btn-success:hover {
    background-color: #d07d54;
    transition: 0.3s;
  }

  .btn-secondary:hover {
    transform: scale(1.05);
    transition: 0.3s;
  }

  /* === Modal Styling === */
  .modal-content {
    border-radius: 12px;
    animation: fadeIn 0.6s ease;
  }

  .modal-header {
    background: linear-gradient(135deg, #444343);
    color: white;
  } 

  /* === Page Title === */
  .tickets-title {
    color: #2A6F9E;
    font-weight: 700;
    animation: fadeIn 0.8s ease;
  }

  /* === Create Ticket Button Animation === */
  .create-ticket-btn {
    animation: fadeIn 1s ease;
  }


/* ===== ABOUT US PAGE STYLES ===== */
.about-hero {
 margin: 0;
  min-height: 50vh;
  background: linear-gradient(135deg, #FFD6A5, #FFB5A7, #FCD5CE, #F8EDEB);
 
}

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

.about-hero .highlight {
  color: #2A6F9E;
  
}

.about-content h2 {
  color: #181b1d;
}

.about-mission {
  background: linear-gradient(120deg, #ffb6a3, #2A6F9E);
}

.mission-box {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.mission-box:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.about-team .team-card {
  background: #b1cff1;
  transition: all 0.3s ease;
}

.about-team .team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.text-brand {
  color: #000000;
}

.about-contact {
  background: linear-gradient(135deg, #ffb199 0%, #ff8c69 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-contact .contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  max-width: 600px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.about-contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.about-content {
  background: linear-gradient(135deg, #ffb199 0%, #ff8c69 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle floating animation for warmth */
.about-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.15), transparent 70%);
  animation: peachGlow 8s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes peachGlow {
  from { transform: scale(1) rotate(0deg); opacity: 0.8; }
  to { transform: scale(1.2) rotate(10deg); opacity: 1; }
}

/* Ensure content sits above animation */
.about-content .container {
  position: relative;
  z-index: 1;
}

/* Image polish */
.about-img {
  border: 4px solid rgba(255,255,255,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.story-text {
  color: #636161;
  transition: color 0.6s ease-in-out;
}


.modern-hero {
  position: relative;
  min-height: 80vh;
  padding: 80px 0;
}

.modern-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/ho.png") center center no-repeat;
  background-size: cover; /* ensures full coverage without distortion */
  transform: scale(1.3); /* 👈 slightly zoomed-in look */
  z-index: 2;
  filter: brightness(0.5);
}

.modern-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* ✨ Zoom-out effect */
@keyframes bgZoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.08);
  }
}

.hero-text {
  max-width: 700px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.hero-text p {
  color: #f0f0f0;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn-action {
  background-color: #2A6F9E;
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-action:hover {
  background-color: #1E4E70;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* ===== Modern Featured Rentals ===== */
.modern-featured {
  background-color: #f9f9f9;
}

.rental-card {
  background-color: #fff;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.rental-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.rental-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rental-card:hover .rental-img img {
  transform: scale(1.05);
}

.rental-body {
  font-family: 'Poppins', sans-serif;
}

.modern-featured h2 {
  font-weight: 700;
  color: #222;
}

.btn-outline-dark:hover {
  background-color: #333;
  color: #fff;
}



.rental-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.rental-card:hover {
  transform: translateY(-5px);
}

.rental-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.rental-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modern-featured {
  position: relative;
  z-index: 5; /* ensure it’s above any previous hero overlay */
}

/* ✅ Fix unwanted horizontal scroll — keep dropdowns visible */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #f9f9f9; /* match your site theme */
  overflow-x: clip; /* ✅ removes horizontal scroll without hiding dropdowns */
}

/* Prevent sections from exceeding page width */
section, div, .container, .row {
  max-width: 100%;
}

/* Prevent background animations from overflowing */
.modern-hero,
.modern-featured,
.modern-cta {
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.modern-featured {
  position: relative;
  background: url("../images/fet.png") center center/cover no-repeat;
  color: #fff;
  padding: 100px 0;
  z-index: 1;
  overflow: hidden;
}

.modern-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(238, 232, 232, 0.55); /* dark overlay for readability */
  z-index: 0;
}
  
.modern-featured .container {
  position: relative;
  z-index: 2;
}

/* 🎨 Primera Living Styled Rental Cards */
.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem 1rem;
  position: relative;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

/* ✨ Card Base */
.rental-card {
  flex: 0 0 320px; /* Show multiple cards per view */
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rental-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* 🖼 Image */
.rental-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* 📄 Card Body */
.rental-body {
  padding: 1.5rem;
}

.rental-body h5 {
  color: #2A2A2A;
  font-weight: 600;
}

.rental-body p {
  font-size: 0.9rem;
  color: #666;
}

/* 🔘 Scroll Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: rgb(110, 105, 105);
  transform: translateY(-50%) scale(1.1);
}

.scroll-btn.left {
  left: -10px;
}

.scroll-btn.right {
  right: -10px;
}

/* 📱 Responsive Cards */
@media (max-width: 992px) {
  .rental-card { flex: 0 0 270px; }
}

@media (max-width: 768px) {
  .rental-card { flex: 0 0 80%; }
}

@media (max-width: 576px) {
  .rental-card { flex: 0 0 90%; }
}

.location-img {
  width: 100%;
  height: 400px;
}

.location-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

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

@media (max-width: 992px) {
  .location-img {
    height: 300px;
  }
}


.about-logo {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 170px;
}


.about-section {
  position: relative;
  color: #222;
  overflow: hidden;
}

/* ===== About Section with Background Image ===== */
.about-section {
  position: relative;
  background: url('../images/tt.jpg') center center/cover no-repeat;
  color: #333;
  overflow: hidden;
}

/* Optional soft overlay to make text readable */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
 background: rgba(255, 255, 255, 0.55); /* dark overlay for readability */
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

/* ===== LOCATION SECTION BACKGROUND IMAGE ===== */
.modern-location {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.location-img {
  height: 100%;
}

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

.info-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-container {
  height: 100%;
  min-height: 300px;
}

.modern-location {
  position: relative;
  overflow: hidden;
}



.modern-location .bg-image-layer {
  position: absolute;
  inset: 0;
  background-image: url("http://localhost/primeraliving/asset/images/fet.png"); /* 🔁 change path to your image */
  background-size: cover;
  background-position: center;
  opacity: 1; /* adjust for visibility */
  z-index: 1;
}

.modern-location .container {
  position: relative;
  z-index: 2;
}


.about-section {
  font-family:'Poppins', sans-serif; /* Clean, modern font */
}

.about-text {
  padding-left: 2rem; /* Move text a little right */
}

.text-muted-dark {
  color: #444; /* Softer dark gray for readability */
}

.btn-peach {
  background-color: #ffffff;
  color: #000000;
  border: rgb(0, 0, 0);
  transition: all 0.3s ease;
}

.btn-peach:hover {
  background-color: #9794939f;
  transform: translateY(-2px);
}

.about-logo {
  max-width: 90%;
  transition: transform 0.4s ease;
}

.about-logo:hover {
  transform: scale(1.05);
}

/* section 2 */

.about-logo-alt:hover {
  transform: scale(1.05);
}

.about-text-alt {
  padding-right: 2rem;
}

.btn-peach-alt {
  background-color: #222;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-peach-alt:hover {
  background-color: #444;
  transform: translateY(-2px);
}

.vision-img {
  width: 100%;
  max-width: 480px;         /* Keep it balanced with text */
  height: 300px;            /* More horizontal shape */
  object-fit: cover;        /* Crops evenly */
  border-radius: 20px;      /* Smooth rectangular corners */
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.vision-section .row {
  justify-content: center; /* Ensures alignment stays clean */
}

@media (max-width: 991px) {
  .vision-img {
    max-width: 100%;
    height: 220px;
  }
  .vision-text {
    text-align: center;
    padding: 0 1rem;
  }
}

/*divder*/

.section-divider {
  position: relative;
  text-align: center;
  margin: 0 !important;
  padding: 30px 0;
  width: 100%;
  background-color: #000;
}

.divider-title {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Remove the white space BELOW the divider */
.section-divider + section,
.section-divider + div {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Also ensure the section above it doesn't leave space */
#what-we-offer {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.thick-divider {
  
  height: 3px;                /* thicker line */
  background-color: #000;     /* black line */
  border-radius: 3px;         /* slightly rounded ends */
  margin-top: 12px;
}



.text-peach {
  color: #ffffff;
}

.divider {
  width: 100px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* Testimonials with background image */
.modern-testimonials {
  position: relative;
  background: url('../images/feed.png') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* Overlay for readability */
.modern-testimonials .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

/* Make sure content is above overlay */
.modern-testimonials .container {
  position: relative;
  z-index: 2;
}

/* Testimonial cards */
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
}

.text-peach {
  color: #fffdfc;
}

.divider {
  width: 80px;
  height: 3px;
  background: #ffb6a0;
  border-radius: 2px;
}



/*chat bot*/

/* Floating Chat Bubble */
.chat-bubble {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #2A6F9E;
  color: white;
  font-size: 22px;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  z-index: 9999;
}
.chat-bubble:hover {
  transform: scale(1.1);
}

/* Chat Window */
.chat-window {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 320px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}
.chat-window.open {
  display: flex;
}

/* Header */
.chat-header {
  background-color: #1E4E70;
  color: white;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Messages */
.chat-body {
  padding: 10px;
  height: 260px;
  overflow-y: auto;
  font-size: 14px;
  background-color: #f8f9fa;
}
.user-msg, .bot-msg {
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  max-width: 80%;
}
.user-msg {
  background-color: #2A6F9E;
  color: white;
  align-self: flex-end;
  margin-left: auto;
}
.bot-msg {
  background-color: #e9ecef;
  color: #000;
  align-self: flex-start;
}

/* Footer */
.chat-footer {
  display: flex;
  border-top: 1px solid #ddd;
  padding: 10px;
  background: #fff;
}
.chat-footer input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px;
}
.chat-footer button {
  background-color: #2A6F9E;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}
.chat-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.smart-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  justify-content: center;
}

.smart-btn {
  background-color: #292625;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.smart-btn:hover {
  background-color: #807978;
  transform: translateY(-2px);
}


.chat-bubble {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #4294cf, #4eb0f1);
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
.chat-bubble:hover { transform: scale(1.1); }

.chat-window {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 320px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  overflow: hidden;
  transform: scale(0);
  transition: all 0.3s ease;
}
.chat-window.open { transform: scale(1); }

.chat-header {
  background: #2A6F9E;
  color: #fff;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-body {
  height: 350px;
  overflow-y: auto;
  padding: 15px;
  background: #f7f9fb;
}
.user-msg, .bot-msg {
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  max-width: 80%;
}
.user-msg {
  background: #2A6F9E;
  color: #fff;
  margin-left: auto;
}
.bot-msg {
  background: #e9ecef;
  color: #333;
  margin-right: auto;
}
.chat-footer {
  display: flex;
  border-top: 1px solid #ddd;
  padding: 10px;
}
.chat-footer input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 8px;
}
.chat-footer button {
  background: #2A6F9E;
  color: #fff;
  border: none;
  padding: 0 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.chat-footer button:hover { background: #1E4E70; }

#micBtn {
  background: none;
  border: none;
  color: #2A6F9E;
  font-size: 18px;
  cursor: pointer;
  margin-right: 5px;
  transition: all 0.2s ease;
}

#micBtn:hover {
  color: #1E4E70;
}

#micBtn.listening {
  color: #fff;
  background-color: #ff7675;
  border-radius: 50%;
  box-shadow: 0 0 10px 3px rgba(255, 118, 117, 0.6);
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px 3px rgba(255, 118, 117, 0.6);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 20px 5px rgba(255, 118, 117, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px 3px rgba(255, 118, 117, 0.6);
  }
}

/* ===== LISTINGS PAGE – Modern Glass White Theme ===== */
.listings-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f5 100%);
  color: #222;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}

/* 🔍 Filter form styling */
.listings-page form {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  border: 1px solid rgba(200, 200, 200, 0.3);
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.listings-page form:hover {
  transform: translateY(-2px);
}

.listings-page form input,
.listings-page form select {
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.listings-page form input:focus,
.listings-page form select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* 🏠 Property cards */
.listings-page .card {
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.4);
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.listings-page .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.listings-page .card img {
  border-radius: 18px 18px 0 0;
  transition: transform 0.5s ease;
  height: 230px;
  object-fit: cover;
}

.listings-page .card:hover img {
  transform: scale(1.08);
}

/* ✨ Card text layout */
.listings-page .card-body {
  padding: 20px 22px;
}

.listings-page .card-body h5 {
  color: #0b2447;
  font-weight: 600;
}

.listings-page .card-body p {
  color: #555;
  line-height: 1.5;
}

.listings-page .fw-bold.mb-2 {
  color: #0a58ca;
  font-size: 1.1rem;
}

/*  Buttons */
.listings-page .btn-action {
  background: linear-gradient(135deg, #000000);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.listings-page .btn-action:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(124, 127, 129, 0.3);
}

/*  Modal style */
.listings-page .modal-content {
  background: #fff;
  border-radius: 16px;
  border: none;
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.listings-page .modal-header {
  background: #f8f9fa;
  border-bottom: none;
}

.listings-page .modal-footer {
  background: #f8f9fa;
  border-top: none;
}

.listings-page .modal-body img {
  border-radius: 12px;
}


.badge.bg-success {
  background-color: #00c851 !important;
  padding: 8px 12px;
  font-size: 0.85rem;
  border-radius: 8px;
}

.badge.bg-danger {
  background-color: #ff4444 !important;
  padding: 8px 12px;
  font-size: 0.85rem;
  border-radius: 8px;
}


.card, .modal-content, form {
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}




/*divderr*/

.section-dividerr {
  position: relative;
  text-align: center;
  margin: 0 !important;
  padding: 20px 0;
  width: 100%;
  background-color: #000;
}

.dividerr-title {
  color: #ffffff;
  font-size: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}


.section-dividerr + section,
.section-dividerr + div {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


#what-we-offer {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.offer-banner {
  animation: floaty 4s ease-in-out infinite;
  max-width: 600px;
  margin: 0 auto;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* 🌆 Background Image for Listings Page */
.listings-page {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.listings-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/bg1.jpg'); /* 🖼 your background */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* makes it move slightly when scrolling */
  opacity: 1; /* adjust for visibility (0.1–0.3 is subtle and clean) */
  z-index: -1;
}


/* News */

.news-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
   position: relative;
  background: url("../images/feed.png") center/cover no-repeat;
  padding: 80px 20px;
  border-radius: 10px;
  
}

.news-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-container {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
  scrollbar-width: none;
  width: 100%;
}

.news-container::-webkit-scrollbar {
  display: none;
}

.news-card {
  flex: 0 0 320px;
  background: #d8d5d5;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-info {
  padding: 15px;
}

.news-info h4 {
  font-size: 1.1rem;
  font-weight: bold;
}

.news-date {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 10px;
}


.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 3;
  transition: background 0.3s;
}

.scroll-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.scroll-btn.left { left: 0; }
.scroll-btn.right { right: 0; }


.modal-dialog {
  max-width: 800px; 
  margin: 1.75rem auto;
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.modal-body img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}


.modal-content {
  max-height: 90vh;
  overflow-y: auto;
}


.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}


.modal-content {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
}


.modal-body img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 70vh; 
  margin: 0 auto;
  object-fit: contain;
  border-radius: 10px;
}


.modal-body {
  text-align: center;
  overflow: auto;
  padding: 20px;
}



.cool-navbar {
  background: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease;
}

.cool-navbar.scrolled {
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}

.cool-navbar .nav-link,
.cool-navbar .navbar-brand {
  color: #000 !important;
}

/* ============================
   LOGIN PAGE THEME
   Black & White Soft Background
=============================== */
.login-bg {
    min-height: 100vh;
    padding: 80px 20px;
    background: url('../images/logen.png') center center/cover no-repeat;

    position: relative;
}

/* Subtle dark overlay */
.login-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35); /* balanced dim – not too dark */
    z-index: 0;
}

/* Make everything inside appear above overlay */
.login-bg > * {
    position: relative;
    z-index: 2;
}

/* New style naten for login */
.login-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    padding: 40px 45px;
    animation: fadeIn 0.6s ease;
}

/* Smooth fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}



