/* finance.css */

/* Global Styles */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9fafb;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  background-color: #0d1b2a;
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-size: 2rem;
  margin: 0;
  text-align: center;
}

header nav {
  margin-top: 15px;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a:focus {
  background-color: #00b4d8;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,180,216,0.4);
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero .cta-btn {
  background-color: #00b4d8;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero .cta-btn:hover {
  background-color: #0096c7;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Sections */
section {
  padding: 60px 20px;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1e3c72;
}

section p {
  font-size: 1rem;
  color: #444;
}

/* Tools Section */
.tools ul {
  list-style: none;
  padding: 0;
}

.tools ul li {
  background: #f1f5f9;
  margin: 10px 0;
  padding: 15px;
  border-left: 4px solid #00b4d8;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tools ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  background-color: #0d1b2a;
  color: #fff;
  text-align: center;
  padding: 25px 20px;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

footer .footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

footer .footer-links a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .footer-links a:hover {
  color: #00b4d8;
}

footer .social-icons {
  display: flex;
  gap: 15px;
}

footer .social-icons a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

footer .social-icons a:hover {
  color: #00b4d8;
  transform: scale(1.1);
}

footer p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.8;
}