/* Embbed Map */
.map-section {
    padding: 60px 20px;
    background: #f8f9fb;
}

.map-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.map-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: transform 0.3s ease;
}

.map-card:hover {
    transform: translateY(-5px);
}

.map-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.map-header i {
    color: #d32f2f;
    font-size: 20px;
}

.map-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.map-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.map-card iframe {
    width: 100%;
    height: 280px;
    border: none;
    border-radius: 10px;
}

/* blog-details-content */
.blog-content {
    all: revert;
}

.blog-content * {
    all: revert;
}

/* footer-social-media */
/* Social Links Wrapper */
.social-links3 {
    gap: 10px;
}

/* Common Social Icon Style */
.social-links3 a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px; /* brd-rd5 look */
    background: #f5f5f5;
    color: #333;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Icon Centering */
.social-links3 a i {
    line-height: 1;
}

/* Facebook */
.facebook-hvr:hover {
    background: #1877f2;
    color: #fff;
}

/* YouTube */
.youtube-hvr:hover {
    background: #ff0000;
    color: #fff;
}

/* LinkedIn */
.linkedin-hvr:hover {
    background: #0a66c2;
    color: #fff;
}

/* Instagram */
.social-links3 a[href*="instagram"]:hover {
    background: radial-gradient(circle at 30% 30%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285AEB 90%);
    color: #fff;
}

/* Hover Animation */
.social-links3 a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Mobile Friendly */
@media (max-width: 576px) {
    .social-links3 a {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}
