* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image.jpg') no-repeat center center/cover;
  filter: brightness(0.4);
  z-index: -1;
}


body {
  
  color: #000000;
  background: #e5edff;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #dddddd;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #38bdf8;
}

.navbar nav a {
  margin-left: 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #38bdf8;
}







.section {
  padding: 5rem 2rem;
  text-align: center;
  background: #1e293b;
  margin-top: 4rem;
}

.cards {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  padding: 2rem;
}

.cards li {
  background: #334155;
  padding: 1rem;
  border-radius: 10px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.box {
  background: #334155;
  padding: 1.5rem;
  border-radius: 8px;
  min-width: 200px;
}

form {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  width: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 1s ease-out forwards;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #06aff1;
  font-size: 0.9rem;
  color: #000;
}

.float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #309fce;
  color: black;
  padding: 0.7rem 1rem;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 0 10px #38bdf8;
  z-index: 999;
}

/* Individual spacing */
.phone-btn {
  bottom: 20px;
}
.whatsapp-btn {
  bottom: 120px;
}
.email-btn {
  bottom: 220px;
}



/* Hover effect */
.float-btn:hover {
  background-color: #29ace0; /* Indigo-600 */
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}





    .sidebar-transition {
      transition: transform 0.3s ease-in-out;
    }
