.body1{
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.card1{
    font-size: 2.3rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.7);
    color: #FFF;
}

.text1{
    font-size: 1.3rem;
    color: #FFF;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25d366;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


.flip-card {
    width: 18rem;
    height: 280px;
    perspective: 1000px; /* Adds 3D effect */
    border: 1px solid #ded8d8;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2); /* Box shadow */;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Hides the back when not flipped */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
}

.flip-card-front {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.flip-card-front img {
    height: 150px;
    width: 150px;
    border-radius: 10px;
}

.flip-card-front h5 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.flip-card-back {
    background: #FFF;
    color: #000;
    transform: rotateY(180deg);
    border-radius: 10px;
    padding: 20px;
    border-color: #000;
}

/* .background{
    background: url(assets/WhatsApp\ Image\ 2025-02-07\ at\ 09.23.49_fbabdb26.jpg);
    
} */

body{
    overflow-x: hidden;
}

#contactNow {
    position: fixed;
    bottom: 50%;
    right: 20px;
    background-color: #3E3D89;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}