/* Apply Google Font */
.footer-section {
    font-family: 'Poppins', sans-serif;
}

/* General Footer Styling with Rounded Shape */
.minimal-footer {
    color: #c9d1d9; /* Light gray for readability */
    font-family: 'Arial', sans-serif;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 50px 50px 0 0; /* Rounded top corners */
    background: linear-gradient(135deg, #0d1117, #020024 80%); /* Gradient background */
    transition: background 0.2s ease; /* Smooth transition for background changes */
}



.footer-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    max-width: 250px;
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease; /* Smooth hover effects */
    background: transparent; /* Minimal look with no visible background initially */
    border-radius: 12px; /* Rounded corners */
    border: 2px solid transparent; /* Invisible border by default */
}

/* Hover Effect for Sections */
.footer-section:hover {
    background: rgba(255, 255, 255, 0.05); /* Slightly brighter background on hover */
    transform: translateY(-3px); /* Subtle lift */
    border-color: #58a6ff; /* Soft blue border on hover */
}

.footer-section h2 {
    color: #58a6ff; /* Soft blue accent for headers */
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Social Media Section */
.footer-social {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-social h3 {
    color: #8b949e; /* Subtle accent for section title */
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    color: #58a6ff; /* Soft blue for icons */
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
    color: #ffffff; /* White on hover */
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #21262d;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: #bec1c5;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        max-width: 100%;
    }
}


