* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background: linear-gradient(to bottom, #1e90ff, #87cefa);
  color: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: black;
  text-decoration: none;
}

.navbar a {
  color: black;
  margin: 0 15px;
  text-decoration: none;
}

.navbar a.active {
  font-weight: bold;
}

section.home {
  padding: 100px 10%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.home-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.home-content {
  flex: 1;
  min-width: 300px;
}

.home-content h1 {
  font-size: 3em;
  margin: 10px 0;
  color: white;
}

.home-content h3 {
  font-size: 1.8em;
  color: white;
}

.home-content p {
  margin: 20px 0;
  font-size: 1.1em;
  color: white;
  line-height: 1.6;
}

.home-scl {
  margin: 20px 0;
}

.home-scl a {
  display: inline-block;
  color: black;
  margin-right: 15px;
  font-size: 24px;
  transition: 0.3s;
}

.home-scl a:hover {
  transform: scale(1.2);
}

.whatsapp-tooltip {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  width: 140px;
  background-color: #25D366;
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
}

.whatsapp-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.btn-box {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background-color: cyan;
  color: black;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.btn-box:hover {
  background-color: deepskyblue;
  color: white;
  transform: translateY(-3px);
}

.home-image {
  flex: 0 0 auto;
}

.profile-img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.text {
  color: black !important;
  font-weight: bold;
}

@media (max-width: 992px) {
  .profile-img {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .home-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .profile-img {
    width: 300px;
    height: 300px;
    margin-top: 30px;
  }

  .home-scl {
    justify-content: center;
  }

  .navbar {
    flex-direction: column;
    margin-top: 20px;
    gap: 10px;
  }

  .header {
    flex-direction: column;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .profile-img {
    width: 250px;
    height: 250px;
  }
  
  .home-content h1 {
    font-size: 2.5em;
  }
  
  .home-content h3 {
    font-size: 1.5em;
  }
}