.elementor-14 .elementor-element.elementor-element-ba85242{--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-14 .elementor-element.elementor-element-5479e52{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-14 .elementor-element.elementor-element-5479e52.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}:root{--page-title-display:none;}@media(min-width:768px){.elementor-14 .elementor-element.elementor-element-5479e52{--width:100%;}}/* Start custom CSS for text-editor, class: .elementor-element-5d0feb2 *//* --- Services Grid Container --- */
.services-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Card Item (Outer Wrapper for Gradient Border) --- */
.service-card-item {
    flex: 0 0 calc(33.333% - 30px); 
    min-width: 300px;
    display: flex;
    /* नॉर्मलला दिसणारी गोल्डन-व्हाईट मिक्स बॉर्डर */
    background: linear-gradient(135deg, #f3e5ab 0%, #fff 50%, #f3e5ab 100%);
    border-radius: 20px;
    padding: 2px; /* बॉर्डरची जाडी */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-services-section {
    padding: 100px 0;
    background: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-main-title {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    background: linear-gradient(135deg, #aa771c, #800000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 10px 0;
}

/* --- Card Inner (White Body) --- */
.card-inner {
    background: #fff;
    padding: 45px 30px;
    border-radius: 18px; /* आतील कोपरे जुळण्यासाठी */
    text-align: center;
    width: 100%;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 50px;
    color: #aa771c;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.service-card-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: #800000;
    margin-bottom: 15px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* --- Hover Effect: Golden Glow & Translation --- */
.service-card-item:hover {
    transform: translateY(-12px);
    /* होव्हर केल्यावर बॉर्डरचा रंग थोडा डार्क होईल */
    background: linear-gradient(135deg, #aa771c 0%, #f3e5ab 100%);
}

.service-card-item:hover .card-inner {
    /* होव्हर केल्यावर येणारी प्रीमियम गोल्डन-ऑरेंज शॅडो */
    box-shadow: 0 20px 40px rgba(170, 119, 28, 0.25), 
                0 0 15px rgba(243, 229, 171, 0.4);
}

.service-card-item:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .service-card-item {
        flex: 0 0 calc(50% - 30px); /* टॅब्लेटवर २ कार्ड्स */
    }
}

@media (max-width: 768px) {
    .service-card-item {
        flex: 0 0 100%; /* मोबाईलवर १ कार्ड */
    }
    .service-main-title {
        font-size: 32px;
    }
}/* End custom CSS */