
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:Arial,sans-serif;
  background:#f5f7fb;
  color:#111;
  transition:0.3s;
}

.dark{
  background:#111827;
  color:white;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  background:white;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.dark .navbar{
  background:#1f2937;
}

.logo{
  font-size:28px;
  font-weight:bold;
  color:#2563eb;
}

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

.nav-links a{
  text-decoration:none;
  color:inherit;
  font-weight:600;
}

.menu-btn{
  display:none;
  font-size:24px;
  cursor:pointer;
}

.hero{
  height:90vh;
  background:
  linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
  url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=1600') center/cover;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
}

.hero-content h1{
  font-size:60px;
  margin-bottom:20px;
}

.hero-content p{
  font-size:22px;
  margin-bottom:30px;
}

.btn{
  padding:14px 30px;
  background:#25D366;
  color:white;
  text-decoration:none;
  border-radius:40px;
  font-weight:bold;
}

.about,
.packages,
.services,
.contact{
  padding:80px 8%;
}

h2{
  text-align:center;
  margin-bottom:40px;
  font-size:38px;
}

.package-grid,
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.card{
  background:white;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.dark .card{
  background:#1f2937;
}

.card:hover{
  transform:translateY(-8px);
}

.card img{
  width:100%;
  height:230px;
  object-fit:cover;
}

.card-content{
  padding:20px;
}

.card-content h3{
  margin-bottom:10px;
}

.card-content span{
  display:block;
  margin:15px 0;
  color:#2563eb;
  font-weight:bold;
}

.card-btn{
  display:inline-block;
  padding:10px 22px;
  border-radius:30px;
  background:#2563eb;
  color:white;
  text-decoration:none;
}

.service-box{
  background:white;
  padding:40px;
  text-align:center;
  border-radius:18px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.dark .service-box{
  background:#1f2937;
}

.service-box i{
  font-size:50px;
  margin-bottom:20px;
  color:#2563eb;
}

form{
  max-width:600px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

form input,
form textarea{
  padding:15px;
  border-radius:10px;
  border:1px solid #ccc;
}

form button{
  padding:15px;
  border:none;
  background:#25D366;
  color:white;
  border-radius:10px;
  font-size:18px;
  cursor:pointer;
}

footer{
  background:#111827;
  color:white;
  text-align:center;
  padding:25px;
}

.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:30px;
  text-decoration:none;
}

.theme-toggle{
  position:fixed;
  left:20px;
  bottom:20px;
  width:55px;
  height:55px;
  border:none;
  border-radius:50%;
  background:#2563eb;
  color:white;
  font-size:20px;
  cursor:pointer;
}

@media(max-width:768px){

  .menu-btn{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:80px;
    right:-100%;
    flex-direction:column;
    background:white;
    width:240px;
    padding:30px;
    transition:0.3s;
  }

  .dark .nav-links{
    background:#1f2937;
  }

  .nav-links.active{
    right:0;
  }

  .hero-content h1{
    font-size:38px;
  }

  .hero-content p{
    font-size:18px;
  }
}
/* Call Floating Button */
.call-float {
  position: fixed;
  bottom: 25px;
  right: 90px;
  width: 55px;
  height: 55px;
  background: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: 0.3s ease;
}

.call-float:hover {
  transform: scale(1.1);
  background: #0056b3;
}