.elementor-718 .elementor-element.elementor-element-20a44ed{--display:flex;--min-height:0px;--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;box-shadow:3px -98px 100px -23px #531879;}.elementor-718 .elementor-element.elementor-element-9d81163{width:var( --container-widget-width, 101.911% );max-width:101.911%;--container-widget-width:101.911%;--container-widget-flex-grow:0;}.elementor-718 .elementor-element.elementor-element-9d81163.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-9d81163 *//* General body styles for visibility */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0d0d1e; /* Assuming a very dark background for the whole page */
}

/* Footer Section Styling */
.footer-unique-section {
    background-color: #160A1e; /* Dark purple background from the screenshot */
    color: #ffffff;
    padding: 60px 20px; /* Ample padding */
}

.footer-unique-container {
    max-width: 1200px; /* Max width for content alignment */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 48px; /* Space between main sections */
}

/* Brand Section (Logo, Name, Social) */
.footer-unique-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align text and logo to the left */
    flex-shrink: 0; /* Prevent shrinking */
    
}

.footer-unique-logo {
    width: 120px; /* Adjust as per your logo size */
    height: auto;
    margin-bottom: 50px;
}

.footer-unique-academy-name {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    color: #a766ff; /* Purple color for the name */
}

.footer-unique-line {
    width: 40px; /* Small line under the name */
    height: 1px;
    background-color: #ffffff; /* Purple line */
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-unique-follow-us {
    font-size: 16px;
    color: #ffffff;
}

.footer-unique-social-icons {
    display: flex;
    gap: 16px; /* Space between social icons */
    padding-top: 16px;
}

.footer-unique-social-icons a {
    color: #ffffff; /* White icons */
    font-size: 20px;
    background-color: #B063E0; /* Purple background for icons */
    width: 35px;
    height: 35px;
    border-radius: 5px; /* Slightly rounded corners */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.footer-unique-social-icons a:hover {
    background-color: #8f4dcc; /* Darker purple on hover */
}

/* Links Group (Courses, Quick Links, Company) */
.footer-unique-links-group {
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap */
    gap: 40px; /* Space between link columns */
    flex-grow: 1; /* Allow this group to take available space */
    justify-content: space-between; /* Distribute columns evenly */
    margin-left: 10px;
}

.footer-unique-column {
    display: flex;
    flex-direction: column;
    min-width: 180px; /* Minimum width for columns before wrapping */
}

.footer-unique-heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-unique-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-unique-list li {
    margin-bottom: 10px; /* Space between list items */
}

.footer-unique-list a {
    color: #cccccc; /* Lighter color for links */
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-unique-list a:hover {
    color: #a766ff; /* Purple on hover */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-unique-container {
        flex-direction: column;
        align-items: center; /* Center items in column layout */
        text-align: center;
        gap: 60px; /* More space when stacked */
    }

    .footer-unique-brand {
        align-items: center; /* Center brand elements */
    }

    .footer-unique-line {
        margin: 15px auto 20px auto; /* Center the line */
    }

    .footer-unique-social-icons {
        justify-content: center; /* Center social icons */
    }

    .footer-unique-links-group {
        width: 100%; /* Take full width */
        justify-content: space-around; /* Distribute columns when wrapped */
        gap: 30px; /* Adjust gap for smaller screens */
    }

    .footer-unique-column {
        min-width: unset; /* Remove min-width to allow more flexibility */
        width: calc(33% - 20px); /* Approx 3 columns on tablet if space allows */
        text-align: left; /* Align text back to left for columns */
    }
}

@media (max-width: 768px) {
    .footer-unique-links-group {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center stacked columns */
    }

    .footer-unique-column {
        width: 100%; /* Each column takes full width */
        text-align: center; /* Center column content */
    }

    .footer-unique-heading {
        margin-bottom: 10px; /* Reduce heading margin */
    }

    .footer-unique-list li {
        margin-bottom: 5px; /* Reduce list item margin */
    }

    .footer-unique-section {
        padding: 40px 15px; /* Reduce padding for smaller screens */
    }
}

@media (max-width: 480px) {
    .footer-unique-academy-name {
        font-size: 20px;
    }

    .footer-unique-heading {
        font-size: 18px;
    }

    .footer-unique-list a {
        font-size: 14px;
    }
}/* End custom CSS */