.header-2 {
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Top (Transparent) state */
.header-2:not(.rs-sticky) {
    background-color: transparent !important;
    box-shadow: none !important;
}

.header-2:not(.rs-sticky) .header2__main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.header-2:not(.rs-sticky) .main-menu ul li a {
    color: #ffffff !important;
}

.header-2:not(.rs-sticky) .main-menu ul li a:hover {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Prevent white text in submenus when header is transparent and increase typography size/weight */
.main-menu ul li .submenu li a {
    font-size: 16px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.header-2:not(.rs-sticky) .main-menu ul li .submenu li a {
    color: #133244 !important;
}

.header-2:not(.rs-sticky) .main-menu ul li .submenu li a:hover {
    color: #BF9C5C !important;
}

.header-2:not(.rs-sticky) .header2__right .rr-btn {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.header-2:not(.rs-sticky) .header2__right .rr-btn span i {
    color: #ffffff !important;
}

.header-2:not(.rs-sticky) .bar-icon span {
    background-color: #ffffff !important;
}

.header-2:not(.rs-sticky) .header2__right .header__action-btn {
    color: #ffffff !important;
}

/* Logo switching styling */
.header-2:not(.rs-sticky) .logo-black {
    display: none !important;
}

.header-2:not(.rs-sticky) .logo-white {
    display: block !important;
}

.header-2.rs-sticky .logo-black {
    display: block !important;
}

.header-2.rs-sticky .logo-white {
    display: none !important;
}

@keyframes scrollMouseAnim {
    0% {
        top: 6px;
        opacity: 1;
    }

    50% {
        top: 16px;
        opacity: 0.2;
    }

    100% {
        top: 6px;
        opacity: 1;
    }
}

/* Premium Login Button Styles */
.header-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    border: 2px solid transparent;
    line-height: 1;
}

.header-login-btn i {
    margin-right: 8px;
}

/* Transparent Header State */
.header-2:not(.rs-sticky) .header-login-btn {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.header-2:not(.rs-sticky) .header-login-btn:hover {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

/* Sticky Header State */
.header-2.rs-sticky .header-login-btn {
    background-color: #000000 !important;
    color: #ffffff !important;
}

.header-2.rs-sticky .header-login-btn:hover {
    background-color: transparent !important;
    color: #000000 !important;
    border-color: #000000 !important;
}

/* Custom Header Action & Cart Count Button Styles */
.header__action-btn {
    color: inherit;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--rr-theme-primary2, #BF9C5C);
    color: #000000;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom Banner Area Customization */
.banner__area-custom {
    background-size: cover;
    background-position: top center;
    height: 100vh !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.banner__flex-container {
    height: 100%;
    min-height: 100vh;
    width: 100%;
}

.banner__line-shape-custom {
    z-index: 2;
    opacity: 0.15;
}

.banner__container-custom {
    position: relative;
    z-index: 3;
}

/* Responsive Banner Typography */
.banner-title {
    color: #ffffff !important;
    font-size: 80px !important;
    line-height: 1 !important;
    text-transform: capitalize !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
}

.banner-title span {
    font-family: var(--rr-ff-heading1);
    font-style: italic;
    font-weight: 400;
    color: #ffffff;
}

.banner-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    max-width: 600px;
    font-weight: 300;
    line-height: 1.6;
}

/* Scroll Down Indicator */
.banner__scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    cursor: pointer;
    will-change: opacity, visibility;
}

.banner__scroll-down a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.banner__scroll-down a span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--rr-ff-body);
    font-weight: 500;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouseAnim 1.8s infinite ease-in-out;
}

/* Media Queries for Responsiveness */
@media (max-width: 1199px) {
    .banner-title {
        font-size: 65px !important;
    }
}

@media (max-width: 991px) {
    .banner-title {
        font-size: 55px !important;
    }

    .banner-desc {
        font-size: 18px !important;
    }
}

@media (max-width: 767px) {
    .banner-title {
        font-size: 45px !important;
        line-height: 1.25 !important;
    }

    .banner-desc {
        font-size: 16px !important;
    }
}

@media (max-width: 575px) {
    .banner-title {
        font-size: 34px !important;
        line-height: 1.3 !important;
    }

    .banner-desc {
        font-size: 15px !important;
        max-width: 100% !important;
    }

    .banner__scroll-down {
        bottom: 25px !important;
    }
}

/* ==========================================
   Premium Product Cards Styling
   ========================================== */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 520px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: #F6F1EE;
}

.product-card__thumb {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
    transition: background 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card__tag {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card__title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card__title a:hover {
    color: #cfc1b1;
}

/* Hover effects */
.product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.product-card:hover .product-card__thumb img {
    transform: scale(1.08);
}

.product-card:hover .product-card__overlay {
    background: linear-gradient(to top, rgba(21, 21, 21, 0.85) 0%, rgba(21, 21, 21, 0.4) 50%, rgba(21, 21, 21, 0) 100%);
}

/* Responsive adjustment for product card height */
@media (max-width: 991px) {
    .product-card {
        height: 460px;
    }

    .product-card__title {
        font-size: 26px;
    }

    .product-card__overlay {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .product-card {
        height: 480px;
        max-width: 380px;
        margin: 0 auto;
    }
}

/* Custom Portfolio Big Inner (Workshop Image) Customization */
.portfolio__big-inner {
    height: 100vh !important;
}

/* Custom Header Layout (Menu Left, Logo Center, Actions Right) */
.header-custom-layout {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.header-custom-layout .header__item-menu {
    display: none !important;
}

@media only screen and (min-width: 1200px) {
    .header-custom-layout .header__item-menu {
        display: flex !important;
        flex: 1 1 0% !important;
        justify-content: flex-start !important;
    }

    .header-custom-layout .header__item-logo {
        flex: 0 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .header-custom-layout .header__item-actions {
        flex: 1 1 0% !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
    }
}

/* Ensure Logo size is neat */
.header-custom-layout .header__item-logo img {
    max-height: 50px !important;
    width: auto !important;
}

/* Custom Product Slider Pagination Style */
.product-slider__active .swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 40px !important;
}

.product-slider__active .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background-color: #133244 !important;
    opacity: 0.25 !important;
    transition: all 0.3s ease-in-out !important;
    border-radius: 50% !important;
    margin: 0 6px !important;
}

.product-slider__active .swiper-pagination-bullet-active {
    width: 28px !important;
    border-radius: 5px !important;
    background-color: #133244 !important;
    opacity: 1 !important;
}

/* ==========================================
   Skeleton Loading Animation
   ========================================== */
.skeleton-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 520px;
    background-color: #e2d9cf;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .skeleton-card {
        height: 460px;
    }
}

.skeleton-shimmer {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ==========================================
   Banner Slider Custom Styling
   ========================================== */
.banner__area-custom .swiper-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

/* Custom Banner Pagination styling */
.banner-swiper-pagination {
    position: absolute !important;
    bottom: 40px !important;
    left: 80px !important;
    width: auto !important;
    z-index: 10 !important;
    text-align: left !important;
}

@media (max-width: 767px) {
    .banner-swiper-pagination {
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 95px !important;
        text-align: center !important;
    }
}

.banner-swiper-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background-color: #ffffff !important;
    opacity: 0.4 !important;
    transition: all 0.3s ease-in-out !important;
    border-radius: 50% !important;
    margin: 0 8px !important;
    cursor: pointer !important;
}

.banner-swiper-pagination .swiper-pagination-bullet-active {
    width: 32px !important;
    border-radius: 6px !important;
    background-color: #ffffff !important;
    opacity: 1 !important;
}

/* Custom Navigation Buttons */
.swiper-button-prev-custom,
.swiper-button-next-custom {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    z-index: 10 !important;
    cursor: pointer !important;
    transition: all 0.3s ease-in-out !important;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
}

.swiper-button-prev-custom {
    left: 40px !important;
}

.swiper-button-next-custom {
    right: 40px !important;
}

@media (max-width: 991px) {

    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        display: none !important;
        /* Hide navigation arrows on smaller devices */
    }
}

/* ==========================================
   Skeleton Loading Banner Styling
   ========================================== */
.skeleton-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    /* White background */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.skeleton-banner__content {
    position: relative;
    z-index: 3;
    padding-left: 80px;
    width: 100%;
    max-width: 800px;
}

@media (max-width: 767px) {
    .skeleton-banner__content {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
}

.skeleton-banner__title {
    width: 70%;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.05);
    /* Light grey contrast */
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.skeleton-banner__subtitle {
    width: 50%;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.05);
    /* Light grey contrast */
    border-radius: 8px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.skeleton-banner__desc {
    width: 85%;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.05);
    /* Light grey contrast */
    border-radius: 4px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.skeleton-banner__desc-short {
    width: 60%;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.05);
    /* Light grey contrast */
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

/* ==========================================
   Tailar Template Replicated Styles
   ========================================== */

/* Typography & General Section Settings */
.tailar-section-title {
    margin-bottom: 50px;
}

.tailar-sub-title {
    color: #BF9C5C;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.tailar-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #133244;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.tailar-main-title span {
    color: #BF9C5C;
}

.tailar-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin-top: 15px;
}

/* 1. About Us Section Styling */
.tailar-about {
    padding: 120px 0;
    background-color: #ffffff;
}

.tailar-about__img-box {
    position: relative;
    padding-right: 30px;
}

.tailar-about__main-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.tailar-about__main-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.tailar-about__rating-badge {
    position: absolute;
    bottom: -20px;
    right: 10px;
    background: #133244;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(19, 50, 68, 0.2);
    z-index: 5;
    border: 1px solid rgba(255,255,255,0.1);
}

.tailar-about__rating-badge img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #BF9C5C;
}

.tailar-about__rating-info {
    display: flex;
    flex-direction: column;
}

.tailar-about__stars {
    color: #BF9C5C;
    font-size: 11px;
    margin-bottom: 4px;
}

.tailar-about__rating-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

.tailar-about__item-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tailar-about__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tailar-about__item-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #F6F1EE;
    color: #BF9C5C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tailar-about__item:hover .tailar-about__item-icon {
    background-color: #BF9C5C;
    color: #ffffff;
}

.tailar-about__item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #133244;
    margin: 0;
}

.tailar-about__bullets {
    margin-top: 30px;
    padding-left: 20px;
}

.tailar-about__bullets li {
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
    list-style-type: square;
}

.tailar-about__footer {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tailar-about__phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tailar-about__phone-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #BF9C5C;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.tailar-about__phone-text p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777777;
    margin: 0 0 2px 0;
}

.tailar-about__phone-text h4 a {
    font-size: 16px;
    font-weight: 700;
    color: #133244;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tailar-about__phone-text h4 a:hover {
    color: #BF9C5C;
}

/* 2. Services / Collections Section Styling */
.tailar-services {
    padding: 120px 0;
    background-color: #F6F1EE;
}

.tailar-service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.tailar-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(19, 50, 68, 0.08);
}

.tailar-service-card__thumb {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #F6F1EE;
}

.tailar-service-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tailar-service-card:hover .tailar-service-card__thumb img {
    transform: scale(1.08);
}

.tailar-service-card__body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tailar-service-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #133244;
    margin-bottom: 12px;
}

.tailar-service-card__title a {
    color: inherit;
    text-decoration: none;
}

.tailar-service-card__title a:hover {
    color: #BF9C5C;
}

.tailar-service-card__desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tailar-service-card__btn {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #BF9C5C;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.tailar-service-card__btn:hover {
    color: #133244;
}

/* 3. Why Choose Us Section Styling */
.tailar-choose {
    padding: 120px 0;
    background-color: #ffffff;
}

.tailar-choose__item-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tailar-choose__item {
    display: flex;
    gap: 20px;
}

.tailar-choose__item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F6F1EE;
    color: #BF9C5C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.tailar-choose__item-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #133244;
    margin-bottom: 6px;
}

.tailar-choose__item-content p {
    font-size: 14px;
    color: #777777;
    margin: 0;
}

.tailar-choose__quote-box {
    margin-top: 35px;
    background-color: #F6F1EE;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid #BF9C5C;
}

.tailar-choose__quote-box img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.tailar-choose__quote-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #133244;
    margin-bottom: 4px;
}

.tailar-choose__quote-content p {
    font-size: 13px;
    font-style: italic;
    color: #555555;
    margin: 0;
}

.tailar-choose__img-box {
    position: relative;
    height: 480px;
}

.tailar-choose__img-main {
    position: absolute;
    width: 70%;
    height: 80%;
    left: 0;
    top: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.tailar-choose__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tailar-choose__img-sub1 {
    position: absolute;
    width: 45%;
    height: 55%;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 6px solid #ffffff;
    z-index: 2;
}

.tailar-choose__img-sub1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 4. Steps Section Styling */
.steps-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 120px 0;
    background-color: #ffffff;
}

/* 5 Columns Layout for Bootstrap */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.step-card {
    background: #F6F1EE;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(191, 156, 92, 0.12);
    border-color: #BF9C5C;
    background-color: #ffffff;
}

.step-card__number {
    font-size: 36px;
    font-weight: 800;
    color: rgba(191, 156, 92, 0.2);
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.step-card:hover .step-card__number {
    color: #BF9C5C;
    transform: scale(1.1);
}

.step-card__thumb {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.step-card:hover .step-card__thumb {
    border-color: #BF9C5C;
    transform: rotate(5deg);
}

.step-card__thumb img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.step-card:hover .step-card__thumb img {
    transform: scale(1.15);
}

.step-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.step-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #133244;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-card__desc {
    font-size: 13px;
    color: #777777;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Connective lines for timeline on desktop */
@media (min-width: 992px) {
    .steps-row-container {
        position: relative;
    }
    .steps-row-container::before {
        content: '';
        position: absolute;
        top: 90px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: repeating-linear-gradient(to right, rgba(191, 156, 92, 0.15), rgba(191, 156, 92, 0.15) 10px, transparent 10px, transparent 20px);
        z-index: 0;
    }
}

/* 5. Our Story (Video & Counters) Section Styling */
.tailar-story {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #ffffff;
}

.tailar-story::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(19, 50, 68, 0.9); /* Dark navy overlay */
    z-index: 1;
}

.tailar-story .container {
    position: relative;
    z-index: 2;
}

.tailar-story .tailar-main-title {
    color: #ffffff;
}

.tailar-story .tailar-desc {
    color: rgba(255,255,255,0.75);
}

.tailar-story__list {
    margin-top: 30px;
    padding-left: 20px;
}

.tailar-story__list li {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
    list-style-type: disc;
}

.tailar-story__video-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 250px;
}

.tailar-story__play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #BF9C5C;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 0 0 rgba(191, 156, 92, 0.5);
    animation: tailarPulse 2s infinite;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tailar-story__play-btn:hover {
    background-color: #ffffff;
    color: #BF9C5C;
}

@keyframes tailarPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(191, 156, 92, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(191, 156, 92, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(191, 156, 92, 0);
    }
}

.tailar-story__counters {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}

.tailar-counter-item {
    text-align: center;
}

.tailar-counter-item h2 {
    font-size: 48px;
    font-weight: 800;
    color: #BF9C5C;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.tailar-counter-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 6. Testimonials Section Styling */
.tailar-testimonials {
    padding: 120px 0;
    background-color: #F6F1EE;
}

.tailar-testi__img-box {
    position: relative;
    padding-right: 30px;
}

.tailar-testi__badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #BF9C5C;
    color: #ffffff;
    border-radius: 12px;
    padding: 20px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(191, 156, 92, 0.2);
    z-index: 5;
}

.tailar-testi__badge h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 2px;
}

.tailar-testi__badge p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.tailar-testi__slider-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
}

.tailar-testi__stars {
    color: #BF9C5C;
    font-size: 14px;
    margin-bottom: 20px;
}

.tailar-testi__content {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    font-style: italic;
    margin-bottom: 30px;
}

.tailar-testi__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tailar-testi__author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.tailar-testi__author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #133244;
    margin-bottom: 4px;
}

.tailar-testi__author-info p {
    font-size: 13px;
    color: #777777;
    margin: 0;
}

/* Swiper pagination customization for testimonials */
.tailar-testimonials .swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 30px !important;
    text-align: left !important;
}

.tailar-testimonials .swiper-pagination-bullet {
    background-color: #133244 !important;
}

.tailar-testimonials .swiper-pagination-bullet-active {
    background-color: #BF9C5C !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* 7. Autoplay Video Section Styling */
.tailar-video-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.tailar-video__player-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(19, 50, 68, 0.15);
    background-color: #133244;
    aspect-ratio: 16/9;
}

.tailar-video__player-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tailar-video__placeholder-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19, 50, 68, 0.95), rgba(191, 156, 92, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 30px;
    text-align: center;
    z-index: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.tailar-video__placeholder-icon {
    font-size: 48px;
    color: #BF9C5C;
    margin-bottom: 15px;
    animation: tailarPulse 2s infinite;
}

.tailar-video__placeholder-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.tailar-video__placeholder-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}