/* Modern Color Scheme for GRPL India */
:root {
  /* Primary Colors */
  --primary: #0F766E;         /* Teal */
  --primary-light: #14B8A6;   /* Teal light */
  --primary-lighter: #99F6E4; /* Teal extra light */
  --primary-dark: #115E59;    /* Teal dark */
  --accent: #F59E0B;          /* Amber */
  --accent-light: #FBBF24;    /* Amber light */
  --accent-dark: #D97706;     /* Amber dark */
  
  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --black: #000000;
  
  /* Status Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  
  /* Theme Specific */
  --header-bg: #0F766E;
  --footer-bg: #1f2937;
  --card-bg: #ffffff;
  --text-primary: #111827;
  --text-secondary: #4b5563;
}

/* Apply colors to the hero section */
.hero-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Update text colors */
.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.text-accent-light {
  color: var(--accent-light);
}

/* Update background colors */
.bg-primary {
  background-color: var(--primary);
}

.bg-primary-light {
  background-color: var(--primary-light);
}

.bg-accent {
  background-color: var(--accent);
}

/* Update button styles */
.btn-primary {
  background-color: var(--accent);
  color: white;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Update card styles */
.card {
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Update section backgrounds */
.bg-section-light {
  background-color: var(--gray-50);
}

.bg-section-white {
  background-color: var(--white);
}

/* Update navigation */
nav {
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Update footer */
footer {
  background-color: var(--primary);
  color: var(--white);
}

/* Update form elements */
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  transition: all 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(237, 137, 54, 0.2);
  outline: none;
}

/* Update links */
a {
  color: var(--primary);
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

/* Update stats in hero section */
.hero-stats > div {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-stats > div:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}
