.elementor-195 .elementor-element.elementor-element-ad30d75{--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;}.elementor-195 .elementor-element.elementor-element-1dedf4a{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-1dedf4a *//* ---- 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%;
    }
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.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: #f7f2f9;
}


/* ---- 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;
}


/* ---- Product Specific Styles & Fixes ---- */
ul.listed {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

ul.listed li {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Enhacing the product image floating animation for a premium feel */
.text-center img[alt="Extra Strong Cement Bag"] {
    animation: floatImage 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.text-center img[alt="Extra Strong Cement Bag"]:hover {
    transform: scale(1.05);
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}/* End custom CSS */