:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --light-color: #f1f5f9;
    --dark-color: #1e293b;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #444;
    overflow-x: hidden;
}

/* Header Banner */
.hero-banner {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(30, 64, 175, 0.95)), url('images/contact-banner.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-banner h1 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-banner p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Contact Cards */
.contact-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 30px 20px;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #2563eb
    opacity: 0.7;
}

.contact-card i {
    color: #2563eb
    margin-bottom: 20px;
}

.contact-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color:  #1e293b;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
}

/* Contact Form Section */
.form-section {
    position: relative;
    background-color: #fff;
    padding: 80px 0;
}

.contact-form-container {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 30px;
    position: relative;
}

.form-header h2 {
    font-weight: 600;
    color:  #1e293b;
    margin-bottom: 15px;
    position: relative;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #2563eb
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color:  #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.btn-primary {
    background-color: #2563eb
    border-color: #2563eb
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Office Hours */
.info-block {
    padding: 40px;
    background-color:#f1f5f9;
    border-radius: 15px;
    height: 100%;
}

.hours-heading {
    position: relative;
    color:  #1e293b;
    margin-bottom: 25px;
    font-weight: 600;
}

.hours-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #2563eb
}

.hours-table tr {
    border-color: rgba(0, 0, 0, 0.05);
}

.hours-table td {
    padding: 12px 5px;
    color: #555;
}

.hours-table td:last-child {
    font-weight: 500;
    color:  #1e293b;
}

/* Map */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-banner {
        padding: 80px 0;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .info-block {
        padding: 30px;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        padding: 60px 0;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .contact-card {
        margin-bottom: 20px;
    }
    
    .form-section {
        padding: 60px 0;
    }
}

/* Alert styling */
.alert {
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    border: none;
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
}

.alert-danger {
    background-color: #fee2e2;
    color: #b91c1c;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }