/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #34495e;
  position: relative;
  overflow-x: hidden;
}

/* Background Image with Overlay */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) blur(2px);
}

/* Header Styles */
header {
  background-color: rgba(44, 62, 80, 0.9);
  padding: 20px;
  text-align: center;
  color: white;
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

header nav ul li {
  display: inline;
  margin-right: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

/* Daily Right Section with Glassmorphism */
.daily-right-section {
  padding: 50px;
  margin: 40px auto;
  max-width: 1200px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease forwards;
  transform: translateY(20px);
  opacity: 0;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.section-description {
  font-size: 1.1rem;
  color: #ecf0f1;
  margin-bottom: 40px;
}

/* Feature Cards */
.features-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.feature-card {
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(41, 128, 185, 0.4), 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.feature-card:hover .card-image img {
  opacity: 0.85;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.card-content p {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 20px;
}

.card-link {
  text-decoration: none;
  color: #2980b9;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: #1abc9c;
}

/* Footer Styles */
footer {
  background-color: rgba(44, 62, 80, 0.9);
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 60px;
}
