body {
    background-color: #ac0428 !important;
}

.maxWidth {
    max-width: 1100px !important;
    margin: auto;
}

.maxWidth h1 {
    font-size: 3rem;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp-zoom:hover {
    animation: zoomInOut 1s infinite;
}

.imgSection img,
.laserImage img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.chooseUsBg {
    background-color: #800000;
}

p, li {
    font-size: 1.1rem;
}

/* Responsive Headings */
@media (max-width: 768px) {
    .maxWidth h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .col-7, .col-5 {
        width: 100%;
    }

    .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }

    .imgSection,
    .laserImage {
        margin-bottom: 2rem;
    }

    .text-center {
        padding: 0 1rem;
    }

    
}

.faqUsBg {
    background-color: #d60000;
}
.imgFooter {
    width: 100%;
    max-width: 480px !important; /* Optional: Limit max width */
    padding: 1rem;
}

.imgFooter img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    object-fit: contain;
}

@media (max-width: 768px) {
    .imgFooter {
        max-width: 90%;
        padding: 0.5rem;
    }
}

.LogoFooter{
    background-color: #6b0318;
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
  }
  
  .whatsapp-float img {
    width: 35px;
    height: 35px;
  }
  