@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

body {
    font-family: "merriweather", sans-serif !important;
}

.pb-013 {
    padding-bottom: 13px;
}

/* navbar */
.navbar-brand {
    padding-bottom: 12px !important;
}

.navbar-brand:hover {
    color: white !important;
}

.navbar-toggler {
    border: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.dropdown-icon {
    width: 25px !important;
    margin-bottom: 3px;
}

.dropdown-language {
    font-size: 14px !important;
}

.dropdown-menu[data-bs-popper] {
    min-width: 80px !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #e9c763 !important;
    color: white !important;
}

/* aboutus icon color */
.icon-color01 {
    color: #0E4F55 !important;
}

.title-style01 {
    color: #0E4F55;
    /* font-weight: 600; */
}

@media only screen and (max-width: 991px) {
    .offcanvas-body {
        padding-left: 30px !important;
    }

    .navbar-brand {
        padding-bottom: 0px !important;
    }
}

.offcanvas-title {
    color: black;
    text-decoration: none;
}

.offcanvas-title:hover {
    color: #e9c763;
}

.mobile-nav-close-btn {
    border: none !important;
    background: none;
    width: 30px;
    font-size: 25px;
}

.mobile-nav-close-btn:hover {
    color: #660708;
}

a.nav-link {
    color: #0E4F55;
}

a.nav-link:hover {
    color: white;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #e9c763 !important;
}

.carousel-image {
    object-position: 100% 30%;
    height: 33rem !important;
}

/* home page  */
@media only screen and (max-width: 577px) {
    .carousel-image {
        height: 250px !important;
    }
}

@media only screen and (max-width: 768px) {
    .carousel-image {
        height: 400px;
    }
}

.bg-yellow {
    background: #17CF77 !important;
}

.bc-image {
    position: relative;
}

.bc-image::before {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background: url("../uploads/about_us/about_us.jpg");
    background-repeat: no-repeat;
    background-position: 100% 30%;
    background-size: cover;
} 

.bc-image {
    background-color: #A3C5B5;
    /* border-radius: 10px; */
    position: relative;
}

.bc-content {
    position: relative;
}

.no-bullets {
    list-style-type: none;
    list-style-position: outside;
    padding-left: 0;
}

.no-bullets li {
    margin-bottom: 10px;
    text-indent: -15px;
    padding-left: 40px;
}

.service-card {
    height: 30px;
}

.border-green {
    border-color: #17CF77;
}

ul.card-list {
    list-style-type: disc;
    padding-left: 20px;
}

ul.card-list li {
    margin-bottom: 10px;
}

.navbar-logo {
    height: 100px;
    max-height: 100%;
    width: auto;
}

.section-color {
    background: #17CF77;
}

.base-color-1 {
    background: #c7ddd2;
}

.base-color-2 {
    background: #a3c5b5;
}

.navbar-logo {
    height: 30px;
    scale: 2.3;
}

/* Reset */
.toolbar {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    color: black !important;
    padding: 10px 15px;
    margin: 0 10px;
    border: none;
    cursor: pointer;
    background-color: transparent;
    transition: background-color 0.3s;
}

.filter-btn.active {
    background-color: #0E4F55;
    color: white !important;
}

.service_image {
    height: 300px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service_image {
        height: 200px;
    }
    .service-text {
        width: 100% !important;
    }
    .ref-image {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .service_image {
        height: auto;
        margin-top: 0;
    }
}

/* Masonry Layout using CSS Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 10px;
    gap: 15px;
}

.gallery-item {
    border-radius: 8px;
    background-color: #ccc;
    overflow: hidden;
    grid-row: span 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.gallery-item.wide {
    grid-column: span 2;
}

@media (min-width: 992px) {
    .gallery-item.tall {
        grid-row: span 20;
    }
}

.gallery-item.tall img {
    height: 100%;
}

.gallery-item.big {
    grid-column: span 2;
    grid-row: span 20;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .service-text {
        width: 100% !important;
    }
}
@media (max-width: 991px) {
    .navbar-logo {
        height: 60px !important;
        scale: 1.8;
    }
    .service-text {
        width: 100% !important;
    }
}
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .navbar-logo {
        height: 50px !important;
        scale: 1.3;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}