/* styles.css */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333;
}

.hero {
  background: linear-gradient(135deg, #243b55 0%, #141e30 100%);
  padding: 2em 0 3em 0;
  text-align: center;
  box-shadow: 0 2px 16px #0002;
}

.header-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
}

.logo-rcr {
  width: 120px;
  background: #fff;
  border-radius: 12px;
  padding: 0.5em 1em;
  box-shadow: 0 2px 16px #0003;
  filter: drop-shadow(0 2px 8px #0003);
  margin-bottom: 0.5em;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin: 0;
}

.navbar {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #eaf6fb;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: #00c3ff;
}

.hero-content {
  margin-top: 2em;
  margin-bottom: 2em;
}

.hero-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #fff;
  text-shadow: 0 2px 8px #0006;
}

.hero-content p {
  font-size: 1.2rem;
  color: #b6d8f6;
  margin-bottom: 1.5em;
}

.section {
  padding: 60px 20px;
}

.bg-light {
  background-color: #f5f5f5;
}

.container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  border-radius: 10px;
}

.card i {
  font-size: 2em;
  margin-bottom: 10px;
  color: #2c5364;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.project {
  width: 300px;
  text-align: left;
}

.project img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: auto;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

button {
  padding: 12px;
  border: none;
  background-color: #2c5364;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.footer {
  background-color: #202020;
  color: #fff;
  text-align: center;
  padding: 20px;
}

@media (max-width: 600px) {
  .logo-rcr { width: 80px; }
  .logo { font-size: 1.3rem; }
  .hero-content h2 { font-size: 1.3rem; }
  .nav-links { flex-direction: column; gap: 1em; }
}
