* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
  :root {
    --nsh-primary-green: #0d7a46;
    --nsh-primary-orange: #ff6f00;
    --nsh-orange-hover: #e06200;
    --nsh-bg-light: #faf5f0;
    --nsh-bg-white: #ffffff;
    --nsh-text-dark: #333333;
    --nsh-text-muted: #666666;
    --nsh-border-color: #e3e3e3;
    --nsh-shadow-light: rgba(0,0,0,0.05);
    --nsh-shadow-dark: rgba(0,0,0,0.3);
    --nsh-orange-alpha-15: rgba(255, 111, 0, 0.15);
    --nsh-orange-alpha-25: rgba(255, 111, 0, 0.25);
  }
        body {
            color: #333333;
            background-color: #ffffff;
            /* overflow-x: hidden; */
        }

        /* --- TOP STRIP & STICKY MAIN HEADER --- */
        
        /* Top Green Contact Strip (Scrolls away) */
        .top-contact-strip {
            background-color: #0d7a46;
            color: #ffffff;
            padding: 10px 5%;
            
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1001;
        }

        @media (max-width: 767px) {
        .top-contact-strip {
            display: none;
        }
    }

        .top-contact-strip a {
            color: #ffffff;
            text-decoration: none;
            margin-right: 10px;
        }

        .top-contact-strip .contact-left span {
            margin-right: 20px;
        }

        /* Main Navbar Area (Sticks to top on scroll) */
        header {
            /* position: relative;
            top: 0; */
            background-color: #ffffff;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 97px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            /* background-color: #ffffff;
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 97px; */
            /* z-index: 1000;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05); */
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .logo span {
            font-size: 1.6rem;
            font-weight: 800;
            color: #0d7a46;
            line-height: 1.2;
        }

        .logo i {
            color: #ff6f00;
            font-size: 1.8rem;
        }

        /* Desktop Nav Styles */
        nav {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 38px;
            align-items: center;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: #333333;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 10px 0;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }

        .nav-links a:hover, .nav-links .active {
            color: #ff6f00;
        }

        /* Services Dropdown (Desktop) */
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            list-style: none;
            min-width: 230px;
            border-top: 3px solid #ff6f00;
            border-radius: 0 0 4px 4px;
            z-index: 100;
        }

        .dropdown-menu li a {
            display: block;
            padding: 12px 20px;
            color: #333333;
            border-bottom: 1px solid #eeeeee;
        }

        .dropdown-menu li a:hover {
            background-color: #fcfcfc;
            color: #ff6f00;
            padding-left: 25px;
        }

        /* Show dropdown on hover for desktop */
        @media (min-width: 1025px) {
            .dropdown:hover .dropdown-menu {
                display: block;
            }
        }

        .book-btn {
            background-color: #0d7a46;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .book-btn:hover {
            background-color: #ff6f00;
        }

        /* Mobile Menu Toggle Button */
        .menu-toggle-btn {
            display: none;
            font-size: 1.6rem;
            color: #0d7a46;
            cursor: pointer;
        }

        /* --- HERO LOW-HEIGHT CAROUSEL --- */
        .hero-carousel {
            position: relative;
            width: 100%;
            height: 482px; 
            overflow: hidden;
            background-color: #e3e3e3;
        }

        .carousel-track {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            width: 33.333%;
            height: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide:nth-child(1) { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1200&q=80'); }
        .slide:nth-child(2) { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1584515979956-d9f6e5d09982?auto=format&fit=crop&w=1200&q=80'); }
        .slide:nth-child(3) { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1581594693702-fbdc51b2763b?auto=format&fit=crop&w=1200&q=80'); }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 8%;
            color: #ffffff;
        }

        .slide-overlay h1 {
            font-size: 2.6rem;
            margin-bottom: 15px;
            max-width: 650px;
            font-weight: 700;
            line-height: 1.2;
        }

        .slide-overlay p {
            font-size: 1.1rem;
            max-width: 500px;
            opacity: 0.9;
        }

        .hero-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.3);
            color: #ffffff;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .hero-btn:hover {
            background: #ff6f00;
        }

        .hero-btn.prev { left: 20px; }
        .hero-btn.next { right: 20px; }

        /* --- ABOUT US SECTION --- */
        .about-section {
            padding: 70px 8%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-img img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            object-fit: cover;
        }

        .about-content h3 {
            color: #ff6f00;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .about-content h2 {
            font-size: 2.4rem;
            color: #0d7a46;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .about-content p {
            color: #666666;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .readmore-btn {
            display: inline-block;
            background-color: #ff6f00;
            color: #ffffff;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .readmore-btn:hover {
            background-color: #e06200;
            transform: translateY(-2px);
        }

        /* --- SERVICES SECTION (9 CARDS) --- */
        .services-section {
            background-color: #faf5f0;
            padding: 80px 8%;
            text-align: center;
        }

        .section-title {
            font-size: 2.4rem;
            color: #ff6f00;
            margin-bottom: 50px;
            font-weight: 700;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background-color: #ff6f00;
            color: #ffffff;
            padding: 40px 30px;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            text-align: left;
            box-shadow: 0 5px 20px rgba(255, 111, 0, 0.15);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(255, 111, 0, 0.25);
        }

        .service-icon-wrapper {
            background-color: #0d7a46;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-icon-wrapper {
            transform: scale(1.15);
        }

        .service-icon-wrapper i {
            font-size: 1.5rem;
            color: #ffffff;
        }

        .service-card h4 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .service-card p {
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .service-arrow {
            position: absolute;
            bottom: -50px;
            right: 25px;
            background-color: #ffffff;
            color: #ff6f00;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .service-card:hover .service-arrow {
            bottom: 20px;
        }

        /* --- ACHIEVEMENTS SECTION --- */
        .achievements-section {
            padding: 80px 8%;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: center;
        }

        .achievements-left h2 {
            font-size: 2.4rem;
            color: #0d7a46;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .achievements-left p {
            color: #666666;
            line-height: 1.7;
        }
        
        .achievements-right {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 5px;
        }
         @media (min-width: 321px){
            .achievements-right{
                gap: 25px;
            }
        }
        .achieve-card {
            background-color: #ffffff;
            border: 1px solid #eeeeee;
            padding: 35px 25px;
            text-align: center;
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }

        .achieve-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
            transform: translateY(-3px);
        }

        .achieve-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: #ff6f00;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.6rem;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .achieve-card:hover .achieve-circle {
            transform: rotate(360deg);
        }

        .achieve-card h3 {
            font-size: 2.2rem;
            color: #0d7a46;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .achieve-card p {
            font-size: 0.95rem;
            color: #666666;
            font-weight: 500;
        }

        /* --- WHY CHOOSE US SECTION --- */
        .why-choose-section {
            background-color: #f2f7f5;
            padding: 80px 8%;
            text-align: center;
        }

        .why-container {
            display: grid;
            grid-template-columns: 1fr 0.8fr 1fr;
            gap: 30px;
            align-items: center;
            margin-top: 50px;
        }

        .why-features {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .why-feature-item {
            background-color: #ffffff;
            padding: 25px;
            border-radius: 10px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            text-align: left;
            box-shadow: 0 4px 10px rgba(0,0,0,0.01);
            transition: all 0.3s ease;
        }

        .why-feature-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.04);
        }

        .why-feature-item i {
            color: #0d7a46;
            font-size: 1.6rem;
            margin-top: 3px;
        }

        .why-feature-item h4 {
            color: #0d7a46;
            font-size: 1.1rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .why-feature-item p {
            font-size: 0.9rem;
            color: #666666;
            line-height: 1.6;
        }

        .why-center-img img {
            width: 100%;
            border-radius: 50%;
            border: 8px solid #ffffff;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }

        /* --- OUR TEAM SECTION --- */
        .team-section {
            padding: 80px 8%;
            text-align: center;
        }

        .team-container {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 50px;
            margin-top: 50px;
            align-items: center;
        }

        .team-left-profile {
            background-color: #ffffff;
            border: 1px solid #eeeeee;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);

        }
        
        .team-left-profile:hover{
            transform: scale(1.05);
            
        }
        .team-left-profile img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 4px solid #ff6f00;
        }

        .team-left-profile h4 {
            font-size: 1.3rem;
            color: #0d7a46;
            margin-bottom: 5px;
        }

        .team-left-profile p {
            font-size: 0.95rem;
            color: #666666;
        }

        .team-left-profile .badge {
            display: inline-block;
            margin-top: 15px;
            font-size: 0.85rem;
            color: #ff6f00;
            font-weight: 600;
            background-color: #faf5f0;
            padding: 6px 15px;
            border-radius: 20px;
        }

        .team-right-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            text-align: left;
        }

        .department-item {
            padding: 15px 20px;
            background-color: #ffffff;
            border-left: 4px solid #ff6f00;
            box-shadow: 0 3px 10px rgba(0,0,0,0.03);
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0 4px 4px 0;
        }

        .department-item:hover {
            background-color: #ff6f00;
            color: #ffffff;
            transform: translateX(5px);
        }

        .department-item i {
            font-size: 0.8rem;
        }

        /* --- CONTACT SECTION --- */
        .contact-section {
            background-color: #faf5f0;
            padding: 80px 8%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: stretch;
        }

        .contact-left-img {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.1)), url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=800&q=80');
            background-size: cover;
            background-position: center;
            min-height: 400px;
        }

        .img-overlay-text {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            background: rgba(13, 122, 70, 0.95);
            color: #ffffff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .img-overlay-text h4 {
            font-size: 1.25rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .img-overlay-text p {
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 1.5;
        }

        .contact-right-form {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.03);
        }

        .contact-right-form h3 {
            margin-bottom: 25px;
            color: #0d7a46;
            font-size: 1.6rem;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group-full {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #dddddd;
            border-radius: 6px;
            outline: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: #ff6f00;
        }

        textarea.form-control {
            resize: none;
            height: 120px;
        }

        .submit-btn {
            background-color: #ff6f00;
            color: #ffffff;
            border: none;
            padding: 15px 30px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #e06200;
        }

        /* --- SCROLLER CONTAINER --- */
        .scroller-container {
            padding: 80px 8%;
            text-align: center;
            position: relative;
        }

        .scroller-outer-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
        }

        .scroller-wrapper {
            overflow: hidden;
            width: 100%;
            margin: 20px 0;
        }

        .scroller-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease-in-out;
        }

        .scroller-item {
            flex: 0 0 100%;
            max-width: 100%;
        }

        @media (min-width: 576px) { .scroller-item { flex: 0 0 calc(50% - 15px); } }
        @media (min-width: 1025px) { .scroller-item { flex: 0 0 calc(33.333% - 20px); } }

        .scroll-btn {
            background-color: #ffffff;
            color: #0d7a46;
            border: 1px solid #eeeeee;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            position: absolute;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .scroll-btn:hover {
            background-color: #ff6f00;
            color: #ffffff;
            border-color: #ff6f00;
        }

        .scroll-btn.prev { left: -25px; }
        .scroll-btn.next { right: -25px; }
       @media (min-width: 426px) {
        .scroll-btn.prev {left: -52px;}
        .scroll-btn.next {right: -52px;}
       }
       @media (min-width: 769px) {
        .scroll-btn.prev {left: -60px;}
        .scroll-btn.next {right: -60px;}
       }
       @media (min-width: 1025px) {
        .scroll-btn.prev {left: -70px;}
        .scroll-btn.next {right: -70px;}
       }
        /* Testimonials */
        .testimonial-card {
            background-color: #ffffff;
            border: 1px solid #f0f0f0;
            padding: 35px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.01);
            height: 100%;
        }

        .testimonial-card p {
            font-style: italic;
            color: #666666;
            margin-bottom: 25px;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .testimonial-user {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .testimonial-user i {
            font-size: 2.2rem;
            color: #ff6f00;
        }

        .testimonial-user h5 {
            font-size: 1.05rem;
            color: #0d7a46;
            font-weight: 600;
        }

        /* Insurance Partners */
        .insurance-section {
            background-color: #fafafa;
            border-top: 1px solid #eeeeee;
            border-bottom: 1px solid #eeeeee;
        }

        .partner-logo-box {
            background-color: #ffffff;
            border: 1px solid #e8e8e8;
            height: 95px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            padding: 20px;
        }

        .partner-logo-box i {
            font-size: 2rem;
            color: #cccccc;
            margin-right: 12px;
        }

        .partner-logo-box span {
            font-weight: 700;
            color: #555555;
            font-size: 1.15rem;
        }

        /* --- FOOTER --- */
        footer {
            background-color: #ff6f00; 
            color: #ffffff;
            padding: 80px 8% 25px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            color: #ffffff;
            font-size: 1.25rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 8px;
            font-weight: 700;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 45px;
            height: 3px;
            background-color: #ffffff;
        }

        .footer-col p {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            opacity: 0.9;
        }

        .footer-col ul li a:hover {
            opacity: 1;
            padding-left: 6px;
            font-weight: 600;
        }

        .footer-socials {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .footer-socials a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-socials a:hover {
            background-color: #ffffff;
            color: #ff6f00;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 25px;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.8;
            
        }
        
        @media (min-width: 768px){
            .footer-bottom{
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        
        /* Intermediate Laptop/Desktop layout safe logic (1025px to 1200px) */
        @media (min-width: 1025px) and (max-width: 1200px) {
            header {
                padding: 0 3%;
            }
            nav {
                gap: 12px;
            }
            .nav-links {
                gap: 12px;
            }
            .nav-links a {
                font-size: 0.8rem;
            }
            .logo span {
                font-size: 1.4rem;
            }
            .book-btn {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
        }

        /* Mobile View Navigation Setup (Now safely triggers at 1024px) */
        @media (max-width: 1024px) {
            nav {
                position: absolute;
                top: 80px; 
                left: -100%;
                width: 100%;
                max-width: 320px;
                height: calc(100vh - 80px);
                background-color: #ffffff;
                box-shadow: 4px 10px 15px rgba(0,0,0,0.1);
                display: flex;
                flex-direction: column;
                align-items: stretch;
                padding: 25px;
                gap: 20px;
                transition: left 0.3s ease-in-out;
                overflow-y: auto; 
                /* z-index: 9999; */
            }

            nav.active {
                left: 0;
               
            }

            .nav-links {
                flex-direction: column;
                width: 100%;
                gap: 5px; 
                align-items: stretch;
            }

            .nav-links li {
                width: 100%;
                position: static; 
                display: block;
            }

            .nav-links li a {
                width: 100%;
                padding: 12px 10px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                border-bottom: 1px solid #f5f5f5;
                font-size: 0.95rem;
            }

            /* Services Mobile Submenu Setup */
            .dropdown-menu {
                position: relative;
                top: 0;
                left: 0;
                box-shadow: none;
                border-top: none;
                width: 100%;
                background-color: #faf9f8;
                display: none; 
                border-radius: 4px;
                margin: 5px 0 10px 0;
                padding: 5px 0;
            }

            .dropdown-menu.show {
                display: block !important;
            }

            .dropdown-menu li a {
                padding: 10px 20px;
                font-size: 0.85rem;
                font-weight: 500;
                color: #555555;
                border-bottom: 1px solid #eeeeee;
            }

            .dropdown-menu li:last-child a {
                border-bottom: none;
            }

            .menu-toggle-btn {
                display: block;
            }

            .book-btn {
                width: 100%;
                text-align: center;
                margin-top: 15px;
                padding: 12px;
            }

            /* Responsive Layout Grids */
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-section, 
            .achievements-section, 
            .why-container, 
            .team-container, 
            .contact-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .why-center-img {
                order: -1;
                max-width: 250px;
                margin: 0 auto;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .slide-overlay h1 {
                font-size: 1.8rem;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .team-right-list {
                grid-template-columns: 1fr;
            }
        }







        /*==============================
New Sigmaa About Section
==============================*/

.nsah-about-section{
    width:100%;
    padding:90px 20px;
    background:#ffffff;
    overflow:hidden;
}

.nsah-container{
    max-width:1435px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/*==============================
Images
==============================*/

.nsah-image-area{
    flex:1;
    position:relative;
}

.nsah-main-image{
    width:100%;
    max-width:650px;
    border-radius:0;
    overflow:hidden;
}

.nsah-main-image img{
    width:100%;
    display:block;
    object-fit:cover;
}

.nsah-circle-image{
    position:absolute;
    right:-70px;
    top:50%;
    transform:translateY(-50%);
    width:360px;
    height:360px;
    border-radius:50%;
    overflow:hidden;
    border:10px solid #ffffff;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    background:#fff;
}

.nsah-circle-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/*==============================
Content
==============================*/

.nsah-content{
    flex:1;
    padding-left:60px;
}

.nsah-subtitle{
    display:inline-block;
    font-size:22px;
    color:#ff6600;
    font-weight:700;
    margin-bottom:15px;
}

.nsah-content h2{
    font-size:41px;
    line-height:1.2;
    color:#111111;
    margin-bottom:25px;
    font-weight:700;
}

.nsah-content p{
    font-size:18px;
    color:#555555;
    line-height:1.9;
    margin-bottom:28px;
}

.nsah-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:18px 38px;
    background:#ff6600;
    color:#ffffff;
    text-decoration:none;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    transition:.4s;
}

.nsah-btn:hover{
    background:#e95b00;
    color:#ffffff;
    transform:translateY(-3px);
}

.nsah-btn span{
    font-size:24px;
    transition:.3s;
}

.nsah-btn:hover span{
    transform:translateX(6px);
}

/*==============================
Large Desktop
==============================*/

@media(max-width:1400px){

.nsah-circle-image{
    width:320px;
    height:320px;
    right:-50px;
}

}

/*==============================
Laptop
==============================*/

@media(max-width:1200px){

.nsah-container{
    gap:50px;
}

.nsah-content{
    padding-left:20px;
}

.nsah-content h2{
    font-size:42px;
}

.nsah-content p{
    font-size:17px;
}

}

/*==============================
Tablet
Hide Circle Image
==============================*/

@media(max-width:991px){

.nsah-container{
    flex-direction:column;
    gap:45px;
}

.nsah-image-area{
    width:100%;
}

.nsah-main-image{
    max-width:100%;
}

.nsah-circle-image{
    display:none;
}

.nsah-content{
    width:100%;
    padding-left:0;
}

.nsah-content h2{
    font-size:38px;
}

}

/*==============================
Mobile
==============================*/

@media(max-width:767px){

.nsah-about-section{
    padding:70px 18px;
}

.nsah-subtitle{
    font-size:20px;
}

.nsah-content h2{
    font-size:32px;
}

.nsah-content p{
    font-size:16px;
    line-height:1.8;
}

.nsah-btn{
    padding:16px 30px;
    font-size:16px;
}

}

/*==============================
Small Mobile
==============================*/

@media(max-width:480px){

.nsah-content h2{
    font-size:28px;
}

.nsah-content p{
    font-size:15px;
}

.nsah-btn{
    width:100%;
    justify-content:center;
}

}




.top-contact-strip{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 40px;
    background:#087742;
    color:#fff;
    font-size:16px;
    flex-wrap:wrap;
}

.contact-left,
.contact-right{
    display:flex;
    align-items:center;
    gap:25px;
}

.contact-left span,
.contact-right span{
    display:flex;
    align-items:center;
    gap:8px;
}

.top-social-icons{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:10px;
}

.top-social-icons a{
    width:32px;
    height:32px;
    border:1px solid rgba(255,255,255,.3);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.top-social-icons a:hover{
    background:#ff6600;
    border-color:#ff6600;
    transform:translateY(-2px);
}

@media(max-width:768px){

.top-contact-strip{
    padding:10px 15px;
    justify-content:center;
    text-align:center;
}

.contact-left,
.contact-right{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.top-social-icons{
    margin-left:0;
}

}





/*=========================================
NSHSV3 Services Section
Part 2 - Main CSS
Unique Class : nshsv3-
==========================================*/

.nshsv3-section{
    padding:100px 20px;
    background:#f7f7f7;
}

.nshsv3-container{
    max-width:1200px;
    margin:auto;
}

/*=========================
Heading
=========================*/

.nshsv3-heading{
    text-align:center;
    margin-bottom:60px;
}

.nshsv3-heading span{
    display:inline-block;
    color:#ff6b00;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:15px;
}

.nshsv3-heading h2{
    font-size:46px;
    color:#111;
    margin-bottom:18px;
    font-weight:700;
}

.nshsv3-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/*=========================
Grid
=========================*/

.nshsv3-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*=========================
Card
=========================*/

.nshsv3-card{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    position:relative;

    transition:.45s;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

/*=========================
Image
=========================*/

.nshsv3-image{

    position:relative;

    width:100%;

    height:250px;

    overflow:hidden;

}

.nshsv3-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:1s;

}

/* Dark Overlay */

.nshsv3-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.45),
    rgba(0,0,0,.05));

    z-index:1;

}

/*=========================
Top Right Icon
=========================*/

.nshsv3-icon{

    position:absolute;

    top:18px;

    right:18px;

    width:70px;

    height:70px;

    border-radius:50%;

    background:#ff6b00;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:2;

    box-shadow:0 12px 25px rgba(0,0,0,.25);

}

.nshsv3-icon i{

    color:#ffffff;

    font-size:30px;

}

/*=========================
Content
=========================*/

.nshsv3-content{

    padding:30px;

    position:relative;

}

.nshsv3-content h3{

    font-size:25px;

    color:#111111;

    margin-bottom:15px;

    font-weight:700;

}

.nshsv3-content p{

    color:#666666;

    line-height:1.8;

    font-size:16px;

    margin-bottom:30px;

}

/*=========================
Read More Button
=========================*/

.nshsv3-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#ff6b00;

    font-weight:700;

    font-size:16px;

    transition:.4s;

}

.nshsv3-content a i{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#ff6b00;

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.4s;

}

/*=========================
Decorative Pattern
=========================*/

.nshsv3-card::after{

    content:"";

    position:absolute;

    left:-60px;

    bottom:-60px;

    width:180px;

    height:180px;

    background:radial-gradient(circle,#ffd5b4 12%,transparent 13%);

    background-size:22px 22px;

    opacity:.35;

    border-radius:50%;

    transition:.5s;

}
/*=========================================
NSHSV3 Premium Hover Effects
=========================================*/

/* Card Hover */

.nshsv3-card{
    transition:all .45s ease;
}

.nshsv3-card:hover{
    transform:translateY(-15px);
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

/*==================================
Image Zoom
==================================*/

.nshsv3-image{
    overflow:hidden;
}

.nshsv3-image img{
    transition:1s ease;
}

.nshsv3-card:hover .nshsv3-image img{
    transform:scale(1.12);
}

/*==================================
Overlay Dark
==================================*/

.nshsv3-image::before{
    transition:.5s;
}

.nshsv3-card:hover .nshsv3-image::before{
    background:linear-gradient(
    to top,
    rgba(0,0,0,.60),
    rgba(0,0,0,.20)
    );
}

/*==================================
Top Right Icon
==================================*/

.nshsv3-icon{
    transition:.8s;
}

.nshsv3-icon i{
    transition:.8s;
}

/* Rotate Circle */

.nshsv3-card:hover .nshsv3-icon{
    transform:rotate(360deg);
    background:#ffffff;
}

/* Flip FontAwesome */

.nshsv3-card:hover .nshsv3-icon i{
    transform:rotateY(360deg);
    color:#ff6b00;
}

/*==================================
Content
==================================*/

.nshsv3-content{
    transition:.4s;
}

.nshsv3-card:hover .nshsv3-content{
    background:#ff6b00;
}

.nshsv3-card:hover .nshsv3-content h3{
    color:#ffffff;
}

.nshsv3-card:hover .nshsv3-content p{
    color:#f8f8f8;
}

/*==================================
Read More
==================================*/

.nshsv3-content a{
    transition:.4s;
}

.nshsv3-content a i{
    transition:.45s;
}

/* Text */

.nshsv3-card:hover .nshsv3-content a{
    color:#ffffff;
}

/* Button */

.nshsv3-card:hover .nshsv3-content a i{

    background:#ffffff;

    color:#ff6b00;

}

/* Arrow Move */

.nshsv3-card:hover .nshsv3-content a i{

    transform:translateX(8px);

}

/*==================================
Pattern Animation
==================================*/

.nshsv3-card::after{

    transition:.8s;

}

.nshsv3-card:hover::after{

    transform:rotate(20deg) scale(1.2);

    opacity:.55;

}

/*==================================
Orange Border
==================================*/

.nshsv3-card::before{

    content:"";

    position:absolute;

    inset:0;

    border:2px solid transparent;

    border-radius:18px;

    pointer-events:none;

    transition:.45s;

}

.nshsv3-card:hover::before{

    border-color:#ff6b00;

}

/*==================================
Premium Shine Effect
==================================*/

.nshsv3-card{

    position:relative;

}

.nshsv3-card .nshsv3-shine{

    position:absolute;

    top:-120%;

    left:-60%;

    width:60%;

    height:240%;

    background:rgba(255,255,255,.25);

    transform:rotate(25deg);

    pointer-events:none;

}

.nshsv3-card:hover .nshsv3-shine{

    left:150%;

    transition:1s;

}

/*==================================
Smooth Transition
==================================*/

.nshsv3-card,
.nshsv3-image img,
.nshsv3-icon,
.nshsv3-icon i,
.nshsv3-content,
.nshsv3-content h3,
.nshsv3-content p,
.nshsv3-content a,
.nshsv3-content a i{

    transition:all .45s ease;

}
/*=========================================
NSHSV3 Responsive CSS
Unique Class : nshsv3-
==========================================*/

/*==============================
1400px
==============================*/

@media (min-width:1400px){

.nshsv3-container{
    max-width:1320px;
}

.nshsv3-grid{
    gap:35px;
}

.nshsv3-image{
    height:270px;
}

}

/*==============================
1200px
==============================*/

@media (max-width:1200px){

.nshsv3-container{
    max-width:1140px;
}

.nshsv3-grid{
    gap:25px;
}

.nshsv3-image{
    height:220px;
}

.nshsv3-content{
    padding:25px;
}

.nshsv3-content h3{
    font-size:22px;
}

.nshsv3-content p{
    font-size:15px;
}

}

/*==============================
991px
==============================*/

@media (max-width:991px){

.nshsv3-section{
    padding:80px 18px;
}

.nshsv3-grid{
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.nshsv3-heading{
    margin-bottom:50px;
}

.nshsv3-heading h2{
    font-size:38px;
}

.nshsv3-heading p{
    font-size:16px;
}

.nshsv3-image{
    height:220px;
}

.nshsv3-icon{
    width:65px;
    height:65px;
}

.nshsv3-icon i{
    font-size:28px;
}

}

/*==============================
768px
==============================*/

@media (max-width:768px){

.nshsv3-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.nshsv3-image{
    height:200px;
}

.nshsv3-content{
    padding:22px;
}

.nshsv3-content h3{
    font-size:20px;
}

.nshsv3-content p{
    font-size:14px;
    line-height:1.7;
}

.nshsv3-icon{

    width:60px;
    height:60px;

    top:15px;
    right:15px;

}

.nshsv3-icon i{
    font-size:24px;
}

}

/*==============================
576px
==============================*/

@media (max-width:576px){

.nshsv3-section{
    padding:60px 15px;
}

.nshsv3-heading{
    margin-bottom:40px;
}

.nshsv3-heading span{
    font-size:15px;
}

.nshsv3-heading h2{
    font-size:30px;
}

.nshsv3-heading p{
    font-size:15px;
}

.nshsv3-grid{
    grid-template-columns:1fr;
    gap:22px;
}

.nshsv3-image{
    height:230px;
}

.nshsv3-content{
    padding:25px;
}

.nshsv3-content h3{
    font-size:22px;
}

.nshsv3-content p{
    font-size:15px;
}

.nshsv3-icon{

    width:62px;
    height:62px;

}

.nshsv3-icon i{

    font-size:24px;

}

}

/*==============================
420px
==============================*/

@media (max-width:420px){

.nshsv3-section{
    padding:50px 12px;
}

.nshsv3-heading h2{
    font-size:26px;
}

.nshsv3-heading p{
    font-size:14px;
}

.nshsv3-image{
    height:200px;
}

.nshsv3-content{
    padding:20px;
}

.nshsv3-content h3{
    font-size:20px;
}

.nshsv3-content p{
    font-size:14px;
}

.nshsv3-icon{

    width:55px;
    height:55px;

    top:12px;
    right:12px;

}

.nshsv3-icon i{
    font-size:22px;
}

.nshsv3-content a{
    font-size:15px;
}

.nshsv3-content a i{

    width:38px;
    height:38px;
    font-size:14px;

}

}

/*==============================
Touch Devices
==============================*/

@media (hover:none){

.nshsv3-card:hover{

    transform:none;

}

.nshsv3-card:hover .nshsv3-image img{

    transform:none;

}

.nshsv3-card:hover .nshsv3-icon{

    transform:none;

}

.nshsv3-card:hover .nshsv3-icon i{

    transform:none;

}

}


        /* --- RESET & BASE STYLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f2f7f5;
            color: #333333;
            line-height: 1.6;
        }

        

        /* --- MAIN CONTENT SECTIONS --- */
        .nsh-about-main {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .nsh-about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 60px;
        }

        @media (min-width: 992px) {
            .nsh-about-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .nsh-about-text-block h2 {
            color: #087742;
            font-size: 2.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .nsh-about-text-block h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background-color: #ff6f00;
            border-radius: 2px;
        }

        .nsh-about-text-block p {
            margin-bottom: 20px;
            color: #333333;
            font-size: 1.05rem;
        }

        .nsh-about-image-card {
            background-color: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            border-top: 4px solid #087742;
        }

        /* --- HIGHLIGHT VALUES / COUNTERS --- */
        .nsh-values-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .nsh-value-box {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            border: 1px solid rgba(8, 119, 66, 0.1);
            transition: all 0.3s ease;
        }

        .nsh-value-box:hover {
            transform: translateY(-5px);
            border-color: #ff6f00;
            box-shadow: 0 8px 25px rgba(255, 111, 0, 0.1);
        }

        .nsh-value-icon-circle {
            width: 60px;
            height: 60px;
            background-color: #f2f7f5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            color: #0d7a46;
            font-weight: 700;
            font-size: 1.4rem;
            transition: all 0.3s ease;
        }

        .nsh-value-box:hover .nsh-value-icon-circle {
            background-color: #ff6f00;
            color: #fff;
        }

        .nsh-value-box h3 {
            color: #087742;
            margin-bottom: 12px;
            font-size: 1.25rem;
        }

        .nsh-value-box p {
            font-size: 0.95rem;
            color: #333333;
        }
      #main-header {
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* Base Banner Container */
.hosp-hero-banner {
  position: relative;
  width: 100%;
  min-height: 450px; /* Default height for desktop */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Replace with your actual hospital background image URL */
  background-image: url('https://images.unsplash.com/photo-1586773860418-d3b3de97e663?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 10%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Dark Overlay to ensure text readability */
.hosp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

/* Content Box Wrapper */
.hosp-hero-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Breadcrumbs Styling */
.hosp-hero-breadcrumbs {
  margin-bottom: 8px;
}

.hosp-breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
}

.hosp-breadcrumb-item {
  color: #ffffff;
  display: flex;
  align-items: center;
}

/* Separator slashes between breadcrumbs */
.hosp-breadcrumb-item + .hosp-breadcrumb-item::before {
  content: "/";
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

/* Interactive link style */
.hosp-breadcrumb-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Orange Hover Effect requested */
.hosp-breadcrumb-link:hover {
  color: #ff9800; 
}

/* Active page style (non-clickable) */
.hosp-breadcrumb-active {
  color: rgba(255, 255, 255, 0.8);
}

/* Main Typography */
.hosp-hero-heading {
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.hosp-hero-lead {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0;
  max-width: 650px;
}

/* --- Responsiveness Media Queries --- */

/* For Tablets (Max width 768px) */
@media (max-width: 768px) {
  .hosp-hero-banner {
    min-height: 380px;
    padding: 40px 5%;
  }

  .hosp-hero-heading {
    font-size: 2.25rem;
  }

  .hosp-hero-lead {
    font-size: 1.05rem;
  }
}

/* For Mobile Devices (Max width 480px) */
@media (max-width: 480px) {
  .hosp-hero-banner {
    min-height: 320px;
    padding: 30px 20px;
    align-items: center; /* Center content vertically on small screens */
  }

  .hosp-hero-container {
    gap: 12px;
  }

  .hosp-hero-heading {
    font-size: 1.75rem;
  }

  .hosp-hero-lead {
    font-size: 0.95rem;
  }
  
  .hosp-breadcrumb-list {
    font-size: 0.85rem;
  }
}

/*====================================================
      KV HERO BANNER
====================================================*/

.kvhero-banner-wrap{
    position:relative;
    width:100%;
    height:380px;
    background:url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1200&q=80") center center/cover no-repeat;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
}

.kvhero-banner-wrap::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to right,
    rgba(0,0,0,.72),
    rgba(0,0,0,.45),
    rgba(0,0,0,.25));
}

.kvhero-banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.12);
}

.kvhero-banner-content{
    position:relative;
    width:100%;
    max-width:1170px;
    margin:auto;
    padding:0 20px 35px;
    z-index:2;
}

.kvhero-banner-content h1{
    color:#ffffff;
    font-size:42px;
    font-weight:700;
    margin:0 0 12px;
    letter-spacing:.5px;
}

.kvhero-banner-breadcrumbs{
    display:flex;
    align-items:center;
    /* justify-content: center; */
    flex-wrap:wrap;
    gap:10px;
    color:#ffffff;
    font-size:15px;

}

.kvhero-banner-breadcrumbs a{
    color:#ffffff;
    text-decoration:none;
    transition:.35s;
}

.kvhero-banner-breadcrumbs a:hover{
    color:#ff9800;
}

.kvhero-banner-breadcrumbs i{
    margin-right:6px;
}

.kvhero-current-page{
    color:#ff9800;
    font-weight:600;
}

/*=========================
Tablet
=========================*/

@media (max-width:991px){

.kvhero-banner-wrap{
    height:320px;
}

.kvhero-banner-content{
    padding:0 20px 28px;
}

.kvhero-banner-content h1{
    font-size:34px;
}

.kvhero-banner-breadcrumbs{
    font-size:14px;
}

}

/*=========================
Mobile
=========================*/

@media (max-width:767px){

.kvhero-banner-wrap{
    height:250px;
    background-position:center;
}

.kvhero-banner-content{
    padding:0 18px 22px;
}

.kvhero-banner-content h1{
    font-size:28px;
    margin-bottom:8px;
}

.kvhero-banner-breadcrumbs{
    font-size:13px;
    gap:6px;
}

.kvhero-banner-breadcrumbs i{
    margin-right:4px;
}

}

/*=========================
Small Mobile
=========================*/

@media (max-width:480px){

.kvhero-banner-wrap{
    height:240px;
}

.kvhero-banner-content{
    padding:0 15px 18px;
}

.kvhero-banner-content h1{
    font-size:24px;
}

.kvhero-banner-breadcrumbs{
    font-size:12px;
}

}
.banner-heading{
    text-align: center;
    
}
.banner-description {
    color: #fff;
    font-size: 20px;
    text-align: center;
}

  :root {
    --nsg-green: #087742;
    --nsg-green-2: #0d7a46;
    --nsg-dark: #333333;
    --nsg-white: #ffffff;
    --nsg-black: #000000;
    --nsg-mist: #f2f7f5;
    --nsg-orange: #ff6f00;
  }

  html { scroll-behavior: smooth; }

  body.nsg-body {
    font-family: 'Inter', sans-serif;
    color: var(--nsg-dark);
    background: var(--nsg-white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  .nsg-body h1, .nsg-body h2, .nsg-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--nsg-dark);
  }

  .nsg-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ===================== SCROLL REVEAL ===================== */
  .nsg-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .nsg-reveal.nsg-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===================== HERO ===================== */
  .nsg-hero {
    position: relative;
    background: linear-gradient(135deg, var(--nsg-green) 0%, var(--nsg-green-2) 55%, #06552f 100%);
    padding: 96px 0 120px;
    overflow: hidden;
    isolation: isolate;
  }

  .nsg-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.16;
    background: var(--nsg-white);
    z-index: -1;
  }
  .nsg-hero-orb--one   { width: 340px; height: 340px; top: -120px; right: -80px; }
  .nsg-hero-orb--two   { width: 220px; height: 220px; bottom: -90px; left: 6%; opacity: 0.1; }
  .nsg-hero-orb--three { width: 140px; height: 140px; top: 40%; right: 22%; opacity: 0.08; background: var(--nsg-orange); filter: blur(20px); }

  .nsg-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nsg-white);
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .nsg-hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--nsg-orange);
    animation: nsg-pulse-dot 1.8s ease-in-out infinite;
  }

  @keyframes nsg-pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.55; }
  }

  .nsg-hero-title {
    color: var(--nsg-white);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-top: 22px;
    max-width: 680px;
  }

  .nsg-hero-title span { color: var(--nsg-orange); }

  .nsg-hero-sub {
    color: rgba(255,255,255,0.88);
    font-size: 17px;
    max-width: 560px;
    margin-top: 18px;
  }

  .nsg-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
  }

  .nsg-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

  .nsg-btn--solid {
    background: var(--nsg-orange);
    color: var(--nsg-white);
    box-shadow: 0 10px 24px rgba(255, 111, 0, 0.35);
  }
  .nsg-btn--solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(255, 111, 0, 0.45);
    background: #e56400;
  }

  .nsg-btn--outline {
    background: transparent;
    color: var(--nsg-white);
    border: 1.5px solid rgba(255,255,255,0.6);
  }
  .nsg-btn--outline:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
    border-color: var(--nsg-white);
  }

  /* ===================== ECG DIVIDER ===================== */
  .nsg-ecg-wrap {
    position: relative;
    background: var(--nsg-mist);
    line-height: 0;
  }
  .nsg-ecg-wrap svg { display: block; width: 100%; height: auto; }

  .nsg-ecg-line {
    fill: none;
    stroke: var(--nsg-orange);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: nsg-draw-ecg 3.2s ease-out forwards 0.3s;
  }

  @keyframes nsg-draw-ecg {
    to { stroke-dashoffset: 0; }
  }

  /* ===================== QUICK STRIP ===================== */
  .nsg-quick-strip {
    background: var(--nsg-mist);
    padding: 30px 0 56px;
  }

  .nsg-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .nsg-quick-card {
    background: var(--nsg-white);
    border-radius: 14px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 4px 14px rgba(8, 119, 66, 0.06);
    border: 1px solid rgba(8, 119, 66, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .nsg-quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(8, 119, 66, 0.16);
    border-color: var(--nsg-green);
  }

  .nsg-quick-card--emergency {
    background: var(--nsg-orange);
    border-color: var(--nsg-orange);
  }
  .nsg-quick-card--emergency:hover {
    box-shadow: 0 16px 30px rgba(255, 111, 0, 0.32);
  }
  .nsg-quick-card--emergency .nsg-quick-label,
  .nsg-quick-card--emergency .nsg-quick-value {
    color: var(--nsg-white);
  }
  .nsg-quick-card--emergency .nsg-quick-icon {
    background: rgba(255,255,255,0.22);
    color: var(--nsg-white);
  }

  .nsg-quick-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(8, 119, 66, 0.1);
    color: var(--nsg-green);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nsg-quick-icon svg { width: 20px; height: 20px; }

  .nsg-quick-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6d7975;
    font-weight: 600;
  }

  .nsg-quick-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--nsg-dark);
    margin-top: 3px;
  }

  /* ===================== MAIN CONTACT SECTION ===================== */
  .nsg-contact-main {
    padding: 80px 0;
    background: var(--nsg-white);
  }

  .nsg-section-tag {
    color: var(--nsg-green);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .nsg-section-title {
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 800;
    margin-top: 8px;
  }

  .nsg-section-desc {
    color: #5c6763;
    max-width: 520px;
    margin-top: 12px;
    font-size: 15.5px;
  }

  .nsg-main-grid {
    margin-top: 46px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 44px;
    align-items: flex-start;
  }

  /* --- info column --- */
  .nsg-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .nsg-info-item {
    display: flex;
    gap: 6px;
    padding: 20px;
    border-radius: 14px;
    background: var(--nsg-mist);
    transition: background 0.3s ease, transform 0.3s ease;
  }
  @media (min-width: 321px){
    .nsg-info-item {
        gap: 15px;
    }
  }
  .nsg-info-item:hover {
    background: #e7f2ec;
    transform: translateX(6px);
  }

  .nsg-info-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--nsg-green);
    color: var(--nsg-white);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nsg-info-icon svg { width: 21px; height: 21px; }

  .nsg-info-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15.5px;
  }
  .nsg-info-text {
    font-size: 14px;
    color: #5c6763;
    margin-top: 3px;
  }

  .nsg-info-banner {
    margin-top: 22px;
    background: linear-gradient(120deg, var(--nsg-green), var(--nsg-green-2));
    border-radius: 14px;
    padding: 24px;
    color: var(--nsg-white);
  }
  .nsg-info-banner h3 {
    color: var(--nsg-white);
    font-size: 16px;
    font-weight: 700;
  }
  .nsg-info-banner p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.85);
    margin-top: 6px;
  }

  /* --- form column --- */
  .nsg-form-card {
    background: var(--nsg-white);
    border: 1px solid #e6ede9;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(8, 119, 66, 0.08);
  }

  .nsg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .nsg-field {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .nsg-field label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--nsg-dark);
  }

  .nsg-field label sup {
    color: var(--nsg-orange);
    font-size: 13px;
  }

  .nsg-field input,
  .nsg-field select,
  .nsg-field textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: var(--nsg-dark);
    padding: 13px 15px;
    border: 1.5px solid #dfe7e3;
    border-radius: 10px;
    background: var(--nsg-mist);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

  .nsg-field input:focus,
  .nsg-field select:focus,
  .nsg-field textarea:focus {
    border-color: var(--nsg-green);
    background: var(--nsg-white);
    box-shadow: 0 0 0 4px rgba(8, 119, 66, 0.12);
  }

  .nsg-field textarea {
    resize: vertical;
    min-height: 120px;
  }

  .nsg-field.nsg-field-error input,
  .nsg-field.nsg-field-error select,
  .nsg-field.nsg-field-error textarea {
    border-color: #d64545;
    background: #fdf3f3;
  }

  .nsg-error-msg {
    font-size: 12.5px;
    color: #d64545;
    display: none;
  }
  .nsg-field-error .nsg-error-msg { display: block; }

  .nsg-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }

  .nsg-submit-btn svg {
    width: 17px;
    height: 17px;
    transition: transform 0.3s ease;
  }
  .nsg-submit-btn:hover svg {
    transform: translateX(4px);
  }

  .nsg-form-success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    background: #e7f5ee;
    border: 1px solid var(--nsg-green);
    color: var(--nsg-green);
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
  }
  .nsg-form-success.nsg-show { display: flex; }
  .nsg-form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

  /* ===================== MAP SECTION ===================== */
  .nsg-map-section {
    width: 100%;
    background: var(--nsg-mist);
    padding-top: 10px;
  }

  .nsg-map-heading {
    text-align: center;
    padding: 60px 24px 0;
  }

  .nsg-map-frame-wrap {
    position: relative;
    width: 100%;
    margin-top: 40px;
    line-height: 0;
  }

  .nsg-map-frame-wrap iframe {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
    filter: grayscale(8%) contrast(1.02);
  }

  .nsg-map-pin-card {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--nsg-white);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 320px;
  }

  .nsg-map-pin-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--nsg-orange);
    color: var(--nsg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: nsg-bob 2.4s ease-in-out infinite;
  }
  .nsg-map-pin-icon svg { width: 20px; height: 20px; }

  @keyframes nsg-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  .nsg-map-pin-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
  }
  .nsg-map-pin-text {
    font-size: 12.5px;
    color: #5c6763;
    margin-top: 2px;
  }
  .nsg-map-pin-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--nsg-green);
    text-decoration: none;
    border-bottom: 1.5px solid var(--nsg-green);
  }
  .nsg-map-pin-link:hover { color: var(--nsg-orange); border-color: var(--nsg-orange); }

  /* ===================== FOOTER STRIP ===================== */
  .nsg-foot-strip {
    background: var(--nsg-dark);
    color: rgba(255,255,255,0.7);
    text-align: center;
    font-size: 13px;
    padding: 22px 20px;
  }
  .nsg-foot-strip span { color: var(--nsg-orange); font-weight: 700; }

  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 980px) {
    .nsg-main-grid { grid-template-columns: 1fr; }
    .nsg-quick-grid { grid-template-columns: repeat(2, 1fr); }
    .nsg-map-frame-wrap iframe { height: 400px; }
  }

  @media (max-width: 640px) {
    .nsg-hero { padding: 70px 0 90px; }
    .nsg-quick-grid { grid-template-columns: 1fr; }
    .nsg-form-row { grid-template-columns: 1fr; }
    .nsg-form-card { padding: 24px; }
    .nsg-hero-cta-row { flex-direction: column; }
    .nsg-btn { width: 100%; justify-content: center; }
    .nsg-map-pin-card {
      position: static;
      margin: 16px;
      max-width: none;
    }
    .nsg-map-frame-wrap iframe { height: 320px; }
  }

  /* ===================== REDUCED MOTION ===================== */
  @media (prefers-reduced-motion: reduce) {
    .nsg-reveal { opacity: 1; transform: none; transition: none; }
    .nsg-hero-dot, .nsg-map-pin-icon, .nsg-ecg-line { animation: none; }
    .nsg-ecg-line { stroke-dashoffset: 0; }
    .nsg-btn, .nsg-info-item, .nsg-quick-card { transition: none; }
  }

@media (max-width: 768px){
    .contact-left{
        display: none;
    }
}






/* doctors */

  .nsh-docs-section {
    font-family: 'Poppins', sans-serif;
    background-color: var(--nsh-bg-white);
    padding: 80px 20px;
    color: var(--nsh-text-dark);
  }

  .nsh-docs-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Header Configuration */
  .nsh-docs-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .nsh-docs-header.reveal {
    opacity: 1;
    transform: translateY(0);
  }

  .nsh-docs-subtitle {
    color: var(--nsh-primary-orange);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
  }

  .nsh-docs-title {
    color: var(--nsh-primary-green);
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
  }

  .nsh-docs-divider {
    width: 60px;
    height: 4px;
    background-color: var(--nsh-primary-orange);
    margin: 0 auto 20px auto;
    border-radius: 2px;
  }

  .nsh-docs-desc {
    color: var(--nsh-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
  }

  /* Responsive Uniform Grid System */
  .nsh-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 35px;
    justify-content: center;
  }

  /* Structural Card Match Layout */
  .nsh-doc-card {
    background-color: var(--nsh-bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px var(--nsh-shadow-light);
    border: 4px solid var(--nsh-border-color);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
  }

  .nsh-doc-card.reveal {
    opacity: 1;
    transform: translateY(0);
  }

  /* Smooth Transform & Tint Glow Overlays */
  .nsh-doc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--nsh-orange-alpha-20);
    border-color: rgba(255, 111, 0, 0.15);
  }

  /* Image Fitted Content Container (Locks boundary boxes securely) */
  .nsh-doc-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1.15 / 1; 
    overflow: hidden;
    background-color: #eeeeee;
  }

  /* Strictly bound the image inside without moving or translating layout */
  .nsh-doc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  /* Bounded scale up inside the frame upon card hovering triggers */
  .nsh-doc-card:hover .nsh-doc-img {
    transform: scale(1.04);
  }

  /* Department pill match badges styling */
  .nsh-doc-dept-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: #ba6502;
    color: var(--nsh-bg-white);
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease;
  }

  .nsh-doc-card:hover .nsh-doc-dept-badge {
    background-color: var(--nsh-primary-orange);
  }

  /* Centered details region precisely echoing user reference image */
  .nsh-doc-info {
    padding: 30px 20px 25px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nsh-doc-name {
    font-size: 22px;
    font-weight: 600;
    color: #b35600;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
  }

  .nsh-doc-card:hover .nsh-doc-name {
    color: var(--nsh-primary-orange);
  }

  .nsh-doc-qual {
    font-size: 14px;
    color: var(--nsh-primary-orange);
    font-weight: 700;
    margin: 0 0 10px 0;
  }

  .nsh-doc-spec {
    font-size: 15px;
    color: var(--nsh-text-muted);
    margin: 0 0 24px 0;
    line-height: 1.5;
    max-width: 90%;
    flex-grow: 1;
  }

  /* Exact Orange Button Core Replica Styling */
  .nsh-doc-btn {
    background-color: var(--nsh-orange-btn-bg);
    border: 2px solid var(--nsh-orange-btn-border);
    color: #ff6f00;
    padding: 12px 60px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    max-width: 250px;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }

  /* Button Hover Reactions */
  .nsh-doc-card:hover .nsh-doc-btn {
    background-color: var(--nsh-primary-orange);
    border-color: var(--nsh-orange-dark);
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
    color: white;
  }
  
  .nsh-doc-btn:active {
    transform: scale(0.98);
  }



  /*=========================
    VKX CUSTOM CURSOR
==========================*/

.vkx-cursor-container{
    position:fixed;
    left:0;
    top:0;
    width:0;
    height:0;
    pointer-events:none;
    z-index:9999999;
}

/* Blue Ring */

.vkx-cursor-ring{
    position:absolute;
    width:38px;
    height:38px;
    border:3px solid #0d7a46;
    border-radius:50%;
    transform:translate(-50%,-50%);
    transition:
    width .30s ease,
    height .30s ease,
    border-color .30s ease,
    opacity .30s ease;
    will-change:left,top;
}

/* Red Dot */

.vkx-cursor-dot{
    position:absolute;
    width:9px;
    height:9px;
    background:#fd6102;
    border-radius:50%;
    transform:translate(-50%,-50%);
    transition:
    transform .30s ease,
    background .30s ease;
    will-change:left,top;
}

/* Hover Effect */

body.vkx-hover-active .vkx-cursor-ring{
    width:50px;
    height:50px;
    border-color:#0d7a46;
}

body.vkx-hover-active .vkx-cursor-dot{
    transform:translate(-50%,-50%) scale(1.4);
}

/* Hide on Mobile */

@media(max-width:991px){

.vkx-cursor-container{
display:none;
}

}






/*======================================
    VKX FLOATING BUTTONS
======================================*/

.vkx-floating-buttons{
    position:fixed;
    right:22px;
    bottom:22px;
    display:flex;
    flex-direction:column;
    gap:14px;
    z-index:99999;
}

/* Common */

.vkx-whatsapp-btn,
.vkx-scroll-top-btn{
    width:48px;
    height:48px;
    border-radius:50%;
    border:none;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    cursor:pointer;
    position:relative;
    overflow:hidden;
    transition:0.35s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
}

/* Shine Effect */

.vkx-whatsapp-btn::before,
.vkx-scroll-top-btn::before{
    content:"";
    position:absolute;
    top:-120%;
    left:-40%;
    width:60%;
    height:250%;
    background:rgba(255,255,255,.35);
    transform:rotate(25deg);
    transition:.55s;
}

.vkx-whatsapp-btn:hover::before,
.vkx-scroll-top-btn:hover::before{
    left:120%;
}

/* WhatsApp */

.vkx-whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.vkx-whatsapp-btn i{
    font-size:27px;
}

.vkx-whatsapp-btn:hover{
    transform:translateY(-5px) scale(1.08);
    box-shadow:0 18px 35px rgba(37,211,102,.45);
}

/* Scroll Top */

.vkx-scroll-top-btn{
    background:#ff6f00;
    color:#fff;
    opacity:0;
    visibility:hidden;
    transform:translateY(30px);
}

.vkx-scroll-top-btn i{
    font-size:20px;
}

.vkx-scroll-top-btn:hover{
    transform:translateY(-5px) scale(1.08);
    box-shadow:0 18px 35px rgba(16,152,199,.45);
}

/* Show Button */

.vkx-scroll-top-btn.vkx-show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* Pulse Animation */

.vkx-whatsapp-btn::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    border:2px solid rgba(37,211,102,.45);
    animation:vkxPulse 2s infinite;
}

@keyframes vkxPulse{

0%{
transform:scale(1);
opacity:1;
}

70%{
transform:scale(1.6);
opacity:0;
}

100%{
transform:scale(1.6);
opacity:0;
}

}

/* Responsive */

@media(max-width:768px){

.vkx-floating-buttons{
right:15px;
bottom:15px;
gap:12px;
}

.vkx-whatsapp-btn,
.vkx-scroll-top-btn{
width:48px;
height:48px;
}

.vkx-whatsapp-btn i{
font-size:26px;
}

.vkx-scroll-top-btn i{
font-size:18px;
}

}
@media (min-width: 1024px){
    .vkx-whatsapp-btn,
.vkx-scroll-top-btn{
width: 48px;
height:48px;
}

.vkx-whatsapp-btn i{
font-size:28px;
}
}











/* Wrapper & Global Layout */
.dr-prof-main-wrapper {
  background-color: var(--nsh-bg-light);
  color: var(--nsh-text-dark);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding: 40px 16px;
  line-height: 1.6;
}

.dr-prof-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.dr-prof-hero-card {
  background: var(--nsh-bg-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px var(--nsh-shadow-light);
  border: 1px solid var(--nsh-border-color);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.dr-prof-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--nsh-primary-green);
}

.dr-prof-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .dr-prof-hero-grid {
    flex-direction: row;
    align-items: flex-start;
  }
}

.dr-prof-avatar-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.dr-prof-avatar-ring {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--nsh-bg-light);
  border: 3px solid var(--nsh-primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--nsh-orange-alpha-25);
  animation: drProfPulse 3s infinite ease-in-out;
}

.dr-prof-placeholder-icon {
  width: 60px;
  height: 60px;
  color: var(--nsh-primary-green);
}
.avatar-doctor {
    width: 130px;
  height: 130px;
  border-radius: 50%;
}

.dr-prof-badge {
  background-color: var(--nsh-orange-alpha-15);
  color: var(--nsh-primary-orange);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--nsh-primary-orange);
}

.dr-prof-hero-details {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .dr-prof-hero-details {
    text-align: left;
  }
}

.dr-prof-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--nsh-primary-green);
  margin: 0 0 4px 0;
}

.dr-prof-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--nsh-primary-orange);
  margin: 0 0 8px 0;
}

.dr-prof-designation {
  font-size: 15px;
  color: var(--nsh-text-muted);
  margin: 0 0 12px 0;
}

.dr-prof-hospital-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nsh-bg-light);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--nsh-text-dark);
  margin-bottom: 20px;
}

.dr-prof-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .dr-prof-cta-group {
    justify-content: flex-start;
  }
}

/* Buttons */
.dr-prof-btn-primary {
  background-color: var(--nsh-primary-orange);
  color: var(--nsh-bg-white);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.dr-prof-btn-primary:hover {
  background-color: var(--nsh-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--nsh-orange-alpha-25);
}

.dr-prof-btn-outline {
  border: 1px solid var(--nsh-primary-green);
  color: var(--nsh-primary-green);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.dr-prof-btn-outline:hover {
  background-color: var(--nsh-primary-green);
  color: var(--nsh-bg-white);
}

.dr-prof-btn-full {
  width: 100%;
}

/* Quick Stats Bar */
.dr-prof-stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.dr-prof-stat-item {
  background: var(--nsh-bg-white);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #a8612acc;
  box-shadow: 0 4px 10px var(--nsh-shadow-light);
}

.dr-prof-stat-number {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--nsh-primary-green);
}

.dr-prof-stat-label {
  font-size: 13px;
  color: var(--nsh-text-muted);
}

/* Content Grid */
.dr-prof-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 992px) {
  .dr-prof-content-grid {
    /* grid-template-columns: 2fr 1fr; */
    padding: 30px;
  }
}

/* Article Boxes */
.dr-prof-section-box {
  background: var(--nsh-bg-white);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--nsh-border-color);
  box-shadow: 0 4px 12px var(--nsh-shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dr-prof-section-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dr-prof-heading {
  font-size: 20px;
  color: var(--nsh-primary-green);
  margin-top: 0;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.dr-prof-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--nsh-primary-orange);
  border-radius: 2px;
}

.dr-prof-paragraph {
  margin-bottom: 14px;
  color: var(--nsh-text-dark);
}

/* Features Grid */
.dr-prof-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.dr-prof-feature-card {
  background: var(--nsh-bg-light);
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid var(--nsh-primary-orange);
  transition: transform 0.2s ease;
}

.dr-prof-feature-card:hover {
  transform: translateX(4px);
}

.dr-prof-feature-card h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: var(--nsh-text-dark);
}

.dr-prof-feature-card p {
  margin: 0;
  font-size: 13px;
  color: var(--nsh-text-muted);
}

/* Chips Wrapper */
.dr-prof-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dr-prof-chip {
  background: var(--nsh-bg-light);
  border: 1px solid var(--nsh-border-color);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--nsh-text-dark);
  transition: all 0.2s ease;
}

.dr-prof-chip:hover {
  background-color: var(--nsh-primary-green);
  color: var(--nsh-bg-white);
  border-color: var(--nsh-primary-green);
  transform: translateY(-2px);
}

/* Services List */
.dr-prof-services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dr-prof-service-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dr-prof-service-icon {
  background: var(--nsh-orange-alpha-15);
  color: var(--nsh-primary-orange);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.dr-prof-service-item h4 {
  margin: 0 0 2px 0;
  font-size: 15px;
}

.dr-prof-service-item p {
  margin: 0;
  font-size: 13px;
  color: var(--nsh-text-muted);
}

/* Accordion FAQs */
.dr-prof-faq-item {
  border: 1px solid var(--nsh-border-color);
  border-radius: 8px;
  margin-bottom: 12px;
  background: var(--nsh-bg-white);
  overflow: hidden;
}

.dr-prof-faq-question {
  padding: 14px 18px;
  font-weight: 600;
  cursor: pointer;
  color: var(--nsh-text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dr-prof-faq-question::-webkit-details-marker {
  display: none;
}

.dr-prof-faq-question::after {
  content: '+';
  font-size: 18px;
  color: var(--nsh-primary-orange);
}

details[open] .dr-prof-faq-question::after {
  content: '−';
}

details[open] .dr-prof-faq-question {
  background-color: var(--nsh-bg-light);
  border-bottom: 1px solid var(--nsh-border-color);
}

.dr-prof-faq-answer {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--nsh-text-muted);
}

/* Sidebar */
.dr-prof-sidebar-card {
  background: var(--nsh-bg-white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--nsh-border-color);
  box-shadow: 0 4px 12px var(--nsh-shadow-light);
  position: sticky;
  top: 20px;
}

.dr-prof-sidebar-card h3 {
  margin-top: 0;
  color: var(--nsh-primary-green);
  font-size: 18px;
}

.dr-prof-sidebar-card p {
  font-size: 13px;
  color: var(--nsh-text-muted);
  margin-bottom: 20px;
}

.dr-prof-form-group {
  margin-bottom: 14px;
}

.dr-prof-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.dr-prof-form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--nsh-border-color);
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 14px;
  transition: border-color 0.2s;
}

.dr-prof-form-group input:focus {
  outline: none;
  border-color: var(--nsh-primary-orange);
}

.dr-prof-info-notice {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--nsh-border-color);
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--nsh-text-muted);
}

/* Keyframe Animations */
@keyframes drProfPulse {
  0% {
    box-shadow: 0 0 0 0 var(--nsh-orange-alpha-25);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 111, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 111, 0, 0);
  }
}






/* ==========================================
   IRA Smooth Bottom Fade Animation
========================================== */

.new-sigmaa-scroll-fade-section{
    opacity:0;
    transform:translateY(100px);
    transition:
        opacity 1.2s cubic-bezier(.22,.61,.36,1),
        transform 1.2s cubic-bezier(.22,.61,.36,1);
    will-change:opacity,transform;
}

.new-sigmaa-scroll-fade-section.new-sigmaa-scroll-visible{
    opacity:1;
    transform:translateY(0);
}

/* Optional stagger animation */

.new-sigmaa-scroll-fade-section .thumb,
.new-sigmaa-scroll-fade-section .info,
.new-sigmaa-scroll-fade-section .our-features{
    opacity:0;
    transform:translateY(60px);
    transition:
        opacity 1s ease,
        transform 1s ease;
}

.new-sigmaa-scroll-fade-section.new-sigmaa-scroll-visible .thumb{
    opacity:1;
    transform:translateY(0);
    transition-delay:.15s;
}

.new-sigmaa-scroll-fade-section.new-sigmaa-scroll-visible .info{
    opacity:1;
    transform:translateY(0);
    transition-delay:.35s;
}

.new-sigmaa-scroll-fade-section.new-sigmaa-scroll-visible .our-features{
    opacity:1;
    transform:translateY(0);
    transition-delay:.55s;
}








  /* ===================== NSGM — GENERAL MEDICINE PAGE STYLES ===================== */

  .nsgm-page {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    /* overflow-x: hidden; */
  }

  .nsgm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .nsgm-section {
    width: 100%;
    padding: 70px 20px;
    box-sizing: border-box;
  }

  .nsgm-eyebrow {
    display: inline-block;
    color: #ff6f00;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .nsgm-eyebrow-onbox { color: #e06200; }

  .nsgm-h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0d7a46;
    line-height: 1.25;
    margin: 0 0 18px;
  }

  .nsgm-h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0d7a46;
    margin: 0 0 14px;
  }

  .nsgm-p {
    font-size: 16px;
    line-height: 1.75;
    color: #666666;
    margin: 0 0 14px;
  }

  .nsgm-p-center {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .nsgm-section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
  }

  /* ---------- 1. INTRO ---------- */
  .nsgm-intro { background-color: #ffffff; }

  .nsgm-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
  }

  .nsgm-intro-img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  }

  /* ---------- 2. SERVICES ---------- */
  .nsgm-services { background-color: #faf5f0; }

  .nsgm-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .nsgm-service-card {
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    padding: 28px 16px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
@media (min-width:320px){
    .nsgm-service-card {
    padding: 26px 18px;
  }
}
  .nsgm-service-card:hover {
    transform: translateY(-6px);
    border-color: #ff6f00;
    box-shadow: 0 14px 30px rgba(255, 111, 0, 0.15);
  }

  .nsgm-service-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #0d7a46;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 14px;
  }

  .nsgm-service-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
  }

  /* ---------- 3. WHY CHOOSE ---------- */
  .nsgm-why { background-color: #ffffff; }

  .nsgm-why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
  }

  .nsgm-why-img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  }

  .nsgm-check-list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }

  .nsgm-check-list li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: #333333;
    line-height: 1.5;
  }

  .nsgm-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0d7a46;
    color: #ffffff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ---------- 4. CONDITIONS TREATED ---------- */
  .nsgm-conditions { background-color: #eeeeee; }

  .nsgm-tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .nsgm-tag {
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    color: #0d7a46;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 30px;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  }

  .nsgm-tag:hover {
    background-color: #ff6f00;
    border-color: #ff6f00;
    color: #ffffff;
  }

  /* ---------- 5. DIAGNOSIS + FACILITIES ---------- */
  .nsgm-diagnosis { background-color: #ffffff; }

  .nsgm-diagnosis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .nsgm-diagnosis-block {
    background-color: #faf5f0;
    border-radius: 14px;
    padding: 36px 30px;
  }

  .nsgm-dot-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
  }

  .nsgm-dot-list li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: #333333;
  }

  .nsgm-dot-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ff6f00;
  }

  /* ---------- 6. PREVENTIVE + LIFESTYLE CARE ---------- */
  .nsgm-care { background-color: #faf5f0; }

  .nsgm-care-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .nsgm-care-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 36px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #0d7a46;
  }

  /* ---------- 7. WHEN TO VISIT ---------- */
  .nsgm-visit { background-color: #ffffff; }

  .nsgm-visit-box {
    background-color: #eeeeee;
    border-left: 6px solid #ff6f00;
    border-radius: 14px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .nsgm-visit-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
    align-content: start;
  }

  .nsgm-visit-list li {
    position: relative;
    padding-left: 22px;
    font-size: 14.5px;
    font-weight: 500;
    color: #333333;
  }

  .nsgm-visit-list li::before {
    content: "!";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    background-color: #ff6f00;
    color: #ffffff;
  }

  /* ---------- 8. FAQ ---------- */
  .nsgm-faq { background-color: #faf5f0; }

  .nsgm-faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
  }

  .nsgm-faq-item {
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    overflow: hidden;
  }

  .nsgm-faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-align: left;
  }

  .nsgm-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #0d7a46;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .nsgm-faq-item.nsgm-faq-active .nsgm-faq-icon {
    transform: rotate(45deg);
    background-color: #ff6f00;
  }

  .nsgm-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
  }

  .nsgm-faq-item.nsgm-faq-active .nsgm-faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
  }

  .nsgm-faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
  }

  /* ---------- 9. CTA ---------- */
  .nsgm-cta {
    background-color: #0d7a46;
    text-align: center;
  }

  .nsgm-cta-inner {
    max-width: 720px;
  }

  .nsgm-cta-heading {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 16px;
  }

  .nsgm-cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 30px;
  }

  .nsgm-cta-btn {
    display: inline-block;
    background-color: #ff6f00;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 38px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
  }

  .nsgm-cta-btn:hover {
    background-color: #e06200;
    box-shadow: 0 10px 26px rgba(255, 111, 0, 0.25);
  }

  /* ===================== RESPONSIVE ===================== */

  @media (max-width: 1024px) {
    .nsgm-services-grid { grid-template-columns: repeat(3, 1fr); }
    .nsgm-check-list { grid-template-columns: 1fr; }
    .nsgm-visit-list { grid-template-columns: 1fr; }
  }

  @media (max-width: 860px) {
    .nsgm-intro-grid,
    .nsgm-why-grid,
    .nsgm-diagnosis-grid,
    .nsgm-care-grid,
    .nsgm-visit-box {
      grid-template-columns: 1fr;
    }

    .nsgm-intro-media { order: -1; }
    .nsgm-why-media { order: -1; }

    .nsgm-h2 { font-size: 28px; }
    .nsgm-section { padding: 55px 18px; }
  }

  @media (max-width: 600px) {
    .nsgm-services-grid { grid-template-columns: repeat(2, 1fr); }
    .nsgm-container { padding: 0 4px; }
    .nsgm-h2 { font-size: 24px; }
    .nsgm-h3 { font-size: 20px; }
    .nsgm-cta-heading { font-size: 24px; }
    .nsgm-visit-box { padding: 26px; }
    .nsgm-diagnosis-block, .nsgm-care-card { padding: 26px 20px; }
  }

  @media (max-width: 420px) {
    .nsgm-services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .nsgm-faq-question { font-size: 14.5px; padding: 16px 18px; }
  }








  /* ==========================================================================
   FACILITIES & CASHLESS HOSPITALIZATION PAGE STYLES
   ========================================================================== */
:root {
  --nsh-primary-green: #0d7a46;
  --nsh-primary-orange: #ff6f00;
  --nsh-orange-hover: #e06200;
  --nsh-bg-light: #faf5f0;
  --nsh-bg-white: #ffffff;
  --nsh-text-dark: #333333;
  --nsh-text-muted: #666666;
  --nsh-border-color: #e3e3e3;
  --nsh-shadow-light: rgba(0, 0, 0, 0.05);
  --nsh-shadow-dark: rgba(0, 0, 0, 0.15);
  --nsh-orange-alpha-15: rgba(255, 111, 0, 0.15);
  --nsh-orange-alpha-25: rgba(255, 111, 0, 0.25);
  --nsh-transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nsh-transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Wrapper */
.nsh-fac-main-wrapper {
  background-color: var(--nsh-bg-light);
  color: var(--nsh-text-dark);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding: 40px 16px;
  line-height: 1.6;
}

.nsh-fac-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.nsh-fac-hero-card {
  background: var(--nsh-bg-white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 24px var(--nsh-shadow-light);
  border: 1px solid var(--nsh-border-color);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: var(--nsh-transition-smooth);
}

.nsh-fac-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--nsh-primary-green);
  transition: var(--nsh-transition-fast);
}

.nsh-fac-hero-card:hover {
  box-shadow: 0 12px 32px var(--nsh-shadow-dark);
  transform: translateY(-2px);
}

.nsh-fac-hero-card:hover::before {
  background: var(--nsh-primary-orange);
}

.nsh-fac-eyebrow {
  color: var(--nsh-primary-orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nsh-fac-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--nsh-primary-green);
  margin: 4px 0 6px 0;
}

.nsh-fac-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--nsh-primary-orange);
  margin-bottom: 16px;
}

.nsh-fac-hero-desc {
  font-size: 15px;
  color: var(--nsh-text-dark);
  margin-bottom: 24px;
}

/* Buttons */
.nsh-fac-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nsh-fac-btn-primary {
  background-color: var(--nsh-primary-orange);
  color: var(--nsh-bg-white);
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--nsh-transition-fast);
  display: inline-block;
  box-shadow: 0 4px 12px var(--nsh-orange-alpha-25);
}

.nsh-fac-btn-primary:hover {
  background-color: var(--nsh-orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(224, 98, 0, 0.35);
}

.nsh-fac-btn-outline {
  border: 1px solid var(--nsh-primary-green);
  color: var(--nsh-primary-green);
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--nsh-transition-fast);
  display: inline-block;
}

.nsh-fac-btn-outline:hover {
  background-color: var(--nsh-primary-green);
  color: var(--nsh-bg-white);
  transform: translateY(-3px);
}

/* Quick Stats Bar */
.nsh-fac-stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.nsh-fac-stat-item {
  background: var(--nsh-bg-white);
  padding: 22px 18px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--nsh-border-color);
  box-shadow: 0 4px 10px var(--nsh-shadow-light);
  transition: var(--nsh-transition-smooth);
}

.nsh-fac-stat-item:hover {
  transform: translateY(-4px);
  border-color: var(--nsh-primary-orange);
  box-shadow: 0 8px 20px var(--nsh-orange-alpha-15);
}

.nsh-fac-stat-number {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--nsh-primary-green);
  transition: var(--nsh-transition-fast);
}

.nsh-fac-stat-item:hover .nsh-fac-stat-number {
  color: var(--nsh-primary-orange);
}

.nsh-fac-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--nsh-text-muted);
}

/* Section Card */
.nsh-fac-section-box {
  background: var(--nsh-bg-white);
  border-radius: 14px;
  padding: 17px;
  margin-bottom: 24px;
  border: 1px solid var(--nsh-border-color);
  box-shadow: 0 4px 12px var(--nsh-shadow-light);
  transition: var(--nsh-transition-smooth);
}
@media (min-width: 321px){
    .nsh-fac-section-box {
        padding: 30px;
    }
}

.nsh-fac-section-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.nsh-fac-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--nsh-primary-green);
  margin-top: 0;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.nsh-fac-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background-color: var(--nsh-primary-orange);
  border-radius: 2px;
  transition: var(--nsh-transition-smooth);
}

.nsh-fac-section-box:hover .nsh-fac-heading::after {
  width: 75px;
}

.nsh-fac-paragraph {
  margin-bottom: 16px;
  color: var(--nsh-text-dark);
  font-size: 15px;
}

/* Feature Grid */
.nsh-fac-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.nsh-fac-feature-card {
  background: var(--nsh-bg-light);
  padding: 18px;
  border-radius: 10px;
  border-left: 4px solid var(--nsh-primary-orange);
  border-top: 1px solid var(--nsh-border-color);
  border-right: 1px solid var(--nsh-border-color);
  border-bottom: 1px solid var(--nsh-border-color);
  transition: var(--nsh-transition-fast);
}

.nsh-fac-feature-card:hover {
  transform: translateX(6px);
  background: #ffffff;
  border-left-color: var(--nsh-primary-green);
  box-shadow: 0 4px 14px var(--nsh-shadow-light);
}

.nsh-fac-feature-card h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: var(--nsh-primary-green);
  transition: var(--nsh-transition-fast);
}

.nsh-fac-feature-card:hover h3 {
  color: var(--nsh-primary-orange);
}

.nsh-fac-feature-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--nsh-text-muted);
}

/* Empaneled Table */
.nsh-fac-table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--nsh-border-color);
  margin-bottom: 16px;
}

.nsh-fac-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.nsh-fac-table th {
  background-color: var(--nsh-primary-green);
  color: #ffffff;
  padding: 12px 16px;
  font-weight: 600;
}

.nsh-fac-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--nsh-border-color);
  transition: var(--nsh-transition-fast);
}

.nsh-fac-table tbody tr:hover td {
  background-color: var(--nsh-bg-light);
}

.nsh-fac-type-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.nsh-fac-type-tag.direct {
  background-color: rgba(13, 122, 70, 0.15);
  color: var(--nsh-primary-green);
  border: 1px solid var(--nsh-primary-green);
}

.nsh-fac-type-tag.tpa {
  background-color: var(--nsh-orange-alpha-15);
  color: var(--nsh-primary-orange);
  border: 1px solid var(--nsh-primary-orange);
}

.nsh-fac-notice-box {
  background: var(--nsh-bg-light);
  padding: 14px 18px;
  border-radius: 8px;
  border-left: 3px solid var(--nsh-primary-green);
  font-size: 13.5px;
  color: var(--nsh-text-muted);
}

.nsh-fac-notice-box p {
  margin: 0;
}

/* Steps Process */
.nsh-fac-steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nsh-fac-step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--nsh-border-color);
  background: var(--nsh-bg-white);
  transition: var(--nsh-transition-fast);
}

.nsh-fac-step-item:hover {
  background: var(--nsh-bg-light);
  transform: translateX(4px);
  border-color: var(--nsh-primary-orange);
}

.nsh-fac-step-num {
  background: var(--nsh-primary-orange);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  transition: var(--nsh-transition-fast);
}

.nsh-fac-step-item:hover .nsh-fac-step-num {
  background: var(--nsh-primary-green);
}

.nsh-fac-step-text h4 {
  margin: 0 0 2px 0;
  font-size: 16px;
  color: var(--nsh-text-dark);
}

.nsh-fac-step-text p {
  margin: 0;
  font-size: 13.5px;
  color: var(--nsh-text-muted);
}

/* Chips Wrapper */
.nsh-fac-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nsh-fac-chip {
  background: var(--nsh-bg-light);
  border: 1px solid var(--nsh-border-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--nsh-text-dark);
  transition: var(--nsh-transition-fast);
  cursor: default;
}

.nsh-fac-chip:hover {
  background-color: var(--nsh-primary-green);
  color: var(--nsh-bg-white);
  border-color: var(--nsh-primary-green);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(13, 122, 70, 0.25);
}

/* Compare Grid */
.nsh-fac-compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.nsh-fac-compare-card {
  background: var(--nsh-bg-light);
  padding: 20px;
  border-radius: 10px;
  border-top: 4px solid var(--nsh-primary-green);
  border-left: 1px solid var(--nsh-border-color);
  border-right: 1px solid var(--nsh-border-color);
  border-bottom: 1px solid var(--nsh-border-color);
  transition: var(--nsh-transition-fast);
}

.nsh-fac-compare-card:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-top-color: var(--nsh-primary-orange);
  box-shadow: 0 6px 16px var(--nsh-shadow-light);
}

.nsh-fac-compare-card h3 {
  margin: 0 0 12px 0;
  font-size: 17px;
  color: var(--nsh-primary-green);
}

.nsh-fac-compare-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--nsh-text-muted);
  font-size: 13.5px;
}

.nsh-fac-compare-card li {
  margin-bottom: 8px;
}

/* Accordion FAQ Styling */
.nsgm-section.nsgm-faq {
  background: var(--nsh-bg-white);
  border-radius: 14px;
  padding: 30px;
  border: 1px solid var(--nsh-border-color);
  box-shadow: 0 4px 12px var(--nsh-shadow-light);
  margin-top: 24px;
}

.nsgm-eyebrow {
  color: var(--nsh-primary-orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nsgm-h2 {
  font-size: 22px;
  color: var(--nsh-primary-green);
  margin-top: 4px;
  margin-bottom: 20px;
}


/* Reset & Section Container */
.nst-team-section {
  width: 100%;
  background-color: #ffffff;
  padding: 50px 20px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
}

.nst-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.nst-header-wrapper {
  text-align: center;
  margin-bottom: 45px;
}

.nst-main-title {
  color: #ff6f00;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 10px 0;
}

.nst-main-subtitle {
  color: #4a4a4a;
  font-size: 15px;
  margin: 0;
  font-weight: 400;
}

/* Main Grid Layout */
.nst-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
  align-items: start;
}

/* Left Column Styling */
.nst-left-col {
  display: flex;
  flex-direction: column;
}

.nst-left-heading {
  color: #666666;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
  text-transform: uppercase;
}

.nst-left-desc {
  color: #666666;
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.nst-image-card {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 4.5;
}


.nst-doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Column Titles (Doctors & Specialties) */
.nst-col-title {
  color: #777777;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}

/* List Items Container */
.nst-list-wrapper {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #f0f0f0;
}

@media (max-width:320px){
    .nst-image-card {
        width: 90%;
    }
    .nst-list-wrapper {
        max-width: 280px;
    }
}

/* Individual List Item */
.nst-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: #333333;
  transition: background-color 0.2s ease, transform 0.1s ease;
  border-radius: 4px;
}

.nst-list-item:hover {
  background-color: #f7f7f7;
}

/* Active Highlight Item (Vinod Kumar Dussa row) */
.nst-active-item {
  background-color: #f0f0f0 !important;
  font-weight: 600;
}

.nst-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.nst-item-text {
  font-size: 13.5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.nst-arrow {
  color: #bbbbbb;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

/* Vector Placeholder Icons - Doctor Avatars */
.nst-icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 1px solid #e2e2e2;
  background-color: #f9f9f9;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.nst-icon-male-doc {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23555555"><path d="M12 2a4 4 0 0 1 4 4v1a4 4 0 0 1-8 0V6a4 4 0 0 1 4-4zm6 12a3 3 0 0 1 3 3v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2a3 3 0 0 1 3-3h12z"/></svg>');
}

.nst-icon-female-doc {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23555555"><path d="M12 2a4 4 0 0 1 4 4v1a4 4 0 0 1-8 0V6a4 4 0 0 1 4-4zm5 12a3 3 0 0 1 3 3v2a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-2a3 3 0 0 1 3-3h10z"/></svg>');
}

/* Specialty Colored Icons */
.nst-spec-icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.nst-spec-medicine {
  background-color: #e8f5e9;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e7d32"><path d="M4.5 10.5C3.67 10.5 3 11.17 3 12s.67 1.5 1.5 1.5S6 12.83 6 12s-.67-1.5-1.5-1.5zM10.5 3C9.67 3 9 3.67 9 4.5S9.67 6 10.5 6 12 5.33 12 4.5 11.33 3 10.5 3zm0 15c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm9-7.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z"/></svg>');
}

.nst-spec-surgeon {
  background-color: #e3f2fd;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231565c0"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"/></svg>');
}

.nst-spec-laser {
  background-color: #f3e5f5;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%237b1fa2"><circle cx="12" cy="12" r="8"/></svg>');
}

.nst-spec-gynecology {
  background-color: #fbe9e7;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23d84315"><path d="M12 2a5 5 0 0 0-5 5c0 2.11 1.3 3.91 3.14 4.64L10 14H8v2h2v2H8v2h2v2h4v-2h2v-2h-2v-2h2v-2h-2.14L16.86 11.64A5.003 5.003 0 0 0 12 2z"/></svg>');
}

.nst-spec-oncology {
  background-color: #fff3e0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ef6c00"><circle cx="12" cy="12" r="5"/></svg>');
}

.nst-spec-ent {
  background-color: #e0f2f1;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300695c"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z"/></svg>');
}

.nst-spec-dental {
  background-color: #e8eaf6;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23283593"><path d="M12 2C9 2 7 3.5 7 6c0 2.5 1 5 2 8s2 6 3 8c1-2 2-5 3-8s2-5.5 2-8c0-2.5-2-4-5-4z"/></svg>');
}

.nst-spec-proctology {
  background-color: #e0f7fa;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300838f"><path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5z"/></svg>');
}

/* ==========================================================
   Responsive Breakpoints
   ========================================================== */

/* Tablet View (Max Width 992px) */
@media (max-width: 992px) {
  .nst-grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .nst-left-col {
    grid-column: span 2;
    margin-bottom: 20px;
  }

  .nst-image-card {
    max-height: 350px;
  }
}

/* Mobile View (Max Width 600px) */
@media (max-width: 600px) {
  .nst-grid-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nst-left-col {
    grid-column: span 1;
  }

  .nst-main-title {
    font-size: 26px;
  }

  .nst-main-subtitle {
    font-size: 13.5px;
  }

  .nst-left-heading {
    font-size: 18px;
  }

  .nst-item-text {
    font-size: 13px;
  }
}