:root {
  --primary-color: #1e88e5;
  --secondary-color: #0d47a1;
  --accent-color: #ff6f00;
  --background-color: #f5f5f5;
  --card-bg: #ffffff;
  --text-color: #333;
  --header-bg: #102027;
  --footer-bg: #102027;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
}

/* Navbar */
.navbar {
  background-color: var(--header-bg);
}

.navbar-nav .nav-link {
  color: #fff;
  transition: background 0.3s;
}

.navbar-nav .nav-link:hover {
  background-color: var(--accent-color);
  border-radius: 5px;
}

/* Ticker */
#ticker {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 10px 0;
  white-space: nowrap;
  overflow: hidden;
}

#ticker .ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 20s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Hero Section */
#hero {
  text-align: center;
  padding: 6rem 3rem;
  background: url('../img/picture11.jpg') center/cover no-repeat;
  color: #fff;
  position: relative;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

#hero h2,
#hero p {
  position: relative;
  z-index: 2;
}

/* Feature Cards */
.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.feature-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--primary-color);
  color: #fff;
}

.cta-btn {
  padding: 15px 30px;
  background: var(--accent-color);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #ff9100;
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: #b0bec5;
  padding: 3rem 1rem;
  text-align: center;
}

.footer-links a {
  color: #64b5f6;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-color);
}
