* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #0a2540;
  color: black;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a2540;
  padding: 15px 40px;
}

nav .logo {
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px;
  background-color: #e6f2ff; /* light blue */
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 40px;
  color: #0a2540;
}

.hero-text h3 {
  margin: 10px 0;
}

.hero-image img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #0a2540;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #0a2540;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* SECTIONS */
section {
  padding: 50px;
  text-align: center;
}

.skills-container span {
  display: inline-block;
  background: #0a2540;
  color: white;
  margin: 5px;
  padding: 8px 12px;
  border-radius: 20px;
}

/* PROJECTS */
.project-card {
  background-color: #e6f2ff;
  margin: 20px auto;
  padding: 20px;
  max-width: 600px;
  border-radius: 8px;
  border: 1px solid #0d6efd;
}

/* FOOTER */
footer {
  background: #0a2540;
  color: white;
  text-align: center;
  padding: 15px;
}
/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {

  nav {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    margin-top: 10px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-image img {
    width: 180px;
    height: 180px;
    margin-top: 20px;
  }

  section {
    padding: 40px 20px;
  }

  .project-card {
    margin: 15px;
  }
}

#get-in-touch {
  text-align: center;
  padding: 50px 20px;
  background-color: #f8f9fa;
}

#get-in-touch h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

#get-in-touch {
  text-align: center;
  padding: 50px 20px;
  background-color: #e6f2ff;
}
#contact {
  text-align: center;
  margin: 40px 0;
}

.contact-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  color: white;
  transition: 0.3s ease;
}

.email {
  background-color: #007bff;
}

.whatsapp {
  background-color: #25D366;
}

.contact-btn:hover {
  opacity: 0.85;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  margin: 8px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.call {
  background-color: #25D366; /* Green */
}

/* PORTFOLIO SECTION BOXES */
.section-box {
  border: 2px solid #0d6efd;
  border-radius: 12px;
  padding: 30px;
  margin: 40px auto;
  max-width: 1000px;
  background-color: #e6f2ff; /* Stronger light blue*/
}

/* Section titles */
.section-box h2 {
  margin-top: 0;
  color: #0d6efd;
  border-bottom: 2px solid #0d6efd;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Hover effect */
.section-box:hover {
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.2);
  transition: 0.3s ease;
}

/* NAVBAR */
.navbar {
  position: relative;
  height: 60px;
  background: #0a2540;
}

/* CENTER LOGO */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 22px;
  line-height: 60px;
  margin: 0;
}

/* MENU BUTTON (LEFT) */
.menu-btn {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* DROPDOWN MENU */
.nav-links {
  list-style: none;
  position: absolute;
  top: 60px;
  left: 20px;
  background: #0a2540;
  width: 180px;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
}

.nav-links li {
  text-align: center;
  padding: 10px 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
}

/* SHOW MENU */
.nav-links.show {
  display: flex;
}

.social-media {
  margin-top: 25px;
  text-align: center;
}

.social-title {
  font-size: 16px;
  margin-bottom: 12px;
  color: #ccc;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #6a5acd; /* violet-blue */
  transform: translateY(-4px);
}