/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Zedplus Inspired Corporate Palette */
  --primary-dark: #000510;
  --primary-blue: #223a70;
  --secondary-blue: #083370;
  --accent-yellow: #f59e0b;
  --text-main: #333333;
  --text-muted: #6b7280;
  --text-white: #ffffff;
  --text-light: #f3f4f6;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #e5e7eb;
  
  --gradient-primary: linear-gradient(191deg, #223A70, #000510);
  --gradient-secondary: linear-gradient(130deg, #a6c8fc, #ffffff);
  
  --font-headings: 'Poppins', sans-serif;
  --font-main: 'Inter', sans-serif;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  
  --success: #10b981;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--secondary-blue);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary-blue); }
.text-accent { color: var(--accent-yellow); }

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: #ffffff !important;
  animation: glowPrimary 2.5s infinite;
}

@keyframes glowPrimary {
  0% { box-shadow: 0 0 5px rgba(34, 58, 112, 0.3); }
  50% { box-shadow: 0 0 15px rgba(34, 58, 112, 0.7), 0 0 20px rgba(34, 58, 112, 0.5); }
  100% { box-shadow: 0 0 5px rgba(34, 58, 112, 0.3); }
}

.btn-primary:hover {
  background-color: var(--secondary-blue);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent-yellow);
  color: #ffffff !important;
  animation: glowAccent 2s infinite;
}

@keyframes glowAccent {
  0% { box-shadow: 0 0 5px rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.8), 0 0 25px rgba(245, 158, 11, 0.6); }
  100% { box-shadow: 0 0 5px rgba(245, 158, 11, 0.4); }
}

.btn-accent:hover {
  background-color: #d97706;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}
