.elementor-62 .elementor-element.elementor-element-ac8953d{--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-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-65324c9 *//* Fontawesome for UI icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Main Footer Parent Element */
.main-footer {
    width: 100%;
    background-color: #052d61; /* Rich Dark Navy Blue Color */
    padding: 70px 8% 30px 8%;
    color: #ffffff;
    font-family: sans-serif;
}

.footer-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

/* --- TOP ROW STYLING --- */
.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
}

/* Custom Vector/PNG Logo Block alignment */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

/* FIXED: PNG Logo resizing to fit perfectly into header bar */
.footer-logo-img {
    height: 10px; /* Restricts the vertical footprint */
    width: 150px;  
    border-radius: 15px;
    /* Maintains proper proportion aspect ratio */
    object-fit: cover;
    background-color: #ffffff; /* White background added for image clarity against dark theme */
    padding: 5px;
    border-radius: 6px;
}

.logo-text {
    font-size: 0px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1;
    color: #ffffff;
}

.logo-text span {
    display: block;
    font-size: 0px;
    font-weight: 600;
    color: #a0aec0;
    margin-top: 4px;
    letter-spacing: 1px;
}

/* Header Action Call Button */
.footer-cta-btn {
    background-color: #0084ff;
    color: #ffffff;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.footer-cta-btn:hover {
    background-color: #ffffff;
    color: #052d61;
}

/* Inner Horizontal Lines */
.footer-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0;
}

/* --- MIDDLE MATRIX GRID --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding: 60px 0;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Column One Paragraph */
.about-summary p {
    color: #cbd5e0;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Rounded Social Buttons Shape */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    color: #052d61;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s, color 0.3s;
}

.social-link:hover {
    background-color: #0084ff;
    color: #ffffff;
}

/* Center Links Columns Setup */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s, transform 0.2s;
}

/* Injected blue chevron arrow using CSS pseudo elements */
.footer-links li a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0084ff;
    margin-right: 12px;
    font-size: 14px;
    background: rgba(0, 132, 255, 0.1);
    width: 22px;
    height: 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* --- CONTACT INFO PANEL (COL 4) --- */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    color: #0084ff;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 14px;
}

.contact-text span {
    display: block;
    font-size: 12px;
    color: #a0aec0;
    margin-bottom: 2px;
}

.contact-text strong {
    font-size: 14.5px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
}

/* --- FOOTER BOTTOM ROW --- */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0 0 0;
    font-size: 14px;
}

.sub-links {
    display: flex;
    gap: 25px;
}

.sub-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

.sub-links a:hover {
    color: #0084ff;
}

.copyright-text {
    color: #cbd5e0;
}

/* --- RESPONSIVE DESIGN BREAKPOINTS --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .main-footer {
        padding: 50px 5% 20px 5%;
    }
    .footer-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer-cta-btn {
        width: 100%;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }
    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .sub-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}/* End custom CSS */