* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #0d1b2a; /* To offset the fixed header */
}

/* ====== Header ====== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #0d1b2a;
}

.nav {
  display: flex;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
}

nav a {
  color: #0d1b2a;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #0077b6;
}

/* ====== Hero Section ====== */
.hero {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-content h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #0d1b2a;
}

.hero-content h3 {
  color: #0077b6;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #333333;
}

/* ====== Buttons ====== */
.buttons .btn {
  display: inline-block;
  padding: 12px 25px;
  margin-right: 15px;
  background-color: #0077b6;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s, transform 0.3s;
}

.buttons .btn:hover {
  background-color: #005f8e;
  transform: scale(1.05);
}

.buttons .outline {
  background-color: transparent;
  border: 2px solid #0077b6;
  color: #0077b6;
}

.buttons .outline:hover {
  background-color: #0077b6;
  color: #ffffff;
  transform: scale(1.05);
}

/* ====== Hero Image ====== */
.hero-image {
  flex: 1;
  text-align: center;
  margin-top: 30px;
}

.hero-image img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0077b6;
  box-shadow: 0 0 15px rgba(0, 119, 182, 0.4);
  background: transparent;
}

.icon {
  display: none;
  margin-bottom: 30px;
  gap: 10px;
}

.material-icons {
  font-size: 32px;
  color: #0d1b2a;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.material-icons:hover {
  color: #0077b6;
  transform: scale(1.1);
}

/* ====== About Section ====== */
.about {
  background-color: #f8f9fa;
  color: #0d1b2a;
  padding: 80px 20px;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #0077b6;
  text-align: center;
}

.about .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  padding: 40px 0;
}

.about .container::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 2px;
  background-color: #0077b6;
  transform: translateX(-50%);
  z-index: 1;
}

.about .left,
.about .right {
  flex: 1;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.about .left p,
.about .right p {
  background-color: #e9ecef;
  padding: 20px;
  border-radius: 6px;
  color: #0d1b2a;
  font-size: 16px;
  line-height: 1.7;
}

.about .left p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 30px;
  height: 2px;
  background-color: #0077b6;
  transform: translateY(-50%);
}

.about .right p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 30px;
  height: 2px;
  background-color: #0077b6;
  transform: translateY(-50%);
}

.about .buttons {
  text-align: center;
  margin-top: 40px;
}

.about .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #0077b6;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

.about .btn:hover {
  background-color: #005f8e;
  transform: scale(1.05);
}

/* ====== Services Section ====== */
#service-sec {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  gap: 30px;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #0d1b2a;
}

.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service {
  background: #f1f3f5;
  border-radius: 12px;
  padding: 25px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  color: #0d1b2a;
}

.service:hover {
  transform: translateY(-5px);
}

.service h2 {
  font-size: 1.5rem;
  color: #0077b6;
  margin-bottom: 10px;
}

.service p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ====== Projects Section ====== */
.projects {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.projects h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #0d1b2a;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.project-card {
  background: #f1f3f5;
  border-radius: 12px;
  padding: 25px;
  color: #0d1b2a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.project-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #0d1b2a;
}

.project-card p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555555;
}

.project-card .btn {
  display: inline-block;
  padding: 10px 18px;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 8px;
  background-color: #0077b6;
  color: #ffffff;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.project-card .btn:hover {
  background-color: #005f8e;
  transform: translateY(-2px);
}

.footer-social a.facebook i {
  color: #1877f2; /* Facebook Blue */
}

.footer-social a.github i {
  color: #333333; /* GitHub Black */
}

.footer-social a.whatsapp i {
  color: #25d366; /* WhatsApp Green */
}

.footer-social a.linkedin i {
  color: #0a66c2; /* LinkedIn Blue */
}

/* Optional: Maintain hover transition */
.footer-social a:hover i {
  transform: scale(1.1);
}
.footer {
  background-color: #0d1b2a;
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
}

.footer-name p {
  margin: 4px 0;
  font-size: 14px;
  color: #cccccc;
}

.footer-social {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-social .social-item {
  text-align: center;
}

.footer-social a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social i {
  font-size: 32px;
  display: block;
  margin-bottom: 5px;
}

.footer-social span {
  font-size: 14px;
  color: #cccccc;
}

.footer-social a:hover i {
  color: #0077b6;
}

.footer-social a:hover span {
  color: #ffffff;
}

.footer-note {
  margin-top: 20px;
  font-size: 13px;
  color: #aaaaaa;
}

.footer-name h1{
  color: white;
}


/* ====== Responsive Design ====== */
@media screen and (max-width: 768px) {
  .about .container {
    flex-direction: column;
    align-items: center;
  }

  .buttons .btn {
    margin: 10px;
  }

  .about .container::before,
  .about .left p::after,
  .about .right p::before {
    display: none;
  }

  .about .left,
  .about .right {
    max-width: 100%;
    text-align: center;
    padding: 0;
  }

  .nav {
    display: none;
    flex-direction: column;
    background-color: #e9ecef;
    width: 200px;
    padding: 20px;
    position: absolute;
    top: 70px;
    right: 20px;
    border-radius: 8px;
    z-index: 999;
  }

  .nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .nav ul li a {
    color: #0d1b2a;
    padding: 10px 0;
  }

  .icon {
    display: flex;
    gap: 10px;
  }
}