.fixed-call-btn {
    position: fixed;
    bottom: 20px; 
    left: 10px;  
    background-color: #4CAF50; 
    color: white;
    padding: 5px 10px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999; 
    font-size: 26px;
    transition: background-color 0.3s;
}
.fixed-call-btn1 {
    position: fixed;
    bottom: 80px;
    left: 10px; 
    color: white;
    background-color: #D22225;
    padding: 5px 12px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999; 
    font-size: 26px;
    transition: background-color 0.3s;
}
.fixed-call-btn2 {
    position: fixed;
    bottom: 35%;
    left: -10px; 
    color: white;
    background-color: #D22225;
    padding: 10px 2px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999; 
    font-size: 26px;
    transition: background-color 0.3s;
}
.fixed-call-btn2:hover{
    left: 5px;
    transition:  left 1s ;
}
.fixed-call-btn:hover {
    background-color: #317534; /* Darker green on hover */
}

@media (max-width: 600px) {
    .fixed-call-btn {
        bottom: 10%;
        width: fit-content;
        right: 5px;
        padding: 1px 10px;
        font-size: 35px
    }
    .fixed-call-btn1 {
        bottom: 18%;
        right: 5px;
        width: fit-content;
        padding: 9px 16px;
        font-size: 25px;
    }
    .fixed-call-btn2 {
        bottom: 30%;
        left: 89% !important;
        width: fit-content;
        padding: 12px 10px;
        font-size: 20px;
        
    }
    
}


.modal-animate {
	animation: modalFadeUp 0.4s ease;
	border-radius: 14px;
}

@keyframes modalFadeUp {
	from {
		transform: translateY(40px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.modal-title {
	font-weight: 600;
}

.form-control {
	padding: 12px 14px;
	border-radius: 8px;
}

