* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    padding: 20px;
    background: #f5f5f5;
}

footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 60px 20px 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #10b981, #06b6d4, #3b82f6);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 20px;
    animation: fall linear infinite;
    pointer-events: none;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(600px) rotate(360deg);
        opacity: 0;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    background: linear-gradient(135deg, #60a5fa, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #06b6d4);
    border-radius: 2px;
    transition: width 0.3s;
}

.footer-section:hover h3::after {
    width: 80px;
}

.footer-section p,
.footer-section ul {
    line-height: 1.8;
    color: #cbd5e1;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    transition: transform 0.2s;
}

.footer-section ul li::before {
    content: '❄';
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-size: 12px;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.footer-section a:hover {
    color: #06b6d4;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.02);
}

.contact-item:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateX(5px);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    color: #06b6d4;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.social-links a:hover {
    transform: translateY(-8px) scale(1.1);
    border-color: transparent;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.social-links a:hover svg {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    background-color: #fff;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #000;
    font-family: var(--p);
    font-size: 14px;
    background: rgba(0, 0, 0, 0.2);
}
.footer-bottomp {
    margin-bottom: 0px;
}


.company-name {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #60a5fa, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.company-tagline {
    font-size: 13px;
    color: #64748b;
    font-style: italic;
    margin-top: 5px;
}

.temperature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(6, 182, 212, 0); }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer {
        padding: 40px 15px 0;
    }

    .company-name {
        font-size: 22px;
    }
    .footer-bottomp{
        font-size: 10px;
        padding: 5px 10px;
    }
}

