/* Floating Contact Buttons CSS */
.contact-buttons {
    position: fixed;
    bottom: 10px;
    left: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}
.contact-buttons a {
    color: white;
    font-size: 15px;
    padding: 10px 10px;
    border-radius: 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    width: 125px;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-family: "Epunda Sans", sans-serif;
    letter-spacing: 1px;
}
.contact-buttons a.call-button {
    background-color: #CC9C44;
}
.contact-buttons a.whatsapp-button {
    background-color: #095702;
}
.contact-buttons a i {
    margin-right: 10px;
}
.contact-buttons a:hover {
    transform: scale(0.95);
}
/* Section Styling */
.section-director {
    background: #f9fafb;
    text-align: center; /* ✅ Title center align */
    padding-top: 60px;
    padding-bottom: 100px;
}
.section-director .director-title h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
    position: relative;
    display: inline-block;
}
.section-director .director-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #CC9C44;
    margin: 5px auto 0;
    border-radius: 2px;
}
/* Director Content Layout */
.director-content {
    display: flex;
    justify-content: center; /* ✅ Center content */
    gap: 20px; /* ✅ Kam gap */
    flex-wrap: wrap;
}
/* Director Box */
.director-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px; /* ✅ Thoda chhota for compact look */
}
.director-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
/* Director Image */
.director-box-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-bottom: 3px solid #CC9C44;
}
.director-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.director-box:hover .director-box-image img {
    transform: scale(1.08);
}
/* Director Details */
.director-detail {
    padding: 15px;
}
.director-detail h4 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}
.director-detail h5 {
    font-size: 15px;
    font-weight: 500;
    color: #666;
}
@media (max-width: 768px) {
    .contact-buttons {
        width: 100%;
        margin: 0;
        padding: 0;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 99;
        display: block;
    }
    .contact-buttons a {
        min-width: auto;
        padding: 10px 12px;
        font-size: 14px;
        float: left;
        width: 50%;
        overflow: hidden;
        text-align: center;
        border-radius: 0;
    }
    .director-content {
        gap: 30px; /* ✅ Mobile gap aur kam */
    }
    .director-box-image {
        height: 200px;
    }
}
.section-gallery-image {
    margin-top: 100px;
    margin-bottom: 100px;
}

/* Gallery Image Styling */
.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gallery-image img {
    width: 100%;
    object-fit: cover;
    height: 300px;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.gallery-image:hover img {
    transform: scale(1.05);
}
