:root {
  --primary-color: #1b5e20; /* Dark Green */
  --primary-light: #4c8c4a;
  --primary-dark: #003300;
  --secondary-color: #f57f17; /* Earthy Orange */
  --bg-color: #f8f9fa;
  --text-dark: #212529;
  --text-light: #6c757d;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.2);
}

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
}

/* Glassmorphism utilities */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
}

/* Navbar Customization */
.navbar-custom {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}
.navbar-custom .navbar-brand {
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}
.navbar-custom .nav-link {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
}
.navbar-custom .nav-link:hover, 
.navbar-custom .nav-link.active {
  color: var(--primary-color);
}

/* Custom Buttons */
.btn-primary-custom {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(27, 94, 32, 0.3);
}
.btn-primary-custom:hover {
  background-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 94, 32, 0.4);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  padding: 100px 0 80px 0;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.hero-shape svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}
.hero-shape .shape-fill {
  fill: var(--bg-color);
}

/* Cards Hover Effects */
.card-hover {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  border-radius: 1rem;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.05);
}

/* Badge Custom */
.badge-role {
  padding: 0.5em 0.8em;
  font-weight: 600;
  border-radius: 0.3rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0px 5px 15px rgba(0,0,0,0.1);
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%), radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%);
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
  opacity: 0.4;
  z-index: 0;
}
.cta-section .container {
  position: relative;
  z-index: 1;
}

html {
  scroll-behavior: smooth;
}

.hero-bg-section {
  background: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 200px 0 180px 0;
  position: relative;
  color: white;
}
.hero-bg-section .badge {
  background-color: rgba(27, 94, 32, 0.8) !important;
}
.hero-bg-section .text-success {
  color: #a5d6a7 !important;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.btn-pulse {
  animation: pulse-glow 2s infinite;
}

.glass-card {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Fluid UI Overrides */
.navbar-custom {
  background-color: #ffffff !important; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  padding: 20px 0;
}
.navbar-custom.navbar-scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 10px 0;
}
.navbar-custom.navbar-scrolled .nav-link {
  color: #333333 !important;
}
.navbar-custom.navbar-scrolled .nav-link.active {
  color: var(--primary-color) !important;
}
.hero-bg-section {
  background: linear-gradient(105deg, rgba(12, 35, 20, 0.95) 0%, rgba(20, 45, 25, 0.85) 55%, rgba(30, 60, 35, 0.2) 100%), url('../img/hero-bg.jpg') !important;
  background-size: cover !important;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  background-position: center !important;
  padding: 220px 0 160px 0 !important;
  clip-path: none !important;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  margin-bottom: 20px;
}

html, body {
  overflow-x: hidden;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.float-animation {
  animation: float 4s ease-in-out infinite;
}

.custom-pills .nav-link {
  background-color: #f8f9fa;
  color: #6c757d;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  font-weight: 600;
}
.custom-pills .nav-link:hover {
  background-color: #e2f0e6;
  color: var(--primary-color);
}
.custom-pills .nav-link.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(12, 107, 48, 0.3);
}

/* Call to Action Specific Animations */
@keyframes floatCircle {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(25, 135, 84, 0); }
  100% { box-shadow: 0 0 0 0 rgba(25, 135, 84, 0); }
}

.cta-badge:hover {
  transform: translateY(-5px);
  background-color: #f8f9fa !important;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
}

.cta-btn {
  animation: pulseGlow 2s infinite;
}

.cta-btn:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 15px 25px rgba(25, 135, 84, 0.3) !important;
  animation: none;
}
