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

html{
scroll-behavior:smooth;
}


section, [id] {
  scroll-margin-top: 80px; /* Adjust this value to match the exact height of your navbar */
}

body{
background:#f4f7f9;
color:#333;
}

header{
position:fixed;
top:0;
width:100%;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,.1);
z-index:1000;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 10%;
background-color: black;
color:white;
height: 100px;
text-wrap: none;
color: #ffffff !important;
opacity: 1 !important;
}
}

.navbar a {
  display: block;
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  /* Smooth transition between normal state and hover state */
  transition: background-color 0.3s ease, color 0.3s ease; 
}

/* The Hover Effect */
.navbar a:hover {
  background-color: white; /* Changes background color on hover */
  color: rgba(90, 90, 223, 0.791);            /* Changes text color to gold on hover */
}
Use code with caution.

.logo{
font-size:24px;
font-weight:700;
}


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

.nav-links a{
text-decoration:none;
color:#333;
font-weight:500;
}

.call {
  font-size: 16px;
}

.espanol {
  font-size: 10px;
}

.quote{
  align-items: center;
}
.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
url("lobby.jpg");
background-size:cover;
background-position:center;
color:white;
padding:20px;
}

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

.hero p{
font-size:20px;
max-width:700px;
margin:auto;
}

.btn{
display:inline-block;
margin-top:30px;
background:#0d6efd;
padding:15px 40px;
color:white;
text-decoration:none;
border-radius:50px;
transition:.3s;
}

.btn:hover{
background:#0a58ca;
}

section{
padding:100px 10%;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.card{
background:white;
padding:35px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.3s;
}

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

.stats{
display:flex;
justify-content:space-around;
background:black;
color:white;
text-align:center;
}

.stat h2{
font-size:50px;
}

.testimonials{
text-align:center;
}

.slide{
display:none;
font-size:20px;
}

.slide.active{
display:block;
}

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

input,
textarea{
padding:15px;
border:1px solid #ddd;
border-radius:8px;
}

button{
padding:15px;
background:#0d6efd;
color:white;
border:none;
cursor:pointer;
border-radius:8px;
}

footer{
padding:30px;
text-align:center;
background:#222;
color:white;
}

#topBtn{
position:fixed;
right:20px;
bottom:20px;
display:none;
padding:15px;
font-size:18px;
border:none;
border-radius:50%;
background:#0d6efd;
color:white;
cursor:pointer;
}

.hamburger{
display:none;
font-size:28px;
cursor:pointer;
}

.reveal{
opacity:0;
transform:translateY(60px);
transition:1s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

@media(max-width:768px){

.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:70px;
right:0;
background:white;
width:250px;
padding:20px;
}

.nav-links.active{
display:flex;
}

.hamburger{
display:block;
}

.hero h1{
font-size:36px;
}

.stats{
flex-direction:column;
gap:40px;
}

}

@media screen and (max-width: 600px) {
  .navbar {margin-left: -150px;

}
   