
body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #ce6a6b;
  margin: 0;
  padding: 0;
}


h1, p {
  -webkit-text-stroke: 1px black;
  	}



.navbar {
  background: #002eff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #5784BA;
}

/* Section Hero */
.hero {
  position: relative; 
  background: url('../test.webp') no-repeat center center;
  background-size: cover;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}


.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255 / 30%); 
  z-index: 1;
}


.hero .container {
  position: relative;
  z-index: 2;
}


.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 30px;
}


.btn-primary {
  background-color: #000000;
  border-color: #000000;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #5784BA;
}


.service {
  padding: 60px 0;
  background-color: #5784BA;
}

.card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  transition: transform 0.3s ease;
}

.card-img-top:hover {
  transform: scale(1.05);
}

.card-body {
  padding: 20px;
}


#contact {
  padding: 60px 0;
  background: #CE6A6B;
}

#contact h2 {
  margin-bottom: 30px;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.tel-display {
  font-size: 1.2rem;
  color: #000;
  display: inline-flex;
  align-items: center;
}

.tel-display i {
  margin-right: 0.5rem; 
}

.topbar .container span {
  margin-right: 30px; 
  test
}


