body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #333;
}

.contact-hero {
    background: url('../images/img5.png') center/cover no-repeat;
    height: 300px;
    position: relative;
}

.contact-hero .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.contact-hero h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form h2 {
    color: #006C93;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    margin-top: 2px;
    color: #006C93; 
}

.contact-form .form-control {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.contact-form .form-control:focus {
    border-color: #006C93;
    box-shadow: 0 0 0 0.25rem rgba(0, 108, 147, 0.25);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-primary {
    background-color: #006C93 !important;
    border: none;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #005a7a;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero {
        height: 250px;
    }
}
