
.prev { left: 10px; }
.next { right: 10px; }

/* Services Section */
.services-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.gallery-container {
    max-width: 900px;
    margin: 0 auto;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.gallery-thumbs .thumb {
    width: 100px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.gallery-thumbs .thumb:hover {
    opacity: 0.8;
}

.gallery-thumbs .thumb.active {
    opacity: 1;
    border: 2px solid var(--primary-blue);
}

/* Hide scrollbar but keep functionality */
.gallery-thumbs::-webkit-scrollbar {
    height: 8px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

.gallery-thumbs::-webkit-scrollbar-thumb:hover {
    background: var(--navy);
}

/* Location Section */
.location-section {
    padding: 4rem 0;
}

.map {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

/* Contact Section */
.contact-section {
    padding: 2rem 0 8rem 0;
    background-color: var(--navy);
    color: var(--white);
}
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--white);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--green);
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
}

/* Working Hours */
.working-hours {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.hours-grid {
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

h2, h1 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 2rem;
}

/* Fixed Call Button */
.fixed-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 20px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.fixed-call-button i {
    font-size: 28px;
    animation: pulse 2s infinite;
}

.fixed-call-button span {
    font-weight: bold;
    font-size: 1.3rem;
}

.fixed-call-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}







.mx-auto {
    margin-left: auto;
    margin-right: auto;
}


.d-block {
    display: block;
}
