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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #2f6079;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.container__text {
  color: black;
}
.container__info {
  color: black;
}

/* === Navbar === */
.navbar {
  background-color: #9a81e0;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1b5691;
}

/* === Hero Section === */
.hero {
  background: linear-gradient(135deg, #1e90ff, #00bcd4);
  color: #62696e;
  padding: 4rem 0;
  text-align: center;
}

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

.highlight {
  color: #cca217;
  text-shadow: 2px 2px 2px black;
}

/* === About Section === */
.about {
  background-color: #2f6079;
  padding: 4rem 0;
  text-align: center;
}

.about h2 {
  margin-bottom: 1rem;
}

.about p {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  color: #000000;
}

.tech-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.tech-icons img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.tech-icons img:hover {
  transform: scale(1.2);
}

/* === Projects === */
.projects {
  background-color: #2f6079;
  padding: 4rem 0;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.project-card {
  background: #9aa3d6;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.project-card a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: bold;
}

.project-card img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-bottom: 0.75rem;
  display: block;
}

/* === Contact === */
.contact {
  background-color: #2f6079;
  padding: 4rem 0;
}

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

.contact input,
.contact textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact button {
  padding: 0.75rem;
  background-color: #1e90ff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact button:hover {
  background-color: #1565c0;
}

/* === Footer === */
.footer {
  background-color: #2f6079;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

.social {
  background-color: #2f6079;
  padding: 2rem 0;
  text-align: center;
}

.social h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-links a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #1e90ff;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #1e90ff;
  color: white;
}

#scrollTopBtn {
  position: fixed;
  bottom: 60px;
  right: 35px;
  z-index: 100;
  display: none;
  background-color: #1e90ff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s;
}

#scrollTopBtn:hover {
  background-color: #1565c0;
}/*# sourceMappingURL=style.css.map */