/* body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
        } */

.footer-top-section .footer-section {
    background-color: #f5f5f5;
    padding: 00;
    padding-top: 25px;
}

.footer-top-section .company-logo-section {
    text-align: center;
    margin-bottom: 0;
}

.footer-top-section .company-logo-section p {
    color: #666;
    font-size: 20px;
    margin-bottom: -1px;
    font-weight: 800;
}

.footer-top-section .company-logo img {
    max-width: 199px;
    height: auto;
}

.footer-top-section .tagline {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

.footer-top-section .features-container {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
    /* gap: -9px; */
    margin-top: -54px;
}

.footer-top-section .feature-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.footer-top-section .feature-box:hover {
    transform: translateY(-5px);
}

.footer-top-section .feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: #E91E63;
}

.footer-top-section .feature-icon i {
    display: block;
}

.footer-top-section .feature-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.footer-top-section .feature-title .highlight {
    color: #e91e63;
}

.footer-top-section .feature-title .blue-highlight {
    color: #0089c9;
}

.footer-top-section .feature-description {
    color: #666;
    font-size: 14px;
}

.feedback-btn {
    position: fixed;
    right: 21px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    background: linear-gradient(135deg, #E91E63 0%, #FF9800 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    z-index: 1000;
    border-radius: 5px 5px 0 0;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
}

.feedback-btn:hover {
    background-color: #006ba3;
}

@media (max-width: 768px) {
    .feedback-btn {
        position: fixed;
        right: 22px;
        top: 37%;
    }

    .footer-top-section .features-container {
        flex-direction: row;
        margin-top: 4px;
    }

    .footer-top-section .feature-title {
        font-size: 15px;
    }

    .footer-top-section .feature-box {
        min-width: 50%;
    }

    .footer-top-section .company-logo img {
        max-width: 280px;
    }
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: white;
    color: #0088b8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer Links Section */
.footer-links {
    /* background: #004d66; */
    background: linear-gradient(135deg, #E91E63 0%, #FF9800 100%);
    padding: 50px 0 30px;
    color: white;
}

.footer-links h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    border-radius: 9px;
}

.footer-links ul li a:hover {
    color: white;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    background: #E91E63;
    padding: 20px 0;
    color: #b0b0b0;
    font-size: 13px;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E91E63 0%, #FF9800 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    z-index: 1000;
}

.chat-button:hover {
    background: #006b96;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .newsletter-section .row {
        text-align: center;
    }

    .newsletter-form {
        margin: 20px auto;
    }

    .social-icons {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links .col-md-3 {
        margin-bottom: 30px;
    }

    .footer-links ul {
        display: none;
        margin-top: 0;
    }

    .footer-links .footer-section.open ul {
        display: block;
        margin-top: 10px;
        margin-left: 26px;
        list-style: inside;
    }

    .footer-links h5 {
        cursor: pointer;
        position: relative;
        padding-right: 25px;
    }

    .footer-links h5 .fa-chevron-down {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        transition: transform 0.3s;
    }

    .footer-links .footer-section.open h5 .fa-chevron-down {
        transform: translateY(-50%) rotate(180deg);
    }

    .col-md-3.col-12.footer-section h5,
    .footer-links ul li {
        text-align: justify;
    }

}