body{
    background-color:  #111;
    font-family: outfit;
}

.hero{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: left;
    
}


.col2{
    flex:1;
    align-items: right;
    justify-content: right;
    margin-left: auto;
    
    
}

.col2 img{
    max-width: 100%;
    height: 20%;
}

.p1{
    color: white;
    font-size: 4rem;
    font-weight: lighter;
    line-height: 2;

}

.p2{
    font-size: 5rem;
    background: linear-gradient(90deg, #ffffff,#3b3b3b, #000000);
  -webkit-background-clip: text; /* Clips background to text */
  -webkit-text-fill-color: transparent;
  line-height: 30%;
  font-weight: bolder;
}

hr{
    width: 100%;
}

.grad{
    background: linear-gradient(90deg, #ff5f9e,#21e2c0, #21e2c0);
  -webkit-background-clip: text; /* Clips background to text */
  -webkit-text-fill-color: transparent;
}

svg{
    width: 5%;
    fill: white;
}

p{
    
    background: linear-gradient(90deg, #ff5f9e,#ff5f9e,#21e2c0, #21e2c0);
  -webkit-background-clip: text; /* Clips background to text */
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
  line-height: 2;
}

.about{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bolder;
}

@media screen and (max-width: 768px) {
     .hero {
        flex-direction: column;   /* Stack text and image */
        text-align: center;
        padding: 20px;
    }
    
}

.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-buttons .btn {
  padding: 12px 24px;
  text-decoration: none;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.call {
  background-color: #1e40af; /* Blue */
}

.whatsapp {
  background-color: #25D366; /* WhatsApp green */
}

.btn:hover {
  opacity: 0.85;
}


.book-now-floating {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1e1e1e; /* lighter dark grey for contrast */
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: all 0.3s ease;
  display: inline-block;

  /* TEXT GRADIENT */
  background: linear-gradient(90deg, #ff5f9e, #ff5f9e, #21e2c0, #21e2c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.book-now-floating:active{
    style
}

.book-now-floating:hover {
  transform: translateX(-50%) scale(1.05);
}
