.contact-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    color: white !important;
    background: linear-gradient(135deg, #1C2833, #2C3E50); /* Reverse gradient on hover */
    text-decoration: none;
    border-radius: 10px !important;
    transition: background 0.3s ease-in-out;
    animation: glowing 2s infinite alternate;
}

.contact-btn:hover,
.contact-btn:active {
    box-shadow: 0px 4px 15px rgba(255, 0, 0, 0.7),
        0px 0px 20px rgba(0, 0, 255, 0.7);

}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Contact Info Styling */
.contact-info {
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.contact-info p {
    display: flex;
    color: #4f6c87;
    align-items: center;
    font-size: 16px;
    margin-bottom: 12px;
}

.contact-info span {
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
}

.contact-info a {
    color: #4f6c87;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Form Control Inputs */
.form-control {
    height: 52px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
    border-radius: 0px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

#contactForm .form-control {
    font-size: 16px;
    background: #2C3E50;
}

.contactForm .form-control {
    border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    border-bottom: 1px solid #4f6c87;
    padding: 0;
}

/* Adjusting header color to white */
h2.text-center {
    color: white;
}

.contact-wrap {
    background: #2C3E50;
    color: #5f8bb4;
    border-radius: 10px;
}

.info-wrap {
    background-color: #1C2833;
    border-radius: 10px;
}

.info-wrap .dbox .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #243342;
}

.info-wrap .dbox {
    margin-bottom: 25px;
}

