@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@500;600;700;800&display=swap";

/* src/styles.css */
:root {
  --primary-color: #0b7ad0;
  --primary-dark: #085ea3;
  --accent-color: #00c4b3;
  --accent-hover: #00a89a;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-dark-footer: #000000;
  --text-dark: #333333;
  --text-muted: #777777;
  --text-white: #ffffff;
  --border-light: #e2e8f0;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 102, 204, 0.05);
  --shadow-lg: 0 15px 35px rgba(0, 102, 204, 0.1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding {
  padding: 80px 0;
}
.text-center {
  text-align: center;
}
.centered-section-title {
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 800;
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
  text-transform: none;
}
.centered-section-title::before,
.centered-section-title::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 60px;
  background-color: #add8e6;
  top: 50%;
}
.centered-section-title::before {
  left: -80px;
}
.centered-section-title::after {
  right: -80px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  outline: none;
  gap: 8px;
}
.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
}
.btn-accent {
  background-color: var(--accent-color);
  color: var(--text-white);
}
.btn-accent:hover {
  background-color: var(--accent-hover);
}
.btn-outline-light {
  background-color: transparent;
  color: var(--text-white);
  border-color: var(--text-white);
}
.btn-outline-light:hover {
  background-color: var(--text-white);
  color: var(--primary-color);
}
.btn-outline-dark {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline-dark:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: var(--border-radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate-float {
  animation: float 4s ease-in-out infinite;
}
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
  .centered-section-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .centered-section-title::before,
  .centered-section-title::after {
    display: none;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
