/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background-color: #ffffff;
  color: #1a2332;
  scroll-behavior: smooth;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: #1a2332;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  color: #4da6ff;
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #cfd8e3;
  text-decoration: none;
  font-size: 16px;
  padding-bottom: 5px;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ffffff;
  border-bottom: 2px solid #4da6ff;
}

/* ===== HERO / HOME ===== */
.hero {
  background-color: #1a2332;
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero h1 span {
  color: #4da6ff;
}

.hero h2 {
  font-size: 20px;
  font-weight: 400;
  color: #cfd8e3;
  margin-bottom: 20px;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 30px auto;
  color: #a9b4c2;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
}

.btn-filled {
  background-color: #4da6ff;
  color: #ffffff;
}

.btn-filled:hover {
  background-color: #3a8ee0;
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #4da6ff;
}

.btn-outline:hover {
  background-color: #4da6ff;
}

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #ffffff;
}

/* ===== ABOUT ===== */
.about {
  padding: 80px 20px;
  max-width: 100%;
  margin: 0 auto;
  background-image:linear-gradient(rgba(53, 70, 96, 0.85), rgba(53, 72, 103, 0.85)), url('about2.jpg');
  background-size: cover;
  background-position: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #ffffff;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  justify-content: center;
}

.skills span {
  background-color: #1a2332;
  color: #4da6ff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* ===== SERVICES ===== */
.services {
  background-color: #f4f6f9;
  padding: 80px 20px;
}

.section-title{
     color: #4da6ff !important; 
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  width: 220px;
  text-align: center;
}

.service-card h3 {
  color: #1a2332;
  margin-bottom: 12px;
  font-size: 18px;
}

.service-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px 20px;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  background-image: linear-gradient(rgba(24,32,45,0.85), rgba(24,32,45,0.85)), url('contact.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.contact .section-title {
  color: #ffffff;
}

.contact-inner {
  max-width: 500px;
  margin: 0 auto;
}

.contact p {
  color: #cfd8e3;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form button {
  align-self: center;
  margin-top: 10px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.socials a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.socials a:hover {
  color: #4da6ff;
}

/* ===== FOOTER ===== */
footer {
  background-color: #151a21;
  color: #b8c5d6;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}