/*
Theme Name:   Twenty Twenty-Five Child
Template:     twentytwentyfive
Version:      1.0
*/
@media screen and (max-width: 768px) {
    .col-md-8.d-flex.flex-wrap.justify-content-end.gap-4.text-start {
        display: none !important;
    }
}

.footer-widget {
    color: #ddd;
}
.footer-widget a {
    color: #ccc;
    text-decoration: none;
}
.footer-widget a:hover {
    color: #fff;
    text-decoration: underline;
}
.navbar-nav .nav-link {
    padding: 0.75rem 1rem;
}
.fas, .fab {
    font-size: 1rem;
}
/* General menu styling */
.navbar-nav > li > a,
.navbar-nav > .menu-item > a {
    color: #ffffff; /* white text */
    padding: 15px 20px; /* top/bottom, left/right */
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease;
}

/* Hover and active states */
.navbar-nav > li > a:hover,
.navbar-nav > .menu-item > a:hover,
.navbar-nav > .menu-item.current-menu-item > a {
    color: #e52757; /* pinkish-red */
    background-color: transparent;
    text-decoration: none;
}

/* Dropdown caret (if using submenus) */
.navbar-nav .menu-item-has-children > a::after {
    content: " \25BC"; /* down arrow */
    font-size: 10px;
    margin-left: 5px;
}

/* Mobile responsive fix */
@media (max-width: 768px) {
    .navbar-nav > li > a {
        padding: 10px 15px;
        display: block;
    }
}
.navbar-nav {
    gap: 10px; /* Bootstrap 5+ supports gap */
}
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #2a2d46, #e91e63);
    color: white;
    z-index: 9999;
    padding: 2rem;
    overflow-y: auto;
}

.menu-overlay.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.menu-overlay .overlay-menu li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 18px;
    font-weight: bold;
    position: relative;
}

.menu-overlay .overlay-menu li.menu-item-has-children::after {
    content: "›";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    font-size: 20px;
}

.menu-overlay .overlay-menu a {
    color: white;
    text-decoration: none;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to   {
        opacity: 1;
    }
}
.equipment-services {
    padding: 60px 20px;
    background-color: #e15f5f1a;
    text-align: center;
}
.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.service-card {
    background: #fff;
    width: 400px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-card img {
    width: 100%;
    max-width: 350px;
    object-fit: cover;
    border-radius: 10px;
    height: 200px;
}
.services-heading {
    text-align: center;
    margin-bottom: 40px;
}

.services-heading .section-label {
    display: inline-block;
    padding: 6px 16px;
    background: #000000;
    color: #fffdfd;
    font-weight: 600;
    font-size: 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.services-heading h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}
.service-card p {
    font-size: 14px;
    color: #555;
}
.service-button {
    margin-top: 15px;
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #1E477E ;
    border-radius: 25px;
    color: #1E477E ;
    text-decoration: none;
    transition: all 0.3s ease;
}
.service-button:hover {
    background: #1E477E;
    color: #fff;
}
/* Container for form rows */
.contact-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

/* Half-width fields */
.contact-form-row .wpcf7-form-control-wrap {
    flex: 1 1 48%;
}

/* Full-width fields */
.contact-form-row-full .wpcf7-form-control-wrap {
    width: 100%;
}

/* Label styling */
.wpcf7-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

/* Input and textarea styling */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Submit button styling */
.wpcf7-submit {
    background-color: #007bff;
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.wpcf7-submit:hover {
    background-color: #0056b3;
}
/* Contact Us Modern Layout */
main.container {
    max-width: 1200px;
    margin: auto;
    background-color: #f9fdff;
    font-family: 'Segoe UI', sans-serif;
}

/* Section Headings */
main h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
}

/* Contact Form */
.contact-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input[type="submit"],
.contact-form button {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-form input[type="submit"]:hover,
.contact-form button:hover {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
}

/* Responsive map/image */
img.img-fluid {
    width: 100%;
    height: auto;
    border-radius: 10px;
    
}

/* Footer contact bar styling */
main + footer {
    background: #fff;
    padding: 30px 15px;
    text-align: center;
    font-size: 15px;
    border-top: 1px solid #e5e5e5;
}

main + footer div {
    display: inline-block;
    margin: 0 15px;
}
.single-service {
    padding: 80px 0;
    background-color: #f4f7f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



.service-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    align-content: flex-end;
    flex-direction: column;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.03);
}

.service-details h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-content {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .service-grid {
        flex-direction: column;
        padding: 30px 20px;
    }

    .service-image img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .service-details h1 {
        font-size: 2rem;
    }
}
.features-section {
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.features-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 63 114 / 72%);
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 50px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.feature-box {
    flex: 1 1 22%;
    min-width: 250px;
}

.feature-icon {
    width: 80px;
    margin-bottom: 20px;
}

.feature-title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.95em;
    line-height: 1.4em;
}
/* CSS */
.medical-offer {
    background-color: #600c0cd9;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.offer-text {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 300px;
}


.small-heading {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
}

.offer-text h2 {
    font-size: 32px;
    color: #fff;
    margin: 5px 0 0;
    font-weight: bold;
    line-height: 1.3;
}

.offer-form {
    display: flex;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
    background-color: #f3f6f8;
    flex-shrink: 0;
}

.offer-form input {
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    flex: 1;
    outline: none;
    background-color: #f3f6f8;
}

.offer-form button {
    background-color: #2e3a72;
    color: #fff;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.offer-form button .arrow {
    margin-left: 8px;
    font-weight: bold;
}

.offer-form button:hover {
    background-color: #1d285a;
}
