/* Home Page CSS */
.san_glry_px_0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.san_glry_row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.san_glry_col {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 992px) {
    .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 768px) {
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.san_glry_item {
    cursor: pointer;
    /* border-radius: 15px; */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.san_glry_item a {
    display: block;
}

.san_glry_img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.san_glry_item:hover .san_glry_img {
    transform: scale(1.05);
}

.fancybox-caption {
    font-size: 16px;
    padding: 15px;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0) 100%
    );
}

.fancybox-slide--image .fancybox-content {
    background-color: rgba(0, 0, 0, 0.9);
}

.fancybox-thumbs__list a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fancybox-thumbs__list::-webkit-scrollbar {
    height: 4px;
}

.fancybox-thumbs__list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #ff6b6b;
    border-radius: 10px;
}
/* Book Now Button Swal */
.custom-swal {
    font-family: "Poppins", sans-serif;
}

.custom-swal .swal2-title {
    color: #c28565;
    font-weight: 600;
}

.custom-swal .swal2-confirm {
    background-color: #c28565 !important;
    box-shadow: 0 4px 6px rgba(194, 133, 101, 0.2);
}

.custom-swal .swal2-confirm:hover {
    background-color: #a56a4a !important;
}

.custom-swal .swal2-cancel {
    background-color: #2c2c2c !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.custom-input {
    width: 100%;
    padding: 10px 15px;
    margin: 8px 0;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.custom-input:focus {
    outline: none;
    border-color: #c28565;
    box-shadow: 0 0 0 3px rgba(194, 133, 101, 0.1);
}

.custom-select {
    width: 100%;
    padding: 10px 15px;
    margin: 8px 0;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
}

.custom-select:focus {
    outline: none;
    border-color: #c28565;
}

.form-label {
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 5px;
    color: #2c2c2c;
    font-size: 14px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.service-checkbox-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 8px 0;
}

.service-checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #c28565;
}

.service-checkbox label {
    cursor: pointer;
    font-size: 14px;
    color: #2c2c2c;
}

.selected-services {
    margin-top: 5px;
    font-size: 12px;
    color: #c28565;
    font-weight: 500;
}
/* Home Sections Custom */
.service-sec-custom {
    background: #f9f3f0;
    padding-bottom: 60px;
}
.about-sec-custum {
    padding-bottom: 60px;
}
.why_choose_nishi {
    padding-bottom: 40px;
}
/* CTA Home */
.cta-section {
    /* background: #faebd7; */
    /* margin: 60px 0; */
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
    animation: fadeInUp 0.6s ease-out;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 35px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.cta-button {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cta-primary {
    background: #2c2c2c;
    color: white;
}

.cta-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.cta-primary:hover i {
    transform: translateX(5px);
}

.cta-secondary {
    background: transparent;
    color: #ee6192;
    border: 2px solid #ee6192;
}

.cta-secondary:hover {
    background: #ee6192;
    color: white;
    transform: translateY(-2px);
}

.cta-secondary:hover i {
    transform: scale(1.1);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2c2c2c;
}

.feature-item i {
    font-size: 16px;
    color: #ee6192;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 20px;
        margin: 40px 0;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 16px;
        padding: 0 20px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .cta-features {
        gap: 15px;
    }

    .feature-item {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}
.recent-post .media-img {
    height: 100px !important;
    width: 100px !important;
}
