


.container-address {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.card {
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    background: linear-gradient(135deg, #7e1811, #5f392a);
    color: white;
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card:hover {
    transform: translateY(-10px);
}
.social-icons a {
    margin: 0 10px;
    font-size: 2rem;
    color: white;
    transition: color 0.3s ease-in-out;
}
.social-icons a:hover {
    color: #ffcc00;
}
.address-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}
.col-md-4:nth-child(2) {
    order: -1;
}

.card p{
    font-size: 1.2rem;
}
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    .address-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .col-md-4 {
        flex: 1 1 45%;
        margin-bottom: 10px;
    }
    .col-md-4:nth-child(3) {
        flex-basis: 100%;
    }
}
@media (max-width: 576px) {
    .col-md-4 {
        flex-basis: 100%;
    }
}








/* body {
    font-family: 'Arial', sans-serif;
    background-color: #eef2f7;
    margin: 0;
    padding-top: 50px;
} */


.container-contact {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.promo-heading {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    position: relative;
    color: #7e1811;
    padding-bottom: 10px;
    text-align: center;
}
.promo-heading::after {
    content: "";
    display: block;
    width: 0;
    height: 4px;
    background: linear-gradient(135deg, #7e1811, #f8b400);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    animation: slideLine 2s infinite alternate ease-in-out;
}
@keyframes slideLine {
    0% { width: 0; }
    100% { width: 100%; }
}
.btn-custom {
    width: 50%;
    display: block;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .promo-heading {
        font-size: 2rem;
    }
    .container-contact {
        padding: 20px;
    }
    .btn-custom {
        width: 100%;
    }
}




.btn-custom {
    background: linear-gradient(90deg,  #7e1811, #5f392a);
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    /* border-image: linear-gradient(to left, #7e1811 0%,  #5f392a 100%) 1;
  border-radius: 5px; 
  border-width: 4px;
  border-style: solid; */
}

.btn-custom:hover {
    background: linear-gradient(90deg, #5f392a, #7e1811);
    color: #f8b400;
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(255, 87, 34, 0.5);
}

.btn-custom:active {
    transform: scale(0.95);
}
 