/* Shared Header / Navigation / Footer styles only. */
.keh-header {
    position: relative;
    z-index: 1000;
    background: #fff;
    font-family: Arial,sans-serif
}

.keh-container {
    width: 100%;
    /* max-width: 1180px; */
    /* margin: 0 auto; */
    /* padding: 0 20px; */
}

/* =========================================
   KAILASH EYE HOSPITAL - TOP BAR
========================================= */

.keh-topbar {
    width: 100%;
    min-height: 44px;
    background: #075493;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

    .keh-topbar .keh-container {
        /* width: 100%; */
        /* max-width: 1040px; */
        /* margin: 0 auto; */
        /* padding: 0 10px; */
    }

.keh-topbar-inner {
    min-height: 44px;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

/* =========================================
   LEFT CONTACT
========================================= */

.keh-contact {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
}

    .keh-contact span {
        display: inline-flex;
        align-items: center;
        color: #fff;
        font-size: 14px;
    }

    .keh-contact i {
        font-size: 13px;
        margin-right: 9px;
    }


/* =========================================
   RIGHT SIDE
========================================= */

.keh-top-right {
    display: flex;
    align-items: center;
    gap: 18px;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.keh-social-top {
    display: flex;
    align-items: center;
    gap: 17px;
}

    .keh-social-top a i {
        color: #fff !important;
        font-size: 16px !important;
        /* text-decoration: none !important; */
        /* line-height: 1; */
    }

    .keh-social-top a:hover {
        color: #fff !important;
    }


/* =========================================
   ACTION BUTTONS
========================================= */

.keh-top-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

    .keh-top-actions a {
        /* height: 34px; */
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 4px 11px;
        border: 1px solid #fff;
        border-radius: 4px;
        color: #fff !important;
        background: transparent;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none !important;
        transition: all 0.2s ease;
    }

        .keh-top-actions a i {
            font-size: 12px;
            margin-right: 7px;
        }

        .keh-top-actions a:hover {
            background: #fff;
            color: #075493 !important;
        }


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .keh-topbar-inner {
        /* padding: 6px 15px; */
    }

    .keh-contact {
        /* gap: 15px; */
    }

    .keh-top-right {
        gap: 12px;
    }

    .keh-social-top {
        gap: 10px;
    }
}


@media (max-width: 767px) {

    .keh-topbar-inner {
        /* justify-content: center; */
        /* padding: 7px 10px; */
    }

    .keh-contact {
        /* gap: 15px; */
    }

    .keh-top-right {
        display: none;
    }
}


@media (max-width: 480px) {

    .keh-contact {
        /* flex-direction: column; */
        /* gap: 5px; */
    }

    .keh-topbar-inner {
        /* min-height: 55px; */
    }
}

.keh-nav {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
    padding: 10px 0;
}

    .keh-nav.is-sticky {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1002;
        box-shadow: 0 4px 14px rgba(0,0,0,.14);
    }

.keh-nav-placeholder {
    display: none;
}

    .keh-nav-placeholder.is-active {
        display: block;
    }

.keh-nav-inner {
    /* min-height: 92px; */
    display: flex;
    align-items: center;
    /* gap: 34px; */
    padding: 0;
    width: 95%;
}

.keh-brand {
    display: flex;
    align-items: center;
    /* gap: 12px; */
}

    .keh-brand img {
        width: 120px;
        /* height: 49px; */
        object-fit: contain
    }

.logo-text {
    color: #0071b6;
    font-size: 18px;
    margin-left: 12px;
    /* margin-top: 12px; */
}

.keh-brand small {
    display: block;
    font-size: 10px;
    letter-spacing: 1.8px;
    color: #e76561;
    margin-top: 4px
}

.keh-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* gap: 2px; */
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
}

    .keh-menu > li {
        position: relative;
    }

    .keh-menu a {
        display: block;
        color: #0085d0;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .25px;
        padding: 9px 9px;
        transition: color .2s,background .2s
    }

    .keh-menu > li > a:hover, .keh-menu > li.is-open > a, .keh-menu > li.is-current > a {
        /* color: #e76561; */
    }

.keh-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 235px;
    display: none;
    list-style: none;
    padding: 8px 0 0;
    margin: 0;
    background: #fff;
    border-top: 3px solid #349eda;
    box-shadow: 0 8px 18px rgba(0,0,0,.15);
    border-radius: 4px;
}

.keh-dropdown:hover > .keh-submenu, .keh-dropdown.is-open > .keh-submenu {
    display: block
}

.keh-submenu a {
    padding: 8px 14px;
    font-weight: 400;
    color: black;
    font-size: 13px;
    border-bottom: 1px solid #dddcdc;
    /* border-radius: 4px; */
}

    .keh-submenu a:hover, .keh-submenu a.is-current {
        background: #0085d0;
        color: #f7f7f7;
    }

.keh-caret {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 3px 4px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg)
}

.keh-menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 10px;
    cursor: pointer
}

    .keh-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        margin: 5px 0;
        background: #ffffff;
    }

/* Mobile navigation only. Desktop navigation intentionally remains unchanged. */
@media (max-width: 991px) {

    .keh-nav-inner {
        /* justify-content: space-between; */
        /* min-width: 0; */
        padding: 0 10px;
    }

    .keh-brand {
        min-width: 0;
        flex: 1 1 auto;
        margin-right: 8px;
    }

    .logo-text {
        min-width: 0;
        margin-left: 8px;
        font-size: 15px;
        /* line-height: 1.15; */
    }

    .keh-menu-toggle {
        background: #0075bd;
        border-radius: 4px;
    }

    .keh-menu-toggle {
        display: inline-flex;
        /* flex: 0 0 38px; */
        width: 34px;
        /* height: 44px; */
        align-items: center;
        justify-content: center;
        flex-direction: column;
        /* padding: 0px; */
    }

        .keh-menu-toggle span {
            flex: 0 0 auto;
            margin: 3px;
        }

    .keh-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 1001;
        display: none;
        width: 100%;
        max-width: 100vw;
        margin: 0;
        padding: 0;
        background: #fff;
        border-top: 1px solid #ececec;
        box-shadow: 0 8px 18px rgba(0,0,0,.15);
        box-sizing: border-box;
    }

        .keh-menu.is-open {
            display: block;
        }

        .keh-menu > li {
            width: 100%;
            border-bottom: 1px solid #ececec;
        }

        .keh-menu a {
            padding: 14px 20px;
            line-height: 1.35;
        }

    .keh-dropdown:hover > .keh-submenu {
        display: none;
    }

    .keh-dropdown.is-open > .keh-submenu {
        display: block;
    }

    .keh-submenu {
        position: static;
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;
        border-top: 0;
        border-radius: 0;
        box-shadow: none;
        box-sizing: border-box;
    }

        .keh-submenu a {
            padding: 12px 32px;
            font-size: 14px;
        }

    .keh-dropdown.is-open > a .keh-caret {
        transform: rotate(225deg);
    }
}

.keh-footer {
    /* background: #202020; */
    /* color: #ddd; */
    /* font-family: Arial,sans-serif; */
    /* margin-top: 40px; */
}

.myfootb.keh-footer {
    background-image: url(../images/footerimg.png);
    width: 100%;
    padding-top: 28px;
}


    /* Headings */
    .myfootb.keh-footer h3 {
        color: #fff;
        font-size: 17px;
        font-weight: bold;
        margin: 0 0 15px;
        padding: 0;
    }

    /* Paragraph */
    .myfootb.keh-footer p {
        color: #fff;
        font-size: 14px;
        line-height: 1.65;
        margin: 0 0 10px;
    }

    /* Lists */
    .myfootb.keh-footer ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .myfootb.keh-footer li {
        margin: 0 0 8px;
        padding: 0;
    }

    /* Links */
    .myfootb.keh-footer a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
    }

        .myfootb.keh-footer a:hover {
            color: #fff;
            text-decoration: none;
        }

/* About / Services icons */
.keh-footer-column li a::before {
    content: "\f0a4";
    font-family: FontAwesome;
    margin-right: 5px;
    font-size: 12px;
}

/* Contact column - don't show list icon */
.keh-footer-contact p a::before {
    content: none;
}

/* Social Icons */
.keh-social {
    display: flex;
    gap: 14px;
    margin: 0 0 25px;
    align-items: center;
}

    .keh-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        background: #ffffff;
        border-radius: 4px;
        /* font-family: Arial, sans-serif !important; */
        font-size: 13px !important;
        color: #214e6e !important;
        text-decoration: none;
    }

@media (max-width: 991px) {

    .myfootb.keh-footer .keh-container {
        padding: 30px 35px;
    }

    .keh-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .keh-brand img {
        width: 81px;
    }
}

@media (max-width: 600px) {

    .myfootb.keh-footer .keh-container {
        padding: 30px 20px;
    }

    .keh-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .myfootb.keh-footer h3 {
        margin-bottom: 15px;
    }

    .myfootb.keh-footer p,
    .myfootb.keh-footer a {
        font-size: 14px;
    }
}

@media(max-width:560px) {
    .keh-topbar {
        display: none
    }

    .keh-topbar-inner {
        /* justify-content: flex-end; */
    }

    .keh-footer-grid {
        grid-template-columns: 1fr
    }

    .keh-brand small {
        font-size: 9px
    }

    .keh-container {
        padding-left: 15px;
        padding-right: 15px
    }
}

.site-footer {
    position: relative;
    width: 100%;
    background: #087bb8;
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    min-height: 58px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
}

/* Copyright */

.footer-copyright {
    font-size: 13px;
    line-height: 1.5;
    color: #ffffff;
}

/* Developer */

.footer-developer {
    font-size: 13px;
    color: #ffffff;
    text-align: right;
}

    .footer-developer a {
        color: #ffce00 !important;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s ease;
    }

        .footer-developer a:hover {
            color: #25b9df;
        }

    .footer-developer span {
        /* color: #60789d; */
    }


@media (max-width: 768px) {

    .footer-container {
        min-height: auto;
        padding: 18px 20px;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-developer {
        font-size: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .footer-container {
        padding: 16px 15px;
    }

    .footer-copyright,
    .footer-developer {
        font-size: 11px;
    }
}
