﻿body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
  
}

.bg-footer {
    background: #ddd;
    position: relative;
    overflow: hidden;
    padding: 60px 0 0;
    margin-top: 100px;
    border-top: 1px solid #d0d0d0;
}

.container {
    position: relative;
    z-index: 2;
}

.footer-content {
    padding-bottom: 40px;
}

.footer-section {
    margin-bottom: 30px;
}

    .footer-section h5 {
        color: #333;
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 25px;
        text-transform: none;
        letter-spacing: 0;
    }

.logo-section {
    margin-bottom: 30px;
}

.logo-img {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.tagline {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.subscribe-section h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    max-width: 300px;
}

.subscribe-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
    background: white;
    transition: all 0.3s ease;
}

    .subscribe-input:focus {
        outline: none;
        border-color: #4CAF50;
        box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
    }

.subscribe-btn {
    padding: 12px 20px;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .subscribe-btn:hover {
        background: #555;
        transform: translateY(-1px);
    }

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-list li {
        margin-bottom: 12px;
    }

    .footer-list a {
        color: #666;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-block;
    }

        .footer-list a:hover {
            color: #333;
            transform: translateX(3px);
        }

.contact-info {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

    .contact-info .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

        .contact-info .contact-item i {
            color: #333;
            font-size: 1.1rem;
            width: 20px;
        }

.footer-social-menu {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

    .footer-social-menu a {
        width: 40px;
        height: 40px;
        background: #333;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

        .footer-social-menu a:hover {
            background: #555;
            transform: translateY(-2px);
        }

        .footer-social-menu a.facebook:hover {
            background: #1877f2;
        }

        .footer-social-menu a.linkedin:hover {
            background: #0077b5;
        }

        .footer-social-menu a.twitter:hover {
            background: #1da1f2;
        }

        .footer-social-menu a.instagram:hover {
            background: #e4405f;
        }



.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.copyright-links {
    display: flex;
    gap: 20px;
}

    .copyright-links a {
        color: #666;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .copyright-links a:hover {
            color: #333;
        }

.address-box {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    border-left: 4px solid #4CAF50;
}

/* Newsletter subscription modal trigger button */
.footer-list a[data-bs-toggle="modal"] {
    background: #4CAF50;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    margin-top: 5px;
}

    .footer-list a[data-bs-toggle="modal"]:hover {
        background: #45a049;
        transform: translateY(-1px);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .bg-footer {
        padding: 40px 0 0;
    }

    .footer-section {
        margin-bottom: 35px;
        text-align: center;
    }

    .subscribe-form {
        flex-direction: column;
        max-width: 100%;
    }

    .subscribe-input {
        margin-bottom: 10px;
    }

    .footer-social-menu {
        justify-content: center;
    }

    .copyright-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .copyright-links {
        justify-content: center;
    }
}
