:root {
  /* Colors */
  --bg-dark: #0a0a0add;
  /* Deepest Charcoal/Black */
  --bg-dark-secondary: #121212;
  --primary-blue: #1E6FD9;
  --primary-blue-hover: #1656a8;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  --blur-amount: 10px;

  /* Section Backgrounds */
  /* Section Backgrounds */
  --section-services-bg: #0f172a;
  /* Deep Slate (Lighter) */
  --section-about-bg: #020617;
  /* Midnight Black (Darker) */
  --section-contact-bg: #0f172a;
  /* Deep Slate (Lighter) - Alternating */


  /* Spacing */
  --container-width: 1200px;
  --section-padding: 80px 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #050505;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  /* Subtle background gradient to add depth */
  background-image:
    radial-gradient(circle at 10% 20%, rgba(30, 111, 217, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(30, 111, 217, 0.05) 0%, transparent 40%);
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* --- Utilities --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.cta-button-primary {
  display: inline-block;
  background-color: var(--primary-blue);
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid transparent;
  box-shadow: 0 0 15px rgba(30, 111, 217, 0.3);
}

.cta-button-primary:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(30, 111, 217, 0.5);
}

.cta-button-secondary {
  display: inline-block;
  background-color: transparent;
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
}

.cta-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-blue);
}

/* --- Header --- */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, var(--primary-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--text-main);
}

.cta-button-small {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 20px !important;
  border-radius: 6px;
  border: 1px solid var(--glass-border);
  color: white !important;
}

.cta-button-small:hover {
  border-color: var(--primary-blue);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  /* Offset for fixed header */
  overflow: hidden;
  background-image: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.7)), url('/754A0647.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(30, 111, 217, 0.1);
  border: 1px solid rgba(30, 111, 217, 0.3);
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero .subline {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* --- Services Grid --- */
.services-section {
  padding: var(--section-padding);
  background-color: var(--section-services-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(30, 111, 217, 0.3);
  background: rgba(255, 255, 255, 0.05);
  /* Slightly lighter on hover within dark mode */
}

/* --- Icon System --- */
/* Unified Premium Icon Style */
.card-icon,
.about-card .about-icon,
.contact-item .icon-box {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(14, 28, 48, 0.8) !important;
  /* Dark blue background */
  border: 1px solid rgba(30, 111, 217, 0.2) !important;
  border-radius: 12px;
  color: var(--primary-blue) !important;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.card-icon svg,
.about-card .about-icon svg,
.contact-item .icon-box svg {
  width: 28px;
  height: 28px;
  stroke: #38bdf8;
  /* Lighter cyan/blue for the stroke */
  stroke-width: 2;
}

.card-icon:hover,
.about-card:hover .about-icon,
.contact-item:hover .icon-box {
  background: rgba(30, 111, 217, 0.15) !important;
  border-color: var(--primary-blue) !important;
  box-shadow: 0 0 20px rgba(30, 111, 217, 0.2);
}

/* Specific overrides if needed */
.card-icon {
  font-size: 0;
  /* Hide emojis if any remain */
}


.glass-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.glass-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.check-list-small {
  list-style: none;
  margin-bottom: 24px;
}

.check-list-small li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #ddd;
}

.check-list-small li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.card-button {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--primary-blue);
  color: white;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.card-button:hover {
  background: var(--primary-blue-hover);
  box-shadow: 0 0 15px rgba(30, 111, 217, 0.4);
}

/* --- Trust Section --- */
.trust-section {
  padding: var(--section-padding);
  background-color: var(--section-about-bg);
  /* Use solid color for separation */
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-content h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.check-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-list strong {
  display: block;
  margin-bottom: 5px;
  color: white;
}

.feature-list p {
  color: var(--text-muted);
}

.trust-visual {
  height: 400px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.stat-box {
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid var(--glass-border);
  padding: 24px 40px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- CTA Section --- */
.cta-section {
  padding: 100px 20px;
  text-align: center;
  background-color: var(--section-contact-bg);
}

.glass-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: rgba(255, 255, 255, 0.02);
  /* Neutral, clean glass */
  border: 1px solid rgba(30, 111, 217, 0.3);
  /* Subtle blue border remains */
  box-shadow: 0 0 50px rgba(30, 111, 217, 0.1);
  /* Soft glow behind */
  backdrop-filter: blur(20px);
  border-radius: 24px;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* --- Footer --- */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 20px;
  background: #000;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.brand h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.brand p {
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .grid-3-col {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    /* simple hide for v1, usually would add hamburger */
  }
}

/* --- Service Detail Pages --- */
.page-wrapper {
  min-height: 100vh;
}

.section-spacing {
  padding: 80px 20px;
}

/* Service Hero */
/* Service Hero */
.service-hero {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(to bottom right, #111827, #172554, #111827);
  position: relative;
}

.service-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.service-hero-content {
  flex: 1;
}

.service-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-hero h1 {
  font-size: 3rem;
  margin-bottom: 24px;
  margin-top: 16px;
}

/* Pricing Grid */
.pricing-grid .card {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 16px 0 24px;
}

.price-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight-card {
  border-color: var(--primary-blue);
  background: rgba(30, 111, 217, 0.05);
}

/* Process Steps */
.process-steps {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
}

.step-circle {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(30, 111, 217, 0.4);
}

.step h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item h4 {
  margin-bottom: 8px;
  color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 768px) {
  .service-hero {
    flex-direction: column;
    text-align: center;
  }
}

/* About Section Updates */
.about-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-card {
  padding: 24px;
}

.about-card .about-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.about-card h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .about-cards-grid {
    margin-top: 40px;
  }
}

@media (max-width: 500px) {
  .about-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Section Updates */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  /* Slightly wider form */
  gap: 80px;
  /* More breathing room */
  /* align-items: start; removed to allow stretch */
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Ensure it takes full height from grid */
}

.contact-items {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: center;
}

.contact-item .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(30, 111, 217, 0.1);
  /* Subtle blue tint */
  color: var(--primary-blue);
  border: 1px solid rgba(30, 111, 217, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-item .label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-item .value {
  font-weight: 500;
  color: white;
  font-size: 1.05rem;
}

.guarantee-box {
  background: var(--primary-blue);
  background: linear-gradient(135deg, #1E6FD9, #104e9e);
  /* Subtle gradient */
  color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(30, 111, 217, 0.25);
  position: relative;
  overflow: hidden;
  margin-top: auto;
  /* Push to bottom */
}

/* Texture effect for box */
.guarantee-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
  transform: translate(30%, -30%);
}

.guarantee-box h4 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.guarantee-box p {
  font-size: 1rem;
  margin-bottom: 24px;
  opacity: 0.95;
  line-height: 1.6;
}

.hours-list {
  list-style: none;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.hours-list li {
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Form Styles */
.glass-form {
  background: rgba(20, 20, 20, 0.6);
  /* Darker, more solid */
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px;
  border-radius: 24px;
  backdrop-filter: blur(20px);
}

/* Form Styles */
.glass-form {
  background: rgba(20, 20, 20, 0.6);
  /* Darker, more solid */
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  height: 100%;
  /* Stretch to align with left column */
  display: flex;
  flex-direction: column;
}

.contact-form-col {
  height: 100%;
  /* Ensure container fills grid cell */
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ccc;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  /* Very subtle fill */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: rgba(30, 111, 217, 0.05);
  /* Tint on focus */
  box-shadow: 0 0 0 4px rgba(30, 111, 217, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Fix select dropdown arrow for dark mode (basic fix) */
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a0a0a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-group select option {
  background: #1a1a1a;
  color: white;
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .glass-form {
    padding: 24px;
  }
}

/* Fix for About Icons: Hide duplicated emoji legacy icons */
.about-card .about-icon:not(.new-icon) {
  display: none !important;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grids */
.grid-3-col .reveal:nth-child(1) {
  transition-delay: 0.1s;
}

.grid-3-col .reveal:nth-child(2) {
  transition-delay: 0.2s;
}

.grid-3-col .reveal:nth-child(3) {
  transition-delay: 0.3s;
}

.grid-3-col .reveal:nth-child(4) {
  transition-delay: 0.1s;
}

.grid-3-col .reveal:nth-child(5) {
  transition-delay: 0.2s;
}

.grid-3-col .reveal:nth-child(6) {
  transition-delay: 0.3s;
}

/* --- Dropdown Menu --- */
.dropdown-item {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* Dropdown Container (Glassmorphism) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Show Dropdown on Hover */
.dropdown-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}

/* Dropdown Links */
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background: rgba(30, 111, 217, 0.1);
  color: var(--primary-blue);
}

.dd-icon {
  font-size: 1.1rem;
  filter: grayscale(1);
  transition: 0.2s;
}

.dropdown-menu a:hover .dd-icon {
  filter: grayscale(0);
}

/* Chevron Rotation */
.dropdown-item:hover .chevron-down {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* --- Ken Burns Cinematic Effect --- */
@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.1) translate(-2%, -1%);
  }

  100% {
    transform: scale(1) translate(0, 0);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  /* Contains the zoomed image */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/754A0647.jpg');
  /* Your existing hero image */
  background-size: cover;
  background-position: center;
  z-index: 1;
  /* Dark overlay built-in via gradient or separate div, here we use filter or pseudo-element */
}

/* Enhancing the existing .hero styling to support the new structure */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.9) 100%);
  z-index: 2;
  /* Sits above the image, below the content */
  pointer-events: none;
}

.cinematic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/754A0647.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  animation: kenBurns 20s ease-in-out infinite alternate;
  transform-origin: center center;
}

.hero-content {
  position: relative;
  z-index: 3;
  /* Ensures text is readable above the overlay */
}