:root {
    --primary: #1f6feb;
    --accent: #1f6feb;
    --muted: #6b7280;
    --card: #fff;
    --bg: #f6f8fb;
    --shadow: 0 4px 24px rgba(31, 111, 235, 0.07);
    --radius: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: #0f172a;
    line-height: 1.6;
}

/* ===== NAVBAR DESKTOP ===== */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(31, 111, 235, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 6px 0;
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: 0 40px;
}

/* Logo */
.navbar-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Menu – centered between logo and button (flex:1) */
.navbar-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    flex: 1;
}

.navbar-menu li {
    list-style: none;
}

/* Links */
.navbar-menu a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #0f172a;
    padding: 4px 0;
    position: relative;
}

.navbar-menu a:hover {
    color: var(--primary);
}

.navbar-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* Dropdown */
.navbar-menu .dropdown {
    position: relative;
}

.navbar-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
    padding: 8px 0;
    border-radius: 6px;
    display: none;
}

.navbar-menu .dropdown-menu a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: #0f172a;
}

.navbar-menu .dropdown-menu a:hover {
    background: #f3f4ff;
    color: var(--primary);
}

.navbar-menu .dropdown:hover .dropdown-menu {
    display: block;
}

/* CTA buttons (desktop & mobile menu) */
.btn.hbtn,
.btn.landingpagehbtn {
    background: var(--primary);
    color: #fff;
    padding: 8px 24px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(31, 111, 235, 0.2);
    white-space: nowrap;
}

.btn.hbtn:hover,
.btn.landingpagehbtn:hover {
    background: #1558b0;
    box-shadow: 0 6px 20px rgba(31, 111, 235, 0.3);
    transform: translateY(-2px);
}

/* Hamburger – hidden on desktop */
.navbar-toggle {
    display: none;
}

/* Tablet tweaks */
@media (max-width: 992px) {
    .navbar .container-fluid {
        padding: 0 16px;
    }
    .navbar-menu {
        gap: 16px;
    }
    .navbar-logo {
        height: 40px;
    }
}

/* Marquee */
marquee {
    background: linear-gradient(135deg, #f37c06, #f37c06);
    color: #fff;
    margin: 0;
    padding: 10px 0;
    font-weight: 500;
}

/* Hero Section */
.sec1 {
    background-size: cover;
    background-position: center;
    padding: 0 0 10px;
    margin-top: 10px;
    position: relative;
}

.sec1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.sec1 .container {
    position: relative;
    z-index: 1;
}

.sec1_left {
    margin: 50px 0;
}

.sec1_left h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #0f172a;
}

.sec1_left h1 span {
    color: var(--primary);
}

.sec1_left p {
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sec1_left h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 24px;
    color: var(--accent);
}

/* Enquiry Form */
.enqform {
    padding: 32px;
    /* background: var(--card); */
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 31px 0;
}

.enqform h2 {
    text-align: center;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.time-slot {
    padding: 12px 8px;
    border: 2px solid #e6e9ef;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    font-weight: 600;
    font-size: 14px;
    color: #475569;
}

.time-slot:hover {
    border-color: var(--primary);
    background: rgba(31, 111, 235, 0.05);
}

.time-slot.selected {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.time-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f5f5f5;
}

.time-slot.disabled:hover {
    border-color: #e6e9ef;
    background: #f5f5f5;
}

.form-control,
.form-select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 2px solid #e6e9ef;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 111, 235, 0.1);
}

.enqform button {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(31, 111, 235, 0.2);
    cursor: pointer;
}

.enqform button:hover {
    background: #1558b0;
    box-shadow: 0 6px 20px rgba(31, 111, 235, 0.3);
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    text-align: center;
    padding: 48px 0 24px;
}

.section-title h1 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    position: relative;
    display: inline-block;
}

.section-title h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* Content Sections */
.wcu,
.bio {
    padding: 48px 0;
}

.wcu h2,
.bio h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
}

.wcu h2 span {
    color: var(--primary);
}

.wcu p,
.bio p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #475569;
}

.wcu ul,
.bio ul {
    list-style: none;
    padding: 0;
}

.wcu ul li,
.bio ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    color: #475569;
}

.wcu ul li::before,
.bio ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

.wcu img,
.bio img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #F5F7FA, #F5F7FA);
    color: #060000;
    padding: 48px 0 32px;
    text-align: center;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
}

.copyright {
    background: #f37c06;
}

footer h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

footer p {
    font-size: 16px;
    margin-bottom: 8px;
}

/* WhatsApp & Call Buttons */
.logo-container,
.logo-container1 {
    position: fixed;
    z-index: 999;
    transition: all 0.3s ease;
}

.logo-container {
    bottom: 80px;
    right: 20px;
}

.logo-container1 {
    bottom: 20px;
    right: 20px;
}

.background-circle,
.background-circle1 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #20e070);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.background-circle1 {
    background: linear-gradient(135deg, #0b6b3a, #0d8a4a);
    box-shadow: 0 4px 16px rgba(11, 107, 58, 0.4);
}

.logo-container:hover .background-circle,
.logo-container1:hover .background-circle1 {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.img-whp,
.contact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 160px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    text-align: center;
    z-index: 996;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(31, 111, 235, 0.3);
}

.back-to-top:hover {
    background: #1558b0;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(31, 111, 235, 0.4);
}

.Cl img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    margin: 0 0 10px;
}

/* ========= MOBILE / TABLET (LAYOUT & NAVBAR) ========= */
@media (max-width: 768px) {

    /* Navbar mobile behaviour */
    .navbar {
        padding: 8px 0;
    }

    .navbar-logo {
        height: 40px;
    }

    .navbar .container-fluid {
        padding: 0 16px;
        justify-content: flex-start;
    }

    /* Show hamburger, move to right */
    .navbar-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        margin-left: auto;
        padding: 4px 8px;
    }

    /* Hide top CTA button on mobile */
    .btn.hbtn {
        display: none;
    }

    /* Button inside mobile menu */
    .btn.landingpagehbtn {
        font-size: 13px;
        padding: 6px 18px;
        width: auto;         /* keep it compact */
        text-align: center;
        margin-top: 0;
    }

    /* Mobile dropdown panel */
    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 20px;
        gap: 10px;
        box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
        display: none;
        z-index: 999;
    }

    .navbar-menu.open {
        display: flex;
    }

    .navbar-menu a {
        width: 100%;
    }

    .navbar-menu .dropdown {
        width: 100%;
    }

    .navbar-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 10px;
        margin-top: 4px;
        display: none;
    }

    .navbar-menu .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Typography tweaks */
    .navbar-title {
        font-size: 20px;
    }

    .navbar-subtitle {
        font-size: 15px;
    }

    /* Rest of page responsive tweaks */
    .sec1 {
        padding: 0 0 20px;
    }

    .sec1_left {
        margin: 30px 0;
    }

    .sec1_left h1 {
        font-size: 32px;
    }

    .sec1_left p {
        font-size: 15px;
    }

    .sec1_left h2 {
        font-size: 18px;
    }

    .enqform {
        padding: 20px;
        margin: 20px 0;
    }

    .enqform h2 {
        font-size: 22px;
    }

    .section-title {
        padding: 10px 0 16px;
    }

    .section-title h1 {
        font-size: 26px;
    }

    marquee {
        margin: 0;
        font-size: 13px;
        padding: 10px 0;
    }

    .wcu,
    .bio {
        padding: 32px 0;
    }

    .wcu h2,
    .bio h2 {
        font-size: 20px;
        margin-top: 24px;
    }

    .wcu p,
    .bio p {
        font-size: 14px;
    }

    .wcu ul li,
    .bio ul li {
        font-size: 14px;
        padding: 6px 0;
        padding-left: 20px;
    }

    .wcu img,
    .bio img {
        margin-top: 20px;
    }

    footer {
        padding: 32px 0 24px;
    }

    footer h2 {
        font-size: 20px;
    }

    footer p {
        font-size: 14px;
    }

    .logo-container {
        bottom: 70px;
        right: 15px;
    }

    .logo-container1 {
        bottom: 15px;
        right: 15px;
    }

    .background-circle,
    .background-circle1 {
        width: 50px;
        height: 50px;
    }

    .img-whp,
    .contact {
        width: 28px;
        height: 28px;
    }

    .back-to-top {
        bottom: 140px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    /* Hide the top-right button ONLY */
    .navbar-actions .btn.hbtn {
        display: none;
    }

    /* Show CTA inside menu */
    .navbar-menu .mobile-cta {
        display: flex;
        justify-content: center;   /* center the button */
        width: 100%;
        margin-top: 12px;
    }

    .navbar-menu .mobile-cta .btn.hbtn {
        display: inline-block;
        width: auto;               /* no full width */
        padding: 8px 22px;         /* smaller / tighter */
        text-align: center;
    }
}

/* Extra-small screens */
@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }

    .sec1_left h1 {
        font-size: 28px;
    }

    .sec1_left p {
        font-size: 14px;
    }

    .sec1_left h2 {
        font-size: 16px;
    }

    .sec1_left p img {
        width: 16px !important;
    }

    .enqform {
        padding: 16px;
        margin: 16px 0;
    }

    .form-control,
    .form-select {
        padding: 12px;
        font-size: 14px;
    }

    .section-title h1 {
        font-size: 22px;
    }

    .wcu h2,
    .bio h2 {
        font-size: 18px;
    }

    marquee {
        font-size: 12px;
        padding: inherit;
    }
}

/* Hospital title / subtitles (desktop base) */
.navbar-title {
    font-weight: 800;
    font-size: 50px;
    /* color: #0f172a; */
    color: #1f6feb;
}

.navbar-subtitle {
    font-weight: 500;
    font-size: 15px;
    color: #0f172a;
}

/* Even smaller logo on very small screens */
@media (max-width: 480px) {
    .navbar-logo {
        height: 30px;
    }
    .navbar-title {
        font-size: 10px;
    }
    .navbar-subtitle {
        font-size: 8px;
    }
    .navbar-iehp .navbar-logo {
        height: 30px;
    }

    .navbar-iehp .navbar-title {
        font-size: 20px;
    }

    .navbar-iehp .navbar-subtitle-iehp {
        font-size: 12px;
    }

 /* Optional: make button slightly smaller */
    .navbar-iehp .btn.landingpagehbtn {
        padding: 6px 14px;
        font-size: 8px;
        white-space: nowrap;
    }

     /* Ensure both title & subtitle stay on one line */
    .navbar-iehp .navbar-title,
    .navbar-iehp .navbar-subtitle-iehp {
        white-space: nowrap;
    }

    /* Reduce font sizes slightly for mobile */
    .navbar-iehp .navbar-title {
        font-size: 18px;
    }

    .navbar-iehp .navbar-subtitle-iehp {
        font-size: 13px;
    }

    /* Grid adjustment so center text has enough width */
    .navbar-iehp .container-fluid {
        grid-template-columns: auto 1fr auto;
        column-gap: 8px;
    }

}

/*--------------------------------------------------------------
# Header / Footer (legacy styles – kept for other pages)
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 0;
    top: 39px;
    border-bottom: 3px solid #d0b67b;
}

.offcanvas-header {
    background: #31517a;
}

header {
    padding: 20px 0;
}

#header.header-scrolled {
    top: 0;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #2c4964;
}

#header .logo img {
    max-height: 60px;
}

#footer {
    color: #444444;
    font-size: 14px;
    background: #31517a;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #d0b67b;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #777777;
}

#footer .footer-top h4 {
    font-size: 35px;
    font-weight: bold;
    color: #583808;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 20px;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #583808;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #583808;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #583808;
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 35px;
    font-weight: bold;
    color: #583808;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #bfdcf7;
}

#footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #1977cc;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
}

#footer .footer-newsletter form input[type=submit]:hover {
    background: #1c84e3;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #444444;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #fff;
    color: #1a1414;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #1c84e3;
    color: #fff;
    text-decoration: none;
}
/* Navbar hide animation */
.navbar {
    transition: top 0.35s ease;
}

/* Hidden state */
.navbar.hide {
    top: -120px;   /* moves navbar out of view */
}
.navbar-actions {
    margin-left: auto; /* pushes actions to extreme right */
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-center-text {
     flex: 1;                 /* takes all available space between logo & button */
    text-align: center;      /* center the text inside */
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertically align text if needed */
    margin-left: 0;          /* remove any leftover push */
}
/* Title */
.navbar-center-text .navbar-title {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}
.navbar-center-text .navbar-subtitle-iehp {
    font-size: 8px;
    margin-top: 0px;
    opacity: 0.8;
}

/* Special layout for IEHP header bar */
.navbar-iehp .container-fluid {
    display: grid;
    grid-template-columns: auto 1fr auto;  /* logo | center text | button */
    align-items: center;
    column-gap: 16px;
}

/* Center block */
.navbar-iehp .navbar-center-text {
    text-align: center;
}

/* Keep button on the extreme right */
.navbar-iehp .btn.landingpagehbtn {
    margin-left: 0;     /* grid handles the placement */
}

/* Subtitle spacing */
.navbar-subtitle-iehp {
    margin-top: 2px;
}
/* Landing page button – always rightmost */
.btn.landingpagehbtn {
    margin-left: auto;          /* pushes it to extreme right */
}

@media (min-width: 769px) {
  .navbar-menu .mobile-cta {
      display: none;
  }
}

/* ==========================================================
   INDEX PAGE FOOTER ONLY  
   Everything is namespaced under .indexpage-footer
   ========================================================== */

.indexpage-footer .footer-top {
  background: linear-gradient(135deg, #f9fafb, #eef2ff);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.indexpage-footer .footer-top .row {
  align-items: flex-start;
  row-gap: 32px;
}

.indexpage-footer .footer-contact {
  text-align: center;
  padding-top: 10px;
}

.indexpage-footer .footer-contact img {
   max-width: 160px;       /* earlier 220px – now balanced */
  margin-bottom: 12px;
}

.indexpage-footer .footer-contact iframe {
  height: 220px !important;      /* reduced from 300px */
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  margin-top: 12px;
}

/* Headings */
.indexpage-footer h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  position: relative;
}

.indexpage-footer h4::after {
  content: "";
  position: absolute;
  left: 186px;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #f37c06, #1f6feb);
  border-radius: 999px;
}

/* Align middle and right column content vertically */
.indexpage-footer .footer-links {
  padding-top: 25px;
}

/* Useful Links */
.indexpage-footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0 140px;
}

.indexpage-footer .footer-links ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 15px;
}

.indexpage-footer .footer-links ul i {
  color: #f37c06;
  font-size: 18px;
}

.indexpage-footer .footer-links ul a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.indexpage-footer .footer-links ul a:hover {
  color: #1f6feb;
  transform: translateX(2px);
}

/* Contact Column */
.indexpage-footer .footer-links p {
  margin: 4px 0;
  font-size: 15px;
  color: #4b5563;
}

.indexpage-footer .footer-links p a {
  color: #1f6feb;
  font-weight: 500;
}

/* Copyright Bar */
.indexpage-footer .copyright {
  background: #f37c06;
  color: #fff;
  font-size: 14px;
  padding: 12px 0;
}

.indexpage-footer .copyright span {
  font-weight: 700;
}

.indexpage-footer .footer-top .row > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.indexpage-footer .footer-links h4,
.indexpage-footer .footer-contact h4 {
    margin-top: 8px;
}

.indexpage-footer .footer-top .row {
    align-items: stretch;
}

/* ===================== Responsive ===================== */

@media (max-width: 768px) {
  .indexpage-footer .footer-top .row {
    text-align: center;
  }

  .indexpage-footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .indexpage-footer .footer-contact img {
    margin-left: auto;
    margin-right: auto;
    max-width: 140px;
  }

  .indexpage-footer .footer-links ul li {
    justify-content: center;
  }

  .indexpage-footer .copyright div {
    text-align: center !important;
    padding-left: 0 !important;
  }

  .indexpage-footer .footer-contact iframe {
    height: 200px !important;
  }

  .indexpage-footer .footer-links {
    padding-top: 10px;
  }
}

/* ===================== SPECIALIZATION TABS ===================== */

.specs-section {
  margin-top: 40px;
}

.spec-tabs {
  display: flex;
  gap: 12px;
  margin: 16px 0 24px;
}

.tab-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid #dbe3f0;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn:hover {
  background: #f1f5ff;
}

.tab-btn.active {
  background: #1f6feb;
  color: #fff;
  border-color: #1f6feb;
  box-shadow: 0 4px 14px rgba(31, 111, 235, 0.25);
}

/* Tab content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.sectioncover {
    background-image: url(./assets/img/iehp_cover.png);
}

.enquiry-section {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 5%;

    background:
      linear-gradient(
        rgba(246, 248, 251, 0.95),
        rgba(182, 86, 241, 0.95),
        rgba(246, 248, 251, 0.95)
      ),

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.indexpage-main-bg {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;

    background:
      linear-gradient(
        rgba(252, 249, 252, 0.95),
        rgba(246, 248, 251, 0.95)
      ),
      url('https://cdn.medininatural.com/TemplateDev/irishosp_banner_one-1.png'); /* change image */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}