:root {
    --primary-color: #d24625;
    --secondary-color: #2c569d;
    --addtional-color: #c72027;
    --white-color: #fff;
    --black-color: #000000a2;
    --button-background-color: #d24625;
}

/* Card hover animation */
/* Contact card design */
.contact-card {
    border-radius: 20px;
    background: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Icon circle */
.icon-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: var(--primary-color);
    transition: all 0.4s ease;
}

.contact-card:hover .icon-circle {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Heading color */
.contact-heading {
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.4s ease;
}

.contact-card:hover .contact-heading {
    color: var(--secondary-color);
}

/* Paragraph styling */
.contact-card p {
    color: #555;
    font-size: 0.95rem;
    transition: color 0.4s ease;
}

.contact-card:hover p {
    color: #333;
}

.contact-card a{
    text-decoration: none;
    color: var(--black-color);
}

/* Input focus animation */
.contact-card .form-control {
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 15px;
}

.contact-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
    outline: none;
}

/* Button gradient hover */
.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: #fff !important;
    font-weight: 600;
    transition: all 0.4s ease;
    padding: 20px !important;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Image hover */
.contact-img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Card text formatting */
.contact-card h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-card p {
    margin-bottom: 0;
}