.services-section .icon-box i {
    font-size: 30px;
    color: #c89b3c; /* luxury gold */
    background: #fff7e6;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.services-section .s-block:hover .icon-box i {
    background: #c89b3c;
    color: #ffffff;
    transform: translateY(-6px);
}

.services-section .services-block:hover .icon-box i {
    background: #c89b3c;
    color: #ffffff;
}

.services-block {
    border-radius: 16px;
    padding: 30px 25px;
    transition: all 0.35s ease;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.08);
    height: 100%;
}

.services-block .inner h6{
    margin-bottom: 20px;
}

.services-block .inner h6 a:hover {
    color: #ffffff;
}

.s-block {
    border-radius: 16px;
    padding: 30px 25px;
    transition: all 0.35s ease;
    box-shadow: 0px 0px 2px #e6b15f;
    height: 100%;
}

.s-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 0px 3px #e6b15f;
}

.service-box{
    transition: all 0.35s ease;
    max-height: 100%;
    height: 100%;
}

/* Service Image Box */
.service-box .img-box,
.s-block .image-box {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

/* Image */
.service-box .img-box img,
.s-block .image-box img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Zoom Effect */
.service-box:hover .img-box img,
.s-block:hover .image-box img {
    transform: scale(1.1);
}
 
  /* Hover effect on full box */
.service-box:hover {
    transform: translateY(-5px);
    /* box-shadow: 0px 0px 20px rgba(0,0,0,0.2); */
}

.gallery-block .image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-block img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-hover h4 {
    color: var(--main-color);
    text-shadow: 0px 0px 15px #a07311;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.4;
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-block:hover img {
    transform: scale(1.1);
}

.gallery-block:hover .gallery-hover {
    opacity: 1;
}

.gallery-block:hover .gallery-hover h4 {
    transform: translateY(0);
}

.lightbox-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    background: #ffffff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.gallery-block:hover .gallery-hover,
.gallery-block:hover .lightbox-btn {
    opacity: 1;
}


/* Fact block card */
.fact-block .inner {
    /* background: #ffffff; */
    padding: 35px 25px;
    border-radius: 16px;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.08);
    text-align: center;
}

/* Number */
.fact-count .count-box {
    font-size: 42px;
    font-weight: 700;
    color: #c89b3c;
    margin-bottom: 15px;
    transition: all 0.35s ease;
}

/* Title */
.fact-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.35s ease;
}

/* Text */
.fact-block p {
    font-size: 14px;
    color: #555;
    transition: all 0.35s ease;
}

/* HOVER EFFECT (LIKE SERVICES) */
.fact-block:hover .inner {
    /* background: #c89b3c; */
    transform: translateY(-10px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* Hover color changes */
.fact-block:hover .count-box,
.fact-block:hover .fact-title,
.fact-block:hover p {
    color: #ffffff;
}

/* Optional subtle scale */
.fact-block:hover .count-box {
    transform: scale(1.1);
}

.image-service-slider .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 25px;
}

.image-service-slider .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

.image-service-slider .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.image-service-slider .owl-dot.active span {
    background: #caa64d;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    /* Default shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #e6b15f;
}


.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0px 0px 5px rgb(230, 177, 95, 0.16);
    /* box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25); */
    color: #fff;
}

.overlay-content{
    padding: 30px 18px 18px 18px;
}

/* .overlay-content h5{
    padding-bottom: 15px;
    font-size: 18px;
} */
 
.overlay-content:hover h5{
    color: #ffffff;
}

/* Image */
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

/* Overlay */
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Icon */
.gallery-item .overlay i {
    color: #fff;
    font-size: 28px;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

/* Hover Effects */
.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover .overlay i {
    transform: scale(1);
}

.gallery-item {
    position: relative;
    height: 480px; /* Desktop height */
    border-radius: 14px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.12); */
    box-shadow: 0px 0px 5px rgb(230, 177, 95, 0.16);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item p {
    line-height: 1.5;
    color: #e0e0e0;
}

/* Service Block Base */
.service-block {
    margin-bottom: 30px;
}

.service-block .inner-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0px 0px 5px rgb(230 177 95 / 16%);
}

/* Fixed Height */
.service-block .inner-box {
    min-height: 300px;
}

/* Hover Effect */
.service-block .inner-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 5px rgb(230, 177, 95, 0.16);
    /* box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18); */
}

/* Image */
.service-block .image {
    overflow: hidden;
}

.service-block .image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Image Zoom on Hover */
.service-block .inner-box:hover .image img {
    transform: scale(1.1);
}

/* Content Area */
.service-block .lower-content {
    padding: 25px;
}

/* Title */
.service-block h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #e6b15f;
}

/* Description */
.service-block p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 300;
    text-align: left;
}

/* Button */
.service-block .theme-btn {
    padding: 10px 26px;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-block .inner-box {
        min-height: auto;
    }
}

.event-list-wrap {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0px 2px #e6b15f;
    /* margin-top: 30px; */
}

.event-list-wrap h3 {
    font-size: 22px;
    font-weight: 600;
    color: #c59d5f;
    margin-bottom: 20px;
    position: relative;
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.event-list li {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.event-list li::before {
    content: "✓";
    color: #c59d5f;
    font-weight: bold;
    margin-right: 10px;
}

.event-list li:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 575px) {
    .event-list {
        grid-template-columns: 1fr;
    }
}

.blog_info h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #e6b15f;
}

.blog_info p{
    color: #ffffff !important;
}

.blog_right_side {
    position: sticky;
    top: 100px;
}

.bg_box {
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0px 0px 2px rgb(230 177 95);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 600;
    color: #c59d5f;
    margin-bottom: 22px;
    position: relative;
}

.sidebar-title::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #c59d5f;
    display: block;
    margin-top: 8px;
    border-radius: 2px;
}

.service-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-category-list li {
    margin-bottom: 12px;
}

.service-category-list li:last-child {
    margin-bottom: 0;
}

.service-category-list a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    width: 100%;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-category-list a:hover,
.service-category-list a.active {
    color: #c59d5f !important;
    box-shadow: 0 0px 3px rgba(197, 157, 95, 0.4);
}

.service-category-list li .arrow {
    font-size: 18px;
    margin-left: 50px;
    transition: transform 0.3s ease;
}

.service-category-list a:hover .arrow {
    transform: translateX(5px);
}

/* Mobile */
@media (max-width: 767px) {
    .blog_right_side {
        position: relative;
        top: auto;
        margin-top: 30px;
    }
}

.blog-share {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0px 3px rgba(197, 157, 95, 0.4);
}

.blog-share .card-header {
    border-bottom: 1px solid #e6b15f;
    padding: 18px 22px;
}

.blog-share .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #c89b3c;
    margin: 0;
}


.social-share {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}

.social-share li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Brand Hover Colors */
.social-share li a:hover {
    color: #fff;
    transform: translateY(-4px);
}

.social-share li:nth-child(1) a:hover { background: #1877f2; } /* Facebook */
.social-share li:nth-child(2) a:hover { background: #000000; } /* Twitter X */
.social-share li:nth-child(3) a:hover { background: #0a66c2; } /* LinkedIn */
.social-share li:nth-child(4) a:hover { background: #25d366; } /* WhatsApp */
.social-share li:nth-child(5) a:hover { background: #c59d5f; } /* Copy */

/* Mobile */
@media (max-width: 575px) {
    .social-share {
        justify-content: center;
    }
}

.recaptcha-wrapper {
    transform: scale(1);
    transform-origin: 0 0;
}

/* Mobile Fix */
@media (max-width: 480px) {
    .recaptcha-wrapper {
        transform: scale(0.85);
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .recaptcha-wrapper {
        transform: scale(0.75);
    }
}