.gallery-group::before {
    content: "";
    position: absolute;
    width: 100%;
    top: -10px;
    opacity: 0.8;
    right: -10px;
    height: 100%;
    background-color: #000;
}

.gallery-group ul.image-gallery li {
    height: auto;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-group ul.image-gallery li:before {
    /* background-color: #000; */
    z-index: 11;
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    opacity: 0.5;
    left: 0;
    height: 100%;
    bottom: 0;
    top: 0;
    transition: 0.5s ease-in-out;
}

.gallery-group ul.image-gallery li a {
    transition: 0.5s ease-in-out;
    position: absolute;
    z-index: 1;
    color: #ffffff;
    font-size: 26px;
    transform: scale(0) translate(-50%, -50%);
    top: 54%;
    left: 50%;
}

.gallery-group ul.image-gallery li figure {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.gallery-group ul.image-gallery li a i {
    transition: 0.5s ease-in-out;
}

.gallery-group ul.image-gallery li img {
    width: 100%;
    transition: 0.5s ease-in-out;
    -o-object-fit: cover;
    object-fit: cover;
}

.gallery-group ul.image-gallery {
    z-index: 1;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
}

.gallery-group {
    position: relative;
}

.gallery-group ul.image-gallery li:hover:before {
    height: 100%;
    top: 0;
    opacity: 0.8;
}

.gallery-group ul.image-gallery li:hover a {
    z-index: 111;
    transform: scale(1) translate(-50%, -50%);
}

.gallery-group ul.image-gallery li:hover img {
    transform: scale(1.1);
}
/* Container */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 150px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Common Button Style */
.contact-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    position: relative;
}

/* Phone Button */
.phone-btn {
    background: linear-gradient(135deg, #0d6efd, #3a8bfd);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #099a4d);
}

/* Hover Effect */
.contact-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Pulse Animation */
.contact-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: pulseEffect 2s infinite;
}

/* Keyframes */
@keyframes pulseEffect {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
/* Section */
.sectors-section {
    text-align: center;
}

/* Title */
.sectors-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

/* Underline animation */
.sectors-title::after {
    content: "";
    width: 0;
    height: 3px;
    background: #e1e31d;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.sectors-title:hover::after {
    width: 60%;
}

/* List */
.sectors-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Items */
.sector-item {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Hover effect */
.sector-item:hover {
    transform: translateY(-5px);
}

/* Gradient hover background */
.sector-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6100, #ffbb00);
    /* background-image: linear-gradient(to right, #ff6100, #ffbb00 50%, #de0000 50%); */
    transition: all 0.4s ease;
    z-index: -1;
}

.sector-item:hover::before {
    top: 0;
}

/* Fade-in animation */
.sector-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s ease forwards;
}

.sector-item:nth-child(1) { animation-delay: 0.2s; }
.sector-item:nth-child(2) { animation-delay: 0.4s; }
.sector-item:nth-child(3) { animation-delay: 0.6s; }
.sector-item:nth-child(4) { animation-delay: 0.8s; }

/* Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .floating-contact {
        right: 15px;
        bottom: 20px;
    }

    .contact-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}
/* Tablet */
@media (max-width: 1299px) {
    .gallery-group ul.image-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .gallery-group ul.image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .gallery-group ul.image-gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}

.title-animation {
    text-transform: capitalize;
}

.meet-experts-section {


    .enquiry-form {
        background: #fff;
        padding: 35px;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .meet-experts {
        margin-bottom: 0px;
    }

    .enquiry-form h2 {
        font-size: 28px;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .enquiry-form p {
        font-size: 14px;
        color: #777;
        margin-bottom: 20px;
    }

    .enquiry-form h4 {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 10px;
        font-weight: 600;
        color: #333;
    }

    .enquiry-form input,
    .enquiry-form select,
    .enquiry-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
    }

    .enquiry-form textarea {
        height: 100px;
        resize: none;
    }

    .enquiry-form input:focus,
    .enquiry-form select:focus,
    .enquiry-form textarea:focus {
        border-color: #f4a100;
        outline: none;
    }

}

