.elementor-29 .elementor-element.elementor-element-2683dde{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-29 .elementor-element.elementor-element-8629200{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-29 .elementor-element.elementor-element-8629200:not(.elementor-motion-effects-element-type-background), .elementor-29 .elementor-element.elementor-element-8629200 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0F0F0F;}.elementor-29 .elementor-element.elementor-element-8b5a147{--display:flex;}.elementor-29 .elementor-element.elementor-element-af5e6d8{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-29 .elementor-element.elementor-element-6cb4ac1{--display:flex;}@media(min-width:768px){.elementor-29 .elementor-element.elementor-element-2683dde{--content-width:1600px;}.elementor-29 .elementor-element.elementor-element-8629200{--content-width:1600px;}.elementor-29 .elementor-element.elementor-element-af5e6d8{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-7e34d04 */body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f2f2f2;
}

.contact-section {
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-box {
    flex: 1 1 300px;
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    transition: 0.4s ease;
    border: 2px solid transparent;
}

/* Glow Border */
.contact-box:hover {
    border: 2px solid #D4AF37;
    box-shadow: 0 0 15px #D4AF37,
                0 0 30px rgba(212,175,55,0.6);
    transform: translateY(-10px);
}

/* Icon Style */
.icon {
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

/* Icon Glow on Hover */
.contact-box:hover .icon {
    text-shadow: 0 0 10px #D4AF37,
                 0 0 20px rgba(212,175,55,0.7);
}

/* Headings */
.contact-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Text */
.contact-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-box {
        padding: 40px 20px;
    }
}/* End custom CSS */