body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f8;
  color: #333;
  line-height: 1.6;
}

.navbar {
  background-color: #222;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}


.logo h1 {
  font-size: 22px;
}

.logo img {
  width: 99px;
  filter: invert(50%);
  filter: brightness(100);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}


.nav-links li a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  transition: 0.4s;
}

.nav-links li a:hover {
  background-color: #6c6c6cb2;
  border-radius: 5px;
  padding: 12px;
}

@media (max-width:444px) {
  .whatsapp-float{
    right: 0;
    bottom: 88px;
  }
}

/* Responsive for mobile */
@media (max-width: 555px) {
  .nav-links {
    flex-direction: column;
    background-color: #222;
    width: 100%;
    top: 60px;
    left: 0;
  }

  .logo {
    flex-direction: column;
  }

  .nav-links.active {
    display: flex;
  }

}



/* About section styling */
.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.about-container {
  background: white;
  max-width: 800px;
  width: 100%;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.about-container:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.about-container h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.about-container p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.personal-info h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #34495e;
}

.personal-info ul {
  list-style: none;
  padding-left: 0;
}

.personal-info li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.personal-info a {
  color: #007BFF;
  text-decoration: none;
}

.personal-info a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .about-container {
    padding: 25px;
  }

  .about-container h1 {
    font-size: 2rem;
  }
}

.footer {
  background-color: #222;
  color: #ddd;
  padding: 40px 20px 20px;
  font-size: 16px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}



.footer-info h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-info p,
.footer-socials p {
  margin: 8px 0;
}

.footer-info a,
.footer-socials a {
  color: #25D366;
  text-decoration: none;
}

.footer-info a:hover,
.footer-socials a:hover {
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  flex-direction: column;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-socials {
    margin-top: 20px;
  }
}


.social-link {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 18px;
  color: #000;
}

.social-link img {
  width: 25px;
  margin-right: 10px;
  filter: invert(0%);
}

.social-link:hover {
  text-decoration: underline;
}