:root {
  --hm-primary: #1a4d45; /* Deep Teal */
  --hm-primary-dark: #0f2e29;
  --hm-secondary: #f8f9fa;
  --hm-accent: #eea62b; /* Gold */
  --hm-accent-hover: #d4a037;
  --hm-text-dark: #1f2937;
  --hm-text-muted: #6b7280;
  --hm-text-light: #ffffff;
  --hm-footer:#132d39;
  --hm-text-special:rgb(59 130 246 / .5);
}

body {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--hm-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
 
  
}

/* Typography */
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-accent {
  color: var(--hm-accent) !important;
}
.bg-accent{
  background-color: rgba(238, 166, 43,0.1)
}
.bg-hm-primary{
  background-color: var(--hm-primary);
}

.text-primary-custom {
  color: var(--hm-primary) !important;
}
.text-hm-special{
  color: var(--hm-primary);
}
.lead-custom {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--hm-text-muted);
}

/* Navbar */
.navbar {
  padding: 1rem 0;
  background-color: rgba(26, 77, 69, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  color: white !important;
width:50% !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--hm-accent) !important;
}

@media(max-width: 992px){
.navbar-brand{
width:75% !important;
}
.navbar-brand img{
width:100% !important;
}
}
/* Custom Buttons */
.btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
}

.btn-accent {
  background: var(--hm-accent);
  border: 2px solid var(--hm-accent);
  color: #1a4d45;
}

.btn-accent:hover {
  background:rgba(238, 166, 43,0.4);
  border-color: transparent;
  /* transform: translateY(-2px); */
  /* box-shadow: 0 10px 20px -5px rgba(238, 166, 43,0.5); */
  
}
.btn .arrow{
  position: relative;
  transition: all .3s ease-in-out;
}
.btn:hover .arrow{
    right: -8px;
}
.btn-outline-light-custom {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(4px);
}

.btn-outline-light-custom:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  position: relative;
  background-color: var(--hm-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  color: white;
  overflow: hidden;
}

/* Abstract Background Waves - Simulated with radial gradients to avoid huge SVG strings */
.hero-bg-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(238, 187, 88, 0.15) 0%, rgba(26, 77, 69, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,255,255,0.05)' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,197.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

/* Feature Cards (Services) */
.service-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(26, 77, 69, 0.08); /* Light green tint */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--hm-primary);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--hm-primary);
  color: var(--hm-accent);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: var(--hm-primary);
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.2s ease;
}

.link-arrow:hover {
  gap: 0.5rem;
  color: var(--hm-primary-dark);
}

/* About Section & Glassmorphism */
.glass-panel-dark {
  /* background: rgba(26, 77, 69, 0.85);  */
  /* background-color: rgba(255, 255, 255, 0); */
  background-color: hsl(185 55% 25%);
  backdrop-filter: blur(124px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-panel-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  text-align: center;
}

/* "Who This Is For" Gradient Section */
.bg-gradient-primary {
  background: linear-gradient(135deg, hsl(185 65% 28%) 0%, hsl(195 60% 35%) 50%, hsl(185 55% 25%) 100%);;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Soft gold glow behind cards */
.glow-effect::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: var(--hm-accent);
  filter: blur(80px);
  opacity: 0.15;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

/* Contact Card */
.contact-card-wrapper {
  background: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 800 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CradialGradient id='a' cx='400' cy='200' r='100%25' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%231a4d45'/%3E%3Cstop offset='1' stop-color='%230f2e29'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='800' height='400'/%3E%3Cg fill-opacity='0.05'%3E%3Ccircle fill='%23ffffff' cx='400' cy='200' r='300'/%3E%3Ccircle fill='%23ffffff' cx='400' cy='200' r='200'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  padding: 4rem 2rem;
  color: white;
  box-shadow: 0 20px 40px rgba(26, 77, 69, 0.3);
  position: relative;
  overflow: hidden;
}

/* Utilities */
.text-justify-custom {
  text-align: justify;
}

.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Footer Accent */
footer{
  background-color: var(--hm-footer);
}
.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s;
}

.footer-link:hover {
  color: var(--hm-accent);
  padding-left: 4px;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.mw-768{
  max-width: 768px;
  margin: 0 auto;
}