:root {
  --primary-color: #2563EB;
  /* Royal Blue - Trustworthy */
  --secondary-color: #475569;
  /* Slate Gray */
  --bg-light: #FFFFFF;
  /* Pure White */
  --bg-surface: #F8FAFC;
  /* Very Light Gray for sections */
  --text-dark: #0F172A;
  /* Almost Black for headings */
  --text-body: #334155;
  /* Dark Gray for readability */
  --font-main: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-body);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
  margin-bottom: 0.5em;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

/* Hero Section */
.hero-section {
  background-color: var(--bg-surface);
  min-height: 85vh;
}

/* Floating Animation */
.animation-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Hover Effects */
.transition-all {
  transition: all 0.3s ease;
}

.hover-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}