.elementor-203 .elementor-element.elementor-element-1050271{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-aad5fa3 *//* ---- Essential Grid & Layout CSS (from common.css) ---- */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.row>* {
    padding: 0 15px;
}

.col-6 {
    width: 50%;
}

.col-12 {
    width: 100%;
}

@media (min-width: 992px) {
    .col-lg-6 {
        width: 50%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.333333%;
    }
}

@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}


/* ---- Banner Section ---- */
.banner-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 0 0 20px 20px;
}

.banner-section img {
    width: 100%;
    display: block;
}

.banner-section.inn-header::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1;
    opacity: 0.4;
}

.banner-section.inn-header .caption {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.banner-section.inn-header .caption h1 {
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    font-size: 48px;
    margin: 0;
}


/* ---- Section Typography & Spacing ---- */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #73308a;
    margin-bottom: 15px;
    margin-top: 0;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.bg-light-purple {
    background-color: #fcf8fd;
}


/* ---- Custom Button ---- */
.custom-btn {
    background-color: #ffdd24;
    color: #000 !important;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    font-size: 17px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
}

.custom-btn:hover {
    background-color: #e6c800;
    transform: translateY(-2px);
}

.custom-btn i {
    margin-right: 8px;
}


/* ---- Premium Product Grid Styles ---- */
.paver-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.paver-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(115, 48, 138, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(115, 48, 138, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.paver-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #73308a, #ffdd24);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.paver-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(115, 48, 138, 0.15);
}

.paver-card:hover::before {
    opacity: 1;
}

.paver-card-img-wrapper {
    background: #ffffff;
    border: 1px solid rgba(115, 48, 138, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.paver-card-img-wrapper::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: #ffdd24;
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.paver-card:hover .paver-card-img-wrapper::after {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0.15;
}

.paver-card img {
    max-height: 140px;
    max-width: 100%;
    z-index: 2;
    position: relative;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.15));
}

.paver-card:hover img {
    transform: scale(1.1) translateY(-8px);
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.25));
}

.paver-card h4 {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.paver-card:hover h4 {
    color: #73308a;
}/* End custom CSS */