
/* Floating Button Container */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Common Button Style */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

/* Icon */
.float-btn img {
    width: 45px;
    height: 45px;
}

/* WhatsApp */
.whatsapp-btn {
    background: #25D366;
}

/* Call */
.call-btn {
    background: #007bff;
}

/* Hover Effect */
.float-btn:hover {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .float-btn {
        width: 50px;
        height: 50px;
    }

    .float-btn img {
        width: 40px;
        height: 40px;
    }
}


.social-floating-icons {
    position: fixed;
    right: 20px;
    bottom: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Individual Colors */
.facebook {
    background: #1877F2;
}

.instagram {
    background: #E4405F;
}

.youtube {
    background: #FF0000;
}

.maps {
    background: #34A853;
}

/* Mobile */
@media (max-width: 768px) {
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}



.youtube-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.video-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card iframe {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    border: none;
}

.video-card h3 {
    font-size: 16px;
    margin-top: 15px;
    color: #333;
    text-align: center;
}

/* Tablet */
@media (max-width: 992px) {
    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .youtube-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }
}