
/* ========== General Layout ========== */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Spacing between cards */
}

.pricing-card {
    flex: 1 1 calc(25% - 20px); /* Four cards per row */
    max-width: calc(25% - 20px);
    min-width: 200px; /* Minimum card size */
}

/* ========== Responsive Layout ========== */
/* Medium Screens */
@media (max-width: 992px) {
    .pricing-card {
        flex: 1 1 calc(50% - 20px); /* Two cards per row */
        max-width: calc(50% - 20px);
    }
}

/* Small Screens */
@media (max-width: 768px) {
    .pricing-card {
        flex: 1 1 100%; /* One card per row */
        max-width: 100%;
    }

    .bg-cover {
        background-position: right !important;
        background-size: cover !important;
    }
}

/* ========== Visibility Control ========== */
.desktopView {
    display: block;
}

.mobileView {
    display: none;
}

@media (max-width: 768px) {
    .desktopView {
        display: none;
    }

    .mobileView {
        display: block;
    }

    .bgImageNone {
        background-image: none !important;
    }

    .thumbnail {
        width: 100% !important;
    }

    .slider img {
        width: 430px !important;
        height: auto;
        display: block;
        margin: auto;
    }
}

/* ========== Typography ========== */
.textBold {
    font-weight: bold;
}

@media (min-width: 769px) {
    #a {
        font-size: 50px;
        margin-bottom: 15px;
    }
}

/* ========== Dropdown and Button Styles ========== */
.button-container {
    position: relative;
    display: inline-block;
}

.trigger {
    position: relative; /* Makes sure the absolute positioning works for the service list */
}

.service-list {
    position: absolute;
    top: 100%; /* Position it right below the triggering element */
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: none; /* Initially hidden */
    list-style: none;
    padding: 10px;
    margin-left: 100px; /* Adjust as needed */
    z-index: 1000; /* Ensure it's above other elements */
    width: 200px; /* Set a fixed width or adjust as needed */
}

/* Show the service list when hovering over the trigger */
.trigger:hover .service-list {
    display: block;
}


.service-list li {
    padding: 8px 12px;
}

.service-list li a {
    text-decoration: none;
    color: #333;
    display: block;
}

.service-list li:hover a {
    color: #007bff;
}

.button-container:hover .service-list {
    display: block;
}

/* ========== Swiper Slider Styles ========== */
.swiper-slide img {
    width: fit-content;
    max-height: 100%;
    background: transparent;
    border-radius: 5px;
    object-fit: contain;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 25px;
    height: 25px;
    color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
}

.swiper-button-prev {
    left: 5px;
}

.swiper-button-next {
    right: 5px;
}

.swiper-button-next:after, 
.swiper-button-prev:after {
    font-size: 15px !important;
    font-weight: 900;
}

/* ========== Background Styling ========== */
.bg-gradient-secondary {
    background-color: #021234 !important;
    background: #021234 !important;
}

/* ========== Gallery Styles ========== */
.gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.thumbnail {
    position: relative;
    cursor: pointer;
    width: 30%;
}

.thumbnail img {
    display: block;
}

.overlay {
    position: absolute;
    top: 41%;
    left: 51%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    width: 50px;
    height: 50px;
    text-align: center;
}

.thumbnail:hover .overlay {
    opacity: 1;
}

/* ========== Slider Styles ========== */
.slider {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.slider-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider img {
    max-width: 600px;
    height: auto;
    display: block;
    margin: auto;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    z-index: 1001;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* ========== Blog Styles ========== */
.blog-style-one .thumb img {
    margin-bottom: 30px;
    text-align: center !important;
}


