/* 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: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md);
  z-index: 1000;
}

.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: 70px;
}

.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: var(--gray-700);
  transition: var(--transition-fast);
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-6);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-1);
  padding: var(--spacing-2) 0;
  font-weight: 500;
  color: #D4AF37;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link i {
  font-size: var(--font-size-xs);
  transition: var(--transition-fast);
}

.mega-menu-trigger:hover .nav-link i {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1001;
  width: min(780px, calc(100vw - 2rem));
  margin-top: var(--spacing-4);
}

.mega-menu-trigger:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-6);
  padding: var(--spacing-8);
}

.mega-menu-section h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--spacing-4);
  padding-bottom: var(--spacing-2);
  border-bottom: 2px solid var(--gray-100);
}

.mega-menu-section ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
}

.mega-menu-section li a {
  display: block;
  padding: var(--spacing-2) var(--spacing-3);
  color: var(--gray-600);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.mega-menu-section li a:hover {
  background-color: var(--gray-50);
  color: var(--primary-color);
}

.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: linear-gradient(135deg, #D4AF37, #FFD700, #B8860B);
  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;
  }
}

/* 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;
}

/* <footer class="footer"> */
/* Footer */
/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #D4AF37;
  padding: var(--spacing-16) 0 var(--spacing-8);
}

/* Force all 6 sections in one row */
.footer-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* Fixed 6 columns */
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-8);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
  margin-bottom: var(--spacing-4);
}

.footer-section h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: #D4AF37;
  margin-bottom: var(--spacing-4);
}

.footer-section p {
  color: #D4AF37;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li a {
  color: #D4AF37;
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.footer-section li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: var(--spacing-4);
  margin-top: var(--spacing-4);
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--gray-800);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  color: #D4AF37;
  margin-bottom: var(--spacing-2);
  font-size: 0.9rem;
}

.contact-info i {
  color: white;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-8);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: #D4AF37;
}

.footer-bottom a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Large Desktop - Keep all 6 in one row */
@media (min-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Tablet - Keep 6 columns but smaller */
@media (max-width: 1199px) and (min-width: 769px) {
  .footer-content {
    grid-template-columns: repeat(6, minmax(120px, 1fr));
    gap: 20px;
  }
  
  .footer-section h4 { font-size: 0.95rem; }
  .footer-section li a,
  .footer-section p,
  .contact-info p { font-size: 0.85rem; }
}

/* Mobile - 3 columns */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/* Small Mobile - 2 columns */
@media (max-width: 560px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* Extra Small Mobile - 1 column */
@media (max-width: 400px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* end */
/* Responsive Design */
@media (max-width: 1024px) {
  .mega-menu {
    width: min(640px, calc(100vw - 2rem));
  }

  .mega-menu-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .search-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }

  .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 var(--gray-100);
  }

  .nav-actions {
    display: none;
  }

  .mega-menu {
   position: static;
   transform: none;
   min-width: auto;
   box-shadow: none;
   background-color: var(--gray-50);
   margin: 0;
   opacity: 1;
   visibility: visible;
   display: none;
 }

  .mega-menu.active {
    display: block;
  }

  .mega-menu-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-4);
    padding: var(--spacing-4);
  }

  .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);
  }

  .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: #ffd700; /* 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(0,0,0,0.6);
      --gold: #ffd700;
      --gold-dark: #ff9800;
    }

    .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;
      filter: brightness(0.55);
      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(--gold), var(--gold-dark));
      -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: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: #111;
      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 style="padding:80px 40px;background:#ffffff;position:relative;overflow:hidden;"> */
    :root{
      --gold1:#b8860b;
      --gold2:#ffd700;
      --text:#1a1a1a;
    }


    /* Layout */
    .hero-container {
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:40px;
      max-width:1200px;
      margin:0 auto;
      flex-wrap:wrap;
      position:relative;
      z-index:2;
    }


    /* Left text block */
    .hero-text {
      flex:1 1 520px;
      color:#000000bf;
      font-family:'Poppins',sans-serif;
      transition:all .5s ease;
      padding-left:20px;
    }


    .hero-text h1 {
      font-size:42px;
      font-weight:800;
      line-height:1.2;
      margin-bottom:20px;
      position:relative;
      letter-spacing:.2px;
    }


    .hero-text h1 span {
      background:linear-gradient(90deg,var(--gold1),var(--gold2));
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
      position:relative;
      white-space:nowrap;
    }


    .hero-text h1 span::after {
      content:"";
      position:absolute;
      bottom:-8px;
      left:0;
      width:100%;
      height:4px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--gold1),var(--gold2),#fff4b0,var(--gold2),var(--gold1));
      box-shadow:0 0 12px rgba(184,134,11,0.35);
      transition:width .4s ease-in-out, opacity .4s ease-in-out;
      opacity:.9;
    }


    .hero-text p {
      font-size:16px;
      line-height:1.9;
      color:#444;
      max-width:600px;
      opacity:0.95;
      text-align:justify;
      text-justify:inter-word;
      hyphens:auto;
    }


    /* Right image */
    .hero-img {
      flex:1 1 480px;
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      min-width:320px;
    }


    .hero-img img {
      width:100%;
      max-width:520px;
      border-radius:20px;
      position:relative;
      z-index:2;
      box-shadow:0 14px 30px rgba(0,0,0,0.14);
      transform:translateZ(0) scale(0.985);
      transition:transform .45s ease, box-shadow .45s ease;
      will-change:transform, box-shadow;
    }


    .hero-img img:hover {
      transform:scale(1.015) translateY(-4px);
      box-shadow:0 18px 36px rgba(0,0,0,0.18);
    }


    .hero-img::before {
      content:"";
      position:absolute;
      top:50%; left:50%;
      transform:translate(-50%,-50%);
      width:560px; height:560px;
      border-radius:50%;
      background:radial-gradient(circle at center,var(--gold2),var(--gold1),transparent 70%);
      z-index:1;
      filter:blur(72px);
      opacity:0.3;
      transition:opacity .4s ease;
      pointer-events:none;
    }


    /* Cursor golden glow */
    .cursor-glow {
      position:fixed;
      top:0; left:0;
      width:120px; height:120px;
      border-radius:50%;
      background:radial-gradient(circle,var(--gold2),var(--gold1),transparent 70%);
      pointer-events:none;
      transform:translate(-50%,-50%);
      z-index:0;
      mix-blend-mode:multiply;
      opacity:0.5;
      transition:transform .12s ease, opacity .3s ease;
      will-change:transform;
    }


    /* Accessibility: prefers reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .hero-img img,
      .hero-text,
      .cursor-glow {
        transition:none !important;
      }
    }


    /* Responsive tweaks */
    @media (max-width: 1024px) {
      section { padding:64px 24px !important; }
      .hero-text h1 { font-size:38px; }
      .hero-text p { max-width:100%; }
    }


    /* Mobile view: hide image and add top gap */
    @media (max-width: 768px) {
      section { 
        padding:60px 20px 40px 20px !important; /* Added top gap */
        padding-top:80px !important; /* Extra top spacing on mobile */
      }
      .hero-container {
        flex-direction:column;
        gap:0;
        padding-top:0;
      }
      .hero-text {
        padding-left:10px;
      }
      .hero-text h1 {
        font-size:32px;
        line-height:1.25;
      }
      /* Hide image on mobile */
      .hero-img {
        display:none !important;
      }
      .cursor-glow {
        opacity:0.35;
        mix-blend-mode:screen;
      }
    }


    @media (max-width: 420px) {
      section {
        padding-top:60px !important; /* Adjusted top gap for smaller screens */
      }
      .hero-text h1 { font-size:28px; }
      .cursor-glow { display:none; }
    }
  /* end */


  /* <section class="stats3-wrap"> */
    :root{
      --gold1:#b8860b;
      --gold2:#ffd700;
      --ink:#201a2b;
    }

    /* ===================================
       STATS SECTION - MOBILE FIRST
       =================================== */

    .stats3-wrap{
      background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&q=80&w=1200') center/cover no-repeat;
      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, 217, 0, 0.95);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 18px;
      padding: clamp(20px, 4vw, 28px) clamp(15px, 3vw, 22px);
      text-align: center;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      transition: all 0.35s ease;
    }

    .stat-card:hover{
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
      background: rgba(255, 217, 0, 1);
    }

    .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(135deg, var(--gold1), var(--gold2));
      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: #ffffff;
      margin-bottom: 6px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .lbl{
      color: #ffffff;
      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"> */
:root{
  --bg1:#eef2f9;
  --bg2:#f7f9ff;
  --primary:#1f2937;
  --accent:#28a745;
  --gold:#C9A227;
  --gold-deep:#A47E1B;
  --glass: rgba(255,255,255,0.62);
  --glass-brd: rgba(255,255,255,0.35);
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.card-slider001 {
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(1200px 800px at 20% 10%, var(--bg2), var(--bg1)),
              linear-gradient(180deg, #f3f6fa 0%, #eef2f9 100%);
  overflow: hidden;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  padding: 48px 0 80px;
}

.slider-header{
  text-align:center;
  margin-bottom: 16px;
  padding: 0 16px;
}
.slider-title{
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .3px;
}

.slider-status{
  position:absolute;
  top: 18px;
  right: 20px;
  font-size: 12px;
  color:#6b7280;
}

.slider-container {
  position: relative;
  width: min(1120px, 86vw);
  height: 560px;
  perspective: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -60px 0;
}

.card {
  position: absolute;
  width: clamp(280px, 28vw, 340px);
  height: clamp(400px, 60vh, 460px);
  background: var(--glass);
  border-radius: 16px;
  padding: clamp(12px, 1.2vw, 16px);
  box-shadow: var(--shadow);
  transition: transform 480ms var(--ease), opacity 360ms ease, box-shadow 320ms ease, filter 280ms ease;
  opacity: 0;
  transform: scale(0.84) translateZ(0);
  overflow: hidden;
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: clamp(160px, 24vh, 190px);
  border-radius: 12px;
  object-fit: cover;
}

.card h3 {
  margin: 12px 10px 12px;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.3;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}
.card h3::after{
  content:"";
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 64%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
}

.card p {
  font-size: clamp(12.5px, 1.1vw, 14px);
  line-height: 1.55;
  color: #334155;
  margin: 4px 10px;
  max-width: 64ch;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card b { color: #0b1220; font-weight: 700; }

/* Read More Button */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: auto 10px 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #ffffff;
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(164, 126, 27, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 6px 18px rgba(164, 126, 27, 0.5);
  transform: translateY(-2px);
}

/* Active/left/right states */
.card.active {
  opacity: 1;
  transform: translateX(0) scale(1) rotateY(0deg);
  z-index: 3;
  box-shadow: 0 30px 80px rgba(2,6,23,0.22);
}
.card.left {
  opacity: 0.92;
  transform: translateX(-400px) scale(0.92) rotateY(-14deg);
  z-index: 2;
}
.card.right {
  opacity: 0.92;
  transform: translateX(400px) scale(0.92) rotateY(14deg);
  z-index: 2;
}
.card.hidden {
  opacity: 0;
  transform: scale(0.76);
  z-index: 1;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #111827;
  color: #fff;
  border: none;
  width: 46px;
  height: 46px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}
.nav-btn:hover {
  background: #1f2937;
  transform: translateY(-50%) scale(1.1);
}
.nav-btn.left { left: 3px; }
.nav-btn.right { right: 3px; }

.dots {
  position: absolute;
  bottom: 24px;
  display: flex;
  gap: 10px;
  z-index: 6;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #cbd5e1; cursor: pointer; border: none;
  transition: all 0.3s ease;
}
.dot:hover {
  background: #94a3b8;
}
.dot[aria-current="true"] { 
  background: #111827;
  width: 28px;
  border-radius: 5px;
}

  /* 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;
      display: inline-block;
      margin: 0 0 18px 0;
      padding: 8px 14px;
      font: 800 clamp(20px, 3.2vw, 30px)/1.15 "Poppins", system-ui, Segoe UI, Roboto, Arial, sans-serif;
      background: linear-gradient(90deg, var(--gold1), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 2px 10px rgba(0,0,0,.25);
    }

    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
      max-width: 1200px;
      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: linear-gradient(90deg, #95a22e, #fff263);
      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="why-moneytree-section"> */
  
    /* Golden text everywhere */
    .gold-text,
    .why-moneytree-heading,
    .wm-card .wm-title {
      background-image: linear-gradient(to right, #3a2a09 0, #b8860b 20%, #ffd700 45%, #fff4b0 50%, #ffd700 55%, #b8860b 80%, #3a2a09 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 8px rgba(255, 215, 0, 0.1);
    }

    .why-moneytree-section {
      width: 100%;
      min-height: 100vh;
      background: #000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      box-sizing: border-box;
      position: relative;
      overflow-x: hidden; /* prevent horizontal scroll */
      isolation: isolate;
    }

    /* Gold gridlines (static + hover) */
    .why-moneytree-section::before,
    .why-moneytree-section::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      transition: all 0.5s ease;
    }

    .why-moneytree-section::before {
      background:
        linear-gradient(to right, rgba(255,215,0,0.22) 1px, transparent 1px) 0 0 / 80px 80px,
        linear-gradient(to bottom, rgba(255,215,0,0.18) 1px, transparent 1px) 0 0 / 80px 80px;
      opacity: 0.35;
    }

    .why-moneytree-section::after {
      background:
        radial-gradient(1200px 1200px at var(--mx,50%) var(--my,50%),
          rgba(255,240,170,0.32) 0%,
          rgba(255,215,0,0.16) 18%,
          rgba(255,215,0,0.08) 32%,
          transparent 55%) center/cover no-repeat,
        linear-gradient(to right, rgba(255,215,0,0.28) 1px, transparent 1px) 0 0 / 80px 80px,
        linear-gradient(to bottom, rgba(255,215,0,0.22) 1px, transparent 1px) 0 0 / 80px 80px;
      mix-blend-mode: screen;
      opacity: 0;
    }

    .why-moneytree-section:hover::after {
      opacity: 1;
    }

    .why-moneytree-heading {
      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;
    }

    /* Cards wrapper - responsive flex layout */
    .wm-cards-wrapper {
      width: 100%;
      max-width: 1600px;
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 38px;
      flex-wrap: wrap; /* allow wrapping */
      z-index: 2;
    }

    .wm-card {
      flex: 1 1 calc(33.333% - 26px); /* 3 cards per row on desktop */
      min-width: 280px; /* minimum card width */
      max-width: 450px; /* prevent cards from getting too wide */
      padding: 28px 24px;
      background: rgba(255,255,255,0.03);
      border-radius: 18px;
      box-shadow: 0 7px 38px 0 rgba(0,0,0,0.35), 0 2px 20px 0 rgba(255,215,0,0.06) inset;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      border: 1.5px solid rgba(255, 215, 0, 0.18);
      transition: all 0.35s ease;
      color: #f5e8b0;
    }

    .wm-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 215, 0, 0.42);
      background: rgba(255,255,255,0.06);
      box-shadow: 0 16px 60px rgba(0,0,0,0.5), 0 2px 30px 0 rgba(255,215,0,0.12) inset;
    }

    .wm-card .wm-icon {
      font-size: 3.2rem;
      color: #ffd36a;
      margin-bottom: 14px;
      filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.18));
      flex: 0 0 auto;
    }

    .wm-card .wm-title {
      font-size: 1.22rem;
      font-weight: 600;
      margin-bottom: 12px;
      text-align: center;
      letter-spacing: 0.12px;
    }

    .wm-card .wm-desc {
      color: #f6eec8;
      font-size: 1.02rem;
      font-weight: 400;
      text-align: center;
      line-height: 1.6;
      letter-spacing: 0.02em;
    }

    /* Tablet landscape - 2 cards per row */
    @media (max-width: 1080px) {
      .why-moneytree-section { padding: 50px 18px; }
      .why-moneytree-heading { font-size: 2.1rem; margin-bottom: 40px; }
      .wm-cards-wrapper { gap: 28px; }
      .wm-card { 
        flex: 1 1 calc(50% - 14px); /* 2 cards per row */
        padding: 24px 20px; 
      }
      .wm-card .wm-icon { font-size: 2.8rem; }
      .wm-card .wm-title { font-size: 1.16rem; }
      .wm-card .wm-desc { font-size: 0.98rem; line-height: 1.55; }
    }

    /* Tablet portrait - 2 cards per row */
    @media (max-width: 900px) {
      .why-moneytree-section { padding: 44px 16px; }
      .wm-cards-wrapper { gap: 24px; }
      .wm-card { padding: 22px 18px; }
      .wm-card .wm-icon { font-size: 2.6rem; }
    }

    /* Mobile - 1 card per row (stacked vertically) */
    @media (max-width: 768px) {
      .why-moneytree-section { 
        padding: 40px 16px; 
        min-height: auto;
      }
      .why-moneytree-heading { 
        font-size: 1.9rem; 
        margin-bottom: 32px; 
      }
      .wm-cards-wrapper { 
        flex-direction: column; /* Stack cards vertically */
        gap: 20px; 
        align-items: center;
      }
      .wm-card { 
        flex: 1 1 100%; /* Full width cards */
        width: 100%;
        max-width: 500px;
        padding: 24px 20px; 
      }
      .wm-card .wm-icon { font-size: 2.8rem; margin-bottom: 12px; }
      .wm-card .wm-title { font-size: 1.14rem; }
      .wm-card .wm-desc { font-size: 0.96rem; line-height: 1.6; }
      
      /* Lighter grid effect on mobile */
      .why-moneytree-section::before {
        background:
          linear-gradient(to right, rgba(255,215,0,0.12) 1px, transparent 1px) 0 0 / 60px 60px,
          linear-gradient(to bottom, rgba(255,215,0,0.1) 1px, transparent 1px) 0 0 / 60px 60px;
        opacity: 0.25;
      }
      
      /* Disable hover effect on mobile */
      .why-moneytree-section:hover::after {
        opacity: 0;
      }
    }

    /* Small mobile */
    @media (max-width: 480px) {
      .why-moneytree-section { padding: 32px 14px; }
      .why-moneytree-heading { 
        font-size: 1.6rem; 
        margin-bottom: 28px;
      }
      .wm-cards-wrapper { gap: 18px; }
      .wm-card { 
        padding: 20px 16px;
        max-width: 100%;
      }
      .wm-card .wm-icon { font-size: 2.5rem; }
      .wm-card .wm-title { font-size: 1.08rem; margin-bottom: 10px; }
      .wm-card .wm-desc { font-size: 0.92rem; line-height: 1.55; }
    }

    /* Extra small devices */
    @media (max-width: 360px) {
      .why-moneytree-section { padding: 28px 12px; }
      .why-moneytree-heading { font-size: 1.5rem; }
      .wm-card { padding: 18px 14px; }
      .wm-card .wm-icon { font-size: 2.2rem; }
      .wm-card .wm-title { font-size: 1.04rem; }
      .wm-card .wm-desc { font-size: 0.88rem; }
    }

    /* Touch device optimization */
    @media (hover: none) and (pointer: coarse) {
      .wm-card:hover {
        transform: none; /* Disable hover lift on touch devices */
      }
      .wm-card:active {
        transform: scale(0.98); /* Subtle press effect */
        transition: transform 0.1s ease;
      }
    }
  /* end */


  /* <section class="modern-tri-section"> */
:root{
  --gold:#C9A227;
  --gold-dark:#9E8120;
}

.modern-tri-section{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  padding:20px 0;
}

.modern-heading{
  color:var(--gold);
  font-weight:800;
  font-size:clamp(22px,3vw,32px);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset:6px;
}

.modern-carousel{
  width:90%;
  max-width:1400px;
  overflow:hidden;
  position:relative;
}

.carousel-track{
  display:flex;
  gap:20px;
  align-items:center;
  transition:transform .6s ease;
}

.modern-card{
  flex:0 0 30%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .3s ease;
}

/* Card Link Wrapper */
.card-link {
  width: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Image Wrapper - Contains image + overlay */
.image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.image-wrapper img{
  width:100%;
  height:60vh;
  object-fit:cover;
  border-radius:14px;
  transition: transform .4s ease;
  display: block;
}

/* Black Overlay - Only on image */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover .card-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Explore Icon */
.explore-icon {
  width: 60px;
  height: 60px;
  color: var(--gold);
  stroke-width: 2.5;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Explore Text */
.explore-text {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Image zoom on hover */
.image-wrapper:hover img{
  transform:scale(1.08);
}

.card-info{
  text-align:center;
  margin-top:10px;
}

.card-info h3{
  margin:0;
  font-size:1.3em;
  font-weight:800;
}

.card-info p{
  margin:4px 0 0;
  font-size:1em;
  color:#555;
}

.modern-cta{
  margin-top:10px;
}

.btn-gold{
  display:inline-block;
  padding:12px 24px;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:#111;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 6px 14px rgba(201,162,39,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-gold:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(201,162,39,.45);
}

/* Responsive */
@media (max-width:1100px){
  .modern-card{ flex:0 0 45%; }
  .image-wrapper img{ height:50vh; }
  .explore-icon { width: 50px; height: 50px; }
  .explore-text { font-size: 1.2rem; }
}

@media (max-width:720px){
  .modern-card{ flex:0 0 85%; }
  .image-wrapper img{ height:40vh; }
  .explore-icon { width: 45px; height: 45px; }
  .explore-text { font-size: 1.1rem; letter-spacing: 3px; }
}

/* 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: linear-gradient(90deg, #b8860b, #ffd700);
  -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: 36px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #0a2540;
  }
  .about-section5 h2 span {
    color: gold;
  }
  .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: 60vh;
    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;
  }

  .about_section_04 .about_section_04_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }

  .about_section_04_content {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .about_section_04_content h2 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #FFD700;
    text-transform: none;
    margin-bottom: 10px;
    letter-spacing: 3px;
  }

  .about_section_04_underline {
    width: 90px;
    height: 3px;
    background-color: #FFD700;
    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: #fff;
  }

  /* Mobile responsive */
  @media (max-width: 768px) {
    .about_section_04 {
      height: 50vh;
    }
    
    .about_section_04_content h2 {
      font-size: 1.8rem;
      letter-spacing: 2px;
    }
    
    .about_section_04_underline {
      width: 70px;
      height: 2.5px;
    }
  }

  @media (max-width: 480px) {
    .about_section_04 {
      height: 40vh;
    }
    
    .about_section_04_content h2 {
      font-size: 1.5rem;
      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="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: 50px;
        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: linear-gradient(135deg, #111, #222);
        color: #fff;
      }

      /* Parallax Bubble Background */
      .parallax-bg {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.15) 0, transparent 35%),
          radial-gradient(circle at 75% 75%, rgba(0, 123, 255, 0.15) 0, transparent 35%),
          linear-gradient(45deg, #111 25%, #222 25%, #222 50%, #111 50%, #111 75%, #222 75%, #222);
        background-size: 60px 60px;
        animation: bgMove 25s linear infinite;
        z-index: -1;
      }

      @keyframes bgMove {
        from {
          background-position: 0 0;
        }

        to {
          background-position: 60px 60px;
        }
      }

      /* Circular Buttons */
      .circle-tabs {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 50px;
      }

      .circle-btn {
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid #FFD700;
        border-radius: 50%;
        width: 100px;
        height: 100px;
        font-size: 1rem;
        color: #FFD700;
        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: #FFD700;
        color: #111;
        box-shadow: 0 0 20px #FFD700;
      }

      /* 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;
        /* box-shadow: 0 10px 30px rgba(0,0,0,0.5); */
        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: #FFD700;
        margin-bottom: 15px;
      }

      .tab-card-text p {
        font-size: 1rem;
        line-height: 1.6;
        color: #fff;
        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: 0.95rem;
        }
      }
    /* 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="why_choose_us_05" id="why-choose-us" aria-labelledby="wcuHeading"> */
  .why_choose_us_05 {
    position: relative;
    padding: clamp(60px, 8vw, 110px) 8%;
    background: radial-gradient(80% 100% at 50% 0%, #0b0f18 0%, #070a10 60%, #05070b 100%);
    overflow: hidden;
    color: #fff;
    isolation: isolate;
  }

  /* Background Shapes */
  .why_choose_us_05_bg_shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none
  }

  .why_choose_us_05_shape {
    position: absolute;
    width: min(38vw, 420px);
    height: auto;
    opacity: .65;
    filter: blur(0.2px);
    transform-origin: 50% 50%;
    animation: why_choose_us_05_moveShape 22s ease-in-out infinite;
    mix-blend-mode: screen;
  }

  .why_choose_us_05_shape1 {
    top: 8%;
    left: -6%;
    animation-duration: 24s
  }

  .why_choose_us_05_shape2 {
    bottom: 6%;
    right: -6%;
    animation-duration: 28s;
    animation-direction: alternate-reverse
  }

  @keyframes why_choose_us_05_moveShape {
    0% {
      transform: translate3d(0, 0, 0) rotate(0deg) scale(1)
    }

    50% {
      transform: translate3d(36px, 24px, 0) rotate(15deg) scale(1.04)
    }

    100% {
      transform: translate3d(0, 0, 0) rotate(0deg) scale(1)
    }
  }

  /* Heading */
  .why_choose_us_05_section_heading {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: clamp(1.6rem, 4.8vw, 2.6rem);
    font-weight: 800;
    letter-spacing: .02em;
    color: #FFD700;
    margin-bottom: clamp(28px, 4vw, 48px);
    text-shadow: 0 10px 36px rgba(0, 0, 0, .35);
  }

  /* Cards Grid */
  .why_choose_us_05_cards_grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2.2vw, 22px);
  }

  /* Card */
  .why_choose_us_05_card {
    background: linear-gradient(180deg, rgba(22, 22, 30, .55), rgba(16, 16, 22, .35));
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: clamp(16px, 2.2vw, 22px);
    text-align: center;
    transition: transform .28s cubic-bezier(.2, .8, .2, 1), box-shadow .28s cubic-bezier(.2, .8, .2, 1), border-color .28s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    color: #fff;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .45);
  }

  .why_choose_us_05_card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    pointer-events: none;
    background: conic-gradient(from 0deg, rgba(255, 215, 0, .0), rgba(255, 215, 0, .45), rgba(255, 215, 0, .0) 35%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
    opacity: .7;
    filter: blur(.3px);
    animation: why_choose_us_05_sweep 2.4s linear infinite;
  }

  @keyframes why_choose_us_05_sweep {
    to {
      transform: rotate(360deg)
    }
  }

  .why_choose_us_05_card i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 10px
  }

  .why_choose_us_05_card h3 {
    color: #FFD700;
    font-size: 1.15rem;
    margin: 0 0 6px
  }

  .why_choose_us_05_card p {
    font-size: .98rem;
    color: #cfd3de;
    line-height: 1.55;
    margin: 0
  }

  .why_choose_us_05_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 215, 0, .06) inset;
    border-color: rgba(255, 215, 0, .26);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .why_choose_us_05_cards_grid {
      grid-template-columns: repeat(2, minmax(0, 1fr))
    }
  }

  @media (max-width: 640px) {
    .why_choose_us_05_cards_grid {
      grid-template-columns: 1fr
    }
    
    .why_choose_us_05 {
      padding: clamp(40px, 6vw, 60px) 5%;
    }
    
    .why_choose_us_05_section_heading {
      font-size: clamp(1.4rem, 5vw, 1.8rem);
      margin-bottom: clamp(20px, 3vw, 32px);
    }
    
    .why_choose_us_05_card {
      padding: clamp(18px, 3vw, 24px);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .why_choose_us_05_shape,
    .why_choose_us_05_card::after {
      animation: none !important
    }

    .why_choose_us_05_card {
      transition: none !important
    }
  }
/* 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: #FFD700;
        /* 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: #111;
        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="team-partners"> */

      
    :root{
      --gold1:#b8860b;
      --gold2:#ffd700;
      --ink:#1b1634;
      --muted:#7a7a8b;
      --card:#ffffff;
      --edge:#f1e5b1;
      --grid-color: rgba(0,0,0,.1);
    }

    .team-partners{
      position:relative;
      background:#fff;
      padding:28px 0 36px;
      overflow:hidden;
      isolation:isolate;
      height:90vh; /* increased height */
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
    }

    /* Black grid background + circles */
    .team-partners::before{
      content:"";
      position:absolute; inset:0;
      background:
        radial-gradient(circle at 20% 30%, rgba(0,0,0,0.05) 20px, transparent 21px) 0 0/120px 120px,
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.05) 25px, transparent 26px) 0 0/180px 180px,
        linear-gradient(to right, var(--grid-color) 1px, transparent 1px) 0 0/140px 100%,
        linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px) 0 0/100% 120px;
      opacity:0.35;
      z-index:0;
      pointer-events:none;
    }

    .tp-head{
      max-width:1200px; margin:0 auto 24px;
      font:800 clamp(20px,3vw,32px)/1.15 "Poppins",system-ui,Segoe UI,Roboto,Arial,sans-serif;
      background:linear-gradient(90deg,var(--gold1),var(--gold2));
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      color:#000;
      text-align:center;
      position:relative; z-index:1;
    }

    /* Slider viewport */
    .tp-view{
      position:relative; max-width:1200px; margin:0 auto; padding:0 48px;
      z-index:1;
      width:100%;
    }
    .tp-track{
      display:flex; gap:24px;
      transition:transform .45s ease;
      will-change:transform;
    }

    /* Card */
    .tp-card{
      flex:0 0 calc(25% - 18px); /* larger cards */
      background:var(--card);
      border:1px solid var(--edge);
      border-radius:20px;
      box-shadow:0 12px 28px rgba(0,0,0,.1);
      overflow:hidden;
      display:flex; flex-direction:column; align-items:stretch;
      transition:transform .25s ease, box-shadow .25s ease, border-color .2s ease;
    }
    .tp-card:hover{
      transform:translateY(-6px);
      box-shadow:0 18px 36px rgba(0,0,0,.15);
      border-color:#e7d895;
    }

    .tp-photo{
      height:250px; position:relative; overflow:hidden; /* increased photo height */
      background:#f6f6f6;
    }
    .tp-photo img{
      width:100%; height:100%; object-fit:cover;
      display:block;
    }

    .tp-body{
      background:linear-gradient(180deg,#ffffff, #faf8f0);
      padding:16px 12px 18px;
      text-align:center;
      position:relative;
    }
    .tp-body::before{
      content:"";
      position:absolute; left:0; top:0; right:0; height:4px;
      background:linear-gradient(90deg,var(--gold1),var(--gold2),var(--gold1));
      opacity:.85;
    }

    .tp-name{
      margin:8px 0 6px;
      font:700 16px/1.2 "Poppins",system-ui,Segoe UI,Roboto,Arial,sans-serif;
      color:var(--ink);
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
      padding:0 6px;
    }
    .tp-role{
      margin:0;
      font:600 13px/1.3 "Poppins",system-ui,Segoe UI,Roboto,Arial,sans-serif;
      color:var(--muted);
      opacity:.9;
    }

    /* Arrows */
    .tp-nav{
      position:absolute; top:50%; transform:translateY(-50%);
      width:40px; height:40px; border-radius:50%;
      background:rgba(255,255,255,.92);
      border:1px solid #e9e9ef;
      box-shadow:0 6px 18px rgba(0,0,0,.12);
      display:grid; place-items:center;
      color:#1f2240;
      cursor:pointer;
      z-index:2;
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .tp-nav:hover{ transform:translateY(-50%) scale(1.05); box-shadow:0 10px 22px rgba(0,0,0,.16); }
    .tp-prev{ left:8px; }
    .tp-next{ right:8px; }
    .tp-nav svg{ width:20px; height:20px; fill:#1f2240; }

    /* Responsive */
    @media (max-width: 1100px){
      .tp-card{ flex:0 0 calc(33.333% - 16px); }
    }
    @media (max-width: 780px){
      .tp-view{ padding:0 40px; }
      .tp-card{ flex:0 0 calc(50% - 12px); }
    }
    @media (max-width: 520px){
      .tp-view{ padding:0 36px; }
      .tp-card{ flex:0 0 100%; }
    }
  /* 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: 0.9rem; }
  .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: 0.95rem; }
  .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="luxury-section_15"> */

/* Luxury Section */
.luxury-section_15 {
  width: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f8f8f8 100%);
  padding: 100px 20px;
  box-sizing: border-box;
  text-align: center;
}

/* Header */
.luxury-header_15 {
  max-width: 1400px;
  margin: 0 auto 60px;
}

.luxury-title_15 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: 8px;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Content Container */
.luxury-content_15 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Content Paragraphs */
.content-para_15 {
  max-width: 100%;
}

.content-para_15 p {
  color: #8b7355;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.9;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: center;
}

/* CTA Section */
.luxury-cta_15 {
  margin-top: 20px;
}

.luxury-btn_15 {
  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);
}

.luxury-btn_15:hover {
  background: linear-gradient(135deg, #a69580, #b8a590);
  box-shadow: 0 6px 25px rgba(184, 165, 144, 0.5);
  transform: translateY(-3px);
}

/* Tablet */
@media (max-width: 1024px) {
  .luxury-section_15 { padding: 80px 18px; }
  
  .luxury-header_15 { margin-bottom: 50px; }
  
  .luxury-title_15 {
    font-size: 3rem;
    letter-spacing: 6px;
  }
  
  .luxury-content_15 { gap: 35px; }
  
  .content-para_15 p {
    font-size: 1.15rem;
    line-height: 1.85;
  }
  
  .luxury-btn_15 {
    padding: 16px 45px;
    font-size: 0.95rem;
    letter-spacing: 2.5px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .luxury-section_15 { padding: 60px 16px; }
  
  .luxury-header_15 { margin-bottom: 40px; }
  
  .luxury-title_15 {
    font-size: 2rem;
    letter-spacing: 4px;
  }
  
  .luxury-content_15 { gap: 30px; }
  
  .content-para_15 p {
    font-size: 1.08rem;
    line-height: 1.8;
    text-align: center;
  }
  
  .luxury-cta_15 { margin-top: 10px; }
  
  .luxury-btn_15 {
    padding: 15px 40px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    width: auto;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .luxury-section_15 { padding: 50px 14px; }
  
  .luxury-header_15 { margin-bottom: 35px; }
  
  .luxury-title_15 {
    font-size: 1.6rem;
    letter-spacing: 3px;
  }
  
  .luxury-content_15 { gap: 25px; }
  
  .content-para_15 p {
    font-size: 1rem;
    line-height: 1.75;
  }
  
  .luxury-btn_15 {
    padding: 14px 35px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    width: 100%;
    max-width: 280px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .luxury-section_15 { padding: 40px 12px; }
  
  .luxury-title_15 {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }
  
  .content-para_15 p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .luxury-btn_15 {
    padding: 13px 30px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }
}

/*  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: #a8978a;
  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: #a8978a;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Location Name */
.location-name_17 {
  color: #b8a590;
  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: #b8a590;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  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: #8b7355;
  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="overview-section_21"> */
/* Overview Section - 100vh */
.overview-section_21 {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f8f8f8 100%);
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Section Header */
.overview-header_21 {
  text-align: center;
  margin-bottom: 40px;
}

.overview-title_21 {
  color: #E5B904;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  font-size: 46px;
  margin: 0;
  letter-spacing: 2px;
}

/* Content Grid - 3 Columns, Reduced Width */
.overview-grid_21 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr;
  gap: 30px;
  align-items: start;
  height: calc(100vh - 180px);
}

/* Left: Image */
.overview-image_21 {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 200px);
}

.overview-image_21 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* Middle: Text Content */
.overview-content_21 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  overflow-y: auto;
  padding-right: 10px;
}

.overview-content_21::-webkit-scrollbar {
  width: 4px;
}

.overview-content_21::-webkit-scrollbar-track {
  background: transparent;
}

.overview-content_21::-webkit-scrollbar-thumb {
  background: rgba(122, 122, 122, 0.3);
  border-radius: 2px;
}

.overview-text_21 {
  color: #7a7a7a;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

.overview-list_21 {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.overview-list_21 li {
  color: #7a7a7a;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Right: Info Table */
.overview-info_21 {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(122, 122, 122, 0.2);
  height: fit-content;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}

.overview-info_21::-webkit-scrollbar {
  width: 4px;
}

.overview-info_21::-webkit-scrollbar-track {
  background: transparent;
}

.overview-info_21::-webkit-scrollbar-thumb {
  background: rgba(122, 122, 122, 0.3);
  border-radius: 2px;
}

.info-row_21 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(122, 122, 122, 0.2);
  transition: background 0.3s ease;
}

.info-row_21:last-child {
  border-bottom: none;
}

.info-row_21:hover {
  background: rgba(122, 122, 122, 0.03);
}

.info-label_21 {
  color: #7a7a7a;
  font-size: 0.9rem;
  font-weight: 600;
}

.info-value_21 {
  color: #7a7a7a;
  font-size: 0.9rem;
  font-weight: 400;
  text-align: right;
}

/* Tablet */
@media (max-width: 1200px) {
  .overview-section_21 { 
    height: auto;
    min-height: 100vh;
    padding: 60px 18px; 
  }
  
  .overview-header_21 { margin-bottom: 40px; }
  
  .overview-grid_21 {
    grid-template-columns: 1fr;
    gap: 30px;
    height: auto;
  }
  
  .overview-image_21 {
    max-height: 400px;
  }
  
  .overview-content_21 {
    height: auto;
    overflow-y: visible;
  }
  
  .overview-info_21 {
    max-height: none;
    overflow-y: visible;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .overview-section_21 { 
    height: auto;
    padding: 50px 16px; 
  }
  
  .overview-header_21 { margin-bottom: 30px; }
  
  .overview-title_21 { font-size: 1.8rem; }
  
  .overview-grid_21 { gap: 28px; }
  
  .overview-image_21 { max-height: 350px; }
  
  .overview-text_21 {
    font-size: 0.92rem;
    line-height: 1.65;
  }
  
  .overview-list_21 li {
    font-size: 0.92rem;
  }
  
  .info-row_21 {
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .info-label_21 {
    font-size: 0.85rem;
  }
  
  .info-value_21 {
    font-size: 0.85rem;
    text-align: left;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .overview-section_21 { padding: 40px 14px; }
  
  .overview-title_21 { font-size: 1.6rem; }
  
  .overview-grid_21 { gap: 24px; }
  
  .overview-image_21 { max-height: 280px; }
  
  .overview-text_21 { font-size: 0.88rem; }
  
  .overview-list_21 li { font-size: 0.88rem; }
  
  .info-row_21 { padding: 10px 14px; }
  
  .info-label_21,
  .info-value_21 { font-size: 0.82rem; }
}

/* 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: #b8a590;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 300;
  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: #b8a590;
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.item-info_22 p {
  color: #8b7355;
  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: linear-gradient(135deg, #b8a590, #c9b896);
  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;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

/* 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: #8b7355;
  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: #8b7355;
  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: #b8a590;
  text-decoration: underline;
}

/* Submit Button */
.submit-btn_23 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #b8a590, #c9b896);
  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 #b8a590;
  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: #b8a590;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.info-card_23 p {
  color: #8b7355;
  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: 1rem; }
  
  .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;
  }
}
