/* Remove rounded corners from service card buttons */
.service-card .btn {
    border-radius: 0 !important;
}

/* Social Icon Links */
.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 2px solid #00B98E;
    border-radius: 4px;
    color: #00B98E;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-link:hover {
    background-color: #00B98E;
    color: #ffffff;
    transform: translateY(-2px);
}

.social-icon-link i {
    font-size: 16px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Why Choose Us Section Styling */
.why-choose-us {
    position: relative;
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-card i {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h4 {
    color: #343a40;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.object-fit-cover {
    object-fit: cover;
}

.service-badge {
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 2;
}

@media (max-width: 575.98px) {
    .service-card .card-body {
        padding: 1.25rem !important;
    }

    .service-card h3 {
        font-size: 1.125rem;
    }

    .service-card .card-text {
        font-size: 0.875rem;
    }

    .service-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem !important;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .service-card .card-body {
        padding: 1.5rem !important;
    }
}

.filter-btn {
    white-space: nowrap;
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gradient-overlay {
    height: 50%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.card-img-top {
    transition: transform 0.5s ease;
    object-fit: cover;
}

.service-card:hover .card-img-top {
    transform: scale(1.05);
}

.filter-container {
    margin: 0 auto;
    max-width: 800px;
}

.filter-btn {
    transition: all 0.2s ease;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0.15rem;
    border-width: 1.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
    transform: translateY(-1px);
}

.service-container .card-body {
    padding: 1.5rem;
    background: white;
}

.service-container h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-container .card-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    color: #6c757d !important;
}

@media (max-width: 767.98px) {
    .service-container .card-body {
        padding: 1.25rem;
    }

    .filter-btn {
        padding: 0.25rem 0.75rem !important;
        font-size: 0.8rem;
    }

    .service-card {
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .service-card {
        max-width: 450px;
    }
}

@media (min-width: 1200px) {
    .service-card {
        max-width: 400px;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    text-decoration: none;
    color: #fff;
}

/* About Section Image Styling */
.hexagon-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%,
            100% 25%,
            100% 75%,
            50% 100%,
            0% 75%,
            0% 25%);
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hexagon-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff4d4d, #ff9a9e);
    clip-path: polygon(50% 0%,
            100% 25%,
            100% 75%,
            50% 100%,
            0% 75%,
            0% 25%);
    z-index: -1;
    transform: scale(1.02);
    transition: all 0.5s ease;
}

.hexagon-img-container:hover {
    transform: translateY(-10px) rotate(5deg);
}

.hexagon-img-container:hover .hexagon-border {
    transform: scale(1.05);
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
}

.circle-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    border: 8px solid transparent;
    background: linear-gradient(45deg, #ff4d4d, #ff9a9e) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.circle-border {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, #ff4d4d, #ff9a9e);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
    animation: rotate 15s linear infinite;
}

.circle-img-container:hover {
    transform: translateY(-10px) scale(1.05);
}

.circle-img-container:hover .circle-border {
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        left: 15px;
    }
}

/* Team Section Styling */
.team-card {
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.team-img-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 5px solid #f8f9fa;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50% !important;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background: #dc3545;
    color: #fff !important;
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .team-img-container {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .team-img-container {
        width: 160px;
        height: 160px;
    }

    .team-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .team-img-container {
        width: 140px;
        height: 140px;
    }
}

/* Modal Container */
#enquiryModal .modal-dialog {
    max-width: 600px;
    margin: 1.75rem auto;
}

/* Modal Header */
#enquiryModal .modal-header {
    padding: 1.5rem 2rem;
    border-radius: 0.3rem 0.3rem 0 0;
}

#enquiryModal .modal-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
}

/* Modal Body */
#enquiryModal .modal-body {
    padding: 2rem;
}

/* Form Elements */
#enquiryForm .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

#enquiryForm .form-control,
#enquiryForm .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

#enquiryForm .form-control:focus,
#enquiryForm .form-select:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

#enquiryForm textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit Button */
#enquiryForm .btn-submit {
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

#enquiryForm .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    #enquiryModal .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    #enquiryModal .modal-header {
        padding: 1.25rem 1.5rem;
    }

    #enquiryModal .modal-body {
        padding: 1.5rem;
    }

    #enquiryForm .btn-submit {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    #enquiryModal .modal-title {
        font-size: 1.25rem;
    }

    #enquiryForm .form-control,
    #enquiryForm .form-select {
        font-size: 0.9375rem;
    }
}


/* Why Choose Us Section Styling */
.why-choose-us {
    position: relative;
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-card i {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h4 {
    color: #343a40;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.object-fit-cover {
    object-fit: cover;
}

.service-badge {
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 2;
}

@media (max-width: 575.98px) {
    .service-card .card-body {
        padding: 1.25rem !important;
    }

    .service-card h3 {
        font-size: 1.125rem;
    }

    .service-card .card-text {
        font-size: 0.875rem;
    }

    .service-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem !important;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .service-card .card-body {
        padding: 1.5rem !important;
    }
}

.filter-btn {
    white-space: nowrap;
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gradient-overlay {
    height: 50%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.card-img-top {
    transition: transform 0.5s ease;
    object-fit: cover;
}

.service-card:hover .card-img-top {
    transform: scale(1.05);
}

.filter-container {
    margin: 0 auto;
    max-width: 800px;
}

.filter-btn {
    transition: all 0.2s ease;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0.15rem;
    border-width: 1.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
    transform: translateY(-1px);
}

.service-container .card-body {
    padding: 1.5rem;
    background: white;
}

.service-container h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-container .card-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    color: #6c757d !important;
}

@media (max-width: 767.98px) {
    .service-container .card-body {
        padding: 1.25rem;
    }

    .filter-btn {
        padding: 0.25rem 0.75rem !important;
        font-size: 0.8rem;
    }

    .service-card {
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .service-card {
        max-width: 450px;
    }
}

@media (min-width: 1200px) {
    .service-card {
        max-width: 400px;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    text-decoration: none;
    color: #fff;
}

/* About Section Image Styling */
.hexagon-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%,
            100% 25%,
            100% 75%,
            50% 100%,
            0% 75%,
            0% 25%);
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hexagon-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff4d4d, #ff9a9e);
    clip-path: polygon(50% 0%,
            100% 25%,
            100% 75%,
            50% 100%,
            0% 75%,
            0% 25%);
    z-index: -1;
    transform: scale(1.02);
    transition: all 0.5s ease;
}

.hexagon-img-container:hover {
    transform: translateY(-10px) rotate(5deg);
}

.hexagon-img-container:hover .hexagon-border {
    transform: scale(1.05);
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
}

.circle-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    border: 8px solid transparent;
    background: linear-gradient(45deg, #ff4d4d, #ff9a9e) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.circle-border {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, #ff4d4d, #ff9a9e);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
    animation: rotate 15s linear infinite;
}

.circle-img-container:hover {
    transform: translateY(-10px) scale(1.05);
}

.circle-img-container:hover .circle-border {
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        left: 15px;
    }
}

/* Team Section Styling */
.team-card {
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.team-img-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 5px solid #f8f9fa;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50% !important;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background: #dc3545;
    color: #fff !important;
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .team-img-container {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .team-img-container {
        width: 160px;
        height: 160px;
    }

    .team-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .team-img-container {
        width: 140px;
        height: 140px;
    }
}

/* Modal Container */
#enquiryModal .modal-dialog {
    max-width: 600px;
    margin: 1.75rem auto;
}

/* Modal Header */
#enquiryModal .modal-header {
    padding: 1.5rem 2rem;
    border-radius: 0.3rem 0.3rem 0 0;
}

#enquiryModal .modal-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
}

/* Modal Body */
#enquiryModal .modal-body {
    padding: 2rem;
}

/* Form Elements */
#enquiryForm .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

#enquiryForm .form-control,
#enquiryForm .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

#enquiryForm .form-control:focus,
#enquiryForm .form-select:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

#enquiryForm textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit Button */
#enquiryForm .btn-submit {
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

#enquiryForm .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    #enquiryModal .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    #enquiryModal .modal-header {
        padding: 1.25rem 1.5rem;
    }

    #enquiryModal .modal-body {
        padding: 1.5rem;
    }

    #enquiryForm .btn-submit {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    #enquiryModal .modal-title {
        font-size: 1.25rem;
    }

    #enquiryForm .form-control,
    #enquiryForm .form-select {
        font-size: 0.9375rem;
    }
}

/* menu */

.accordion-button {
    background: whitesmoke;
    width: 100%;
    text-align: left;
    padding: 15px;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    color: black;
    cursor: pointer;
}

.accordion-button:hover {
    background: #e0e0e0;
}

.panel-body {
    padding: 20px;
}

.menu-item {
    margin-bottom: 10px;
}

.menu-item img {
    max-height: 100px;
    max-width: 20%;
    margin-left: 10px;
}

.description {
    font-size: 15px;
    font-weight: 500;
    color: black;
}

.description-label {
    font-weight: 600;
}

.category-title {
    font-size: 17px;
    color: black;
    margin-bottom: 15px;
}