.elementor-6371 .elementor-element.elementor-element-edd014f{width:100%;max-width:100%;align-self:center;column-gap:0px;}.elementor-6371 .elementor-element.elementor-element-edd014f .elementor-drop-cap{margin-inline-end:10px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for text-editor, class: .elementor-element-edd014f *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main content area - for demo purposes */
.main-content {
    flex: 1;
    padding: 40px;
    text-align: center;
    background-color: #f5f5f5;
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding-top: 60px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* Footer Column Styles */
.footer-column h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column h3 i {
    color: #ff6b35;
    font-size: 20px;
}

/* About Column */
.about-column .about-text {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 14px;
}

.about-column .gstin {
    margin-bottom: 10px;
    font-size: 14px;
}

.about-column .location {
    color: #ff6b35;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 14px;
    color: #ff6b35;
    width: 20px;
}

/* Contact Column */
.contact-info p {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: #ff6b35;
    width: 20px;
    font-size: 16px;
}

.contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff6b35;
}

/* Social Links */
.social-links {
    margin-top: 20px;
}

.social-links h4 {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links h4 i {
    color: #ff6b35;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2a2a2a;
    border-radius: 50%;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff6b35;
    color: #fff;
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 18px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #0d0d0d;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom-content p {
    font-size: 14px;
    color: #b0b0b0;
}

.footer-bottom-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff6b35;
}

.footer-bottom-links span {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding-top: 40px;
    }
    
    .footer-column h3 {
        font-size: 16px;
    }
    
    .footer-links a,
    .contact-info p,
    .about-column .about-text {
        font-size: 13px;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
    }
    
    .social-icons i {
        font-size: 16px;
    }
}/* End custom CSS */