.elementor-1280 .elementor-element.elementor-element-8db38e7{--display:flex;}.elementor-1280 .elementor-element.elementor-element-66b8583{--spacer-size:23px;}.elementor-1280 .elementor-element.elementor-element-8eb4b38{--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;}.elementor-widget-theme-post-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}/* Start custom CSS for html, class: .elementor-element-ad3b13e *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comprs', sans-serif;
    line-height: 1.6;
    color: #3B1F89;
    background-color: #F7F4FF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main content starts at top since no header */
.main {
    padding-top: 0;
}

/* Page Title Section */
.page-title {
    background: linear-gradient(135deg, #7151C6 0%, #8B6DD8 100%);
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 0;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive adjustments for page title */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .page-title {
        padding: 1.5rem 0;
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F7F4FF 0%, #E8E0FF 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #7151C6;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    color: #3B1F89;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 100%;
    max-width: 280px;
    height: 220px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(113, 81, 198, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(113, 81, 198, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.product-image:hover::before {
    left: 100%;
}

.product-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(113, 81, 198, 0.4);
    border: 3px solid #FAB942;
}

/* Card container for images */
.promise-image {
    position: relative;
    padding: 10px;
    background: linear-gradient(135deg, rgba(113, 81, 198, 0.1), rgba(250, 185, 66, 0.1));
    border-radius: 25px;
    transition: all 0.3s ease;
}

.promise-image:hover {
    background: linear-gradient(135deg, rgba(113, 81, 198, 0.2), rgba(250, 185, 66, 0.2));
    transform: translateY(-5px);
}

/* Loading animation for images */
@keyframes imageLoad {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.product-image {
    animation: imageLoad 0.6s ease-out;
}

/* Promises Section */
.promises {
    padding: 5rem 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #7151C6;
    margin-bottom: 4rem;
}

.promise-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.promise-item.reverse {
    direction: rtl;
}

.promise-item.reverse > * {
    direction: ltr;
}

.promise-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #7151C6;
    margin-bottom: 1.5rem;
}

.promise-text {
    font-size: 1.1rem;
    color: #3B1F89;
    line-height: 1.8;
}

.promise-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Call to Action Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #7151C6 0%, #8B6DD8 100%);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #FAB942;
    color: #3B1F89;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(250, 185, 66, 0.3);
}

.cta-button:hover {
    background-color: #FFD166;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 185, 66, 0.4);
}



/* Responsive Design */
@media (max-width: 768px) {
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .promise-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .promise-item.reverse {
        direction: ltr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .placeholder-image {
        height: 300px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .promise-title {
        font-size: 2rem;
    }
    

}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced animations for sections */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations to sections */
.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-image {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.promise-item:nth-child(odd) .promise-content {
    animation: slideInLeft 0.8s ease-out;
}

.promise-item:nth-child(odd) .promise-image {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.promise-item:nth-child(even) .promise-content {
    animation: slideInRight 0.8s ease-out;
}

.promise-item:nth-child(even) .promise-image {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

/* Enhanced hover effects for promise items */
.promise-item {
    transition: all 0.3s ease;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.promise-item:hover {
    background: linear-gradient(135deg, rgba(113, 81, 198, 0.05), rgba(250, 185, 66, 0.05));
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(113, 81, 198, 0.1);
}

/* Pulse animation for CTA button */
@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(250, 185, 66, 0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(250, 185, 66, 0.5);
    }
    100% {
        box-shadow: 0 5px 15px rgba(250, 185, 66, 0.3);
    }
}

.cta-button {
    animation: pulse 2s infinite;
}

/* Color transition effects */
.promise-title {
    transition: color 0.3s ease;
}

.promise-item:hover .promise-title {
    color: #FAB942;
    text-shadow: 0 0 10px rgba(250, 185, 66, 0.3);
}

/* Responsive image adjustments */
@media (max-width: 768px) {
    .product-image {
        max-width: 240px;
        height: 190px;
    }
    
    .promise-image {
        padding: 5px;
    }
}

@media (max-width: 480px) {
    .product-image {
        max-width: 200px;
        height: 160px;
    }
}/* End custom CSS */