#myBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff7300;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 20px 30px;  /* Increase padding for a bigger button */
    font-size: 18px;     /* Increase font size */
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

#myBtn:hover {
    background-color: hsl(33, 100%, 35%);
}

#myBtn a {
    text-decoration: none;
    color: white;
}

#myBtn img {
    width: 50px; /* Adjust size of the image */
    height: 50px; /* Adjust size of the image */
}

#myBtn:focus {
    outline: none;
}

/* Make the table responsive on mobile */
.visa-info table {
    width: 100%;
    border-collapse: collapse;
}

.visa-info th, .visa-info td {
    padding: 10px;
    text-align: left;
}

@media only screen and (max-width: 768px) {
    .visa-info table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .visa-info th, .visa-info td {
        white-space: normal; /* Allow text to wrap in smaller cells */
    }
    
    .visa-info th {
        font-size: 14px; /* Reduce font size of header for small screens */
    }

    .visa-info td {
        font-size: 12px; /* Adjust font size of table data */
    }
}


#testimonials .service-item {
    display: flex;
    justify-content: space-around; /* Centers images with equal spacing */
    padding: 20px;
}

#testimonials .service-item .author img {
    width: 200px; /* Medium size for images */
    height: auto;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#testimonials .service-item .author img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.center-heading {
    text-align: center;
    margin-bottom: 40px;
}

#testimonials .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 5px;
}

#testimonials .owl-theme .owl-dots .owl-dot.active span {
    background-color: #333;
}


