
:root {
  --shelton-blue: #0A3A74;
  --shelton-blue-light: #1C5BA8;
  --shelton-blue-lighter: #3478C5;
  --shelton-blue-dark: #062A55;
  --shelton-gray: #F2F4F7;
  --shelton-gray-dark: #8A8D91;
  --shelton-gray-darker: #555B63;
  --shelton-accent: #EAB308;
  --white: #FFFFFF;
  --black: #000000;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius: 0.75rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--shelton-gray-darker);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.hidden {
  display: none !important;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: var(--transition);
  transform: translateY(0);
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-0.25rem);
}

.btn-primary {
  background-color: var(--shelton-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--shelton-blue-light);
}

.btn-primary i {
  margin-left: 0.5rem;
}

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

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.25rem 0;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 0.75rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 2.5rem;
}

@media (min-width: 768px) {
  .logo-img {
    height: 3rem;
  }
}

.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  color: var(--shelton-blue-dark);
  font-weight: 500;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background-color: var(--shelton-accent);
  transition: var(--transition);
}

.nav-link:hover:after {
  width: 100%;
}

.nav-btn {
  background-color: var(--shelton-blue);
  color: var(--white);
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.nav-btn:hover {
  background-color: var(--shelton-blue-light);
}

/* Mobile Menu Button */
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--shelton-blue);
  padding: 0.5rem;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 60px 0 auto 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-container {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.mobile-nav-link {
  padding: 0.5rem 1rem;
  margin: 0.25rem 0;
  color: var(--shelton-blue-dark);
  font-weight: 500;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  background-color: rgba(10, 58, 116, 0.1);
  color: var(--shelton-blue);
}

.mobile-nav-btn {
  background-color: var(--shelton-blue);
  color: var(--white);
  padding: 0.75rem 1rem;
  margin: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 500;
}

.mobile-nav-btn:hover {
  background-color: var(--shelton-blue-light);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 8rem 0 6rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 58, 116, 0.9) 0%, rgba(6, 42, 85, 0.8) 100%);
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504432842032-3e5a4a3eeaf2?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.hero-text {
  color: var(--white);
  max-width: 32rem;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(234, 179, 8, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.375rem 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

.hero-badge p {
  font-weight: 500;
  color: var(--shelton-blue-dark);
}

.hero-title-group {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-logo {
  height: 4rem;
  margin-right: 1rem;
}

@media (min-width: 768px) {
  .hero-logo {
    height: 5rem;
  }
}

.hero-title {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-subtitle {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 2.25rem;
  }
}

.hero-desc {
  opacity: 0.8;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.25rem;
  }
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-cards {
  position: relative;
  height: 25rem;
  display: none;
}

@media (min-width: 768px) {
  .hero-cards {
    display: block;
  }
}

.hero-card {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  border-radius: 0.75rem;
  width: 16rem;
}

.hero-card:nth-child(1) {
  top: 0;
  right: 0;
}

.hero-card:nth-child(2) {
  top: 33%;
  left: 0;
}

.hero-card:nth-child(3) {
  bottom: 0;
  right: 2.5rem;
}

.hero-card i {
  color: var(--shelton-blue-light);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.hero-card h3 {
  color: var(--shelton-blue);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.hero-card p {
  color: var(--shelton-gray-darker);
  font-size: 0.875rem;
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

.section-badge.blue {
  background-color: var(--shelton-blue);
}

.section-badge.blue p {
  color: var(--white);
  font-weight: 500;
  font-size: 0.875rem;
}

.section-badge.accent {
  background-color: var(--shelton-accent);
}

.section-badge.accent p {
  color: var(--shelton-blue-dark);
  font-weight: 500;
  font-size: 0.875rem;
}

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

.section-badge.white p {
  color: var(--shelton-blue);
  font-weight: 500;
  font-size: 0.875rem;
}

.section-title {
  color: var(--shelton-blue);
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-desc {
  color: var(--shelton-gray-darker);
  font-size: 1.125rem;
}

.section-header.light .section-title,
.section-header.light .section-desc {
  color: var(--white);
}

.section-header.light .section-desc {
  opacity: 0.8;
}

/* About Section */
.bg-gray {
  background-color: var(--shelton-gray);
}

.values {
  margin-bottom: 5rem;
}

.values-title {
  text-align: center;
  color: var(--shelton-blue-dark);
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .values-title {
    font-size: 1.75rem;
  }
}

.values-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  transition: var(--transition);
  transform: translateY(0);
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-0.25rem);
}

.value-icon {
  color: var(--shelton-accent);
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.value-content h4 {
  color: var(--shelton-blue);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.value-content p {
  color: var(--shelton-gray-darker);
}

/* Mission Statement */
.mission {
  background-color: var(--shelton-blue);
  color: var(--white);
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
}

.mission h3 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.mission p {
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .mission p {
    font-size: 1.75rem;
  }
}

/* Services Section */
.bg-white {
  background-color: var(--white);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .service-tabs {
    gap: 1rem;
  }
}

.service-tab {
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background-color: var(--shelton-gray);
  color: var(--shelton-blue-dark);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .service-tab {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

.service-tab i {
  margin-right: 0.5rem;
}

.service-tab:hover {
  background-color: var(--shelton-gray-dark);
}

.service-tab.active {
  background-color: var(--shelton-blue);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.service-content {
  background-color: var(--shelton-gray);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.service-panel {
  display: none;
}

.service-panel.active {
  display: block;
}

.service-panel-grid {
  display: grid;
}

@media (min-width: 768px) {
  .service-panel-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-img {
  height: 16rem;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .service-img {
    height: auto;
    min-height: 25rem;
  }
}

.service-desc {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .service-desc {
    padding: 3rem;
  }
}

.service-icon {
  color: var(--shelton-accent);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-desc h3 {
  color: var(--shelton-blue);
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}

.service-desc p {
  color: var(--shelton-gray-darker);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.service-features {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .service-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-features li {
  position: relative;
  padding-left: 1rem;
  color: var(--shelton-blue-dark);
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--shelton-accent);
  border-radius: 50%;
}

/* Corridors Section */
.bg-blue {
  background-color: var(--shelton-blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.corridors-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
}

.corridors-blob-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background-color: var(--white);
  border-radius: 50%;
  filter: blur(3rem);
  transform: translate(-50%, -50%);
}

.corridors-blob-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: var(--shelton-accent);
  border-radius: 50%;
  filter: blur(3rem);
  transform: translate(50%, 50%);
}

.map-container {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .map-container {
    padding: 2.5rem;
  }
}

.map-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 3.75rem;
  color: var(--shelton-accent);
}

.map-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}

.corridors-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .corridors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .corridors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.corridor-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: var(--transition);
  transform: translateY(0);
}

.corridor-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-0.25rem);
}

.corridor-card h4 {
  color: var(--shelton-accent);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.corridor-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
}

.corridor-distance {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.strategic-position {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.strategic-position h3 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.strategic-position p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.offices {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.office-card {
  background-color: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.office-card:hover {
  box-shadow: var(--shadow-lg);
}

.office-card h3 {
  color: var(--shelton-blue);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.office-card h3 i {
  color: var(--shelton-accent);
  margin-right: 0.5rem;
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.office-details p {
  display: flex;
  align-items: flex-start;
}

.office-details i {
  color: var(--shelton-blue-light);
  min-width: 1.5rem;
  margin-right: 0.5rem;
}

.office-details a {
  color: var(--shelton-blue);
  position: relative;
}

.office-details a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: var(--shelton-blue-light);
  transition: var(--transition);
}

.office-details a:hover {
  color: var(--shelton-blue-light);
}

.office-details a:hover:after {
  width: 100%;
}

/* Contact Form */
.contact-form-container {
  background-color: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .contact-form-container {
    padding: 2rem;
  }
}

.contact-form-container h3 {
  color: var(--shelton-blue);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--shelton-blue-dark);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(138, 141, 145, 0.3);
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--shelton-blue);
  box-shadow: 0 0 0 2px rgba(10, 58, 116, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

/* Footer */
.footer {
  background-color: var(--shelton-blue-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 3rem;
}

.footer-company p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--shelton-accent);
}

.footer h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-services a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--white);
}

.dot {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--shelton-accent);
  border-radius: 50%;
  margin-right: 0.5rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--shelton-accent);
  margin-right: 0.75rem;
  min-width: 1.125rem;
  margin-top: 0.25rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.back-to-top {
  display: flex;
  align-items: center;
  background-color: var(--shelton-blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.back-to-top:hover {
  background-color: var(--shelton-blue-light);
}

.back-to-top span {
  margin-right: 0.5rem;
}

/* Animations */
.animate {
  opacity: 0;
}

.fade-in {
  animation: fadeIn 0.7s ease-out forwards;
}

.fade-in-delay-1 {
  animation: fadeIn 0.7s ease-out 0.1s forwards;
}

.fade-in-delay-2 {
  animation: fadeIn 0.7s ease-out 0.2s forwards;
}

.fade-in-delay-3 {
  animation: fadeIn 0.7s ease-out 0.3s forwards;
}

.fade-in-delay-4 {
  animation: fadeIn 0.7s ease-out 0.4s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
