.nav-center .owl-nav button.owl-next,
.nav-center .owl-nav button.owl-prev {
    width: 44px;
    height: 44px;
    font-size: 20px;
    color: #111827;
    text-shadow: none;
    top: 0;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}

.nav-center .owl-nav button.owl-prev {
    left: -20px;
}

.nav-center .owl-nav button.owl-next {
    right: -20px;
}

.nav-center .owl-nav button.owl-next,
.nav-center .owl-nav button.owl-prev {
    background: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
}

.nav-center .owl-nav button.disabled {
    opacity: 1;
    background: #e0dcdc;
    color: #ffffff;
}


@media screen and (max-width:480px) {
    .nav-center .owl-nav button.owl-prev {
        left: 20px;
    }

    .nav-center .owl-nav button.owl-next {
        right: 20px;
    }

    .nav-center .owl-nav button.owl-next,
    .nav-center .owl-nav button.owl-prev {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}


/* OFFER PAGES - CREATIVE ENHANCED EFFECTS */

/* Tabs */
.offer_page .nav-tabs {
    justify-content: center;
    border: none;
    gap: 12px;
}

.offer_page .nav-tabs .nav-item {
    margin-right: 0;
}

.offer_page .nav-tabs .nav-link {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    color: #151515;
    border: 1px solid color-mix(in srgb, #444444, transparent 90%);
    background: #fff;
    transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer_page .nav-tabs .nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.offer_page .nav-tabs .nav-link.active {
    background: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.offer_page .offer_bg .card {
    border: none;
    overflow: hidden;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    position: relative;
    border-radius: 12px;
}

.offer_page .offer_bg .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.offer_page .offer_bg .card .card-img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer_page .offer_bg .card:hover .card-img {
    transform: scale(1.08);
}

.offer_page .offer_bg .card .card-img-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.6));
    height: 100%;
    width: 100%;
    transition: opacity 0.4s, transform 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.offer_page .offer_bg .card:hover .card-img-overlay {
    opacity: 1;
    transform: translateY(0);
}

.offer_page .offer_bg .card .card-img-overlay .card_icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    font-size: 20px;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.offer_page .offer_bg .card:hover .card_icons {
    transform: rotate(15deg) scale(1.1);
}

.offer_page .offer_bg .card .card-img-overlay .card-title,
.offer_page .offer_bg .card .card-img-overlay .card-title a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.offer_page .offer_bg .card .im-btn-outer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--tts-buttton-bg);
    opacity: 0;
    transform: translateY(90px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    padding: 12px;
}

.offer_page .offer_bg .card .call-now {
    background-color: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt1);
    padding: 10px 18px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.offer_page .offer_bg .card .call-now:hover {
    background-color: color-mix(in srgb, var(--tts-buttton-bg), black 10%);
}

.offer_page .offer_bg .card:hover .im-btn-outer {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 480px) {
    .offer_page .nav-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .offer_page .nav-tabs .nav-link {
        font-size: 14px;
        padding: 8px 16px;
    }

    .offer_page .offer_bg .card .card-img {
        height: 170px;
    }
}


/* ===================
Popular Destinations CSS
====================== */
.popular-destinations {
    position: relative;
    background: linear-gradient(135deg, #d9e4fa 0%, #e2eaf9 100%);
    overflow: hidden;
}

.popular-destinations .package {
    width: 100%;
    float: left;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .popular-destinations .package:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
} */

.popular-destinations .package a {
    color: #212121;
    text-decoration: none;
}

.popular-destinations .package .im {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.popular-destinations .package .im img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
}

@keyframes zoom-bounce {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.12);
    }

    50% {
        transform: scale(1.08);
    }

    70% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1.1);
    }
}

.popular-destinations .package:hover .im img {
    animation: zoom-bounce 0.8s ease-in-out forwards;
}

.popular-destinations .package .im::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.popular-destinations .package:hover .im::before {
    background: rgba(0, 0, 0, 0.5);
}

.popular-destinations .package .im .im-text1 {
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    padding: 0 10px;
    /* opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease; */
}

/* .popular-destinations .package:hover .im .im-text1 {
    opacity: 1;
    transform: translateY(0);
} */

.popular-destinations .package .im .text-box {
    position: absolute;
    right: 15px;
    bottom: 15px;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px) scale(0.8) rotate(-5deg);
}

@keyframes creative-tring {
    0% {
        transform: translateY(20px) scale(0.8) rotate(-5deg);
        opacity: 0;
    }

    30% {
        transform: translateY(-10px) scale(1.1) rotate(5deg);
        opacity: 1;
    }

    60% {
        transform: translateY(5px) scale(1.05) rotate(-3deg);
    }

    100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

.popular-destinations .package:hover .im .text-box {
    animation: creative-tring 0.8s ease-in-out 2 alternate forwards;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25), 0 0 10px rgba(255, 200, 0, 0.4);
}

.popular-destinations .package .im .text-box .from {
    font-size: 10px;
    color: #000;
    margin-right: 5px;
}

.popular-destinations .package .im .text-box .price {
    font-size: 26px;
    font-weight: 600;
    color: var(--tts-buttton-bg);
}

/* ===================
   Flight Routes CSS (Creative Enhanced)
   =================== */
.flight-card {
    width: 100%;
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, #444444, transparent 92%);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    margin: 10px 0;
}

.flight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.flight-card .card-image {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.flight-card .card-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.flight-card:hover .card-image img {
    transform: scale(1.08);
}

.flight-card .card-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.flight-card:hover .card-image::after {
    opacity: 1;
}

.flight-card .city-badge {
    position: absolute;
    top: 15px;
    left: 0px;
    padding: 12px 22px;
    border-radius: 0px 12px 12px 0px;
    background: var(--tts-buttton-bg);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.6s ease forwards;
    transform: translateX(-20px);
    opacity: 0;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.flight-card .city-badge h3 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.flight-card .city-badge span {
    font-size: 13px;
    color: #f1f1f1;
}

.flight-card .card-content {
    display: flex;
    justify-content: space-between;
    padding: 22px;
    align-items: center;
}

.flight-card .card-content h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 200px;
}

.flight-card .card-content p {
    margin: 0;
    font-size: 14px;
    color: #7a7a7a;
    letter-spacing: 0.3px;
}

.flight-card .price-box {
    text-align: right;
    transform: translateY(8px);
    transition: transform 0.35s ease;
}

.flight-card:hover .price-box {
    transform: translateY(0);
}

.flight-card .price-box span {
    font-size: 14px;
    color: #444;
}

.flight-card .price-box strong {
    display: block;
    font-size: 26px;
    color: var(--primary-red);
    font-weight: 700;
    margin-top: 4px;
}


/* ===========================================
   WHY CHOOSE US / WORK SECTION - ENHANCED
============================================== */
.why-choose-us {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #d9e4fa 0%, #e2eaf9 100%);
}

.why-choose-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../../../webroot/img/bg/home-bg1.png') center/cover no-repeat;
    z-index: -1;
    background-attachment: fixed;
}

.why-choose-us .section-title h2 {
    /* color: #ffffff; */
    /* font-weight: 800; */
    /* text-transform: uppercase; */
    /* letter-spacing: 1px; */
    /* text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4); */
}

.why-choose-us .card {
    border: none;
    text-align: center;
    padding: 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.why-choose-us .card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #6bc9ff, #ffffff50, #ff9fcd);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-choose-us .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.why-choose-us .card:hover::before {
    opacity: 1;
}

.why-choose-us .card .card-body {
    padding: 0;
}

.why-choose-us .card h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-red);
    margin: 20px 0 10px;
    letter-spacing: 0.5px;
}

.why-choose-us .work-avatar {
    background: #E4EBF1;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #111827;
    margin: 0 auto 12px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.why-choose-us .work-icon {
    background: linear-gradient(135deg, #f8fafc, #eef3ff, #f3f9ff);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: floatIcon 3s ease-in-out infinite;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

.why-choose-us .work-icon i {
    font-size: 40px;
    color: var(--primary-red);
}

.why-choose-us .card:hover .work-icon {
    transform: rotate(8deg) scale(1.12);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .why-choose-us {
        padding: 50px 0;
    }

    .why-choose-us .card {
        padding: 25px;
    }

    .why-choose-us .work-icon {
        width: 70px;
        height: 70px;
    }

    .why-choose-us .card h5 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .why-choose-us .card {
        margin-bottom: 25px;
    }

    .why-choose-us .work-icon {
        width: 65px;
        height: 65px;
    }
}


/* ============================
   TESTIMONIALS â€“ CREATIVE STYLE
   ============================ */

.testimonials {
    position: relative;
    padding: 60px 0;
}

.testimonials::before,
.testimonials::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle,
            color-mix(in srgb, var(--primary-red), transparent 60%),
            transparent 90%);
    filter: blur(65px);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite alternate;
    z-index: 0;
}

.testimonials::before {
    top: -40px;
    left: -40px;
}

.testimonials::after {
    bottom: -40px;
    right: -40px;
    animation-delay: 2s;
}

.testimonials .testimonial-item {
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 22px;
    border: 1px solid color-mix(in srgb, #000, transparent 88%);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgb(0 0 0 / 6%);
    backdrop-filter: blur(6px);
}

.testimonials .testimonial-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 55px color-mix(in srgb, #000, transparent 85%);
    border-color: color-mix(in srgb, var(--primary-red), transparent 70%);
}

.testimonials .testimonial-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--primary-red), transparent 50%),
            transparent 80%);
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    transition: opacity 0.35s ease;
    opacity: 0;
}

.testimonials .testimonial-item:hover::after {
    opacity: 1;
}

.testimonials .testimonial-item .testimonial-img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid var(--tts-buttton-bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.testimonials .testimonial-item h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #000;
}

.testimonials .testimonial-item h4 {
    font-size: 15px;
    color: #777;
    margin-bottom: 5px;
    font-weight: 400;
}

.testimonial-item .stars {
    margin-top: 10px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: var(--tts-buttton-bg);
    opacity: 0.25;
    font-size: 22px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0px auto 15px auto;
    color: #333;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.18);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--tts-buttton-bg);
    transform: scale(1.25);
}

@media (max-width: 767px) {

    .testimonials .testimonial-item {
        padding: 26px;
        margin: 12px;
    }

    .testimonials .testimonial-item h3 {
        font-size: 17px;
    }

    .testimonials .testimonial-img {
        margin: 0 auto 12px auto;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(25px, 30px) scale(1.1);
    }
}



/*--------------------------------------------------------------
    # Blog Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
    border: 1px solid color-mix(in srgb, #000, transparent 88%);
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 10px;
    transition: all 0.5s ease;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
}

.recent-posts .post-item:hover {
    box-shadow: var(--box-shadow), 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px) rotate3d(1, 1, 0, 3deg);
    animation: floatCard 2.4s ease-in-out infinite;
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0px rgba(0, 0, 0, 0.0);
    }

    50% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    100% {
        box-shadow: 0 0 0px rgba(0, 0, 0, 0.0);
    }
}

.recent-posts .post-item .post-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    position: relative;
}

.recent-posts .post-item .post-img a{
    display: block;
}

.recent-posts .post-item .post-img img {
    transition: transform 0.7s ease, filter 0.4s ease;
    width: 100%;
    max-height: 220px;
    transform-origin: center;
}

.recent-posts .post-item:hover .post-img img {
    transform: scale(1.15);
    filter: brightness(1.1) saturate(1.1);
}

.recent-posts .post-item .post-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.15));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.recent-posts .post-item:hover .post-img::after {
    opacity: 1;
}

.recent-posts .post-item .post-date {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--tts-buttton-bg);
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.recent-posts .post-item .post-content {
    padding: 30px;
}

.recent-posts .post-item .post-title {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s ease;
    margin-bottom: 15px;
}

.recent-posts .post-item:hover .post-title {
    color: var(--primary-red);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.recent-posts .post-item .meta i {
    font-size: 16px;
    color: var(--tts-buttton-bg);
}

.recent-posts .post-item .meta span {
    font-size: 15px;
    color: color-mix(in srgb, var(--dark), transparent 50%);
}

.recent-posts .post-item hr {
    color: color-mix(in srgb, var(--dark), transparent 80%);
    margin: 20px 0;
}

.recent-posts .post-item .readmore {
    font-weight: 600;
    transition: 0.3s;
    color: color-mix(in srgb, var(--dark), transparent 40%);
    position: relative;
    overflow: hidden;
}

.recent-posts .post-item .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

.recent-posts .post-item .readmore::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--tts-buttton-bg);
    transition: width 0.4s ease;
}

.recent-posts .post-item:hover .readmore {
    color: var(--tts-buttton-bg);
}

.recent-posts .post-item:hover .readmore::after {
    width: 100%;
}

/* ============================
   OUR WORK WRAPPER (Enhanced)
============================ */
.our-work-wrapper {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #d9e4fa 0%, #e2eaf9 100%);
    overflow: hidden;
}

/* Soft animated gradient overlay */
.our-work-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../../../webroot/img/bg/project-bg.png'),
                radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 60%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    animation: slowFloat 18s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes slowFloat {
    from { transform: scale(1); opacity: 0.85; }
    to   { transform: scale(1.05); opacity: 1; }
}

.our-work-wrapper .section-title h2 {
    /* color: #fff; */
}


/* Feature Card */
.our-feature {
    text-align: center;
    padding: 35px 25px;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    transition: 0.35s ease;
    backdrop-filter: blur(12px);
    height: 100%;
    border: 1px solid rgba(255,255,255,0.12);
    position: relative;
    overflow: hidden;
}

/* Hover depth + glow */
.our-feature:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Soft highlight effect */
.our-feature::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
    top: -60%;
    left: -60%;
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.our-feature:hover::before {
    opacity: 0.25;
    transform: translate(60%, 60%);
}

/* Icon Styling */
.our-feature .icon img {
    width: 70px;
    height: auto;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
    transition: 0.3s ease;
}

.our-feature:hover .icon img {
    transform: scale(1.1) rotate(4deg);
}

/* Typography */
.our-feature h5 {
    /* color: #fff; */
    font-weight: 700;
    margin-top: 14px;
    font-size: 18px;
    margin-bottom: 0;
}

.our-feature p {
    /* color: #fff; */
    /* opacity: 0.9; */
    margin-top: 6px;
}
