/* Style the WhatsApp icon */
.fab.fa-whatsapp {
    font-size: 24px !important; /* Adjust the size as needed */
    color: #25d366 !important; /* WhatsApp green color */
    margin-right: 5px !important; /* Add some spacing between the icon and text */
}

.whatsapp-green {
    color: #25D366 !important;
}


/* Style the phone number link */
span.ws-nowrap a {
    color: #25d366; /* WhatsApp green color */
    text-decoration: none; /* Remove underlines from the link */
    font-weight: bold; /* Optionally make the text bold */
}


.img-fluid {
    height: 320px; /* Set your desired height */
    width: auto;
    object-fit: cover; /* This ensures the image covers the area without distorting aspect ratio */
}

/* Style for WhatsApp neon green links with a 2px glow */
.whatsapp-link {
    color: #25D366 !important; /* Neon green color code */
    text-decoration: none; /* Remove underlines */
    text-shadow: 0 0 2px #25D366; /* Add a 2px glow effect in WhatsApp green */
}

.gallery-container {
    width: 90%;
    margin: auto;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
}

.image-item img {
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.image-item img:hover {
    transform: scale(1.05);
}

/* Modal/Lightbox */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.mySlides {
    display: none;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0,0,0,0.8);
}

.customer-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Creates three columns */
    grid-gap: 20px; /* Space between the columns and rows */
    padding: 20px; /* Padding around the entire grid */
}

.review {
    background: #f9f9f9; /* Light background for the review */
    padding: 15px; /* Padding inside each review box */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Modern box shadow */
    border-radius: 5px; /* Rounded corners for the boxes */
    margin-bottom: 20px; /* Space below each review */
}

.gold-stars {
    background-color: #6f2596;   /* Green background */
    color: white;                /* White color for the stars */
    padding: 2px;                /* Padding to create space around the stars */
    border-radius: 0px;          /* Rounded corners of the background */
    box-shadow: 0 0 2px #ffd700, /* Gold glow effect */
                0 0 2px #ffd700, 
                0 0 2px #ffd700;
    margin-right: 5px;           /* Space after the stars */
}


/* Mobile view */
@media (max-width: 768px) {
    .customer-reviews {
        grid-template-columns: 1fr; /* Creates a single column for mobile */
    }
}

.review {
    background: #f9f9f9; /* Light background for the review */
    padding: 15px; /* Padding inside each review box */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Modern box shadow */
    border-radius: 5px; /* Rounded corners for the boxes */
    margin-bottom: 20px; /* Space below each review */
}

.gold-stars {
    background-color: #6f2596;   /* Green background */
    color: white;                /* White color for the stars */
    padding: 2px;                /* Padding to create space around the stars */
    border-radius: 0px;          /* Rounded corners of the background */
    box-shadow: 0 0 2px #ffd700, /* Gold glow effect */
                0 0 2px #ffd700, 
                0 0 2px #ffd700;
    margin-right: 5px;           /* Space after the stars */
}
