body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.page-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 60px;
}

.ig-profile-card {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 700px;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ig-profile-content {
    display: flex;
    align-items: center;
}

.ig-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.ig-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #960018;
}

.ig-profile-info {
    display: flex;
    flex-direction: column;
}

.ig-username {
    font-weight: bold;
    font-size: 16px;
}

.ig-name {
    font-size: 14px;
    color: #8e8e8e;
}

/* Buttons Styling */
.ig-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.instagram-follow-btn,
.instagram-message-btn {
    display: inline-block;
    background-color: #960018;
    /* Instagram red/pink color */
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    width: 150px;
}

.instagram-follow-btn:hover,
.instagram-message-btn:hover {
    background-color: #960018;
    /* Darker Instagram color for hover effect */
    transform: scale(1.05);
}

.instagram-follow-btn:focus,
.instagram-message-btn:focus {
    outline: none;
}

.ig-buttons a {
    text-decoration: none;
}

iframe {
    width: -webkit-fill-available;
}
.bi:hover
{
    font-size: 20px;
}


@media (max-width: 767px) {
    .ig-profile-card {
        display: table;
        width: auto;
        border: 1px solid #dbdbdb;
        border-radius: 10px;
        padding: 15px;
        background-color: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    .ig-link {
        padding-bottom: 10px;
    }
    .testimonials .testimonial-content {
        height: auto;
    }
    
  }