.contact-hero-banner {
    background: linear-gradient(135deg, #6a1b9a, #4a148c);
    padding: 60px 0;
    margin-bottom: 50px;
}

.contact-banner-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.contact-item h4 {
    margin-bottom: 10px;
    color: white;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 20px;
    }
}
.animated-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(135deg, #6a1b9a, #4a148c);
    box-shadow: 0 8px 30px rgba(106, 27, 154, 0.3);
    transition: box-shadow 0.3s ease;
}

.animated-banner:hover {
    box-shadow: 0 12px 40px rgba(106, 27, 154, 0.4);
}

.banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease-in-out;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.banner-1 {
    transform: translateX(0);
    animation: slideContent 10s infinite;
}

.banner-2 {
    transform: translateX(100%);
    animation: slideContent 10s infinite;
    animation-delay: 5s;
}

@keyframes slideContent {
    0%, 45% {
        transform: translateX(0);
    }
    50%, 95% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.banner-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.banner-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.contact-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-details span {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-details i {
    font-size: 1.2rem;
}

.icon-box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    margin: 15px 0;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.icon-box i {
    font-size: 2rem;
}

.icon-box span {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .animated-banner {
        height: 400px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .icon-box {
        margin: 10px 0;
    }
}

