/* CSS Variables for consistent theming */
:root {
  /* Colors */
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary-color: #64748b;
  --accent-color: #f59e0b;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;

  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  /* Spacing */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;

  /* Container */
  --container-max-width: 1200px;
  --container-padding: var(--spacing-4);
  overflow-x: hidden !important;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--gray-700);
  overflow-x: hidden;
  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Utility Classes */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-12);
}

.section-header h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-4);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-3) var(--spacing-6);
  font-size: var(--font-size-sm);
  font-weight: 500;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #000000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.navbar {
  position: relative;
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-color);
}

.nav-logo i {
  font-size: var(--font-size-2xl);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: var(--spacing-2);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: var(--transition-fast);
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-3) 0;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--danger-color);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--danger-color);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link i {
  font-size: 10px;
  transition: var(--transition-fast);
  color: var(--danger-color);
}

.mega-menu-trigger:hover .nav-link i {
  transform: rotate(180deg);
  color: var(--danger-color);
}

.mega-menu-trigger .nav-link.active i {
  transform: rotate(180deg);
}

/* Mega Menu - 2 Level Dropdown */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* background: #000000; */
  border-radius: 0;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.9); */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 1001;
  width: 600px;
  margin-top: 15px;
  border: none;
  overflow: hidden;
}

.mega-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  margin-top: 5px;
}

.mega-menu-container {
  display: flex;
  min-height: 300px;
}

/* Left Side - Main Categories */
.mega-menu-left {
  width: 300px;
  background: #000000;
  border-right: none;
  border-radius: 0;
  height: 45vh;
}

.mega-menu-title {
  padding: 24px 24px 16px 24px;
  border-bottom: 1px solid #333;
}

.mega-menu-title h2 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
  line-height: 1.2;
}

.mega-category {
  padding: 16px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.mega-category:last-child {
  border-bottom: none;
}

.mega-category:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mega-category:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
}

.mega-category.active {
  background: rgba(255, 255, 255, 0.05);
}

.mega-category.active:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mega-category h3 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.2s ease;
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
}

.mega-category h3 .category-text {
  display: block;
  white-space: nowrap;
}

.mega-category h3 i {
  display: none;
}

.mega-category h3::after {
  content: '▼';
  font-size: 10px;
  transition: transform 0.2s ease;
  opacity: 0.8;
  font-weight: 300;
}

.mega-category:hover h3::after,
.mega-category.active h3::after {
  transform: translateY(1px);
  opacity: 1;
}

.mega-category:hover h3,
.mega-category.active h3 {
  color: #ffffff;
}

.mega-category i {
  font-size: 16px;
  width: 20px;
}

/* Right Side - Sub Items */
.mega-menu-right {
  flex: 1;
  background: #000000;
  border-radius: 0;
  position: relative;
  margin-top: 125px;
  height: 315px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mega-menu-right.show {
  opacity: 1;
  visibility: visible;
}

.mega-submenu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateX(10px);
}

.mega-submenu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mega-submenu h4 {
  display: none;
}

.mega-submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-submenu li {
  margin-bottom: 0;
}

.mega-submenu li a {
  display: block;
  color: #ffffff;
  padding: 16px 0;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.2s ease;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  border-bottom: none;
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mega-submenu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.mega-submenu li a::before {
  display: none;
}

.featured-properties {
  display: grid;
  gap: var(--spacing-4);
}

.featured-property {
  display: flex;
  gap: var(--spacing-3);
  padding: var(--spacing-3);
  border-radius: var(--radius-lg);
  transition: var(--transition-fast);
}

.featured-property:hover {
  background-color: var(--gray-50);
}

.featured-property img {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.featured-info h4 {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--spacing-1);
}

.featured-info p {
  font-size: var(--font-size-xs);
  color: var(--primary-color);
  font-weight: 600;
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
}

/* Contact Now Button */
.btn-contact-now {
  position: relative;
  padding: var(--spacing-3) var(--spacing-8);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-lg);
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  background: var(--danger-color);
  background-size: 200% 200%;
  animation: goldenGradientShift 3s ease-in-out infinite;
  overflow: hidden;

  transition: all var(--transition-fast);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow:
    0 4px 15px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-contact-now::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg,
    transparent 30%,
    rgba(255, 215, 0, 0.8) 50%,
    transparent 70%);
  border-radius: var(--radius-lg);
  z-index: -1;
  animation: borderLight 2s linear infinite;
}

.btn-contact-now::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255, 215, 0, 0.3) 0%,
    rgba(212, 175, 55, 0.5) 50%,
    rgba(184, 134, 11, 0.3) 100%);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.btn-contact-now:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 8px 25px rgba(212, 175, 55, 0.5),
    0 0 30px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  filter: brightness(1.1);
}

@keyframes goldenGradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes borderLight {
  0% {
    transform: rotate(0deg);
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.8;
  }
}

/* Hide top nav WhatsApp CTA on mobile */
@media (max-width: 768px) {
  .header .nav-actions .btn-contact-now {
    display: none !important;
  }
}

/* Hero Section with Video Background */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-16);
  align-items: center;
  min-height: 100vh;
}

.hero-left {
  text-align: left;
  padding-right: var(--spacing-8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right {
  text-align: left;
  padding-left: var(--spacing-8);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-8);
}

/* Vertical Text Stack */
.vertical-text-stack {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
  align-items: flex-start;
}

.text-line {
  position: relative;
  display: flex;
  cursor: pointer;
  overflow: hidden;
}

.char {
  display: inline-block;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: #D4AF37;
  text-shadow:
    0 0 10px rgba(212, 175, 55, 0.5),
    0 0 20px rgba(212, 175, 55, 0.3),
    0 0 30px rgba(212, 175, 55, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center bottom;
  animation: goldenShimmer 3s ease-in-out infinite alternate;
  position: relative;
}

.char:nth-child(odd) {
  animation-delay: 0s;
}

.char:nth-child(even) {
  animation-delay: 1.5s;
}

@keyframes goldenShimmer {
  0% {
    text-shadow:
      0 0 10px rgba(212, 175, 55, 0.5),
      0 0 20px rgba(212, 175, 55, 0.3),
      0 0 30px rgba(212, 175, 55, 0.2);
    transform: scale(1) translateY(0);
  }
  50% {
    text-shadow:
      0 0 20px rgba(212, 175, 55, 0.8),
      0 0 30px rgba(212, 175, 55, 0.6),
      0 0 40px rgba(212, 175, 55, 0.4);
    transform: scale(1.05) translateY(-2px);
  }
  100% {
    text-shadow:
      0 0 15px rgba(212, 175, 55, 0.7),
      0 0 25px rgba(212, 175, 55, 0.5),
      0 0 35px rgba(212, 175, 55, 0.3);
    transform: scale(1.02) translateY(-1px);
  }
}

/* Character Pop-up Animation */
.text-line:hover .char {
  animation: charPopUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes charPopUp {
  0% {
    transform: scale(1) translateY(0) rotateX(0deg);
  }
  50% {
    transform: scale(1.2) translateY(-10px) rotateX(10deg);
  }
  100% {
    transform: scale(1.1) translateY(-5px) rotateX(5deg);
  }
}

/* Right Side Sections */
.right-section-1 {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-6);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.right-section-1 h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--spacing-4);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.right-section-1 p {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-3);
  line-height: 1.6;
}

.right-section-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-image {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: var(--transition-normal);
}

.section-image:hover {
  transform: scale(1.05) rotate(1deg);
}

.responsive-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.right-section-3 {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-6);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.right-section-3 h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--spacing-4);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.right-section-3 p {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-2);
  line-height: 1.6;
}

.offset-line {
  margin-top: var(--spacing-4);
  transform: translateX(20px);
  position: relative;
}

.offset-line::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background: #D4AF37;
}

/* Half Circle Container */
.half-circle-container {
  position: fixed;
  bottom: var(--spacing-8);
  left: var(--spacing-8);
  z-index: 3;
  width: 200px;
  height: 200px;
}

.half-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #8B4513 100%);
  position: relative;
  transform: rotate(-45deg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: var(--transition-normal);
}

.half-circle:hover {
  transform: rotate(-45deg) scale(1.1);
}

.half-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.circle-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
  background: var(--white);
}

.circle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.half-circle:hover .circle-image {
  transform: scale(1.1);
}

.btn-video,
.btn-detail {
  padding: var(--spacing-3) var(--spacing-6);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
}

.btn-video {
  background-color: var(--danger-color);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
}

.btn-video:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-detail {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-detail:hover {
  background-color: var(--white);
  color: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Text Animation Effects */
.animate-text {
  transform-origin: center center;
  animation: stretchIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
  transform: scaleX(0.3) scaleY(0.5);
}

/* Staggered animation delays */
.hero-left .animate-text:nth-child(1) { animation-delay: 0.2s; }
.hero-left .animate-text:nth-child(2) { animation-delay: 0.4s; }
.hero-left .animate-text:nth-child(3) { animation-delay: 0.6s; }
.hero-left .animate-text:nth-child(4) { animation-delay: 0.8s; }
.hero-right .animate-text:nth-child(1) { animation-delay: 1.0s; }
.hero-right .animate-text:nth-child(2) { animation-delay: 1.2s; }
.hero-right .animate-text:nth-child(3) { animation-delay: 1.4s; }

@keyframes stretchIn {
  0% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.5);
  }
  50% {
    opacity: 0.8;
    transform: scaleX(1.05) scaleY(1.1);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
  }
}

/* Hover animations for text */
.brand-name:hover,
.brand-subtitle:hover,
.live-text:hover,
.work-text:hover,
.here-text:hover,
.hero-description h2:hover,
.location-badge:hover,
.btn-video:hover,
.btn-detail:hover {
  animation: textFloat 0.6s ease-in-out;
}

@keyframes textFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-3px) scale(1.02);
  }
  75% {
    transform: translateY(3px) scale(0.98);
  }
}

/* Special hover effects for main elements */
.brand-name:hover {
  color: #F4E575;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.live-text:hover,
.work-text:hover,
.here-text:hover {
  color: #FFD700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.hero-description h2:hover {
  color: #FFF8DC;
  text-shadow: 0 0 10px rgba(255, 248, 220, 0.4);
}

/* Half circle animations */
.half-circle {
  animation: circleFloat 6s ease-in-out infinite;
}

@keyframes circleFloat {
  0%, 100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-10px);
  }
}

.half-circle:hover {
  animation-play-state: paused;
}

/* Featured Properties Showcase Section */
.featured-showcase-section {
  padding: var(--spacing-24) 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

/* Hero Cards Grid */
.hero-cards-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-16);
}

.hero-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-normal);
  position: relative;
}

.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.main-feature {
  grid-row: span 2;
}

.hero-image {
  position: relative;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hero-card:hover .hero-image img {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: var(--spacing-8);
  color: var(--white);
}

.hero-price {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: #D4AF37;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: var(--spacing-2);
}

.hero-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--spacing-1);
}

.hero-subtitle {
  font-size: var(--font-size-base);
  opacity: 0.9;
}

/* Sub Animations Section */
.sub-animations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-16);
  padding: var(--spacing-8) 0;
}

.animation-item {
  text-align: center;
  padding: var(--spacing-6);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.animation-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.animation-item:hover::before {
  left: 100%;
}

.animation-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.animation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-4);
  color: var(--white);
  font-size: var(--font-size-2xl);
  position: relative;
  z-index: 2;
}

.animation-item h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--spacing-2);
  position: relative;
  z-index: 2;
}

.animation-item p {
  color: var(--gray-600);
  font-size: var(--font-size-sm);
  position: relative;
  z-index: 2;
}

/* 3D Rotating Carousel */
.rotating-carousel-3d {
  margin-bottom: var(--spacing-12);
  perspective: 1500px;
  perspective-origin: center center;
}

.carousel-container-3d {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
}

.carousel-ring-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  animation: carouselRotate 20s linear infinite;
}

.carousel-item-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  transform-style: preserve-3d;
  transition: all var(--transition-normal);
}

.property-card-3d {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  cursor: pointer;
  background: var(--white);
  transform-style: preserve-3d;
}

.property-card-3d:hover {
  transform: scale(1.15) rotateY(10deg);
  box-shadow: var(--shadow-xl);
}

.card-image-3d {
  position: relative;
  width: 100%;
  height: 70%;
  overflow: hidden;
}

.card-image-3d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.property-card-3d:hover .card-image-3d img {
  transform: scale(1.1) rotate(2deg);
}

.card-overlay-3d {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: var(--spacing-2);
  color: var(--white);
  text-align: center;
}

.card-title-3d {
  font-size: var(--font-size-xs);
  font-weight: 600;
  margin-bottom: var(--spacing-1);
  line-height: 1.2;
}

.card-price-3d {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: #D4AF37;
}

.card-badge-3d {
  position: absolute;
  top: var(--spacing-1);
  right: var(--spacing-1);
  background: var(--danger-color);
  color: var(--white);
  padding: var(--spacing-1) var(--spacing-2);
  border-radius: var(--radius-sm);
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.carousel-center-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  z-index: 10;
}

.center-content-3d {
  text-align: center;
  color: var(--white);
}

.center-content-3d h3 {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: var(--spacing-2);
}

.center-content-3d p {
  font-size: var(--font-size-xs);
  margin-bottom: var(--spacing-4);
  opacity: 0.9;
}

.speed-controls-3d {
  display: flex;
  gap: var(--spacing-2);
  margin-bottom: var(--spacing-4);
}

.speed-btn-3d {
  padding: var(--spacing-1) var(--spacing-2);
  font-size: var(--font-size-xs);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.speed-btn-3d:hover,
.speed-btn-3d.active {
  background: var(--white);
  color: var(--primary-color);
}

@keyframes carouselRotate {
  from {
    transform: translate(-50%, -50%) rotateY(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotateY(360deg);
  }
}

/* Pause rotation on hover */
.rotating-carousel-3d:hover .carousel-ring-3d {
  animation-play-state: paused;
}

/* 3D Perspective Effects */
.carousel-item-3d {
  transform-origin: center;
}

/* Different sizes based on position */
.carousel-item-3d:nth-child(1) {
  transform: translate(-250px, -60px) rotateY(0deg) translateZ(50px);
}

.carousel-item-3d:nth-child(2) {
  transform: translate(-125px, -186px) rotateY(60deg) translateZ(30px);
}

.carousel-item-3d:nth-child(3) {
  transform: translate(125px, -186px) rotateY(120deg) translateZ(30px);
}

.carousel-item-3d:nth-child(4) {
  transform: translate(250px, -60px) rotateY(180deg) translateZ(50px);
}

.carousel-item-3d:nth-child(5) {
  transform: translate(125px, 66px) rotateY(240deg) translateZ(30px);
}

.carousel-item-3d:nth-child(6) {
  transform: translate(-125px, 66px) rotateY(300deg) translateZ(30px);
}

.section-footer {
  text-align: center;
}

/* Services Section */
.services {
  padding: var(--spacing-24) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-8);
}

.service-card {
  text-align: center;
  padding: var(--spacing-8);
  border-radius: var(--radius-xl);
  transition: var(--transition-normal);
}

.service-card:hover {
  background-color: var(--gray-50);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-6);
  color: var(--white);
  font-size: var(--font-size-2xl);
}

.service-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--spacing-4);
}

.service-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* <br><br>
<!-- Footer -->
<footer class="site-footer-v2"> */

/* --- Keyframes for Background Animation --- */
@keyframes moveBackground {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.site-footer-v2 {
    position: relative;
    background-color: #121212;
    color: #a0a0a0;
    padding: 100px 20px 0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    width: 100%; /* Ensures the footer is full-width */
    
    /* Background image settings */
    background-image: url('/assests/footer.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    animation: moveBackground 20s linear infinite alternate;
}

/* Add a semi-transparent overlay to improve text readability */
.site-footer-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.7); */
    z-index: 0;
}

.footer-v2-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    /* The background is now on the parent, so this container is transparent */
    background: transparent;
}

.footer-v2-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid #444; /* Slightly lighter border */
}

.footer-v2-about {
    flex-basis: 45%;
}

.footer-v2-logo-img img {
    height: 110px;
    margin-bottom: 20px;
    display: block;
}

.footer-v2-about p {
    font-size: 16px;
    line-height: 1.9;
    color: #c0c0c0;
    margin-bottom: 35px;
    max-width: 480px;
}

.footer-v2-socials {
    display: flex;
    gap: 15px;
}

.footer-v2-socials a {
    height: 48px;
    width: 48px;
    background: transparent;
    border: 1px solid #555;
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.footer-v2-socials a:hover {
    background-color: #ff6a00;
    border-color: #ff6a00;
    transform: translateY(-6px);
}

.footer-v2-subscribe {
    flex-basis: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-v2-subscribe p {
    margin-bottom: 25px;
    font-size: 16px;
    color: #ddd;
    max-width: 400px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-form input {
    width: 100%;
    padding: 16px 22px;
    border: 1px solid #555;
    background: #333;
    color: #fff;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
    outline: none;
}
.subscribe-form input:focus {
    border-color: #ff6a00;
}

.subscribe-form button {
    padding: 16px 28px;
    border: none;
    background: #ff6a00;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.subscribe-form button:hover {
    background: #e05c00;
}

.footer-v2-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: -1px 40px;
    padding: 60px 0;
    text-align: center;
}

.footer-col {
    max-width: 300px;
    margin: 0 auto;
}

.footer-v2-heading {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 0.8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
}

.footer-links li a:hover {
    color: #ff6a00;
    transform: translateX(7px);
    font-weight: 600;
}

.contact-info li,
.contact-info li a {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.contact-info li a:hover {
    color: #ff6a00;
}

.footer-v2-bottom {
    background-color: #000;
    padding: 25px 20px;
    text-align: center;
    font-size: 14px;
    color: #bbb;
    position: relative;
    z-index: 1;
}

.footer-v2-bottom a {
    color: #ff6a00;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-v2-bottom a:hover {
    color: #ffa040;
    text-decoration: underline;
}

/* --- Responsive Improvements --- */
@media (max-width: 1024px) {
    .site-footer-v2 {
        background-position: center;
    }
    .footer-v2-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-v2-about, .footer-v2-subscribe {
        flex-basis: 100%;
        max-width: 500px;
    }
    .footer-v2-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
        padding-top: 40px;
    }
    .footer-col {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .footer-v2-links-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .subscribe-form {
        flex-direction: column;
    }
    .subscribe-form input,
    .subscribe-form button {
        border-radius: 8px;
        width: 100%;
    }
}




/* end */
/* Responsive Design */
@media (max-width: 1024px) {
  .mega-menu {
    width: 280px;
  }

  .mega-menu-left {
    width: 280px;
  }

  .mega-menu-title {
    padding: 20px 20px 14px 20px;
  }

  .mega-menu-title h2 {
    font-size: 15px;
  }

  .mega-category {
    padding: 14px 20px;
  }

  .mega-category h3 {
    font-size: 14px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .search-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: 70px;
    padding: 0 15px;
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
            margin-left: 150px;
  }

  .nav-logo {
    flex: 1;
  }

  .nav-logo a img {
    height: 60px !important;
    width: auto;
    max-width: 150px;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: var(--spacing-4) 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: var(--spacing-4) var(--spacing-6);
    border-bottom: 1px solid #222;
    color: #ffffff;
  }

  .nav-link:hover {
    background: #1a1a1a;
    color: #D4AF37;
  }

  .nav-actions {
    padding: var(--spacing-4) var(--spacing-6);
    width: 100%;
  }

  .btn-contact-now {
    width: 100%;
    padding: 3px 20px;
    font-size: 14px;
    text-align: center;
    display: block;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .mega-menu {
   position: static;
   transform: none;
   width: auto;
   box-shadow: none;
   background: #000000;
   margin: 0;
   opacity: 1 !important;
   visibility: visible !important;
   display: none;
   border: none;
   border-radius: 0;
   max-height: none;
 }

  .mega-menu.active {
    display: block !important;
  }

  .mega-menu-container {
    display: block;
    min-height: auto;
  }

  .mega-menu-left {
    width: 100%;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
  }

  .mega-menu-title {
    padding: 18px 20px 12px 20px;
  }

  .mega-menu-title h2 {
    font-size: 14px;
  }

  .mega-category {
    padding: 15px 20px;
  }

  .mega-category h3 {
    font-size: 14px;
  }

  .mega-category h3::after {
    font-size: 9px;
  }

  .mega-menu-right {
    border-radius: 0;
    margin-top: 0;
    height: auto;
  }

  .mega-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    padding: 20px;
    display: none;
    top: 0;
    transform: none;
  }

  .mega-submenu.active {
    display: block;
    margin-top: -130px;
  }

  .mega-submenu h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .mega-submenu li a {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero-content {
    padding: 0 var(--spacing-4);
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
    text-align: center;
  }

  .hero-left {
    text-align: center;
    padding-right: 0;
    order: 2;
  }

  .hero-right {
    text-align: center;
    padding-left: 0;
    order: 1;
    gap: var(--spacing-6);
  }

  .vertical-text-stack {
    align-items: center;
  }

  .char {
    font-size: clamp(1.5rem, 8vw, 3rem);
  }

  .right-section-1,
  .right-section-3 {
    padding: var(--spacing-4);
  }

  .right-section-1 h2,
  .right-section-3 h3 {
    font-size: var(--font-size-lg);
  }

  .right-section-1 p,
  .right-section-3 p {
    font-size: var(--font-size-sm);
  }

  .section-image {
    max-width: 300px;
  }

  .responsive-image {
    height: 200px;
  }

  .offset-line {
    transform: translateX(10px);
  }

  .offset-line::before {
    width: 10px;
  }

  .hero-cards-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
  }

  .main-feature {
    grid-row: span 1;
  }

  .hero-image {
    min-height: 250px;
  }

  .sub-animations {
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
  }

  .carousel-container-3d {
    width: 400px;
    height: 400px;
  }

  .carousel-ring-3d {
    width: 350px;
    height: 350px;
  }

  .carousel-item-3d {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
  }

  .property-card-3d {
    width: 100%;
    height: 100%;
  }

  .carousel-center-3d {
    width: 140px;
    height: 140px;
  }

  .center-content-3d h3 {
    font-size: var(--font-size-sm);
  }

  .center-content-3d p {
    font-size: 10px;
  }

  .speed-controls-3d {
    flex-wrap: wrap;
  }

  .speed-btn-3d {
    font-size: 10px;
    padding: var(--spacing-1);
  }

  .properties-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: var(--spacing-4);
  }

  .nav-logo a img {
    height: 120px !important;
    max-width: 120px;
  }

  .hero-text h1 {
    font-size: var(--font-size-2xl);
  }

  .hero-search {
    padding: var(--spacing-4);
  }

  .search-input,
  .search-select {
    padding: var(--spacing-3);
    font-size: var(--font-size-sm);
  }

  .property-features {
    flex-wrap: wrap;
    gap: var(--spacing-2);
  }

  .feature {
    font-size: var(--font-size-xs);
  }
}

/* Loading and Animation States */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.property-card {
  animation: fadeInUp 0.6s ease-out;
}

.property-card:nth-child(2) {
  animation-delay: 0.1s;
}

.property-card:nth-child(3) {
  animation-delay: 0.2s;
}

.property-card:nth-child(4) {
  animation-delay: 0.3s;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.search-input:focus,
.search-select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .nav-toggle,
  .nav-actions,
  .mega-menu {
    display: none;
  }

  .hero {
    background: none;
    color: var(--gray-900);
    padding-top: 0;
  }

  .property-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid var(--gray-200);
  }
}



/*==========index.html======== */

/* <section class="hero-split-slide"> */
      .running-text {
    margin-top: 20px;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
  }

  .text-track {
    display: inline-block;
    padding-left: 100%; /* start off-screen */
    color: #ffffff; /* golden color */
    font-weight: 700;
    font-size: 1.2rem;
    animation: scroll-text 15s linear infinite;
  }

  @keyframes scroll-text {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
    :root {
      --overlay: rgba(244, 244, 244, 0);
      --white: #ffffff;
      --highlight: #ffffff;
    }

    .hero-split-slide {
      position: relative;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: 'Poppins', sans-serif;
      overflow: hidden;
      color: #fff;
      text-align: center;
    }

    .bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 110%;
      object-fit: cover;
      z-index: 0;
    }

    .overlay {
      position: absolute;
      inset: 0;
      background: var(--overlay);
      z-index: 1;
    }

    .inner {
      position: relative;
      margin-top: 100px;
      z-index: 2;
      max-width: 900px;
      padding: 0 20px;
    }

    /* Sliding text */
    .slide-text {
      font-size: clamp(2.5rem, 7vw, 5rem);
      font-weight: 900;
      display: flex;
      justify-content: center;
      gap: 12px;
      overflow: hidden;
    }

    .slide-text span {
      display: inline-block;
      background: linear-gradient(90deg, var(--white), var(--highlight));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      opacity: 0;
    }

    .slide-text .left {
      transform: translateX(-100%);
      animation: slideLeft 1s forwards 0.2s;
    }

    .slide-text .right {
      transform: translateX(100%);
      animation: slideRight 1s forwards 0.6s;
    }

    @keyframes slideLeft {
      to { transform: translateX(0); opacity: 1; }
    }

    @keyframes slideRight {
      to { transform: translateX(0); opacity: 1; }
    }

    /* Description */
    .desc {
      margin-top: 20px;
      font-size: 1.2rem;
      color: #eee;
      opacity: 0;
      animation: fadeUp 1s forwards 1.2s;
    }

    /* CTA */
    .cta {
      display: inline-block;
      margin-top: 25px;
      padding: 14px 32px;
      font-weight: 700;
      border-radius: 12px;
      text-decoration: none;
      background: red;
      color: #ffffff;
      opacity: 0;
      animation: fadeUp 1s forwards 1.6s;
      transition: transform 0.3s ease;
      position: relative;
    }

    .cta:hover {
      transform: scale(1.05) translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    }

    .cta-icon {
      margin-left: 10px;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Running text */
    .running-text {
      margin-top: 20px;
      display: flex;
      gap: 30px;
      justify-content: center;
      color: var(--gold);
      font-weight: 700;
      font-size: 1.2rem;
      white-space: nowrap;
      overflow: hidden;
      position: relative;
    }

    .running-text span {
      display: inline-block;
      padding: 0 20px;
      animation: marquee 12s linear infinite;
    }

    .running-text span:nth-child(2) { animation-delay: 2s; }
    .running-text span:nth-child(3) { animation-delay: 4s; }
    .running-text span:nth-child(4) { animation-delay: 6s; }
    .running-text span:nth-child(5) { animation-delay: 8s; }
    .running-text span:nth-child(6) { animation-delay: 10s; }

    @keyframes marquee {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    /* Icon row */
    .icon-row {
      margin-top: 15px;
      display: flex;
      justify-content: center;
      gap: 25px;
      font-size: 1.8rem;
    }

/* end */


/* <section class="index_about_01"> */


.index_about_01 {
    background: #ffffff;
    padding: 80px 20px;
    overflow: hidden;
}

.index_about_01 .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.index_about_01 .row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.index_about_01 .col-left {
    flex: 1;
    min-width: 300px;
}

.index_about_01 .col-right {
    flex: 1;
    min-width: 300px;
}

/* Section Label */
.index_about_01 .section_label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.index_about_01 .label_line {
    width: 40px;
    height: 2px;
    background: #ff5722;
}

.index_about_01 .label_text {
    color: var(--danger-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

/* Main Heading */
.index_about_01 .main_heading {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

/* Description Text */
.index_about_01 .description_text {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature List */
.index_about_01 .feature_list {
    margin: 35px 0 40px 0;
}

.index_about_01 .feature_row {
    display: flex;
    gap: 40px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.index_about_01 .feature_item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

.index_about_01 .check_icon {
    width: 40px;
    height: 40px;
    background: var(--danger-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.index_about_01 .feature_text {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
}

/* CTA Button */
.index_about_01 .about_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--danger-color);
    color: #ffffff;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.index_about_01 .about_btn:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.3);
}

/* Image Section */
.index_about_01 .image_wrapper {
    position: relative;
    text-align: center;
}

.index_about_01 .floating_image {
    width: 100%;
    max-width: 550px;
    height: auto;
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Tablet View */
@media (max-width: 968px) {
    .index_about_01 {
        padding: 60px 20px;
    }
    
    .index_about_01 .row {
        gap: 40px;
    }
    
    .index_about_01 .main_heading {
        font-size: 38px;
    }
    
    .index_about_01 .feature_row {
        gap: 25px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .index_about_01 {
        padding: 50px 15px;
    }
    
    .index_about_01 .row {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .index_about_01 .col-left, 
    .index_about_01 .col-right {
        width: 100%;
    }
    
    .index_about_01 .main_heading {
        font-size: 32px;
    }
    
    .index_about_01 .description_text {
        font-size: 16px;
    }
    
    .index_about_01 .feature_row {
        flex-direction: column;
        gap: 15px;
    }
    
    .index_about_01 .feature_item {
        min-width: 100%;
    }
    
    .index_about_01 .about_btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
    
    .index_about_01 .floating_image {
        max-width: 100%;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .index_about_01 {
        padding: 40px 15px;
    }
    
    .index_about_01 .main_heading {
        font-size: 28px;
    }
    
    .index_about_01 .label_text {
        font-size: 14px;
    }
    
    .index_about_01 .feature_text {
        font-size: 15px;
    }
    
    .index_about_01 .check_icon {
        width: 35px;
        height: 35px;
    }
}

  /* end */



/* <section class="index_book_section_02"> */
/* index_book_section_02 Styles */
.index_book_section_02 {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #2a2a2a; /* Fallback for the right side */
}

.index_book_section_02-container {
    width: 100%;
    display: flex;
    min-height: 280px;
    position: relative;
}

.index_book_section_02-left {
    width: 50%;
    background-color: #c9976d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    text-align: center;
}

.index_book_section_02-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 4px;
    margin: 0 0 10px 0;
}

.index_book_section_02-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.3;
}

.index_book_section_02-right {
    width: 50%;
    background-color: #2a2a2a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    position: relative;
    text-align: center;
}

.index_book_section_02-call-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    margin: 0 0 15px 0;
}

.index_book_section_02-phone {
    font-size: 1.875rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 8px;
    text-decoration: none;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.index_book_section_02-phone:hover {
    color: #ffffff;
    letter-spacing: 10px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .index_book_section_02-container {
        flex-direction: column;
    }

    .index_book_section_02-left,
    .index_book_section_02-right {
        width: 100%;
        clip-path: none;
        padding: 40px 20px;
    }

    .index_book_section_02-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .index_book_section_02-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .index_book_section_02-call-title {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .index_book_section_02-phone {
        font-size: 1.5rem;
        letter-spacing: 6px;
    }
}

@media screen and (max-width: 480px) {
    .index_book_section_02-left,
    .index_book_section_02-right {
        padding: 30px 15px;
    }

    .index_book_section_02-subtitle {
        font-size: 0.875rem;
    }

    .index_book_section_02-title {
        font-size: 1.25rem;
    }

    .index_book_section_02-call-title {
        font-size: 0.875rem;
    }

    .index_book_section_02-phone {
        font-size: 1.25rem;
        letter-spacing: 4px;
    }
}

/* end */

  /* <section class="stats3-wrap"> */
    :root{
      --gold1:#b8860b;
      --gold2:#ffd700;
      --ink:#201a2b;
    }

    /* ===================================
       STATS SECTION - MOBILE FIRST
       =================================== */

    .stats3-wrap{
      background: #000;
      padding: clamp(50px, 8vw, 70px) 20px;
      display: flex;
      justify-content: center;
      position: relative;
      overflow-x: hidden;
    }

    /* Dark overlay for better text readability */
    .stats3-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .stats3{
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* ✅ 2 cards per row on mobile */
      gap: 15px;
      max-width: 1200px;
      width: 100%;
      position: relative;
      z-index: 2;
      margin: 0 auto;
    }

    .stat-card{
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(249, 34, 34, 0.244);
      border-radius: 18px;
      padding: clamp(20px, 4vw, 28px) clamp(15px, 3vw, 22px);
      text-align: center;
      box-shadow: 0 4px 20px rgba(255, 22, 22, 0.271);
      transition: all 0.35s ease;
    }

    .stat-card:hover{
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgb(139, 152, 132);
      background: rgb(255, 255, 255);
    }

    .stat-icon{
      width: clamp(50px, 10vw, 70px);
      height: clamp(50px, 10vw, 70px);
      border-radius: 50%;
      margin: 0 auto clamp(12px, 3vw, 18px);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: clamp(22px, 5vw, 30px);
      color: #fff;
      background: linear-gradient(red);
      box-shadow: 0 6px 14px rgba(184, 134, 11, 0.35);
    }

    .num{
      font: 800 clamp(26px, 6vw, 44px)/1.1 "Poppins", system-ui, Segoe UI, Roboto, Arial, sans-serif;
      color: #000000;
      margin-bottom: 6px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .lbl{
      color: #000000;
      font-size: clamp(12px, 2.5vw, 15px);
      line-height: 1.4;
      font-weight: 600;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* Hide scrollbar */
    .stats3-wrap::-webkit-scrollbar { display: none; }
    .stats3-wrap { -ms-overflow-style: none; scrollbar-width: none; }

    /* ===================================
       RESPONSIVE BREAKPOINTS
       =================================== */

    /* Desktop (1024px+) */
    @media (min-width: 1024px) {
      .stats3-wrap {
        background-attachment: fixed;
        padding: 70px 20px;
      }

      .stats3 {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
        margin: 0 40px;
      }

      .stat-card {
        padding: 28px 22px;
      }

      .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        margin-bottom: 18px;
      }

      .num {
        font-size: 44px;
      }

      .lbl {
        font-size: 15px;
      }
    }

    /* Tablet (768px - 1023px) */
    @media (min-width: 768px) and (max-width: 1023px) {
      .stats3-wrap {
        padding: 60px 20px;
      }

      .stats3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        max-width: 700px;
      }

      .stat-card {
        padding: 26px 20px;
      }

      .stat-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
        margin-bottom: 16px;
      }

      .num {
        font-size: 38px;
      }

      .lbl {
        font-size: 14px;
      }
    }

    /* Mobile Large (480px - 767px) */
    @media (min-width: 480px) and (max-width: 767px) {
      .stats3-wrap {
        padding: 50px 15px;
        background-attachment: scroll;
      }

      .stats3 {
        grid-template-columns: repeat(2, 1fr); /* ✅ 2 cards per row */
        gap: 15px;
      }

      .stat-card {
        padding: 22px 16px;
        border-radius: 16px;
      }

      .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 12px;
      }

      .num {
        font-size: 30px;
      }

      .lbl {
        font-size: 13px;
      }
    }

    /* Mobile Small (320px - 479px) */
    @media (max-width: 479px) {
      .stats3-wrap {
        padding: 40px 12px;
        background-attachment: scroll;
      }

      .stats3 {
        grid-template-columns: repeat(2, 1fr); /* ✅ 2 cards per row */
        gap: 12px;
      }

      .stat-card {
        padding: 20px 14px;
        border-radius: 14px;
      }

      .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 10px;
      }

      .num {
        font-size: 26px;
        margin-bottom: 4px;
      }

      .lbl {
        font-size: 12px;
      }
    }

    /* Very Small Mobile (320px - 360px) */
    @media (max-width: 360px) {
      .stats3-wrap {
        padding: 35px 10px;
      }

      .stats3 {
        grid-template-columns: repeat(2, 1fr); /* ✅ 2 cards per row */
        gap: 10px;
      }

      .stat-card {
        padding: 18px 12px;
        border-radius: 12px;
      }

      .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 8px;
      }

      .num {
        font-size: 24px;
      }

      .lbl {
        font-size: 11px;
      }
    }

    /* Landscape Mobile */
    @media (max-height: 500px) and (orientation: landscape) {
      .stats3-wrap {
        padding: 30px 15px;
      }

      .stats3 {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
      }

      .stat-card {
        padding: 16px 12px;
      }

      .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 8px;
      }

      .num {
        font-size: 22px;
      }

      .lbl {
        font-size: 11px;
      }
    }

    /* Touch Device Optimization */
    @media (hover: none) and (pointer: coarse) {
      .stat-card:active {
        transform: scale(0.98);
      }
    }

    /* Reduced Motion Support */
    @media (prefers-reduced-motion: reduce) {
      .stat-card {
        transition: none;
      }

      .stat-card:hover {
        transform: none;
      }
    }
/* end */



/* <section class="card-slider001" aria-label="Featured projects carousel"> */
/* Section */
.index_property_strip_02 {
  width: 100%;
  height: 140vh;
  background: #eef3f6;
  display: flex;
  align-items: center;
}

.ips-container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 24px;
}

.ips-heading {
  font-size: 52px;
  font-weight: 700;
  color: #0f1520;
  margin: 50 0 16px 0;
}

/* Slider core (no cards) */
.ips-slider { position: relative; }

.ips-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 6px;
}
.ips-track::-webkit-scrollbar { display: none; }
.ips-track.dragging { cursor: grabbing; }

.ips-item {
  scroll-snap-align: start;
  min-width: calc(33.333% - 16px);
}

/* Image: taller and rounded */
.ips-media {
  display: block;
  width: 100%;
  height: 470px;           /* increased image height */
  overflow: hidden;
}
.ips-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform .4s ease;
}
.ips-media:hover img { transform: scale(1.04); }

/* Free text under image (no box) */
.ips-meta { margin-top: 12px; }

.ips-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.ips-title {
  font-size: 20px;
  font-weight: 650;
  color: #10151c;
  margin: 0;
}

.ips-price {
  margin: 0;
  font-size: 15px;
  color: #5f6a75;
  white-space: nowrap;
}
.ips-tag {
  color: #000; /* gold accent */
  font-weight: 800;
}

.ips-loc {
  margin: 6px 0 0 0;
  font-size: 15px;
  color: #6b7580;
}

.ips-feats {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #37404a;
  font-size: 14px;
}

/* Nav buttons */
.ips-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  height: 48px; width: 48px;
  border-radius: 10px;
  border: 2px solid #d5c26e;
  background: #f3e8a1;
  color: #8c7a2e;
  font-size: 28px;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}
.ips-prev { left: -6px; }
.ips-next { right: -6px; }

/* Responsive */
@media (max-width: 1200px) { .ips-item { min-width: calc(50% - 12px); } }
@media (max-width: 900px)  {
  .index_property_strip_02 { height: auto; min-height: 120vh; padding: 32px 0; }
  .ips-media { height: 340px; }
}
@media (max-width: 600px)  {
  .ips-item { min-width: 100%; }
  .ips-media { height: 300px; border-radius: 12px; }
  .ips-title { font-size: 18px; }
  .ips-price, .ips-loc { font-size: 14px; }
  .ips-feats { font-size: 13px; }
  .ips-btn { display: none; } /* rely on swipe */
}


  /* end */


  /* <section class="nsp-services" id="nsp-services"> */
  
    :root {
      --gold1: #b8860b;
      --gold2: #ffd700;
    }

    .nsp-services {
      position: relative;
      width: 100%;
      min-height: 30vh; /* full viewport height */
      padding: 64px 20px 44px;
      text-align: center;
      overflow: hidden;
      isolation: isolate;
    }

    /* Background video container */
    .nsp-bg {
      position: absolute;
      inset: 0;
      z-index: -2;
      overflow: hidden;
    }
    .nsp-bg video {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: translate(-50%, -50%);
    }

    /* Overlay for readability */
    .nsp-services::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(0deg, rgba(0,0,0,.28), rgba(0,0,0,.28)),
        radial-gradient(60% 60% at 20% 30%, rgba(255,215,0,.12), transparent 70%),
        radial-gradient(60% 60% at 80% 70%, rgba(184,134,11,.10), transparent 72%);
      z-index: -1;
    }

    /* Heading */
    .services-heading-out {
      position: relative;
      z-index: 1;
      color: #fff;
      display: inline-block;
      margin: 0 0 18px 0;
      padding: 8px 14px;
      font-size: 30px;
      font-weight: 800;
 
    }

    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Glass cards */
    .service-box {
      background: rgba(255, 255, 255, 0.78);
      border-radius: 14px;
      padding: 16px 14px;
      text-align: center;
      backdrop-filter: blur(10px) saturate(140%);
      border: 1px solid rgba(255, 255, 255, 0.75);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }
    .service-box:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
      background: rgba(255, 255, 255, 0.9);
    }

    .service-icon {
      width: 44px; height: 44px;
      margin: 0 auto 10px;
      display: grid; place-items: center;
      border-radius: 10px;
      background: #ffffff;
      box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
    }
    .service-icon svg {
      width: 26px; height: 26px;
      fill: url(#gold-grad);
    }

    .service-box p {
      font-size: 13.5px;
      line-height: 1.55;
      color: #1f2341;
      margin: 0;
      text-align: justify;
    }
    .service-box b { font-weight: 700; }

    /* CTA */
    .cta-center {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 18px;
    }
    .cta-btn {
      display: inline-block;
      padding: 12px 20px;
      border-radius: 999px;
      background: #ff5722;
      color: #fff;
      font: 700 14px/1 "Poppins", system-ui, Segoe UI, Roboto, Arial, sans-serif;
      text-decoration: none;
      box-shadow: 0 10px 22px rgba(255,45,45,.28), 0 0 0 2px rgba(255,255,255,.5) inset;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(255,45,45,.34), 0 0 0 2px rgba(255,255,255,.65) inset;
    }

    /* Responsive */
    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 720px) {
      .nsp-services { padding: 48px 14px 56px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    }
    @media (max-width: 420px) {
      .services-grid { grid-template-columns: 1fr; }
    }
  /* end */


/* <section class="index_fog_image_01"> */
/* Section Container with Building Background Image */
.index_fog_image_01 {
  height:130vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  
  /* Choose one of these background images: */
  
  /* Option 1: Burj Khalifa & Downtown Dubai */
  background-image:url('/assests/index-03.jpg');
  
  /* Option 2: Dubai Marina Skyscrapers */
  /* background-image:url('https://images.unsplash.com/photo-1582672060674-bc2bd808a8b5?q=80&w=2000'); */

  
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  overflow:hidden;
}

/* White Fog Effect from Top */
/* White Fog Effect from Top - INCREASED OPACITY */
.index_fog_image_01::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:70%;
  background:linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 20%,
    rgba(255, 255, 255, 0.7) 40%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0.25) 80%,
    transparent 100%
  );
  pointer-events:none;
  z-index:1;
}

/* Content Container */
.index_fog_image_01 .fog-content {
  position:relative;
  z-index:2;
  text-align:center;
  padding:20px;
}

/* Main Heading */
.index_fog_image_01 .fog-content h1 {
  font-size:72px;
  font-weight:600;
  letter-spacing:8px;
  color:#060606;
  margin-bottom:20px;
  font-family:'Poppins', sans-serif;
  text-transform:uppercase;
  line-height:1.2;
}

/* Subheading */
.index_fog_image_01 .fog-content p {
  font-size:18px;
  font-weight:600;
  letter-spacing:3px;
  color:#000000;
  margin:0;
  font-family:'Poppins', sans-serif;
  text-transform:uppercase;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .index_fog_image_01 {
    height:100vh;
  }
  .index_fog_image_01 .fog-content h1 {
    font-size:60px;
    letter-spacing:6px;
  }
  .index_fog_image_01 .fog-content p {
    font-size:16px;
    letter-spacing:2px;
  }
}

@media (max-width: 768px) {
  .index_fog_image_01 {
    height:80vh;
  }
  .index_fog_image_01 .fog-content h1 {
    font-size:48px;
    letter-spacing:4px;
  }
  .index_fog_image_01 .fog-content p {
    font-size:14px;
    letter-spacing:1.5px;
  }
  .index_fog_image_01::before {
    height:50%;
  }
}

@media (max-width: 420px) {
  .index_fog_image_01 {
    height:70vh;
  }
  .index_fog_image_01 .fog-content h1 {
    font-size:46px;
    letter-spacing:3px;
  }
  .index_fog_image_01 .fog-content p {
    font-size:23px;
    letter-spacing:1px;
  }
  .index_fog_image_01::before {
    height:40%;
  }
}

/*  */
/* <section class="index_why_01"> */
:root {
  --gold:#d4af37;
  --text-white:#ffffff;
  --text-gray:#999;
  --bg-black:#000000;
}

/* Section Container */
.index_why_01 {
  padding:80px 40px;
  background:var(--bg-black);
  position:relative;
  overflow:hidden;
}

/* Container */
.index_why_01 .why-container {
  max-width:1200px;
  margin:0 auto;
}

/* Heading Section */
.index_why_01 .why-heading {
  text-align:center;
  margin-bottom:60px;
}

.index_why_01 .why-heading h2 {
  font-size:48px;
  font-weight:600;
  color:var(--text-white);
  margin-bottom:12px;
  font-family:'Poppins',sans-serif;
  line-height:1.2;
}

.index_why_01 .why-heading p {
  font-size:28px;
  font-weight:400;
  color:var(--text-white);
  font-family:'Poppins',sans-serif;
  margin:0;
}

/* Cards Grid */
.index_why_01 .benefits-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:40px;
  margin-top:60px;
}

/* Individual Card */
.index_why_01 .benefit-card {
  text-align:center;
  padding:20px;
  transition:transform 0.3s ease;
}

.index_why_01 .benefit-card:hover {
  transform:translateY(-8px);
}

/* Icon Container */
.index_why_01 .benefit-icon {
  width:80px;
  height:80px;
  background:var(--gold);
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 24px auto;
  font-size:40px;
  transition:all 0.3s ease;
}

.index_why_01 .benefit-card:hover .benefit-icon {
  transform:scale(1.1);
  box-shadow:0 8px 24px rgba(212, 175, 55, 0.4);
}

/* Card Title */
.index_why_01 .benefit-card h3 {
  font-size:24px;
  font-weight:600;
  color:var(--text-white);
  margin-bottom:16px;
  font-family:'Poppins',sans-serif;
  line-height:1.3;
}

/* Card Description */
.index_why_01 .benefit-card p {
  font-size:15px;
  line-height:1.7;
  color:var(--text-gray);
  font-family:'Poppins',sans-serif;
  margin:0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .index_why_01 {
    padding:64px 24px;
  }
  .index_why_01 .why-heading h2 {
    font-size:40px;
  }
  .index_why_01 .why-heading p {
    font-size:24px;
  }
  .index_why_01 .benefits-grid {
    gap:30px;
  }
}

@media (max-width: 768px) {
  .index_why_01 {
    padding:60px 20px;
  }
  .index_why_01 .why-heading h2 {
    font-size:40px;
  }
  .index_why_01 .why-heading p {
    font-size:20px;
  }
  .index_why_01 .benefits-grid {
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap:24px;
  }
  .index_why_01 .benefit-card h3 {
    font-size:22px;
  }
}

@media (max-width: 420px) {
  .index_why_01 {
    padding:50px 16px;
  }
  .index_why_01 .why-heading h2 {
    font-size:32px;
  }
  .index_why_01 .why-heading p {
    font-size:18px;
  }
  .index_why_01 .benefits-grid {
    grid-template-columns:1fr;
    gap:20px;
  }
  .index_why_01 .benefit-card h3 {
    font-size:20px;
  }
}

  /* end */




/*  <section class="about-hero"> */

    :root{
      --bg:#000000;
      --panel:#0b0b0b;
      --card:#0d0d0d;
      --gold1:#462523;
      --gold2:#cb9b51;
      --gold3:#f6e27a;
      --gold4:#f6f2c0;
      --text:#e7e7e7;
      --muted:#bdbdbd;
      --radius:18px;
      --shadow: 0 18px 60px rgba(0,0,0,0.45);
    }

    .about-hero{
      width:100%;
      background:
        radial-gradient(1200px 800px at 70% -10%, rgba(255,215,0,0.06), transparent 60%),
        radial-gradient(900px 700px at -10% 100%, rgba(255,215,0,0.04), transparent 60%),
        var(--bg);
      padding: clamp(28px, 5vw, 60px) 16px;
      display:flex;
      justify-content:center;
      align-items:center;
      box-sizing:border-box;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Poppins, sans-serif;
    }

    .about-wrap{
      width:min(1200px, 95vw);
    }

    /* Top heading row */
    .about-head{
      background: #0f0f0f;
      border-radius: 14px;
      padding: clamp(12px, 2.2vw, 18px) clamp(14px, 3vw, 26px);
      display:flex;
      justify-content:center;
      align-items:center;
      margin: 0 auto clamp(18px, 3.4vw, 26px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.35);
      border: 1px solid rgba(255,215,0,0.14);
      max-width: 900px;
    }

    .about-head h2{
      margin:0;
      font-size: clamp(22px, 3.2vw, 34px);
      font-weight: 700;
      color: var(--text);
      letter-spacing:.2px;
    }
    .about-head .brand{
      display:inline-block;
      padding-left: .35em;
      background-image: linear-gradient(to right, var(--gold1) 0, var(--gold2) 22%, var(--gold3) 45%, var(--gold4) 50%, var(--gold3) 55%, var(--gold2) 78%, var(--gold1) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 10px rgba(255,215,0,0.10);
      white-space: nowrap;
    }

    /* Main split grid */
    .about-grid{
      display:grid;
      grid-template-columns: 1.1fr 1fr;
      gap: clamp(14px, 2vw, 22px);
      align-items: stretch;
    }

    .about-image{
      position:relative;
      background: #0c0c0c;
      border-radius: var(--radius);
      overflow:hidden;
      box-shadow: var(--shadow);
      border:1px solid rgba(255,215,0,0.10);
      min-height: 420px;
    }
    .about-image img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit: cover;
      filter: contrast(1.02) saturate(1.05);
    }
    .about-image::after{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.25) 80%, rgba(0,0,0,0.55) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.2) 0%, transparent 40%);
      pointer-events:none;
    }

    .about-card{
      background: linear-gradient(180deg, rgba(18,18,18,0.92), rgba(14,14,14,0.92));
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border:1px solid rgba(255,215,0,0.14);
      padding: clamp(16px, 2.8vw, 26px);
      display:flex;
      align-items:stretch;
    }

    .about-card-inner{
      background: rgba(255,255,255,0.02);
      border:1px solid rgba(255,215,0,0.12);
      border-radius: 14px;
      padding: clamp(16px, 2.4vw, 22px);
      backdrop-filter: blur(6px) saturate(120%);
      -webkit-backdrop-filter: blur(6px) saturate(120%);
      color: var(--text);
    }

    .tag{
      display:inline-block;
      font-size: 12px;
      letter-spacing:.4px;
      color:#111;
      background-image: linear-gradient(90deg, #b8870b, #ffd700);
      padding: 6px 10px;
      border-radius: 999px;
      margin-bottom: 10px;
      box-shadow: 0 6px 16px rgba(255,215,0,0.25);
    }

    .about-title{
      font-size: clamp(16px, 1.6vw, 18px);
      font-weight: 800;
      letter-spacing:.4px;
      margin: 2px 0 10px;
      color: var(--text);
    }

    .about-text{
      font-size: clamp(13.5px, 1.2vw, 14.5px);
      line-height: 1.7;
      color: var(--muted);
      max-width: 64ch;
    }
    .about-text b{
      color: #f5e8b0;
      font-weight: 800;
    }

    /* Golden bullet accent */
    .about-text ul{
      padding-left: 1.1em;
      margin: 10px 0 0 0;
      list-style: none;
    }
    .about-text li{
      margin: 6px 0;
      position: relative;
    }
    .about-text li::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #fff6c5, #ffd700 60%, #b8860b 100%);
      position:absolute; left:-16px; top:.55em;
      box-shadow: 0 0 10px rgba(255,215,0,0.4);
    }

    /* Responsive */
    @media (max-width: 980px){
      .about-grid{ grid-template-columns: 1fr; }
      .about-image{ min-height: 360px; }
    }
  

    /* <section class="logo001-section"> */
.logo001-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #f9f9f9, #f1f1f1);
}

.logo001-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  border-radius: 16px;
  background: #0b0b0b7a;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  text-align: center;
}

.logo001-title {
  font-weight: 700;
  font-size: 2.4rem;
  background:var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.logo001-desc {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 32px;
}

.logo001-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo001-track {
  display: flex;
  gap: 40px;
  animation: scroll 20s linear infinite;
}

.logo001 {
  width: 120px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo001 { width: 100px; height: 70px; }
}

@media (max-width: 480px) {
  .logo001 { width: 80px; height: 60px; }
}
/* end */


/* <section class="about-section5"> */

  .about-section5 {
    max-width: 1400px;
    margin: auto;
    text-align: center;
    padding: 40px 20px;
  }
  .about-section5 h2 {
    font-size: 52px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #000;
  }
  .about-section5 h2 span {
    color: var(--danger-color);
  }
  .about-section5 p {
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 16px;
  }

  /* GRID + CONNECTOR LINES (behind the cards) */
  .process-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
  }
  .process-wrapper::before,
  .process-wrapper::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 4px;
    background: #ccc;
    z-index: 1;                /* behind the circles (z-index:2) */
  }
  /* top row line */
  .process-wrapper::before {
    top: calc((100% / 2) - 60px);
  }
  /* bottom row line */
  .process-wrapper::after {
    top: calc((100% / 2) + 60px);
  }

  /* CARD STYLES */
  .step {
    position: relative;
    background: #fff;
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    border: 4px solid #ddd;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    z-index: 2;
  }
  .step img {
    width: 50px;
    margin-bottom: 15px;
  }
  .step h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #0a2540;
  }
  .step p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }

  /* CONNECTOR DOTS (above the bars) */
  .step::before,
  .step::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px; height: 20px;
    border: 4px solid currentColor;
    border-radius: 50%;
    background: #fff;
    transform: translateY(-50%);
    z-index: 3;                /* above the bars */
  }
  .step::before { left: -12px; }
  .step::after  { right: -12px; }

  /* only hide the 3rd card’s right‐dot,
     so the 6th card still shows its dot on the right */
  .step:nth-child(3)::after { display: none; }

  /* OPTIONAL: ACCENT COLORS */
  .step-1 { border-color: #f23cae; color: #f23cae; }
  .step-2 { border-color: #a74cf2; color: #a74cf2; }
  .step-3 { border-color: #4b6cf2; color: #4b6cf2; }
  .step-4 { border-color: #00b6ff; color: #00b6ff; }
  .step-5 { border-color: #02d2c9; color: #02d2c9; }
  .step-6 { border-color: #ffa500; color: #ffa500; }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .process-wrapper { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .process-wrapper { grid-template-columns: 1fr; }
  }
/* end */

/* ==================about.html================== */

/* <section class="about_section_04" id="about"> */
  .about_section_04 {
  position: relative;
  height: 75vh; /* UPDATED: Increased height */
  background: url('https://media.istockphoto.com/id/183346577/photo/dubai-mega-city.webp?a=1&b=1&s=612x612&w=0&k=20&c=VOI9jzl5LvroPjJz7Zn5Q5VfA4VxkoFIb7JBGjy1YSU=') no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* UPDATED: Fog/Overlay Effect from the TOP and MORE INTENSE */
.about_section_04 .about_section_04_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Creates a stronger gradient from the top that covers more area */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 200%);
  z-index: 1;
  /* Animation remains for subtle movement */
  animation: slowDriftFromTop 15s ease-in-out infinite alternate;
}

/* UPDATED: Animation keyframes to work with a top-down gradient */
@keyframes slowDriftFromTop {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 -5%; /* Moves the gradient slightly downwards */
    }
}

.about_section_04_content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about_section_04_content h2 {
  font-size: 50px;
  font-weight: 600;
  color: #ffffff;
  text-transform: none;
  margin-bottom: 10px;
  letter-spacing: 3px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.7); /* Enhanced shadow for readability */
}

.about_section_04_underline {
  width: 90px;
  height: 3px;
  background-color: var(--danger-color);
  margin: 0 auto;
  border-radius: 2px;
}

.about_section_04_split_text span {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.about_section_04_split_text span:hover {
  transform: translateY(-8px) scale(1.1);
  color: var(--danger-color);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .about_section_04 {
    height: 60vh; /* Adjusted height for mobile */
  }
  
  .about_section_04_content h2 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  
  .about_section_04_underline {
    width: 70px;
    height: 2.5px;
  }
}

@media (max-width: 480px) {
  .about_section_04 {
    height: 50vh; /* Adjusted height for small mobile */
  }
  
  .about_section_04_content h2 {
    font-size: 3rem;
    letter-spacing: 1.5px;
  }
  
  .about_section_04_underline {
    width: 60px;
  }

  .about_section_04_split_text span:hover {
    transform: translateY(-5px) scale(1.05);
  }
}

/* end */

/* <section class="index-02"> */
.index-02 {
    width: 100%;
    height: 100vh;
    background-color: #f5f5f5;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.index-02-container {
    max-width: 1200px;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.index-02-image {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    animation: slideInLeft 1s ease-out;
}

.index-02-image img {
    width: 100%;
    height: auto;
    max-height: 190%;
    object-fit: contain;
    display: block;
    margin-bottom: -400px;
}

.index-02-content {
    flex: 1;
    animation: slideInRight 1s ease-out;
}

.index-02-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    padding-left: 25px;
}

.index-02-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 150px;
    background-color: #ff6600;
    animation: lineGrow 1s ease-out;
}

.index-02-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.index-02-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6600;
    margin: 0;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.index-02-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ff6600;
    letter-spacing: 3px;
    margin: 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.index-02-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.index-02-description:last-child {
    animation: fadeInUp 1s ease-out 1s both;
}

/* Animations */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineGrow {
    0% {
        height: 0;
    }
    100% {
        height: 150px;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .index-02 {
        height: auto;
        min-height: 100vh;
        padding: 40px 0;
    }

    .index-02-container {
        height: auto;
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }

    .index-02-image {
        order: 2;
        width: 100%;
        height: auto;
        align-items: center;
        animation: fadeInUp 1s ease-out;
    }

    .index-02-image img {
        max-height: none;
        height: auto;
        margin-bottom: 0;
    }

    .index-02-content {
        order: 1;
        width: 100%;
        animation: fadeInUp 1s ease-out 0.3s both;
    }

    .index-02-text {
        padding-left: 20px;
    }

    .index-02-text::before {
        height: 120px;
    }

    .index-02-title,
    .index-02-subtitle {
        font-size: 1.75rem;
    }

    .index-02-label {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .index-02-description {
        font-size: 0.938rem;
        line-height: 1.6;
    }

    .index-02-text {
        gap: 12px;
    }
}

@media screen and (max-width: 480px) {
    .index-02 {
        padding: 30px 0;
    }

    .index-02-container {
        gap: 20px;
    }

    .index-02-text {
        padding-left: 15px;
    }

    .index-02-text::before {
        width: 3px;
        height: 100px;
    }

    .index-02-title,
    .index-02-subtitle {
        font-size: 2.5rem;
    }

    .index-02-description {
        font-size: 1rem;
    }
}


/* end */

    /* <section class="about-keystone" id="keystone"> */
      .about-keystone {
        padding: 80px 8%;
        background: #f9f9f9;
      }

      /* Top heading */
      .about-top-heading {
        text-align: center;
        margin-bottom: 50px;
      }

      .about-top-heading h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #222;
      }

      .about-top-heading h2 span {
        color: #FFD700;
        /* Golden accent */
      }

      /* Layout */
      .about-container {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
      }

      .about-image {
        flex: 1;
        min-width: 280px;
        display: flex;
        justify-content: center;
      }

      .about-image img {
        max-width: 500px;
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      }

      .about-text {
        flex: 1;
        color: #cacaca;
        text-align: justify;
        /* <<< Justify text */
      }

      .about-text h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
        color: #555;
      }

      .about-text p {
        margin-bottom: 15px;
        line-height: 1.7;
        font-size: 1rem;
        color: #c7c7c7;
      }

      /* Responsive */
      @media (max-width: 992px) {
        .about-container {
          flex-direction: column;
          text-align: center;
        }

        .about-text {
          margin-top: 30px;
          text-align: justify;
        }

        .about-top-heading h2 {
          font-size: 1.8rem;
        }
      }

      @media (max-width: 576px) {
        .about-keystone {
          padding: 50px 5%;
        }

        .about-top-heading h2 {
          font-size: 1.5rem;
          line-height: 1.4;
        }

        .about-text h3 {
          font-size: 1.2rem;
        }

        .about-text p {
          font-size: 0.9rem;
        }
      }
    /* end */


    /* <section class="keystone-unique-tabs"> */
  
    .keystone-unique-tabs {
        position: relative;
        padding: 100px 8%;
        overflow: hidden;
        background: #fff; /* Changed background to white */
        color: #333; /* Changed default text color */
    }

    /* Circular Buttons */
    .circle-tabs {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 50px;
    }

    .circle-btn {
        background: transparent;
        border: 2px solid #ff6a00; /* Orange border */
        border-radius: 50%;
        width: 100px;
        height: 100px;
        font-size: 1rem;
        color: #ff6a00; /* Orange text and icon */
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.4s;
        position: relative;
        overflow: hidden;
    }

    .circle-btn i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .circle-btn span {
        font-size: 0.9rem;
        text-align: center;
    }

    .circle-btn.active {
        transform: scale(1.15);
        background: #ff6a00; /* Orange background */
        color: #fff; /* White text and icon */
        box-shadow: 0 0 20px rgba(255, 106, 0, 0.5); /* Orange shadow */
        border-color: #ff6a00;
    }

    /* Content Cards */
    .circle-tab-content {
        display: none;
        justify-content: center;
        animation: fadeSlide 0.8s ease;
    }

    .circle-tab-content.active {
        display: flex;
    }

    .tab-card {
        display: flex;
        gap: 40px;
        align-items: center;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
    }

    .tab-card-image {
        flex: 1;
        min-width: 250px;
    }

    .tab-card-image img {
        width: 100%;
        border-radius: 15px;
        transition: transform 0.4s;
    }

    .tab-card-image img:hover {
        transform: scale(1.05) rotate(-1deg);
    }

    .tab-card-text {
        flex: 1;
        min-width: 250px;
    }

    .tab-card-text h3 {
        font-size: 2rem;
        color: #ff6a00; /* Orange heading */
        margin-bottom: 15px;
    }

    .tab-card-text p {
        font-size: 1rem;
        line-height: 1.6;
        color: #555; /* Dark gray for readability */
        text-align: justify;
    }

    /* Animations */
    @keyframes fadeSlide {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 992px) {
        .tab-card {
            flex-direction: column;
            text-align: center;
        }

        .circle-tabs {
            flex-wrap: wrap;
            gap: 20px;
        }

        .circle-btn {
            width: 80px;
            height: 80px;
        }

        .tab-card-text h3 {
            font-size: 1.6rem;
        }

        .tab-card-text p {
            font-size: 1rem;
        }
    }


    /* end */
























































/* <a href="https://wa.me/919876543210" target="_blank" class="whatsapp-btn"> */

/* WhatsApp button styling */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366; /* WhatsApp green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn img {
  width: 35px;
  height: 35px;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
/* end */

/* <section class="about-why-choose-02"> */
/* --- About Why Choose Us Section --- */
.section_02_02 {
    background-color: #f8f9fa;
    padding: 80px 5%;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.section_02_02 .about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section_02_02 .about-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.section_02_02 .title-underline {
    width: 80px;
    height: 4px;
    background-color: #e74c3c;
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

.section_02_02 .about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
    text-align: justify;
}

.section_02_02 .exclamation-mark {
    font-size: 1.5em;
    font-weight: 700;
    color: #e74c3c;
    margin-right: 5px;
}

.section_02_02 .about-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.section_02_02 .feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    flex: 1 1 250px;
}

.section_02_02 .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.section_02_02 .feature-icon {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.section_02_02 .feature-card p {
    font-size: 1rem;
    color: #34495e;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* --- Responsive Design for Mobile --- */
@media (max-width: 768px) {
    .section_02_02 {
        padding: 60px 5%;
    }
    
    .section_02_02 .about-title {
        font-size: 2rem;
    }

    .section_02_02 .about-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .section_02_02 .about-features {
        flex-direction: column;
    }

    .section_02_02 .feature-card {
        padding: 20px;
        flex-basis: auto;
        margin-left: 20px;
    }

    .section_02_02 .feature-icon {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .section_02_02 .feature-card p {
        font-size: 0.9rem;
    }
}



/* end */


    /* <section class="founder-profile" id="founder-profile"> */

      .founder-profile {
        /* padding: 80px 8%; */
        background: #fff;
        color: #000;
      }

      .section-heading {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--danger-color);
        /* Gold heading */
        margin-bottom: 0px;
      }

      .profile-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        flex-wrap: wrap;
      }

      .profile-text {
        flex: 1 1 500px;
        text-align: justify;
      }

      .profile-text h3 {
        font-size: 1.5rem;
        color: #000;
        margin-bottom: 20px;
      }

      .profile-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 15px;
        color: #333;
      }

      .profile-image {
        flex: 1 1 300px;
        text-align: center;
      }

      .profile-image img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
      }

      /* Responsive */
      @media (max-width: 992px) {
        .profile-row {
          flex-direction: column-reverse;
          text-align: center;
        }

        .profile-text {
          text-align: justify;
        }

        .profile-image {
          margin-bottom: 30px;
        }
      }
    /* end */

        /* <section class="dream-banner" aria-labelledby="dreamTitle"> */
      :root {
        --bg: #0a1230;
        --fg: #fff;
        --muted: #c9d0e6;
        --gold: #ffd700;
        --ease: cubic-bezier(.2, .8, .2, 1);
      }

      .dream-banner {
        position: relative;
        height: 50vh;
        /* exactly 30% height */
        min-height: 220px;
        top: -40px;
        /* safe minimum on short screens */
        color: var(--fg);
        background: linear-gradient(180deg, #0a1230, #0b1a3a);
        overflow: hidden;
        font-family: Inter, system-ui, Segoe UI, Roboto, Arial;
      }

      .dream-banner .inner {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
        height: 100%;
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        /* left image / right text */
        gap: 20px;
        padding: clamp(10px, 3.5vw, 22px);
        align-items: center;
      }

      /* LEFT image */
      .dream-banner .media {
        margin: 0;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
      }

      .dream-banner .media img {
        height: 100%;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        transform: translateY(4px) scale(1.02);
        filter: drop-shadow(0 20px 50px rgba(0, 0, 0, .35));
        transition: transform .6s var(--ease), filter .6s var(--ease);
      }

      .dream-banner:hover .media img {
        transform: translateY(0) scale(1.0);
        filter: drop-shadow(0 26px 60px rgba(0, 0, 0, .4));
      }

      /* RIGHT text */
      .dream-banner .copy {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      .dream-banner .title {
        margin: 0;
        font-size: clamp(1.1rem, 3.2vw, 2.2rem);
        letter-spacing: .01em;
        line-height: 1.15;
        text-shadow: 0 10px 30px rgba(0, 0, 0, .35);
      }

      .dream-banner .sub {
        margin: 0;
        color: var(--muted);
        font-size: clamp(.9rem, 1.8vw, 1rem);
      }

      .dream-banner .cta {
        width: fit-content;
        margin-top: 10px;
        padding: 12px 18px;
        border-radius: 12px;
        /* background: linear-gradient(135deg, var(--gold), #ffb400); */
        color: #ffffff;
        text-decoration: none;
        font-weight: 800;
        box-shadow: 0 12px 30px rgba(255, 180, 0, .28);
        transition: transform .2s var(--ease), box-shadow .2s var(--ease);
        border: 0;
      }

      .dream-banner .cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 40px rgba(255, 180, 0, .34);
      }

      /* Decorative soft blobs */
      .dream-banner .bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
      }

      .dream-banner .blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(36px);
        opacity: .22;
        mix-blend-mode: screen;
        animation: float 18s ease-in-out infinite;
      }

      .dream-banner .b1 {
        width: 420px;
        height: 420px;
        left: -120px;
        top: -140px;
        background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, .6), rgba(255, 215, 0, 0));
      }

      .dream-banner .b2 {
        width: 360px;
        height: 360px;
        right: -120px;
        bottom: -160px;
        animation-duration: 22s;
        background: radial-gradient(circle at 70% 30%, rgba(0, 160, 255, .45), rgba(0, 160, 255, 0));
      }

      @keyframes float {

        0%,
        100% {
          transform: translate3d(0, 0, 0)
        }

        50% {
          transform: translate3d(0, -14px, 0)
        }
      }

      /* Responsive tweaks */
      @media (max-width: 900px) {
        .dream-banner .inner {
          grid-template-columns: 1fr 1fr;
          gap: 14px;
        }
      }

      @media (max-width: 700px) {
        .dream-banner {
          height: auto;
          /* stack nicely on mobile */
          padding: 12px 0 16px;
        }

        .dream-banner .inner {
          grid-template-columns: 1fr;
          gap: 10px;
        }

        .dream-banner .media {
          height: 180px;
          order: -1;
          /* image on top for mobile */
        }

        .dream-banner .media img {
          width: 100%;
          height: 100%;
          object-fit: contain;
        }

        .dream-banner .copy {
          align-items: center;
          text-align: center
        }
      }
    /* end */


/* <section class="index_team_section_04"> */
/* --- Meet The Team Section --- */

.index_team_section_04 {
    background-color: #f5f5f5;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
}

/* Section Heading */
.team-heading {
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    color: #333;
    margin-bottom: 60px;
   
}

/* Team Grid */
.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Individual Team Card */
.team-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Team Image */
.team-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

/* Team Info Section */
.team-info {
    padding: 10px 10px;
    text-align: center;
}

.agent-name {
    font-size: 20px;
    color: #a89968;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.agent-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Read More Button */
.read-more-btn {
    display: inline-block;
    background-color: #a89968;
    color: #fff;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.read-more-btn:hover {
    background-color: #8f7d4e;
    transform: scale(1.05);
}


/* --- Responsive Design --- */

/* Tablet view: 2 columns */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .team-heading {
        font-size: 40px;
    }
}

/* Mobile view: 1 column */
@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .team-image {
        height: 350px;
    }
    
    .team-info {
        padding: 25px 20px;
    }
    
    .agent-name {
        font-size: 18px;
    }
}

   
  /* end */


  /* ==========services.html=========== */
  /* Services Section - White Background with Falling Stars */

  /* <section class="services-section-010"> */

.services-section-010 {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 50%, #e8f0f7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Falling Stars Container */
.falling-stars-010 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Individual Falling Star */
.star-010 {
  position: absolute;
  top: -20px;
  width: 3px;
  height: 3px;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  border-radius: 50%;
  box-shadow: 
    0 0 6px rgba(255, 215, 0, 0.8),
    0 0 12px rgba(255, 215, 0, 0.5);
  animation: starFall-010 5s linear infinite;
}

.star-010::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, 
    rgba(255, 215, 0, 0.6), 
    transparent);
  transform: translateY(-60px);
}

@keyframes starFall-010 {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

.services-heading-010 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 52px;
  letter-spacing: .5px;
  z-index: 2;
  padding: 0 10px;
  position: relative;
}

.services-wrapper-010 {
  width: 100%;
  max-width: 1600px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 38px;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

/* Service Card - Image Only with Squeeze Animation */
.service_card_010 {
  flex: 1 1 calc(33.333% - 26px);
  min-width: 300px;
  max-width: 480px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: block;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.12),
    0 2px 12px rgba(184, 134, 11, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.4s ease;
  animation: cardSqueeze-010 2s ease-in-out infinite;
}

/* Squeeze Animation - Repeats Every 2 Seconds */
@keyframes cardSqueeze-010 {
  0%, 100% { 
    transform: scale(1);
  }
  50% { 
    transform: scale(0.97);
  }
}

.service_card_010:hover {
  transform: scale(1.05);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.2),
    0 4px 20px rgba(184, 134, 11, 0.3);
  animation: none;
}

/* Image - Full Card Coverage */
.service-img-010 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(1);
}

.service_card_010:hover .service-img-010 {
  transform: scale(1.1);
  filter: brightness(0.4);
}

/* Black Overlay - Appears on Hover */
.card-overlay-010 {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service_card_010:hover .card-overlay-010 {
  opacity: 1;
  pointer-events: auto;
}

/* Icon - Appears on Hover */
.overlay-icon-010 {
  font-size: 4rem;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.4));
  transform: scale(0) rotate(-180deg);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  margin-bottom: 8px;
}

.service_card_010:hover .overlay-icon-010 {
  transform: scale(1) rotate(0deg);
}

.overlay-title-010 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  letter-spacing: 0.5px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.service_card_010:hover .overlay-title-010 {
  transform: translateY(0);
}

.overlay-desc-010 {
  color: #f5e8b0;
  font-size: 1.05rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
  margin: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.2s;
}

.service_card_010:hover .overlay-desc-010 {
  transform: translateY(0);
}

.overlay-btn-010 {
  background: linear-gradient(135deg, #b8860b 0%, #ffd700 50%, #b8860b 100%);
  color: #000;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.3s, box-shadow 0.3s ease;
}

.service_card_010:hover .overlay-btn-010 {
  transform: translateY(0);
}

.overlay-btn-010:hover {
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

/* Tablet landscape - 2 cards per row */
@media (max-width: 1080px) {
  .services-section-010 { padding: 50px 18px; }
  .services-heading-010 { font-size: 2.1rem; margin-bottom: 40px; }
  .services-wrapper-010 { gap: 28px; }
  .service_card_010 { 
    flex: 1 1 calc(50% - 14px);
    max-width: 550px;
    height: 380px;
  }
  .overlay-icon-010 { font-size: 3.5rem; }
  .overlay-title-010 { font-size: 1.8rem; }
  .overlay-desc-010 { font-size: 1rem; }
  .overlay-btn-010 { 
    font-size: 1rem;
    padding: 12px 32px;
  }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .services-section-010 { padding: 44px 16px; }
  .services-wrapper-010 { gap: 24px; }
  .service_card_010 { height: 360px; }
}

/* Mobile - 1 card per row (stacked) */
@media (max-width: 768px) {
  .services-section-010 { 
    padding: 40px 16px;
    min-height: auto;
  }
  .services-heading-010 { 
    font-size: 1.9rem;
    margin-bottom: 32px;
  }
  .services-wrapper-010 { 
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .service_card_010 { 
    flex: 1 1 100%;
    width: 100%;
    max-width: 500px;
    height: 340px;
  }
  .overlay-icon-010 { font-size: 3rem; margin-bottom: 6px; }
  .overlay-title-010 { font-size: 1.6rem; }
  .overlay-desc-010 { font-size: 0.96rem; }
  .overlay-btn-010 { 
    font-size: 0.95rem;
    padding: 12px 28px;
  }
  
  /* Reduce squeeze animation on mobile */
  @keyframes cardSqueeze-010 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.98); }
  }
  
  /* Reduce star count on mobile */
  .star-010:nth-child(n+15) {
    display: none;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .services-section-010 { padding: 32px 14px; }
  .services-heading-010 { 
    font-size: 1.6rem;
    margin-bottom: 28px;
  }
  .services-wrapper-010 { gap: 20px; }
  .service_card_010 { 
    max-width: 100%;
    min-width: 280px;
    height: 320px;
    border-radius: 16px;
  }
  .card-overlay-010 { 
    gap: 12px;
    padding: 24px 20px;
  }
  .overlay-icon-010 { font-size: 2.6rem; }
  .overlay-title-010 { font-size: 1.4rem; }
  .overlay-desc-010 { font-size: 0.9rem; }
  .overlay-btn-010 { 
    font-size: 0.9rem;
    padding: 10px 24px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .services-section-010 { padding: 28px 12px; }
  .services-heading-010 { font-size: 1.5rem; }
  .service_card_010 { 
    min-width: 260px;
    height: 300px;
  }
  .card-overlay-010 { padding: 20px 16px; }
  .overlay-icon-010 { font-size: 2.4rem; }
  .overlay-title-010 { font-size: 1.3rem; }
  .overlay-desc-010 { font-size: 0.86rem; }
  .overlay-btn-010 { 
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}

/* Touch device optimization */
@media (hover: none) and (pointer: coarse) {
  .service_card_010:hover {
    transform: scale(1.02);
  }
  .service_card_010:active .card-overlay-010 {
    opacity: 1;
  }
  .service_card_010:active .overlay-icon-010 {
    transform: scale(1) rotate(0deg);
  }
}

/* END */


/*======================= pg.html================ */

/*<section class="pg-about-section_11">  */
/* PG About Section - White Background */
.pg-about-section_11 {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #f3f4f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.pg-about-section_11::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(184, 134, 11, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.pg-container_11 {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Content Side */
.pg-content_11 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 20px;
}

.pg-badge_11 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  background: rgba(255, 215, 0, 0.15);
  border: 2px solid rgba(184, 134, 11, 0.3);
  border-radius: 30px;
  width: fit-content;
}

.pg-heading_11 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.pg-text_11 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pg-text_11 p {
  color: #374151;
  font-size: 17px;
  font-weight: 400;
  text-align: justify;
  line-height: 1.8;
  margin: 0;
}

.pg-text_11 strong {
  color: #b8860b;
  font-weight: 700;
}

/* Features Grid */
.pg-features_11 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.feature-item_11 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid rgba(184, 134, 11, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.feature-item_11:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(184, 134, 11, 0.5);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.15);
}

.feature-icon_11 {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #b8860b, #ffd700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(184, 134, 11, 0.3);
}

.feature-item_11 span {
  color: #1f2937;
  font-size: 1rem;
  font-weight: 600;
}

/* CTA Button */
.pg-cta-btn_11 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b8860b 0%, #ffd700 50%, #b8860b 100%);
  color: #000;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 12px;
}

.pg-cta-btn_11:hover {
  box-shadow: 0 8px 28px rgba(184, 134, 11, 0.45);
  transform: translateY(-3px);
}

/* Image Side */
.pg-image-side_11 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.pg-image-wrapper_11 {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(184, 134, 11, 0.2);
  height: 550px;
}

.pg-main-img_11 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pg-image-wrapper_11:hover .pg-main-img_11 {
  transform: scale(1.08);
}

/* Overlay Card */
.pg-overlay-card_11 {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 24px 28px;
  border-radius: 16px;
  border: 2px solid rgba(184, 134, 11, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 180px;
}

.overlay-icon_11 {
  font-size: 2.5rem;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

.pg-overlay-card_11 h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.pg-overlay-card_11 p {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

/* Location Tags */
.pg-location-tags_11 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.location-tag_11 {
  background: #ffffff;
  color: #b8860b;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid rgba(184, 134, 11, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}

.location-tag_11:hover {
  background: linear-gradient(135deg, #b8860b, #ffd700);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
  border-color: transparent;
}

/* Tablet - Adjust layout */
@media (max-width: 1024px) {
  .pg-about-section_11 { padding: 60px 20px; }
  .pg-container_11 { gap: 40px; }
  .pg-content_11 { padding-right: 0; }
  .pg-heading_11 { font-size: 2.5rem; }
  .pg-text_11 p { font-size: 1.02rem; }
  .pg-image-wrapper_11 { height: 480px; }
}

/* Mobile - Stack vertically */
@media (max-width: 768px) {
  .pg-about-section_11 { 
    padding: 50px 16px;
    min-height: auto;
  }
  
  .pg-container_11 { 
    flex-direction: column;
    gap: 40px;
  }
  
  .pg-content_11 {
    order: 2;
    padding-right: 0;
  }
  
  .pg-image-side_11 {
    order: 1;
    width: 100%;
  }
  
  .pg-badge_11 {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
  
  .pg-heading_11 { 
    font-size: 2rem;
  }
  
  .pg-text_11 {
    gap: 16px;
  }
  
  .pg-text_11 p { 
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .pg-features_11 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .pg-cta-btn_11 {
    width: 100%;
    font-size: 1rem;
    padding: 14px 32px;
  }
  
  .pg-image-wrapper_11 {
    height: 400px;
    border-radius: 20px;
  }
  
  .pg-overlay-card_11 {
    bottom: 20px;
    right: 20px;
    padding: 20px 24px;
    min-width: 150px;
  }
  
  .overlay-icon_11 { font-size: 2rem; }
  
  .pg-overlay-card_11 h4 { font-size: 1.4rem; }
  
  .pg-overlay-card_11 p { font-size: 0.9rem; }
  
  .pg-location-tags_11 {
    gap: 10px;
  }
  
  .location-tag_11 {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .pg-about-section_11 { padding: 40px 14px; }
  
  .pg-container_11 { gap: 32px; }
  
  .pg-badge_11 {
    font-size: 0.8rem;
    padding: 7px 14px;
  }
  
  .pg-heading_11 { font-size: 1.7rem; }
  
  .pg-text_11 p { font-size: 0.95rem; }
  
  .feature-item_11 {
    padding: 10px 14px;
    gap: 10px;
  }
  
  .feature-icon_11 {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
  
  .feature-item_11 span { font-size: 0.92rem; }
  
  .pg-cta-btn_11 {
    font-size: 0.95rem;
    padding: 13px 28px;
  }
  
  .pg-image-wrapper_11 {
    height: 350px;
    border-radius: 16px;
  }
  
  .pg-overlay-card_11 {
    bottom: 16px;
    right: 16px;
    padding: 16px 20px;
  }
  
  .overlay-icon_11 { font-size: 1.8rem; }
  
  .pg-overlay-card_11 h4 { font-size: 1.2rem; }
  
  .pg-overlay-card_11 p { font-size: 0.85rem; }
  
  .location-tag_11 {
    font-size: 0.8rem;
    padding: 7px 14px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .pg-about-section_11 { padding: 36px 12px; }
  .pg-heading_11 { font-size: 1.5rem; }
  .pg-text_11 p { font-size:1rem; }
  .pg-image-wrapper_11 { height: 320px; }
  .pg-overlay-card_11 {
    padding: 14px 18px;
  }
}

/*end  */

/*  <section class="pg-pricing-section_12">*/

/* Pricing Section - Zigzag + Bento Grid */
.pg-pricing-section_12 {
  width: 100%;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f5f5f5 100%);
  padding: 80px 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* Hero Header */
.pricing-hero_12 {
  text-align: center;
  padding: 0 20px 60px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-title_12 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin: 0 0 16px 0;
  letter-spacing: -1px;
}

.pricing-tagline_12 {
  color: #6b7280;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
}

/* Zigzag Container */
.zigzag-container_12 {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Zigzag Row */
.zigzag-row_12 {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

.zigzag-row_12::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, #ffd700, transparent);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

/* Image Section */
.zigzag-image_12 {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  min-height: 400px;
}

.zig-img_12 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.zigzag-image_12:hover .zig-img_12 {
  transform: scale(1.1);
}

.price-overlay_12 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 40px 30px;
}

.price-box_12 {
  text-align: center;
}

.price-label_12 {
  color: #d1d5db;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.price-amount_12 {
  font-size: 3rem;
  font-weight: 900;
  margin: 0;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.price-period_12 {
  color: #9ca3af;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin-top: 6px;
}

/* Content Section */
.zigzag-content_12 {
  flex: 1;
}

.content-badge_12 {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  color: #b8860b;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid rgba(184, 134, 11, 0.3);
  margin-bottom: 20px;
}

.content-badge_12.premium_12 {
  background: linear-gradient(135deg, #b8860b, #ffd700);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.content-heading_12 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.content-text_12 {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 24px 0;
}

.content-text_12 strong {
  color: #b8860b;
  font-weight: 700;
}

.content-features_12 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-features_12 li {
  color: #374151;
  font-size: 1.02rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(184, 134, 11, 0.1);
  transition: all 0.3s ease;
}

.content-features_12 li:hover {
  color: #b8860b;
  padding-left: 8px;
  border-bottom-color: #ffd700;
}

/* Locations Section */
.locations-section_12 {
  width: 100%;
  max-width: 1300px;
  margin: 80px auto 0;
  padding: 60px 20px 0;
  border-top: 2px solid rgba(184, 134, 11, 0.2);
}

.locations-heading_12 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 50px 0;
}

/* Bento Grid Layout */
.bento-grid_12 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
}

.bento-card_12 {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.bento-card_12:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(184, 134, 11, 0.25);
}

.bento-large_12 {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-medium_12 {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-small_12 {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-img_12 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-card_12:hover .bento-img_12 {
  transform: scale(1.15);
}

.bento-overlay_12 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bento-card_12:hover .bento-overlay_12 {
  opacity: 1;
}

.bento-content_12 {
  width: 100%;
}

.location-icon_12 {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
  animation: iconBounce_12 2s ease-in-out infinite;
}

@keyframes iconBounce_12 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.location-title_12 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.location-info_12 {
  color: #e5e7eb;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .zigzag-container_12 { gap: 60px; padding: 0 16px; }
  .zigzag-row_12 { gap: 40px; }
  .bento-grid_12 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 16px;
  }
  .bento-large_12,
  .bento-medium_12,
  .bento-small_12 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .pg-pricing-section_12 { padding: 50px 0; }
  .pricing-hero_12 { padding: 0 16px 40px; }
  .pricing-title_12 { font-size: 2rem; }
  .pricing-tagline_12 { font-size: 1.05rem; }
  
  .zigzag-container_12 { gap: 50px; }
  
  .zigzag-row_12 {
    flex-direction: column;
    gap: 30px;
  }
  
  .zigzag-row_12::before { display: none; }
  
  .zigzag-row_12.row-right_12 {
    flex-direction: column;
  }
  
  .zigzag-image_12 {
    width: 100%;
    min-height: 320px;
  }
  
  .content-heading_12 { font-size: 1.6rem; }
  .content-text_12 { font-size: 1rem; }
  
  .locations-section_12 { margin-top: 50px; padding-top: 50px; }
  
  .bento-grid_12 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .bento-card_12 {
    min-height: 220px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .pg-pricing-section_12 { padding: 40px 0; }
  .pricing-hero_12 { padding: 0 14px 32px; }
  .pricing-title_12 { font-size: 1.7rem; }
  .pricing-tagline_12 { font-size: 1rem; }
  
  .zigzag-container_12 { gap: 40px; padding: 0 14px; }
  .zigzag-image_12 { min-height: 280px; }
  .price-amount_12 { font-size: 2.5rem; }
  
  .content-badge_12 {
    font-size: 0.85rem;
    padding: 6px 16px;
  }
  
  .content-heading_12 { font-size: 1.4rem; }
  .content-text_12 { font-size: 1rem; }
  .content-features_12 li { font-size: 0.95rem; }
  
  .locations-heading_12 { font-size: 1.6rem; }
  .bento-card_12 { min-height: 200px; }
  .location-icon_12 { font-size: 2rem; }
  .location-title_12 { font-size: 1.3rem; }
  .location-info_12 { font-size: 0.9rem; }
}

/* end */


/*  */
/* PG Rental Section - Overlapping Cards */
.pg-rental-section_13 {
  width: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px 120px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Hero Banner with Diagonal */
.hero-banner_13 {
  max-width: 1200px;
  margin: 0 auto 80px;
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 60px 50px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.diagonal-accent_13 {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(184, 134, 11, 0.05));
  transform: rotate(15deg);
  pointer-events: none;
}

.banner-content_13 {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title_13 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin: 0 0 16px 0;
  letter-spacing: -1px;
  color: #ffd700;
}

.hero-subtitle_13 {
  color: #d1d5db;
  font-size: 1.25rem;
  margin: 0;
  font-weight: 500;
}

/* Stacked Cards Container */
.cards-stack_13 {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Individual Stack Card */
.stack-card_13 {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
  border: 3px solid rgba(184, 134, 11, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.card-one_13 {
  transform: translateX(0) rotate(-1deg);
}

.card-two_13 {
  transform: translateX(30px) rotate(1deg);
  margin-top: -60px;
  border-color: rgba(236, 72, 153, 0.25);
}

.stack-card_13:hover {
  transform: translateY(-20px) rotate(0deg) scale(1.02);
  box-shadow: 0 30px 80px rgba(184, 134, 11, 0.25);
  z-index: 10;
}

.card-two_13:hover {
  box-shadow: 0 30px 80px rgba(236, 72, 153, 0.25);
}

/* Card Corner Number */
.card-corner_13 {
  position: absolute;
  top: -2px;
  right: -2px;
  background: linear-gradient(135deg, #b8860b, #ffd700);
  color: #000;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  border-radius: 0 24px 0 24px;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.corner-pink_13 {
  background: linear-gradient(135deg, #d946ef, #ec4899);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

/* Special Badge */
.special-badge_13 {
  position: absolute;
  top: 24px;
  left: 24px;
  background: linear-gradient(135deg, #d946ef, #ec4899);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
  animation: badgeFloat_13 3s ease-in-out infinite;
}

@keyframes badgeFloat_13 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Card Header */
.card-header_13 {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 3px solid rgba(184, 134, 11, 0.15);
}

.header-icon_13 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(184, 134, 11, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
  border: 3px solid rgba(184, 134, 11, 0.3);
}

.icon-pink_13 {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(217, 70, 239, 0.1));
  border-color: rgba(236, 72, 153, 0.3);
}

.header-text_13 {
  flex: 1;
}

.header-label_13 {
  display: block;
  font-size: 0.9rem;
  color: #b8860b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.label-pink_13 {
  color: #ec4899;
}

.header-title_13 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}

/* Card Body */
.card-body_13 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.body-text_13 {
  color: #4b5563;
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 0;
}

.body-text_13 strong {
  color: #b8860b;
  font-weight: 700;
}

/* Options Section */
.options-section_13 {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(184, 134, 11, 0.05));
  padding: 28px;
  border-radius: 16px;
  border-left: 5px solid #b8860b;
}

.options-title_13 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 20px 0;
}

.options-list_13 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.option-box_13 {
  display: flex;
  gap: 16px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid rgba(184, 134, 11, 0.15);
  transition: all 0.3s ease;
}

.option-box_13:hover {
  border-color: #b8860b;
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.15);
}

.option-num_13 {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #b8860b, #ffd700);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}

.option-details_13 h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 6px 0;
}

.option-details_13 p {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Connectivity Banner */
.connectivity-banner_13 {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 24px;
  border-radius: 14px;
  color: #fff;
}

.banner-icon_13 {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.banner-text_13 {
  font-size: 1.05rem;
  line-height: 1.6;
}

.banner-text_13 strong {
  color: #ffd700;
  font-weight: 700;
}

/* Price Highlight */
.price-highlight_13 {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(217, 70, 239, 0.08));
  border: 3px solid rgba(236, 72, 153, 0.25);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
}

.price-wrapper_13 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.price-text_13 {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-main_13 {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-curr_13 {
  font-size: 1.3rem;
  color: #9ca3af;
  font-weight: 600;
}

.price-num_13 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.price-note_13 {
  font-size: 0.9rem;
  color: #9ca3af;
  font-style: italic;
}

/* Features Columns */
.features-columns_13 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.feature-col_13 {
  background: rgba(236, 72, 153, 0.05);
  padding: 24px;
  border-radius: 14px;
  border: 2px solid rgba(236, 72, 153, 0.15);
}

.col-heading_13 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 16px 0;
}

.feature-list_13 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list_13 li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 0;
}

.list-icon_13 {
  font-size: 1.3rem;
}

/* Ideal Banner */
.ideal-banner_13 {
  background: linear-gradient(90deg, #b8860b, #ffd700);
  padding: 20px 28px;
  border-radius: 12px;
  text-align: center;
}

.ideal-banner_13 p {
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.ideal-banner_13 strong {
  font-weight: 800;
}

/* Card Footer */
.card-footer_13 {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 3px solid rgba(184, 134, 11, 0.15);
}

.card-btn_13 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b8860b, #ffd700);
  color: #000;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 18px 48px;
  border-radius: 40px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.35);
  transition: all 0.3s ease;
}

.card-btn_13:hover {
  box-shadow: 0 12px 32px rgba(184, 134, 11, 0.5);
  transform: translateY(-4px);
}

.btn-pink_13 {
  background: linear-gradient(135deg, #d946ef, #ec4899);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
}

.btn-pink_13:hover {
  box-shadow: 0 12px 32px rgba(236, 72, 153, 0.5);
}

/* Tablet */
@media (max-width: 1024px) {
  .pg-rental-section_13 { padding: 60px 18px 100px; }
  .hero-banner_13 { padding: 50px 40px; margin-bottom: 60px; }
  .stack-card_13 { padding: 40px; }
  .card-two_13 { transform: translateX(20px) rotate(1deg); margin-top: -40px; }
  .features-columns_13 { gap: 20px; }
}

/* Mobile - Remove Overlap */
@media (max-width: 768px) {
  .pg-rental-section_13 { padding: 50px 16px 80px; }
  
  .hero-banner_13 {
    padding: 40px 28px;
    margin-bottom: 50px;
  }
  
  .hero-title_13 { font-size: 2rem; }
  .hero-subtitle_13 { font-size: 1.1rem; }
  
  .cards-stack_13 { gap: 32px; }
  
  .stack-card_13 {
    padding: 32px 24px;
    transform: none !important;
    margin-top: 0 !important;
  }
  
  .card-two_13 { margin-top: 0 !important; }
  
  .card-header_13 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .header-icon_13 {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }
  
  .header-title_13 { font-size: 1.7rem; }
  
  .body-text_13 { font-size: 1.02rem; }
  
  .features-columns_13 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .connectivity-banner_13 {
    flex-direction: column;
    text-align: center;
  }
  
  .price-num_13 { font-size: 3rem; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .pg-rental-section_13 { padding: 40px 14px 60px; }
  .hero-banner_13 { padding: 32px 24px; }
  .hero-title_13 { font-size: 1.7rem; }
  .stack-card_13 { padding: 28px 20px; }
  .card-corner_13 { width: 60px; height: 60px; font-size: 1.7rem; }
  .header-title_13 { font-size: 1.5rem; }
  .body-text_13 { font-size: 0.98rem; }
  .price-num_13 { font-size: 2.5rem; }
  .card-btn_13 {
    font-size: 1rem;
    padding: 16px 40px;
    width: 100%;
  }
}

/* end */

/*  */
/* Why Choose Section - Grid with Connections */
.why-choose-section_14 {
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 100px 20px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Section Header */
.why-header_14 {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-title_14 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
}

.section-desc_14 {
  color: #4b5563;
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 0;
}

/* Cards Grid Container */
.cards-grid-container_14 {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Cards Grid - 3 columns */
.cards-grid_14 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  position: relative;
  z-index: 2;
}

/* Connection Lines SVG */
.connection-lines_14 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.connect-line_14 {
  stroke: #ffd700;
  stroke-width: 3;
  stroke-dasharray: 10 5;
  animation: dashFlow_14 1.5s linear infinite;
  marker-end: url(#arrowhead_14);
}

.connect-path_14 {
  stroke: #ffd700;
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 10 5;
  animation: dashFlow_14 1.5s linear infinite;
  marker-end: url(#arrowhead_14);
}

@keyframes dashFlow_14 {
  to {
    stroke-dashoffset: -15;
  }
}

/* Benefit Card */
.benefit-card_14 {
  background: #ffffff;
  border: 3px solid rgba(184, 134, 11, 0.2);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
}

.benefit-card_14::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card_14:hover {
  transform: translateY(-12px) scale(1.05);
  border-color: rgba(184, 134, 11, 0.6);
  box-shadow: 0 20px 60px rgba(184, 134, 11, 0.25);
  z-index: 10;
}

.benefit-card_14:hover::before {
  opacity: 1;
}

/* Card Number */
.card-number_14 {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #b8860b, #ffd700);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
  z-index: 1;
  transition: all 0.4s ease;
}

.benefit-card_14:hover .card-number_14 {
  transform: rotate(360deg) scale(1.2);
}

/* Card Icon */
.card-icon_14 {
  font-size: 4rem;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(184, 134, 11, 0.2));
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.benefit-card_14:hover .card-icon_14 {
  transform: scale(1.2) translateY(-8px);
}

/* Card Title */
.card-title_14 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

/* Card Description */
.card-desc_14 {
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Bottom CTA */
.bottom-cta_14 {
  max-width: 800px;
  margin: 80px auto 0;
  text-align: center;
  padding: 50px 40px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.bottom-cta_14::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 60%);
  animation: ctaRotate_14 15s linear infinite;
}

@keyframes ctaRotate_14 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-heading_14 {
  color: #ffd700;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 1;
}

.cta-text_14 {
  color: #d1d5db;
  font-size: 1.15rem;
  margin: 0 0 32px 0;
  position: relative;
  z-index: 1;
}

.cta-button_14 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b8860b, #ffd700);
  color: #000;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta-button_14:hover {
  box-shadow: 0 12px 36px rgba(255, 215, 0, 0.6);
  transform: translateY(-4px);
}

/* Tablet - 2 columns */
@media (max-width: 1024px) {
  .why-choose-section_14 { padding: 80px 18px; }
  .why-header_14 { margin-bottom: 60px; }
  
  .cards-grid_14 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
  
  .benefit-card_14 {
    padding: 36px 28px;
    min-height: 300px;
  }
  
  .card-icon_14 { font-size: 3.5rem; }
  .card-title_14 { font-size: 1.3rem; }
  .card-desc_14 { font-size: 1rem; }
  
  /* Hide connection lines on tablet */
  .connection-lines_14 { display: none; }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
  .why-choose-section_14 { padding: 60px 16px; }
  
  .why-header_14 { margin-bottom: 50px; }
  .section-title_14 { font-size: 2rem; }
  .section-desc_14 { font-size: 1.05rem; }
  
  .cards-grid_14 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .benefit-card_14 {
    padding: 36px 28px;
    min-height: auto;
  }
  
  .card-number_14 {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .card-icon_14 { font-size: 3rem; margin-bottom: 20px; }
  .card-title_14 { font-size: 1.3rem; }
  .card-desc_14 { font-size: 1rem; }
  
  .connection-lines_14 { display: none; }
  
  .bottom-cta_14 {
    margin-top: 60px;
    padding: 40px 28px;
  }
  
  .cta-heading_14 { font-size: 1.8rem; }
  .cta-text_14 { font-size: 1.05rem; margin-bottom: 28px; }
  
  .cta-button_14 {
    font-size: 1rem;
    padding: 16px 40px;
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .why-choose-section_14 { padding: 50px 14px; }
  
  .why-header_14 { margin-bottom: 40px; }
  .section-title_14 { font-size: 1.8rem; }
  .section-desc_14 { font-size: 1rem; }
  
  .cards-grid_14 { gap: 24px; }
  
  .benefit-card_14 { padding: 32px 24px; }
  
  .card-number_14 {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    top: 12px;
    right: 12px;
  }
  
  .card-icon_14 { font-size: 2.5rem; }
  .card-title_14 { font-size: 1.2rem; }
  .card-desc_14 { font-size: 0.95rem; }
  
  .bottom-cta_14 {
    margin-top: 50px;
    padding: 36px 24px;
  }
  
  .cta-heading_14 { font-size: 1.6rem; }
  .cta-text_14 { font-size: 1rem; }
  .cta-button_14 {
    font-size: 0.95rem;
    padding: 14px 36px;
  }
}


/* end */

/*================= apartments.html======== */
/* <section class="timex-overview-02"> */
/* --- Timex Overview Section --- */
/* --- Timz Overview Section --- */
.timz-page-02 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 40px 5%;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header: Title and Actions */
.timz-page-02 .overview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.timz-page-02 .location-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    flex-grow: 1;
}

.timz-page-02 .actions-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.timz-page-02 .price-tag {
    background-color: #e53935;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.timz-page-02 .action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timz-page-02 .action-btn svg {
    height: 1.2em;
    width: 1.2em;
}

.timz-page-02 .call-btn,
.timz-page-02 .wahtzapp-btn {
    background-color: #e53935;
    color: #fff;
    border: 2px solid #e53935;
}

.timz-page-02 .call-btn:hover,
.timz-page-02 .wahtzapp-btn:hover {
    background-color: #c62828;
    border-color: #c62828;
}

/* Main Content Grid */
.timz-page-02 .overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.timz-page-02 .section-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.timz-page-02 .description {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

.timz-page-02 .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
}

.timz-page-02 .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.timz-page-02 .feature-item img {
    height: 32px;
    width: 32px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.timz-page-02 .feature-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #e53935;
    margin-bottom: 8px;
}

.timz-page-02 .feature-value {
    display: block;
    font-size: 1rem;
    color: #333;
}

.timz-page-02 .contact-form-wrapper {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
}

.timz-page-02 .form-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.timz-page-02 .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timz-page-02 .contact-form input,
.timz-page-02 .contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
}

.timz-page-02 .contact-form textarea {
    border-radius: 20px;
}

.timz-page-02 .contact-form button {
    background-color: #e53935;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.timz-page-02 .contact-form button:hover {
    background-color: #c62828;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .timz-page-02 .overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .timz-page-02 {
        padding: 30px 5%;
    }
    .timz-page-02 .overview-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .timz-page-02 .location-title {
        font-size: 2rem;
        width: 100%;
    }
    .timz-page-02 .actions-container {
        width: 100%;
        justify-content: flex-start;
    }
    .timz-page-02 .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .timz-page-02 .action-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .timz-page-02 .actions-container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .timz-page-02 .price-tag {
        text-align: center;
    }
    .timz-page-02 .action-btn {
        width: 100%;
        justify-content: center;
    }
    .timz-page-02 .features-grid {
        grid-template-columns: 1fr;
    }
}

/*  end*/


/* <section class="property-details_16"> */
/* Property Details Section */
.property-details_16 {
  width: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f8f8f8 100%);
  padding: 80px 20px;
  box-sizing: border-box;
}

/* Top Section with Button */
.details-top_16 {
  text-align: center;
  margin-bottom: 60px;
}

.tour-button_16 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b8a590, #c9b896);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 0;
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(184, 165, 144, 0.3);
}

.tour-button_16:hover {
  background: linear-gradient(135deg, #a69580, #b8a590);
  box-shadow: 0 6px 25px rgba(184, 165, 144, 0.5);
  transform: translateY(-3px);
}

/* Details Grid */
.details-grid_16 {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(184, 165, 144, 0.2);
}

/* Detail Item */
.detail-item_16 {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 50px 40px;
  border-right: 1px solid rgba(184, 165, 144, 0.2);
  border-bottom: 1px solid rgba(184, 165, 144, 0.2);
  background: #ffffff;
  transition: all 0.3s ease;
  position: relative;
}

.detail-item_16:nth-child(3n) {
  border-right: none;
}

.detail-item_16:nth-last-child(-n+3) {
  border-bottom: none;
}

.detail-item_16:hover {
  background: rgba(184, 165, 144, 0.03);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(184, 165, 144, 0.15);
  z-index: 10;
}

/* Detail Icon */
.detail-icon_16 {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.3s ease;
}

.detail-item_16:hover .detail-icon_16 {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* Detail Content */
.detail-content_16 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-label_16 {
  color: #a8978a;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.detail-value_16 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* Tablet - 2 columns */
@media (max-width: 1024px) {
  .property-details_16 { padding: 70px 18px; }
  
  .details-top_16 { margin-bottom: 50px; }
  
  .tour-button_16 {
    padding: 16px 45px;
    font-size: 0.95rem;
    letter-spacing: 2.5px;
  }
  
  .details-grid_16 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .detail-item_16 {
    padding: 40px 32px;
    gap: 16px;
  }
  
  .detail-item_16:nth-child(3n) {
    border-right: 1px solid rgba(184, 165, 144, 0.2);
  }
  
  .detail-item_16:nth-child(2n) {
    border-right: none;
  }
  
  .detail-item_16:nth-last-child(-n+3) {
    border-bottom: 1px solid rgba(184, 165, 144, 0.2);
  }
  
  .detail-item_16:nth-last-child(-n+2) {
    border-bottom: none;
  }
  
  .detail-icon_16 { font-size: 2.2rem; }
  
  .detail-label_16 { font-size: 0.8rem; letter-spacing: 1.8px; }
  
  .detail-value_16 {
    font-size: 1.2rem;
    letter-spacing: 0.8px;
  }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
  .property-details_16 { padding: 60px 16px; }
  
  .details-top_16 { margin-bottom: 40px; }
  
  .tour-button_16 {
    padding: 15px 40px;
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  
  .details-grid_16 {
    grid-template-columns: 1fr;
  }
  
  .detail-item_16 {
    padding: 36px 28px;
    gap: 14px;
    border-right: none;
  }
  
  .detail-item_16:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(184, 165, 144, 0.2);
  }
  
  .detail-item_16:last-child {
    border-bottom: none;
  }
  
  .detail-icon_16 { font-size: 2rem; }
  
  .detail-label_16 { font-size: 0.75rem; letter-spacing: 1.5px; }
  
  .detail-value_16 {
    font-size: 1.15rem;
    letter-spacing: 0.6px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .property-details_16 { padding: 50px 14px; }
  
  .details-top_16 { margin-bottom: 35px; }
  
  .tour-button_16 {
    padding: 14px 35px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    width: 100%;
    max-width: 280px;
  }
  
  .detail-item_16 {
    padding: 32px 24px;
    gap: 12px;
  }
  
  .detail-icon_16 { font-size: 1.8rem; }
  
  .detail-label_16 { font-size: 0.7rem; letter-spacing: 1.3px; }
  
  .detail-value_16 {
    font-size: 1.05rem;
    letter-spacing: 0.5px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .property-details_16 { padding: 40px 12px; }
  
  .tour-button_16 {
    padding: 13px 30px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }
  
  .detail-item_16 {
    padding: 28px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .detail-icon_16 { font-size: 1.6rem; }
  
  .detail-label_16 { font-size: 0.68rem; }
  
  .detail-value_16 {
    font-size: 1rem;
    letter-spacing: 0.4px;
  }
}

/* end */


/* <section class="location-section_17"> */
/* Location Section */
.location-section_17 {
  width: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f8f8f8 100%);
  padding: 100px 20px;
  box-sizing: border-box;
}

/* Section Header */
.location-header_17 {
  max-width: 1400px;
  margin: 0 auto 80px;
  text-align: center;
}

.header-subtitle_17 {
  display: block;
  color: var(--danger-color);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.location-title_17 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: 8px;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Location Grid */
.location-grid_17 {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(184, 165, 144, 0.2);
}

/* Location Item */
.location-item_17 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  border-right: 1px solid rgba(184, 165, 144, 0.2);
  border-bottom: 1px solid rgba(184, 165, 144, 0.2);
  background: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  min-height: 280px;
}

.location-item_17:nth-child(3n) {
  border-right: none;
}

.location-item_17:nth-last-child(-n+3) {
  border-bottom: none;
}

.location-item_17:hover {
  background: rgba(184, 165, 144, 0.03);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(184, 165, 144, 0.15);
  z-index: 10;
}

/* Location Icon */
.location-icon_17 {
  font-size: 4rem;
  margin-bottom: 24px;
  filter: grayscale(100%) opacity(0.4);
  transition: all 0.3s ease;
}

.location-item_17:hover .location-icon_17 {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.15);
}

/* Location Time */
.location-time_17 {
  color: #000000;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Location Name */
.location-name_17 {
  color: #000000;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

/* Tablet - 2 columns */
@media (max-width: 1024px) {
  .location-section_17 { padding: 80px 18px; }
  
  .location-header_17 { margin-bottom: 60px; }
  
  .header-subtitle_17 {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }
  
  .location-title_17 {
    font-size: 3rem;
    letter-spacing: 6px;
  }
  
  .location-grid_17 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .location-item_17 {
    padding: 50px 32px;
    min-height: 260px;
  }
  
  .location-item_17:nth-child(3n) {
    border-right: 1px solid rgba(184, 165, 144, 0.2);
  }
  
  .location-item_17:nth-child(2n) {
    border-right: none;
  }
  
  .location-item_17:nth-last-child(-n+3) {
    border-bottom: 1px solid rgba(184, 165, 144, 0.2);
  }
  
  .location-item_17:nth-last-child(-n+2) {
    border-bottom: none;
  }
  
  .location-icon_17 {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
  
  .location-time_17 {
    font-size: 0.85rem;
    letter-spacing: 2.3px;
  }
  
  .location-name_17 {
    font-size: 1.1rem;
    letter-spacing: 1.8px;
  }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
  .location-section_17 { padding: 60px 16px; }
  
  .location-header_17 { margin-bottom: 50px; }
  
  .header-subtitle_17 {
    font-size: 0.8rem;
    letter-spacing: 3px;
  }
  
  .location-title_17 {
    font-size: 2rem;
    letter-spacing: 4px;
  }
  
  .location-grid_17 {
    grid-template-columns: 1fr;
  }
  
  .location-item_17 {
    padding: 45px 28px;
    min-height: 240px;
    border-right: none;
  }
  
  .location-item_17:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(184, 165, 144, 0.2);
  }
  
  .location-item_17:last-child {
    border-bottom: none;
  }
  
  .location-icon_17 {
    font-size: 3rem;
    margin-bottom: 18px;
  }
  
  .location-time_17 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  
  .location-name_17 {
    font-size: 1.05rem;
    letter-spacing: 1.5px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .location-section_17 { padding: 50px 14px; }
  
  .location-header_17 { margin-bottom: 40px; }
  
  .header-subtitle_17 {
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
  }
  
  .location-title_17 {
    font-size: 1.6rem;
    letter-spacing: 3px;
  }
  
  .location-item_17 {
    padding: 40px 24px;
    min-height: 220px;
  }
  
  .location-icon_17 {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
  
  .location-time_17 {
    font-size: 0.75rem;
    letter-spacing: 1.8px;
  }
  
  .location-name_17 {
    font-size: 0.95rem;
    letter-spacing: 1.3px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .location-section_17 { padding: 40px 12px; }
  
  .location-title_17 {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }
  
  .location-item_17 {
    padding: 36px 20px;
    min-height: 200px;
  }
  
  .location-icon_17 {
    font-size: 2.2rem;
    margin-bottom: 14px;
  }
  
  .location-time_17 {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
  
  .location-name_17 {
    font-size: 0.9rem;
    letter-spacing: 1.2px;
  }
}

/* end */


/*  <section class="parallax-gallery_18"> */

/* Reset */


/* Parallax Gallery Section */
.parallax-gallery_18 {
  width: 100%;
  position: relative;
}

/* Gallery Panel */
.gallery-panel_18 {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Fixed Background */
.fixed-bg_18 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: -1;
}

/* Active State - Show Background */
.gallery-panel_18.active .fixed-bg_18 {
  opacity: 1;
  z-index: 1;
}

/* Panel Content Overlay */
.panel-content_18 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.3) 0%, 
    rgba(0, 0, 0, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s ease 0.3s;
}

.gallery-panel_18.active .panel-content_18 {
  opacity: 1;
}

/* Panel Title */
.panel-title_18 {
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  margin: 0;
  letter-spacing: 12px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 0 20px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.5s;
}

.gallery-panel_18.active .panel-title_18 {
  transform: translateY(0);
  opacity: 1;
}

/* Tablet */
@media (max-width: 1024px) {
  .gallery-panel_18 {
    height: 100vh;
  }
  
  .panel-title_18 {
    font-size: 3.5rem;
    letter-spacing: 10px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-panel_18 {
    height: 100vh;
  }
  
  .panel-title_18 {
    font-size: 2.5rem;
    letter-spacing: 8px;
  }
  
  .panel-content_18 {
    background: linear-gradient(to bottom, 
      rgba(0, 0, 0, 0.4) 0%, 
      rgba(0, 0, 0, 0.6) 100%);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .gallery-panel_18 {
    height: 100vh;
  }
  
  .panel-title_18 {
    font-size: 2rem;
    letter-spacing: 6px;
    padding: 0 30px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .gallery-panel_18 {
    height: 100vh;
  }
  
  .panel-title_18 {
    font-size: 1.6rem;
    letter-spacing: 4px;
  }
}

/* end */



/*<section class="video-section_19">*/
/* Video Section */
.video-section_19 {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
}

/* YouTube Video Background */
.video-bg_19 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.video-bg_19 iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 Aspect Ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 Aspect Ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Video Overlay - Dark tint */
.video-overlay_19 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.4) 0%, 
    rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Video Content */
.video-content_19 {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Video Title */
.video-title_19 {
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  margin: 0 0 20px 0;
  letter-spacing: 8px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

/* Video Subtitle */
.video-subtitle_19 {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  margin: 0;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Tablet */
@media (max-width: 1024px) {
  .video-section_19 {
    height: 70vh;
  }
  
  .video-title_19 {
    font-size: 3.5rem;
    letter-spacing: 6px;
    margin-bottom: 16px;
  }
  
  .video-subtitle_19 {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .video-section_19 {
    height: 70vh;
  }
  
  .video-overlay_19 {
    background: linear-gradient(to bottom, 
      rgba(0, 0, 0, 0.5) 0%, 
      rgba(0, 0, 0, 0.7) 100%);
  }
  
  .video-title_19 {
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 14px;
  }
  
  .video-subtitle_19 {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .video-section_19 {
    height: 70vh;
  }
  
  .video-title_19 {
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
  }
  
  .video-subtitle_19 {
    font-size: 1rem;
    letter-spacing: 2px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .video-section_19 {
    height: 70vh;
  }
  
  .video-title_19 {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
  
  .video-subtitle_19 {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
  }
}

/* end */



/* <section class="amenities-section_20"> */
/* Amenities Section */
.amenities-section_20 {
  width: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f8f8f8 100%);
  padding: 100px 20px;
  box-sizing: border-box;
}

/* Section Header */
.amenities-header_20 {
  text-align: center;
  margin-bottom: 80px;
}

.amenities-title_20 {
  color: #000000;
  font-size: 52px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 8px;
  text-transform: uppercase;
}

/* Amenities Grid */
.amenities-grid_20 {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
}

/* Amenity Item */
.amenity-item_20 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.amenity-item_20:hover {
  transform: translateY(-8px);
}

/* Amenity Icon */
.amenity-icon_20 {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.amenity-icon_20 i {
  font-size: 4rem;
  color: #00bcd4;
  transition: all 0.3s ease;
}

.amenity-item_20:hover .amenity-icon_20 i {
  color: #008ba3;
  transform: scale(1.15);
}

/* Amenity Label - Same color scheme as other sections */
.amenity-label_20 {
  color: #000000;
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

/* Tablet - 3 columns */
@media (max-width: 1024px) {
  .amenities-section_20 { padding: 80px 18px; }
  .amenities-header_20 { margin-bottom: 60px; }
  
  .amenities-title_20 {
    font-size: 2.5rem;
    letter-spacing: 6px;
  }
  
  .amenities-grid_20 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
  }
  
  .amenity-icon_20 {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .amenity-icon_20 i { font-size: 3.5rem; }
  
  .amenity-label_20 { font-size: 1rem; }
}

/* Mobile - 2 columns */
@media (max-width: 768px) {
  .amenities-section_20 { padding: 60px 16px; }
  .amenities-header_20 { margin-bottom: 50px; }
  
  .amenities-title_20 {
    font-size: 2rem;
    letter-spacing: 4px;
  }
  
  .amenities-grid_20 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  
  .amenity-icon_20 {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  
  .amenity-icon_20 i { font-size: 3rem; }
  
  .amenity-label_20 { font-size: 0.95rem; }
}

/* Small Mobile - 1 column */
@media (max-width: 480px) {
  .amenities-section_20 { padding: 50px 14px; }
  .amenities-header_20 { margin-bottom: 40px; }
  
  .amenities-title_20 {
    font-size: 1.6rem;
    letter-spacing: 3px;
  }
  
  .amenities-grid_20 {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .amenity-icon_20 {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
  }
  
  .amenity-icon_20 i { font-size: 3.5rem; }
  
  .amenity-label_20 { font-size: 1.05rem; }
}

/* end */

/* <section class="timez-page-01"> */
/* --- Horizontal Image Slider Section --- */
.timez-page-01 {
    width: 100%;
    padding: 10px 0;
    overflow: hidden; /* Crucial for hiding the off-screen images */
    box-sizing: border-box;
    background: #fff; /* A neutral background */
}

.timez-page-01 .slider-track {
    display: flex;
    gap: 20px; /* Adjust the space between images */
    /* Total width is based on the number of images (7 original + 7 duplicated = 14) */
    width: calc(10% * 14); 
    animation: autoSlide 35s linear infinite;
}

/* Pause the animation when a user hovers over the slider */
.timez-page-01 .slider-track:hover {
    animation-play-state: paused;
}

.timez-page-01 .slider-track img {
    height: 500px;
    width: 25%; /* Four images visible at once on large screens */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.timez-page-01 .slider-track img:hover {
    transform: scale(1.05);
}

/* The keyframe animation that moves the track horizontally */
@keyframes autoSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Moves the track to the left by the width of the original 7 images plus gaps */
        transform: translateX(calc(-10% * 7 - 7 * 20px));
    }
}

/* --- Responsive Design --- */

/* For tablets and smaller laptops (shows 3 images) */
@media (max-width: 1200px) {
    .timez-page-01 .slider-track {
        width: calc(33.33% * 14);
        animation-name: autoSlideTablet;
    }

    .timez-page-01 .slider-track img {
        width: 33.33%;
        height: 300px;
    }

    @keyframes autoSlideTablet {
        100% {
            transform: translateX(calc(-33.33% * 7 - 7 * 20px));
        }
    }
}

/* For smaller tablets (shows 2 images) */
@media (max-width: 768px) {
    .timez-page-01 {
        padding: 40px 0;
    }
    
    .timez-page-01 .slider-track {
        width: calc(50% * 14);
        animation-name: autoSlideMobile;
    }

    .timez-page-01 .slider-track img {
        width: 50%;
        height: 280px;
    }

    @keyframes autoSlideMobile {
        100% {
            transform: translateX(calc(-50% * 7 - 7 * 20px));
        }
    }
}

/* For small mobile phones (shows 1 full image) */
@media (max-width: 480px) {
    .timez-page-01 .slider-track {
        width: calc(90% * 14);
        padding: 0 5%; /* Center the single image slightly */
        animation-name: autoSlideSmallMobile;
    }

    .timez-page-01 .slider-track img {
        width: 90%;
        height: 250px;
    }
    
    @keyframes autoSlideSmallMobile {
        100% {
            transform: translateX(calc(-10% * 7 - 7 * 20px));
        }
    }
}

/* end */

/*  */
/* Location Section - 100vh Fixed */
.location-section_22 {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  padding: 30px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Section Header - Compact */
.location-header_22 {
  text-align: center;
  margin-bottom: 30px;
  flex-shrink: 0;
}

.location-title_22 {
  color: #000000;
  font-size: 52px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 10px;
  text-transform: uppercase;
}

/* Two Column Grid - Flex Growth */
.location-grid_22 {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  flex: 1;
  min-height: 0;
}

/* Left: Map Container */
.map-container_22 {
  width: 100%;
  height: 100%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-container_22 iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Right: Contact Content - Compact */
.contact-content_22 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 0;
}

/* Contact Item - Compact */
.contact-item_22 {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  flex: 1;
}

.contact-item_22:hover {
  background: rgba(184, 165, 144, 0.05);
  border-left-color: #b8a590;
  transform: translateX(8px);
}

/* Item Icon */
.item-icon_22 {
  font-size: 2rem;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 165, 144, 0.1);
  border-radius: 50%;
}

/* Item Info */
.item-info_22 {
  flex: 1;
}

.item-info_22 h4 {
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.item-info_22 p {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 300;
}

/* CTA Button */
.direction-btn_22 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--danger-color);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 0;
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 165, 144, 0.3);
  margin-top: 8px;
  flex-shrink: 0;
}

.direction-btn_22:hover {
  background: linear-gradient(135deg, #a69580, #b8a590);
  box-shadow: 0 6px 20px rgba(184, 165, 144, 0.5);
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 1024px) {
  .location-section_22 { 
    height: auto;
    min-height: 100vh;
    padding: 50px 18px; 
  }
  
  .location-header_22 { margin-bottom: 35px; }
  
  .location-title_22 {
    font-size: 2rem;
    letter-spacing: 8px;
  }
  
  .location-grid_22 {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .map-container_22 {
    height: 400px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .location-section_22 { 
    height: auto;
    padding: 40px 16px; 
  }
  
  .location-header_22 { margin-bottom: 30px; }
  
  .location-title_22 {
    font-size: 1.7rem;
    letter-spacing: 6px;
  }
  
  .location-grid_22 { gap: 30px; }
  
  .map-container_22 { height: 320px; }
  
  .contact-content_22 { gap: 0; }
  
  .contact-item_22 { 
    padding: 14px 16px;
    gap: 14px;
  }
  
  .item-icon_22 {
    font-size: 1.7rem;
    width: 40px;
    height: 40px;
  }
  
  .item-info_22 h4 { font-size: 0.7rem; }
  .item-info_22 p { font-size: 0.88rem; }
  
  .direction-btn_22 {
    padding: 14px 28px;
    font-size: 0.8rem;
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .location-section_22 { padding: 35px 14px; }
  
  .location-title_22 {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }
  
  .map-container_22 { height: 280px; }
  
  .contact-item_22 { 
    padding: 12px 14px;
    gap: 12px;
  }
  
  .item-icon_22 {
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
  }
  
  .item-info_22 h4 { font-size: 0.68rem; }
  .item-info_22 p { font-size: 0.85rem; }
  
  .direction-btn_22 {
    padding: 13px 24px;
    font-size: 0.75rem;
  }
}

/* end */

/* =======contact.html========== */

/* <section class="contact-form-section_23">  */

/* Contact Form Section */
.contact-form-section_23 {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f5f5f5 100%);
  padding: 80px 20px;
  box-sizing: border-box;
}

/* Form Header */
.form-header_23 {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.form-subtitle_23 {
  display: block;
  color: #b8a590;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.form-title_23 {
  color: #b8a590;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin: 0 0 20px 0;
  letter-spacing: 10px;
  text-transform: uppercase;
}

.form-description_23 {
  color: #000;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

/* Form Container */
.form-container_23 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Contact Form */
.contact-form_23 {
  background: #ffffff;
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(184, 165, 144, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Form Group */
.form-group_23 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full_23 {
  grid-column: 1 / -1;
}

/* Form Label */
.form-label_23 {
  color: #000;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.required_23 {
  color: #ef4444;
}

/* Form Input */
.form-input_23 {
  padding: 14px 18px;
  font-size: 1rem;
  color: #1f2937;
  background: #fafafa;
  border: 2px solid rgba(184, 165, 144, 0.2);
  border-radius: 0;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input_23:focus {
  background: #ffffff;
  border-color: #b8a590;
  box-shadow: 0 0 0 4px rgba(184, 165, 144, 0.1);
}

.form-input_23::placeholder {
  color: #9ca3af;
}

/* Select */
.form-select_23 {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b7355' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}

/* Textarea */
.form-textarea_23 {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

/* Checkbox */
.checkbox-label_23 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label_23 input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #b8a590;
}

.checkbox-text_23 {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
}

.checkbox-text_23 a {
  color: var(--danger-color);
  text-decoration: underline;
}

/* Submit Button */
.submit-btn_23 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--danger-color);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 24px rgba(184, 165, 144, 0.3);
}

.submit-btn_23:hover {
  background: linear-gradient(135deg, #a69580, #b8a590);
  box-shadow: 0 12px 32px rgba(184, 165, 144, 0.5);
  transform: translateY(-2px);
}

.submit-btn_23:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.submit-btn_23 svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.submit-btn_23:hover svg {
  transform: translateX(4px);
}

/* Contact Info Cards */
.contact-info-cards_23 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card_23 {
  background: #ffffff;
  padding: 30px;
  border-radius: 0;
  border-left: 4px solid var(--danger-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.info-card_23:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(184, 165, 144, 0.15);
}

.info-icon_23 {
  width: 50px;
  height: 50px;
  background: rgba(184, 165, 144, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #b8a590;
}

.info-icon_23 svg {
  width: 24px;
  height: 24px;
}

.info-card_23 h4 {
  color: #000;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.info-card_23 p {
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* Tablet */
@media (max-width: 1024px) {
  .contact-form-section_23 { padding: 60px 18px; }
  .form-header_23 { margin-bottom: 50px; }
  
  .form-container_23 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form_23 { padding: 35px; }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-form-section_23 { padding: 50px 16px; }
  .form-header_23 { margin-bottom: 40px; }
  
  .form-title_23 {
    font-size: 2rem;
    letter-spacing: 6px;
  }
  
  .form-description_23 { font-size: 1.5rem; }
  
  .contact-form_23 {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    gap: 20px;
  }
  
  .form-input_23 {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .submit-btn_23 {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
  
  .info-card_23 {
    padding: 24px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .contact-form-section_23 { padding: 40px 14px; }
  
  .form-title_23 {
    font-size: 1.6rem;
    letter-spacing: 4px;
  }
  
  .contact-form_23 {
    padding: 24px 18px;
    gap: 18px;
  }
  
  .form-label_23 { font-size: 0.85rem; }
  
  .form-input_23 {
    padding: 11px 14px;
    font-size: 0.9rem;
  }
  
  .submit-btn_23 {
    padding: 13px 24px;
    font-size: 0.85rem;
  }
  
  .info-card_23 {
    padding: 20px;
  }
}
/* end */


/* Blog Section */
.blog-section_24 {
  width: 100%;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f5f5f5 100%);
  padding: 100px 20px;
  box-sizing: border-box;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

/* Blog Header */
.blog-header_24 {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.blog-subtitle_24 {
  display: block;
  color: #b8a590;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-title_24 {
  color: #b8a590;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin: 0 0 20px 0;
  letter-spacing: 10px;
  text-transform: uppercase;
}

.blog-description_24 {
  color: #8b7355;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

/* Blog Grid */
.blog-grid_24 {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Blog Card */
.blog-card_24 {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(184, 165, 144, 0.1);
}

.blog-card_24:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(184, 165, 144, 0.2);
}

.blog-link_24 {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Blog Image */
.blog-image_24 {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.blog-image_24 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card_24:hover .blog-image_24 img {
  transform: scale(1.1);
}

/* Blog Category Badge */
.blog-category_24 {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #b8a590, #c9b896);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

/* Blog Content */
.blog-content_24 {
  padding: 28px;
}

/* Blog Meta */
.blog-meta_24 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.blog-date_24 {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8b7355;
  font-size: 0.85rem;
  font-weight: 400;
}

.blog-date_24 svg {
  width: 14px;
  height: 14px;
  color: #b8a590;
}

.blog-read-time_24 {
  color: #8b7355;
  font-size: 0.85rem;
  font-weight: 400;
}

/* Blog Post Title */
.blog-post-title_24 {
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 12px 0;
  transition: color 0.3s ease;
}

.blog-card_24:hover .blog-post-title_24 {
  color: #b8a590;
}

/* Blog Excerpt */
.blog-excerpt_24 {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read More Link */
.read-more_24 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b8a590;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.blog-card_24:hover .read-more_24 {
  gap: 12px;
}

.read-more_24 svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.blog-card_24:hover .read-more_24 svg {
  transform: translateX(4px);
}

/* View All CTA */
.blog-cta_24 {
  text-align: center;
  margin-top: 50px;
}

.view-all-btn_24 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b8a590, #c9b896);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(184, 165, 144, 0.3);
}

.view-all-btn_24:hover {
  background: linear-gradient(135deg, #a69580, #b8a590);
  box-shadow: 0 12px 32px rgba(184, 165, 144, 0.5);
  transform: translateY(-2px);
}

/* Tablet - 2 Columns */
@media (max-width: 1024px) {
  .blog-section_24 { padding: 80px 18px; }
  .blog-header_24 { margin-bottom: 60px; }
  
  .blog-grid_24 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile - 1 Column */
@media (max-width: 768px) {
  .blog-section_24 { padding: 60px 16px; }
  .blog-header_24 { margin-bottom: 50px; }
  
  .blog-title_24 {
    font-size: 2rem;
    letter-spacing: 6px;
  }
  
  .blog-description_24 { font-size: 1rem; }
  
  .blog-grid_24 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .blog-image_24 { height: 220px; }
  
  .blog-content_24 { padding: 24px; }
  
  .blog-post-title_24 { font-size: 1.15rem; }
  
  .view-all-btn_24 {
    padding: 14px 36px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .blog-section_24 { padding: 50px 14px; }
  
  .blog-title_24 {
    font-size: 1.6rem;
    letter-spacing: 4px;
  }
  
  .blog-grid_24 { gap: 24px; }
  
  .blog-image_24 { height: 200px; }
  
  .blog-content_24 { padding: 20px; }
  
  .blog-post-title_24 { font-size: 1.1rem; }
  
  .blog-excerpt_24 { font-size: 0.9rem; }
  
  .view-all-btn_24 {
    padding: 13px 32px;
    font-size: 0.85rem;
  }
}




/* <section class="index_why_choose_05"> */
/* --- Why Choose Us Section --- */
.index_why_choose_05 {
    width: 100%;
    height: 100vh; /* Full viewport height on desktop */
    display: flex;
    align-items: center;
    background-color: #fff;
    box-sizing: border-box;
    overflow: hidden; /* Contains the animations */
}

.wc-container {
    width: 100%;
    height: 100%; /* Ensure container fills the section height */
    max-width: 100%; /* Allow container to be full width */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; /* Remove gap for seamless edge-to-edge look */
    align-items: center;
}

/* --- Left Column: Content with Animation --- */
.wc-content {
    padding: 0 8%; /* Add padding for content spacing */
    animation: slideInFromLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.wc-main-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 40px;
}

/* Accordion Styles */
.wc-accordion {
    width: 100%;
}

.accordion-item {
    border-top: 1px solid #e0e0e0;
}
.accordion-item:last-child {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    width: 100%;
}

.accordion-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #212529;
    margin: 0;
}

.accordion-icon {
    border: 1px solid #ced4da;
    background-color: transparent;
    color: #495057;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 28px;
    text-align: center;
    transition: transform 0.4s ease, background-color 0.4s ease;
    flex-shrink: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding-bottom 0.5s ease-out;
}

.accordion-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 24px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background-color: #343a40;
    border-color: #343a40;
    color: #fff;
}

/* --- Right Column: Image with Full Height & Animation --- */
.wc-image {
    height: 100%; /* Make the image container fill the section height */
    animation: slideInFromRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.wc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area without distortion */
}

/* --- Keyframe Animations --- */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .index_why_choose_05 {
        height: auto;
        padding: 80px 0 0 0; /* Remove side padding for full width */
    }

    .wc-container {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 0;
    }

    .wc-content {
        padding: 40px 5%; /* Add padding back for mobile content */
        animation: none; /* Disable animation on mobile */
    }

    .wc-image {
        order: -1;
        height: 400px;
        animation: none; /* Disable animation on mobile */
    }
    
    .wc-main-title {
        font-size: 2.2rem;
    }

    .accordion-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
     .index_why_choose_05 {
        padding: 60px 0 0 0;
    }
    .wc-main-title {
        font-size: 40px;
    }
}


/* end */

/* <section class="schedule-visit-cta"> */
/* --- Schedule a Visit CTA Section --- */
.schedule-visit-cta {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 50vh;
    box-sizing: border-box;
    overflow: hidden;

    /* Sets the background image */
    background-image: url('https://zamelectproperties.com/wp-content/uploads/2024/10/abstract-blue-geometric-shapes-background-scaled-1.jpg');
    background-size: cover;
    background-position: center;
}

/* Creates the dark overlay */
.schedule-visit-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Black overlay with 70% opacity */
    z-index: 1;
}

/* Ensures content is on top of the overlay */
.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-title {
    /* Elegant serif font like the image */
    font-size: 3rem;
    font-weight: 500;
    color: #fff; /* White text as requested */
    margin: 0;
}

.cta-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: #e0e0e0; /* Slightly off-white for contrast */
    margin: 0;
    max-width: 450px;
}

.cta-button {
    background-color: #fff;
    color: #000; /* Black text on white button */
    border: 1px solid #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    color: #fff;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .schedule-visit-cta {
        padding: 80px 20px;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 2.5rem;
    }
}


/* end */

/* <section class="our-values-section"> */

/* --- Our Values Section --- */
.our-values-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh; /* Set height to 70% of the viewport height */
    background-color: #1a1a1a; /* Dark background */
    padding: 60px 5%;
    box-sizing: border-box;
}

.values-container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.values-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: 40px;
}

.value-card {
    background-color: #fff;
    color: #1a1a1a;
    padding: 40px 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 8px solid #bfa95a; /* Gold accent line */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card p {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .values-title {
        font-size: 2.2rem;
    }
    .value-card p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .our-values-section {
        height: auto; /* Auto height for mobile */
        padding: 80px 5%;
    }
    .values-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
        gap: 30px;
    }
    .value-card {
        height: auto;
        padding: 30px;
    }
}

/*  */