.info-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
}

.info-card:hover {
    transform: translateY(-3px);
}

.info-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffe0cc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6600, #ff9900);
    transition: transform 0.5s ease, box-shadow 0.4s ease, background 0.4s ease;
    position: relative;
    overflow: hidden;
}

.icon-circle:hover {
    transform: rotate(360deg);
    box-shadow: 0 8px 15px rgba(255, 102, 0, 0.6);
    background: linear-gradient(135deg, #ff4500, #ff8800);
    animation: glowing 1s infinite alternate;
}

.icon-circle i {
    color: white;
    font-size: 1.6rem;
    transition: transform 0.3s ease, color 0.4s ease;
}

.icon-circle:hover i {
    color: #fffde7;
}

@keyframes glowing {
    0% {
        box-shadow: 0 0 5px rgba(255, 102, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 102, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 102, 0, 0.5);
    }
}

.card-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-text {
    font-size: 0.85rem;
    color: #555;
    text-align: center;
}

.contact-form {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
}

.map-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
}

iframe {
    border: 0;
    width: 100%;
    height: 350px;
    border-radius: 8px;
}

.lined-title {
    position: relative;
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    padding-left: 15px;
}

.lined-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 60%;
    background: linear-gradient(180deg, #ff6600, #ff6600);
    transform: translateY(-50%);
    border-radius: 3px;
}