* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

:root {
  --cream: #fefbe7;
  --burgundy: #5b0a28;
  --burgundy-light: #8b1a42;
  --burgundy-dark: #3d0719;
  --gold: #c8a868;
  --shadow: rgba(91, 10, 40, 0.1);
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--cream);
  color: var(--burgundy);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Subtle texture overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(91, 10, 40, 0.02) 2px,
    rgba(91, 10, 40, 0.02) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 2px solid var(--burgundy);
  box-shadow: 0 4px 12px var(--shadow);
}

.logo-container {
  display: none;
}

.logo-square {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-square img {
  height: 100%;
  width: auto;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: -0.5px;
  font-family: "Arial", sans-serif;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--burgundy);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Arial", sans-serif;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--burgundy-light);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 5% 4rem;
  z-index: 1;

  background-image: url("img/site.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75); /* stronger black */
  z-index: 1;
}

/* Ensure content above overlay */
.hero-logo,
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 250px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  
}

/* White glow */
.hero-logo img {
  width: 100%;
  height: auto;

  /* Crisp white border + glow */
  filter:
    /* Sharp white edge */
    drop-shadow(0 0 0 2px rgba(255,255,255,1))

    /* Soft glow layers */
    drop-shadow(0 0 10px rgba(255,255,255,0.35))
    drop-shadow(0 0 25px rgba(255,255,255,0.25))
    drop-shadow(0 0 55px rgba(255,255,255,0.15));

  animation: logoGlow 6s ease-in-out infinite;
  will-change: filter, transform;
}


@keyframes logoGlow {
  0%, 100% {
    transform: scale(1);
    filter:
      drop-shadow(0 0 6px rgba(255, 255, 255, 0.20))
      drop-shadow(0 0 16px rgba(255, 255, 255, 0.14))
      drop-shadow(0 0 32px rgba(255, 255, 255, 0.10));
  }
  50% {
    transform: scale(1.01);
    filter:
      drop-shadow(0 0 10px rgba(255, 255, 255, 0.45))
      drop-shadow(0 0 26px rgba(255, 255, 255, 0.30))
      drop-shadow(0 0 55px rgba(255, 255, 255, 0.18));
  }
}

.hero-content {
  position: relative;
  color: white;
  z-index: 2;
  
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo img {
    animation: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  max-width:850px;
  
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--burgundy);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #fff
  margin-bottom: 1rem;
  font-family: "Arial", sans-serif;
  font-weight: 600;
}

.hero p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #fff;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--burgundy);
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Arial", sans-serif;
  transition: all 0.3s;
  box-shadow: 0 6px 20px var(--shadow);
  border: 2px solid var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* .cta-button:hover {
  background: var(--burgundy-light);
  border-color: var(--burgundy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 10, 40, 0.2);
}
  */

/* Decorative divider */
.divider {
  width: 100px;
  height: 3px;
  background: var(--gold);
  margin: 4rem auto;
}

/* Services Section */
.services {
  padding: 5rem 5%;
  position: relative;
  z-index: 2;
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    rgba(200, 168, 104, 0.08) 100%
  );
}

.section-header {
  text-align: center;
  margin-bottom: 1rem;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: "Arial", sans-serif;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--burgundy);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--burgundy);
  max-width: 700px;
  margin: 0 auto 4rem;
  opacity: 0.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border: 2px solid var(--burgundy);
  padding: 2.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px var(--shadow);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(91, 10, 40, 0.15);
  border-color: var(--gold);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: white;
  border: 2px solid var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--burgundy);
}

.service-icon::before {
  color: var(--burgundy);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--burgundy);
  font-family: "Arial", sans-serif;
}

.service-card p {
  color: var(--burgundy);
  line-height: 1.8;
  opacity: 0.9;
}

/* Capabilities Section */
.capabilities {
  padding: 5rem 5%;
  position: relative;
  z-index: 2;
}

.capabilities-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.capabilities-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
}

.capabilities-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--burgundy);
  opacity: 0.9;
}

.capabilities-list {
  list-style: none;
  margin-top: 2rem;
}

.capabilities-list li {
  padding: 0.8rem 0;
  font-size: 1.05rem;
  color: var(--burgundy);
  font-family: "Arial", sans-serif;
  font-weight: 600;
  border-bottom: 1px solid rgba(91, 10, 40, 0.15);
  position: relative;
  padding-left: 2rem;
}

.capabilities-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.3rem;
}

.capabilities-image {
  position: relative;
  height: 500px;
  background: var(--burgundy);
  box-shadow: 0 8px 32px var(--shadow);
  border: 3px solid var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.2rem;
  font-family: "Arial", sans-serif;
  text-align: center;
  padding: 2rem;
}

/* Stats Section */
.stats {
  padding: 5rem 5%;
  background: var(--burgundy);
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: "Arial", sans-serif;
}

.stat-label {
  color: var(--cream);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Arial", sans-serif;
  font-weight: 600;
}

/* Footer */
footer {
  padding: 3rem 5%;
  text-align: center;
  border-top: 2px solid var(--burgundy);
  position: relative;
  z-index: 2;
  background: var(--cream);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 1rem;
  font-family: "Arial", sans-serif;
}

footer p {
  color: var(--burgundy);
  font-size: 0.9rem;
  opacity: 0.8;
  font-family: "Arial", sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .capabilities-content {
    grid-template-columns: 1fr;
  }

  .capabilities-image {
    height: 350px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
