* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #f5f7fa;
  color: #333;
}
header {
  background: #0d6efd;
  color: white;
  padding: 15px 8%;
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(#00000099, #00000099),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 20px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.btn {
  background: #25d366;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}
section {
  padding: 80px 8%;
}
.title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2rem;
  color: #0d6efd;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-8px);
}
.card h3 {
  margin-bottom: 15px;
  color: #0d6efd;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}
.contact {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact p {
  margin: 10px 0;
}
footer {
  background: #0d6efd;
  color: white;
  text-align: center;
  padding: 20px;
}
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 10px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card-link:hover .card {
  transform: translateY(-8px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}
.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.nav-left{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.menu-btn{
    display:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

@media (max-width:768px){

    .menu-btn{
        display:block;
    }

    nav{
        position:relative;
    }

    nav ul{
        display:none;
        position:absolute;
        top:100%;
        right:0;
        width:220px;
        background:#0d6efd;
        flex-direction:column;
        padding:15px;
    }

    nav ul.active{
        display:flex;
    }
}