/* General Styles */
.web-support-team {
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    max-width: 1800px; /* Updated max-width */
    margin: 0 auto;
}

.support-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.section-heading {
    font-size: 28px; /* Increased font size for more impact */
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid #007BFF; /* Added underline for emphasis */
    padding-bottom: 10px;
}

.intro-text {
    font-size: 18px; /* Slightly larger for better readability */
    margin-bottom: 30px;
    color: #666;
    text-align: center;
}

.support-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px; /* Increased margin for better spacing */
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fafafa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-container {
    margin-right: 20px; /* Increased margin for better spacing */
}

.profile-image {
    width: 120px; /* Increased size for prominence */
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.details h3 {
    margin: 0;
    color: #007BFF;
    font-size: 20px; /* Slightly larger for emphasis */
    font-weight: bold;
}

.details p {
    margin: 8px 0;
    color: #333;
}

.details a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.details a:hover {
    text-decoration: underline;
}

.social-connect {
    text-align: center;
    margin: 30px 0;
}

.social-connect h3 {
    margin: 0;
    color: #333;
    font-size: 22px; /* Increased font size for visibility */
    font-weight: bold;
}

.social-connect p {
    color: #666;
    margin: 10px 0;
}

.social-icons {
    margin-top: 10px;
}

.social-icon {
    display: inline-block;
    margin: 0 15px;
    color: #007BFF;
    font-size: 30px; /* Increased icon size for better visibility */
    text-decoration: none;
}

.social-icon:hover {
    color: #0056b3;
}

.report-bug {
    text-align: center;
    margin-top: 30px;
}

.report-bug h3 {
    margin: 0;
    color: #333;
    font-size: 22px; /* Increased font size for emphasis */
    font-weight: bold;
}

.report-bug p {
    color: #666;
    margin-bottom: 15px; /* Increased spacing for readability */
}

.report-bug-button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 12px 24px; /* Increased padding for better appearance */
    border-radius: 8px;
    font-size: 18px; /* Larger font size for the button */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.report-bug-button:hover {
    background-color: #0056b3;
    transform: scale(1.05); /* Added scale effect on hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .support-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .profile-container {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    .section-heading {
        font-size: 24px;
    }

    .intro-text {
        font-size: 16px;
    }

    .details h3 {
        font-size: 18px;
    }

    .social-icons {
        font-size: 24px;
    }

    .report-bug-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 20px;
    }

    .intro-text {
        font-size: 14px;
    }

    .details h3 {
        font-size: 16px;
    }

    .social-icons {
        font-size: 20px;
    }

    .report-bug-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}
/* Notification Styles */
/* Notification Container Styles */
/* Notification Styles */
/* Notification Container Styles */
.notification-container {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px;  /* Distance from the right */
    z-index: 1000; /* Ensures it appears above other content */
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between notifications */
}

/* Individual Notification Styles */
.notification-item {
    background-color: #333; /* Dark background for better contrast */
    color: #fff; /* White text color */
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Darker shadow for better visibility */
    display: flex;
    align-items: center;
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition for hover effect */
    opacity: 0; /* Start as invisible */
    animation: popup 0.5s forwards; /* Popup animation on load */
}

/* Popup Animation */
@keyframes popup {
    0% {
        transform: translateY(20px); /* Start from below */
        opacity: 0; /* Invisible */
    }
    100% {
        transform: translateY(0); /* Move to final position */
        opacity: 1; /* Fully visible */
    }
}

/* Hover Effect for Notification Items */
.notification-item:hover {
    background-color: #444; /* Slightly lighter background on hover */
    transform: scale(1.02); /* Slight scale effect on hover */
}

/* Call Icon Styles */
.call-icon {
    font-size: 24px; /* Adjust icon size */
    margin-right: 10px; /* Spacing between icon and text */
    animation: vibrate 0.5s infinite; /* Vibration effect */
}

/* Vibration Effect */
@keyframes vibrate {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}

/* Notification Content Styles */
.notification-content {
    font-size: 14px;
}

.notification-content p {
    margin: 0;
}

.notification-content strong {
    font-size: 16px; /* Emphasize the heading */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .notification-item {
        padding: 8px;
        font-size: 12px;
    }

    .call-icon {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .notification-item {
        padding: 6px;
        font-size: 10px;
    }

    .call-icon {
        font-size: 16px;
    }
}
