.img-logo
{
    width:100px;
    height:100px !important;
}

#hero 
{
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.video-background 
{
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
    opacity: 1;
}

/* Optional dark overlay for contrast */
#hero .overlay 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust darkness here */
    z-index: 1;
}

/* Ensure content appears above video */
#hero .container 
{
    position: relative;
    z-index: 2;
}

/* Optional: additional hero text tweaks */
#hero .hero-content h1,
#hero .hero-content p 
{
    color: #fff;
}

.card,
.card .form-control,
.card .form-check-label 
{
    z-index: 2;
    position: relative;
    color: #000;
}

/* Optional responsiveness */
@media (max-width: 768px) 
{
    .video-background 
    {
        object-position: center;
    }
}

/* css for mechanic image */
.hero-image 
{
    position: relative;
}

/* .form-overlay-img 
{
    position: absolute;
    bottom: -40px; 
    right: -10px; 
    width: 200px;  
    max-width: 100%;
    z-index: 1000; 
    opacity: 0.9; 
    pointer-events: none; 
} */

.contact1 
{
    position: relative;
    overflow: hidden;
}

.form-overlay-img 
{
    position: absolute;
    bottom: 10px;
    right: 60px;
    width: 200px;
    max-width: 100%;
    z-index: 100;
    opacity: 0.9;
    pointer-events: none;
}

/* Responsive for mobile view */
@media (max-width: 768px) 
{
    .form-overlay-img 
    {
        right: 10px;
        bottom: 10px;
        width: 140px;
    }
}

/* .card.shadow 
{
    position: relative;
    z-index: 2;
} */



.hero-image1
{
  /* position: absolute; */
  /* bottom: 10px; */
  /* bottom: -27px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px; */
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

@keyframes float-badge 
{
  0% 
  {
    transform: translateY(0);
  }

  50% 
  {
    transform: translateY(-10px);
  }

  100% 
  {
    transform: translateY(0);
  }
}

.cta-btn1 .fa-phone 
{
    transition: transform 0.5s ease;
}

.cta-btn1:hover .fa-phone 
{
    transform: rotate(360deg);
}
