/* ================================================
   WAVES29 — GLOBAL THEME STYLESHEET
   Bootstrap 5.3
================================================ */

/* ================================
   FONT FACE SETUP (LOCAL FONTS)
   Make sure font files exist in /fonts folder
================================ */

/* Optima Bold — Main Headings */
@font-face {
  font-family: 'Optima';
  src: url('../fonts/OPTIMA/fonnts.com-Optima_Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Avenir Family - Sub Heading */
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir/Avenir Black/Avenir Black.ttf') format('truetype');
  font-weight: 900; /* Avenir Black */
}

/* Avenir Family - Other like body  */
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir/Avenir Regular/Avenir Regular.ttf') format('truetype');
  font-weight: 400;  /* Avenir Roman */
}


/* ================================
   🌍 CSS VARIABLES
================================ */
:root {
  /* Brand Colors */
  --primary: #082b20;
  --primary-dark: #051a13;
  --primary-light: #0f3d2c;
  --secondary: #082b20;
  --secondary-dark: #304e44;
  --accent: #082b20;
  --muted: #6c8474;
  --light: #b6b2ab;

  /* Backgrounds */
  --bg-main: #d2dcd9;
  --bg-main-light: #F1EFEE;
  --bg-soft: #eef2f0;
  --bg-soft-1: #F1EFEE;
  --bg-white: #ffffff;
  --bg-dark: #0d1f0d;
  --bg-darker: #051209;

  /* Text */
  --text-primary: #082b20;
  --text-secondary: #082b20;
  --text-muted: #6c8474;
  --text-light: #b6b2ab;
  --text-white: #ffffff;
  --text-dark: #1a1a1a;

  /* Borders */
  --border-color: rgba(0, 0, 0, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(8, 43, 32, 0.08);
  --shadow-md: 0 4px 20px rgba(8, 43, 32, 0.12);
  --shadow-lg: 0 12px 40px rgba(8, 43, 32, 0.18);
  --shadow-xl: 0 24px 60px rgba(8, 43, 32, 0.22);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;

  /* Spacing */
  --section-py: 80px;
  --section-py-sm: 50px;

  /* Typography */
  --font-heading: 'Optima', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;     /* Main headings (h1,h2) */
  --font-subheading: 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; /* subheading headings (h3,h4,h5,h6) */
  --font-body: 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-size-xs: 11px;
  --font-size-sm: 13px;
  --font-size-md: 15px;
  --font-size-lg: 18px;

  /* Transitions */
  --transition: all 0.25s ease;
  --transition-slow: all 0.4s ease;
}


/* ================================
   🔤 BASE / RESET
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2{
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}


h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--secondary);
  color: #fff;
}


/* ================================
   🎨 TEXT COLOR CLASSES
================================ */
.text-primary-w {
  color: var(--primary) !important;
}

.text-secondary-w {
  color: var(--secondary) !important;
}

.text-accent-w {
  color: var(--primary) !important;
}

.text-muted-w {
  color: var(--muted) !important;
}

.text-light-w {
  color: var(--light) !important;
}

.text-white-w {
  color: var(--text-white) !important;
}

.text-dark-w {
  color: var(--text-dark) !important;
}


/* ================================
   🎯 BACKGROUND COLOR CLASSES
================================ */
.bg-primary-w {
  background-color: var(--primary) !important;
}

.bg-primary-dark-w {
  background-color: var(--primary-dark) !important;
}

.bg-primary-light-w {
  background-color: var(--primary-light) !important;
}

.bg-secondary-w {
  background-color: var(--secondary) !important;
}

.bg-accent-w {
  background-color: var(--accent) !important;
}

.bg-main-w {
  background-color: var(--bg-main) !important;
}

.bg-main-light {
  background-color: var(--bg-main-light) !important;
}

.bg-soft-w {
  background-color: var(--bg-soft-1) !important;
}

.bg-dark-w {
  background-color: var(--bg-dark) !important;
}

.bg-darker-w {
  background-color: var(--bg-darker) !important;
}

.bg-white-w {
  background-color: var(--bg-white) !important;
}

/* Gradient backgrounds */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
}

.bg-gradient-dark {
  background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
}

.bg-gradient-hero {
  background: linear-gradient(160deg, rgba(8, 43, 32, 0.9), rgba(46, 78, 66, 0.7));
}

/* Overlay bg */
.bg-overlay {
  position: relative;
}

.bg-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 43, 32, 0.55);
  z-index: 1;
}

.bg-overlay>* {
  position: relative;
  z-index: 2;
}


/* ================================
   📏 SECTION UTILITIES
================================ */
.section-py {
  padding: var(--section-py) 0;
}

.section-py-sm {
  padding: var(--section-py-sm) 0;
}

.section-pt {
  padding-top: var(--section-py);
}

.section-pb {
  padding-bottom: var(--section-py);
}

.section-border-top {
  border-top: 1px solid var(--border-color);
}

.section-border-bottom {
  border-bottom: 1px solid var(--border-color);
}


/* ================================
   🔠 TYPOGRAPHY
================================ */

/* Labels above headings */
.label-tag {
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.label-tag-white {
  color: rgba(255, 255, 255, 0.6);
}

.label-tag-accent {
  color: var(--accent);
}

/* Section subtitle */
.section-subtitle {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 600;
}

/* Headings scale */
.h-display {
  font-size: clamp(36px, 5vw, 72px);
}

.h-hero {
  font-size: clamp(32px, 4vw, 56px);
}

.h-section {
  font-size: clamp(26px, 3vw, 42px);
}

.h-card {
  font-size: 20px;
}

.h-sm {
  font-size: 18px;
}

/* Color variants for headings */
.heading-white {
  color: #fff;
}

.heading-primary {
  color: var(--primary);
}

.heading-muted {
  color: var(--muted);
}

/* Lead paragraph */
.lead-text {
  font-size: var(--font-size-lg);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Body text sizes */
.text-xs {
  font-size: var(--font-size-xs);
}

.text-sm {
  font-size: var(--font-size-sm);
}

.text-md {
  font-size: var(--font-size-md);
}

.text-lg {
  font-size: var(--font-size-lg);
}

/* Divider line under headings */
.divider-line {
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  margin: 14px 0 20px;
}

.divider-line-center {
  margin: 14px auto 20px;
}

.divider-line-white {
  background: rgba(255, 255, 255, 0.5);
}


/* ================================
   🔘 BUTTONS
================================ */

/* Base */
.btn-w {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

/* Sizes */
.btn-w-xs {
  padding: 5px 14px;
  font-size: 12px;
  border-radius: var(--radius-sm);
}

.btn-w-sm {
  padding: 8px 20px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

.btn-w-md {
  padding: 11px 28px;
  font-size: 14px;
  border-radius: var(--radius-md);
}

.btn-w-lg {
  padding: 14px 36px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

.btn-w-xl {
  padding: 16px 44px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* Pill variant */
.btn-w-pill {
  border-radius: var(--radius-pill);
}

.btn-w-block {
  width: 100%;
  justify-content: center;
}

/* Solid Variants */
.btn-primary-w {
  background: var(--bg-soft);
  border-color: var(--bg-soft);
  color: var(--primary);
}

.btn-primary-w:hover {
  background: var(--bg-soft);
  border-color: var(--bg-soft);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary-w {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}

.btn-secondary-w:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent-w {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-accent-w:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-dark-w {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: #fff;
}

.btn-dark-w:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.btn-white-w {
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}

.btn-white-w:hover {
  background: var(--bg-soft);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Outline Variants */
.btn-outline-primary-w {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-primary-w:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-secondary-w {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-outline-secondary-w:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white-w {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-outline-white-w:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.btn-outline-light-w {
  background: transparent;
  border-color: var(--light);
  color: var(--muted);
}

.btn-outline-light-w:hover {
  background: var(--bg-main);
  color: var(--primary);
}

/* Ghost / Text button */
.btn-ghost-w {
  background: transparent;
  border-color: transparent;
  color: var(--secondary);
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost-w:hover {
  color: var(--primary);
  gap: 12px;
}

/* Icon-only button */
.btn-icon-w {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.btn-icon-w-lg {
  width: 54px;
  height: 54px;
}


/* ================================
   🏷️ BADGES
================================ */
.badge-w {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

/* Colors */
.badge-primary-w {
  background: var(--primary);
  color: #fff;
}

.badge-secondary-w {
  background: var(--secondary);
  color: #fff;
}

.badge-accent-w {
  background: var(--accent);
  color: #fff;
}

.badge-success-w {
  background: #16a34a;
  color: #fff;
}

.badge-warning-w {
  background: #d97706;
  color: #fff;
}

.badge-danger-w {
  background: #dc2626;
  color: #fff;
}

.badge-dark-w {
  background: #1a1a1a;
  color: #fff;
}

.badge-light-w {
  background: var(--bg-soft);
  color: var(--primary);
}

/* Pill shape */
.badge-pill-w {
  border-radius: var(--radius-pill);
}

/* Soft/pastel variants */
.badge-soft-primary {
  background: rgba(8, 43, 32, 0.1);
  color: var(--primary);
}

.badge-soft-secondary {
  background: rgba(46, 78, 66, 0.12);
  color: var(--secondary);
}

.badge-soft-success {
  background: #dcfce7;
  color: #166534;
}

.badge-soft-warning {
  background: #fef3c7;
  color: #92400e;
}

.badge-soft-danger {
  background: #fee2e2;
  color: #991b1b;
}

.badge-soft-blue {
  background: #dbeafe;
  color: #1e40af;
}


/* ================================
   🃏 CARDS
================================ */

/* Base card */
.card-w {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-w:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Card image */
.card-w-img {
  position: relative;
  overflow: hidden;
}

.card-w-img img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
  display: block;
}

.card-w:hover .card-w-img img {
  transform: scale(1.05);
}

/* Image heights */
.card-img-sm {
  height: 160px;
}

.card-img-md {
  height: 210px;
}

.card-img-lg {
  height: 260px;
}

.card-img-xl {
  height: 320px;
}

/* Card body */
.card-w-body {
  padding: 20px;
  flex: 1;
}

.card-w-body-sm {
  padding: 14px;
  flex: 1;
}

.card-w-body-lg {
  padding: 28px;
  flex: 1;
}

/* Card footer */
.card-w-footer {
  padding: 14px 20px;
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
}

/* Card badge — absolute on image */
.card-badge-tl {
  position: absolute;
  top: 12px;
  left: 12px;
}

.card-badge-tr {
  position: absolute;
  top: 12px;
  right: 12px;
}

.card-badge-bl {
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.card-badge-br {
  position: absolute;
  bottom: 12px;
  right: 12px;
}



.card-team-img img{
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.card-team-img-director img{
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

/* ── Card Variants ── */

/* Property Card */
.card-property .prop-price {
  font-family: var(--font-subheading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.card-property .prop-type {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 700;
}

.card-property .prop-name {
  font-family: var(--font-subheading);
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
  margin: 6px 0 4px;
}

.card-property .prop-location {
  font-size: 12px;
  color: var(--muted);
}

.card-property .prop-meta {
  font-size: 12px;
  color: #888;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ================================
   LIST VIEW
================================ */

.list-view .property_list_card {
  width: 100%;
}

.list-view .card-w {
  flex-direction: row;
  align-items: stretch;
  height: auto;
}

/* Image left side */
.list-view .card-w-img {
  width: 320px;
  min-width: 320px;
  height: auto;
}

.list-view .card-w-img img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Body */
.list-view .card-w-body {
  flex: 1;
  padding: 20px;
}

/* Footer right side */
.list-view .card-w-footer {
  width: 220px;
  border-top: none;
  border-left: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

/* Buttons vertical */
.list-view .card-w-footer .d-flex {
  flex-direction: column;
  width: 100%;
}

.list-view .card-w-footer .btn {
  width: 100%;
}
.property_list_content_only{
 display:none;   
}
.list-view .property_list_content_only{
 display:block;   
}
.property_list_content_only .read-more{
 border-bottom:1px solid #082b20;   
}
/**/
.view-btn {
  cursor: pointer;
  display: inline-block;
}

.view-btn i {
  color: var(--muted);
  transition: 0.3s;
}

/* Active */
.view-btn.active i {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Hover */
.view-btn:hover i {
  
}

.view-btn.active i {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Off-Plan Card */
.card-offplan .op-price {
  color: var(--secondary);
  font-weight: 700;
  font-size: 15px;
}

.card-offplan .op-title {
    font-family: var(--font-subheading);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
}

.card-offplan .op-checklist {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.card-offplan .op-checklist li {
  font-size: 13px;
  color: var(--muted);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-offplan .op-checklist li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent);
  font-size: 11px;
}

/* Blog Card */
.card-blog .blog-cat {
  font-size: var(--font-size-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.card-blog .blog-title {
  font-family: var(--font-subheading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 8px 0 6px;
  color: var(--text-dark);
}

.card-blog .blog-date {
  font-size: 11px;
  color: var(--light);
}

/* Community/Area Card — overlay style */
.card-community {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card-community:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-community img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}

.card-community:hover img {
  transform: scale(1.06);
}

.card-community-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 18px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
}

.card-community-overlay h6 {
  color: #fff;
  font-family: var(--font-subheading);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.card-community-overlay .meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin-top: 3px;
}

.card-community-overlay a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.card-community-overlay a:hover {
  color: #fff;
}

/* Testimonial / Review Card */
.card-review {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-review:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-review .stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 14px;
}

.card-review blockquote {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 5px 0;
  flex: 1;
  font-style: italic;
}

.card-review .reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.card-review .reviewer-role {
  font-size: 11px;
  color: var(--light);
}

/* Review avatar */
.avatar-w {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.avatar-w-sm {
  width: 32px;
  height: 32px;
  font-size: 13px;
}

.avatar-w-lg {
  width: 56px;
  height: 56px;
  font-size: 20px;
}

/* Stat Card */
.card-stat {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.card-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-stat .stat-number {
  font-family: var(--font-subheading);
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.card-stat .stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* Icon Card */
.card-icon {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card-icon:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-icon .icon-box-w {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: var(--secondary);
  transition: var(--transition);
}

.card-icon:hover .icon-box-w {
  background: var(--primary);
  color: #fff;
}

/* Glassmorphism Card */
.card-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #fff;
}

/* Horizontal Card */
.card-horizontal {
  display: flex;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  background: var(--bg-white);
  transition: var(--transition);
}

.card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-horizontal img {
  width: 160px;
  min-height: 140px;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}

.card-horizontal .card-w-body {
  padding: 18px;
}
.hr-w {
    margin: 0px 10px 15px 0px;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
}

@media (min-width: 992px){
  .form-card-sticky {
    position: sticky;
    top: 85px;
  }
}

/* MAIN IMAGE */
.main-img {
  width: 100%;
  height: 420px;
  object-position: top;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

/* MAIN ARROWS */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00000070;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 2;
  cursor: pointer;
}

.gallery-btn.prev { left: 10px; }
.gallery-btn.next { right: 10px; }

/* THUMBNAILS */
.thumb-container {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.thumb-container::-webkit-scrollbar {
  display: none;
}

.thumb-img {
  width: 120px;
  height: 80px;
  object-position: top;
  object-fit: cover;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.thumb-img.active {
  border: 2px solid #082b20;
}

/* HOVER EFFECT */
.thumb-img:hover {
  transform: scale(1.05);
}

/* =========================================
   GLOBAL TABLE DESIGN
========================================= */

table{
    width:100% !important;
    border-collapse:collapse;
    margin:25px 0;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow:hidden;
    box-shadow: var(--shadow-sm);
    border:1px solid var(--border-color);
}

/* Heading Row */
table thead th,
table thead td,
table tbody tr:first-child td{
    background: #082b20b3;
    color: #fff!important;
    font-family: var(--font-subheading);
    font-weight: 600;
    font-size: 15px;
    padding: 16px 18px;
    border: 1px solid #d9dbde;
}

/* Table Cells */
table td,
table th{
    padding:14px 18px;
    border:1px solid var(--border-color);
    font-size:15px;
    color: var(--text-dark);
    vertical-align:middle;
    transition:0.3s ease;
}

/* Zebra Rows */
table tbody tr:nth-child(even){
    background: var(--bg-soft);
}

/* Hover Effect */
table tbody tr:hover{
    background: rgba(8, 43, 32, 0.05);
}

/* Links */
table a{
    color: var(--primary);
    font-weight:600;
}

/* Images */
table img{
    max-width:100%;
    height:auto;
    border-radius:8px;
}

/* Responsive */
.table-responsive{
    width:100%;
    overflow-x:auto;
}