* {
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* home page */
/* navbar */

/* Scoped modal fix inside navbar section */
.navbar-wrapper .modal {
    overflow-y: auto;
    padding-right: 0 !important;
}

/* Optional custom tweaks */
.navbar-brand img {
    height: 40px;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 10px;
    }
}

/* navbar logo */
.navbar-brand img {
    object-fit: contain;
}

/* carousel img */
.carousel-img {
    height: 670px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .carousel-img {
        height: 250px;
    }
}

/* gallery card img hover */


.card.card-service {
    transition: background-color 0.3s ease;
    padding: 10px;

}

.card.card-service:hover {
    background-color: #47cbf3;

    color: white;
}

.card.card-service:hover .card-title {
    color: white;
}

.card.card-service img {
    width: 100%;
    height: auto;
    border-radius: 8px;

}

.card.card-service .card-body {
    padding-top: 10px;
}

.card.card-service {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card.card-service:hover {
    transform: scale(1.02);
}

/* gallery card scroll bar */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
}

.scroll-btn.left {
    left: -10px;
}

.scroll-btn.right {
    right: -10px;
}

#gallery-slide::-webkit-scrollbar {
    display: none;
    /* hide scrollbar */
}

#gallery-slide {
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* gallery page */
/* img section */
.gallery-card {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-body {
    padding: 1.2rem;
    color: #333;
}

.gallery-body h5 {
    font-weight: bold;
    font-size: 1.2rem;
}

.gallery-icon {
    font-size: 1.5rem;
    color: #6c63ff;
    margin-bottom: 0.5rem;
}

/* contact page */