@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.footer {
    background: linear-gradient(135deg, #141E30, #243B55);
    color: #eee;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 20px 0;
    transition: transform 0.3s, background-color 0.3s;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}
.footer-column:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}
.footer-column h3 {
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 3px solid #ff6347;
    display: inline-block;
    padding-bottom: 5px;
    color: #ff6347;
    position: relative;
}
.footer-column h3::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #ff6347, #e5533b);
    animation: animateUnderline 2s infinite;
}
@keyframes animateUnderline {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}
.footer-column ul li a:hover {
    color: #ff6347;
    text-decoration: underline;
}
.footer-column address {
    font-style: normal;
    line-height: 1.8;
    color: #ccc;
}
.footer-column address a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-column address a:hover {
    color: #ff6347;
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    background-color: #111;
}
.footer-bottom p {
    margin: 0;
    color: #ccc;
    font-size: 14px;
}
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.social-icons a {
    margin: 0 15px;
    color: #ccc;
    font-size: 20px;
    transition: color 0.3s, transform 0.3s;
}
.social-icons a:hover {
    color: #ff6347;
    transform: scale(1.2);
}
.newsletter {
    margin-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.newsletter input[type="email"] {
    padding: 15px;
    border: none;
    border-radius: 30px;
    width: 300px;
    margin-bottom: 10px;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}
.newsletter input[type="email"]:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.newsletter button {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff6347, #e5533b);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.newsletter button:hover {
    background: linear-gradient(135deg, #e5533b, #ff6347);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6347, #243B55, #ff6347, #243B55);
    background-size: 400% 400%;
    opacity: 0.1;
    animation: gradientBG 15s ease infinite;
    z-index: -1;
}
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.animated-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #ff6347, #243B55) 1;
    animation: borderBG 10s linear infinite;
    z-index: -1;
}
@keyframes borderBG {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.footer-column::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.5s;
    pointer-events: none;
    z-index: -1;
    transform: rotate(45deg);
}
.footer-column:hover::after {
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
}
.footer-column::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: #ff6347;
    transition: width 0.3s ease;
}
.footer-column:hover::before {
    width: 100%;
}