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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
        }
        .mbtn{
                display: none;
            }
            .tp-sheading {
                background: #7b7c7e;
                width: 100%;
                padding: 0px 20px;
                border-radius: 5px;
                text-align: center;
                margin-bottom: 8px;
                font-size: 20px;
            }
/* youtube gallery section css */
.vidframe {
    position: relative;
}
.vyt {
    border: 5px solid #e83237cf;
    border-radius: 5px;
}
.play-icon {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 36px;
    background: rgb(232 50 55);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-icon::before {
    content: '▶';
    font-size: 20px;
    color: white;
    z-index: 0;
}
/* end youtube gallery section css */            
.text-primary {
    --bs-text-opacity: 1;
   color: rgb(232 50 55) !important;
}
.navbar-brand img {
    width: unset;
}
        :root {
            --primary-color: #c10130;
            --secondary-color: #34d399;
            --accent-color: #f59e0b;
            --success-color: #10b981;
            --text-dark: #6e6f72;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --border-color: #e5e7eb;
        }
.h-border {
    border: 3px solid #c10130;
    width: 130px;
    border-radius: 5px;
    margin: 25px 0px;
}
        /* Header */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 0.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .btn-primary-custom {
            background: #7b7c7e;
            border: none;
            color: white;
                padding: 0.3rem 1.5rem;
    border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            background: #c10130;
            color: white;
            text-decoration: none;
        }

        .btn-call-now {
            background: var(--primary-color);
            border: none;
            color: white;
                padding: 0.3rem 1.5rem;
    border-radius: 5px;

            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            margin-right: 1rem;
        }

        .btn-call-now:hover {
            background: #047857;
            color: white;
        }

        .btn-call-now i {
            margin-right: 0.5rem;
        }

        /* Promo Strip */
        .promo-strip {
            background: #c10130;
            color: white;
            text-align: center;
            padding: 0.5rem 0;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            z-index: 900;
        }
/* Academic and Expert Education css start */
        .academic-section {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
            background: #ffd9d9;
        }
        
        .academic-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }
        
        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.1;
        }
        
        .section-title .highlight {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .stat-card {
            background: rgb(255 255 255);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 17px 17px;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #f59e0b, transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .stat-card:hover::before {
            transform: translateX(100%);
        }
        
        /*.stat-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(245, 158, 11, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                        0 0 0 1px rgba(245, 158, 11, 0.1);
        }*/
        
        .stat-icon {    
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 0.8rem;
            color: white;
            box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
        }
        
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f59e0b;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: 10px;
        }
        
        .stat-description {
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        
        .floating-element {
            position: absolute;
            background: rgba(245, 158, 11, 0.1);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }
        
        .floating-element:nth-child(1) {
            width: 20px;
            height: 20px;
            top: 20%;
            left: 10%;
            animation-delay: -5s;
        }
        
        .floating-element:nth-child(2) {
            width: 30px;
            height: 30px;
            top: 60%;
            right: 15%;
            animation-delay: -10s;
        }
        
        .floating-element:nth-child(3) {
            width: 15px;
            height: 15px;
            bottom: 30%;
            left: 20%;
            animation-delay: -15s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0;
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 1;
            }
        }
        
        .achievement-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(34, 197, 94, 0.2);
            color: #c10130;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .stat-card {
                padding: 30px 25px;
            }
            
            .academic-section {
                padding: 60px 0;
            }
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
            }
        }
/* education css end */
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgb(240 78 48 / 0%), rgb(118 112 222 / 0%)), url(../img/memorial-hospitals.webp) center / cover;
            min-height: 70vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-left {
            padding: 2rem;
            text-align: left;
            background: linear-gradient(256deg, rgb(240 78 48 / 0%), #000000);
        }

        .hero-left h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-left ul {
            list-style: none;
            padding: 0;
            column-count: 2;
        }

        .hero-left ul li {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            padding-left: 1rem;
            position: relative;
            color: white;
            transition: color 0.3s ease;
        }

        .hero-left ul li:hover {
            color: var(--accent-color);
        }

        /*.hero-left ul li:before {
            content: "✔";
            color: var(--success-color);
            position: absolute;
            left: 0;
            font-weight: 900;
        }*/

        .hero-left .hero-buttons {
            margin-top: 1.5rem;
        }

        .hero-left .hero-buttons .btn {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin-right: 0.5rem;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .hero-left .hero-buttons .btn:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .hero-left .hero-buttons .btn-contact {
                background: #c10130;
        }

        .hero-left .hero-buttons .btn-contact:hover {
            background: #047857;
        }

        .hero-left .hero-buttons .btn-whatsapp {
            background: #25D366;
        }

        .hero-left .hero-buttons .btn-whatsapp:hover {
            background: #1DA851;
        }

        .hero-left .hero-buttons .btn-telegram {
            background: #0088cc;
        }

        .hero-left .hero-buttons .btn-telegram:hover {
            background: #006bb3;
        }

        .hero-right {
            padding: 2rem;
            max-width: 60%;
                background: #ffffff;
            border-radius: 15px;
            backdrop-filter: blur(5px);
        }

        .hero-right h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-align: center;
            color: #c10130;
        }

        .hero-right p {
          font-size: 1rem;
          text-align: center;
          margin-bottom: 1rem;
          color: var(--text-dark);
        }

        .hero-right .form-control {
         background: rgba(255, 255, 255, 0.05);
          border-radius: 4px;
          padding: 0.5rem;
          margin-bottom: 0.5rem;
          font-size: 0.9rem;
          /*height: 40px;*/
          border: 1px solid #c1013061;
        }

        .hero-right .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
        }

        .hero-right .form-label {
            color: white;
            font-weight: 600;
            margin-bottom: 0.25rem;
            font-size: 0.9rem;
            display: none;
        }

        .hero-right .btn-submit {
            background: #7b7c7e;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            font-weight: 600;
            width: 100%;
            font-size: 0.9rem;
            height: 40px;
            transition: all 0.3s ease;
        }

        .hero-right .btn-submit:hover {
            background: #d97706;
            transform: translateY(-2px);
        }

        /* Benefits Section */
        .benefits-section {
            /*background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));*/
            padding: 2rem 0;
            color: white;
            text-align: center;
            margin-top: -1rem;
            z-index: 900;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            /*box-shadow: 0 5px 15px rgba(0,0,0,0.2);*/
        }

        .benefits-section .container {
            padding: 1rem;
        }

        .benefits-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
                color: var(--text-dark);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        .benefit-card svg {
            color: #fff;
            width: 30px;
            height: 30px;
            background: #c10130;
            padding: 3px;
            border-radius: 5px;
        }
        .benefit-card {
          background: #fff;
          padding: 1.2rem;
          border-radius: 0px;
          transition: all 0.3s ease;
          backdrop-filter: blur(5px);
          color: var(--text-dark);
          box-shadow: 0px 1px 5px 2px #eee;
        }
        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #c10130, #c10130);
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .benefit-card:hover {
            background: rgb(50 190 142 / 9%);
            transform: translateY(-5px);
        }

        .benefit-icon {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--accent-color);
        }

        .benefit-title {
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* Doctors Section */
        .doctors-section {
            padding: 1rem 0;
            background: white;
        }

        .section-title {
          font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            color: var(--text-dark);
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
        color: var(--text-light);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
            font-size: 1rem;
        font-weight: 300;
        }

        .doctor-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .doctor-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
.svg-class{
        width: 13px;
    height: 13px;
    fill: #25d165;
    margin-top: -3px;
    margin-right: 4px;
}
        .doctor-image {
            width: 52%;
            height: 300px;
            object-fit: cover;
        }

        .doctor-info {
            padding: 1rem;
        }

        .doctor-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .doctor-experience {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .doctor-specialty {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .doctor-availability {
            color: var(--success-color);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .doctor-rating {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .doctor-buttons .btn {
            display: inline-block;
            padding: 0.2rem 1rem;
            margin: 0 0.5rem;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .doctor-buttons .btn-whatsapp {
            background: #25D366;
            color: white;
        }

        .doctor-buttons .btn-whatsapp:hover {
            background: #1DA851;
        }

        .doctor-buttons .btn-consult {
            background: #7b7c7e;
            color: white;
        }

        .doctor-buttons .btn-consult:hover {
            background: #047857;
        }

        /* Treatments Section */
        .treatments-section {
            padding: 5rem 0;
            background: var(--bg-light);
        }

        .treatment-card {
            background: white;
                border-radius: 15px;
                overflow: hidden;
                transition: all 0.3s ease;
                height: 100%;
                margin-bottom: 0rem;
                position: relative;
        }

        .treatment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .treatment-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
                filter: grayscale(1);
        }

        .treatment-info {
            padding: 1rem;
            text-align: center;
        }

        .treatment-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .treatment-specialty {
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .treatment-details {
            display: flex;
            justify-content: space-between;
                padding: 0px 10px;
            font-weight: 600;
        }

        .treatment-details .left {
            color: var(--text-dark);
        }

        .treatment-details .right {
            color: var(--accent-color);
        }

        .treatment-whatsapp {
            margin-top: 0px;
            text-align: center;
            padding: 25px 0px;
        }
        

        .treatment-whatsapp .btn {
            background: #25D366;
            color: white;
            padding: 0.2rem 1rem;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .treatment-whatsapp .btn:hover {
            background: #1DA851;
        }

        /* Departments Section */
        .departments-section {
            padding: 5rem 0;
            background: white;
        }

        .department-grid {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }

        .department-card {
            background: var(--bg-light);
                padding: 1rem 0px;
                border-radius: 5px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            height: 100%;
        }
        .department-card svg {
            color: #fff;
            width: 40px;
            height: 40px;
            background: #c10130;
            padding: 3px;
            border-radius: 5px;
            fill: #fff;
        }
        .department-card:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }

        .department-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }

        .department-card:hover .department-icon {
            color: white;
        }

        .department-name {
            font-size: 1rem;
            font-weight: 600;
            margin: .5rem 0rem;
        }
        .txt-clr{color: #c10130;}
        .department-whatsapp {
            margin-top: 1rem;
        }

        .department-whatsapp .btn {
            background: #25D366;
            color: white;
            padding: 0.2rem 1rem;
            border-radius: 3px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .department-whatsapp .btn:hover {
            background: #1DA851;
        }

        /* Call to Action Section */
        .cta-section {
            padding: 4rem 0;
            background: linear-gradient(90deg, #c10130, #c10130);
            color: white;
            text-align: center;
            margin-top: -1rem;
            z-index: 900;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
/* cost comparison table css start */
.cost-comparison-section {
            /*background: linear-gradient(135deg, #f0f9ff, #fefce8);*/
            padding: 5rem 0;
        }
        .table-container {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            backdrop-filter: blur(10px);
        }
        .table thead {
            background: #dc2626; /* Red color for table heading */
            color: white;

        }
        .table th{
            background: linear-gradient(45deg, #c10130, #c10130);
            color: white;
            padding: .5rem;
            font-weight: 600;
            text-align: center;
            border-bottom: 2px solid #e0e0e0;
        }
        .table th, .table td {
            vertical-align: middle;
            text-align: center;
        }
        .table tr:hover {
            background-color: #f1f5f9;
            transition: background-color 0.3s ease;
        }
        .highlight-india {
            background-color: #c10130 !important;
            color: #ffffff !important;
            font-weight: bold;
        }
        .other-country {
            background-color: #e0f2fe !important; /* Light blue for other countries */
            color: #6e6f72;
        }
        .section-title {
            color: #6e6f72;
            font-weight: 700;
        }
        @media (max-width: 768px) {
            .table-container {
                padding: 1rem;
            }
            .table th, .table td {
                font-size: 0.9rem;
            }
        }
/* cost comparison table css end */
        .cta-section h2 {
                font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            text-align: center;
        }

        .cta-section .btn {
            display: inline-block;
            padding: .3rem 2rem;
            margin: 0 1rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .cta-section .btn-contact {
              background: #c10130;
        }

        .cta-section .btn-contact:hover {
            background: #d97706;
            transform: translateY(-2px);
        }

        .cta-section .btn-consult {
            background: var(--success-color);
        }

        .cta-section .btn-consult:hover {
            background: #c10130;
            transform: translateY(-2px);
        }

        /* Why Choose Us Section */
        .why-choose-section {
            padding: 5rem 0;
            background: var(--bg-light);
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
                background: #c10130;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .feature-description {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* About Section */
        .about-section {
            padding: 5rem 0;
            background: white;
        }

        .about-image {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .about-content {
            padding-left: 3rem;
        }

        .about-title {
            font-size: 2.5rem;
            font-weight: 700;
                color: #c10130;
            margin-bottom: 1.5rem;
        }

        .about-text {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .key-highlights {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .highlight-item {
            flex: 0 0 48%;
            margin-bottom: 1rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }

        .stat-label {
            color: var(--text-light);
            font-weight: 500;
        }

        /* Counter Section */
        .counter-section {
            padding: 3rem 0;
            background: var(--bg-light);
            text-align: center;
        }

        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .counter-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .counter-item:hover {
            transform: translateY(-5px);
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .counter-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        /* Accreditations Section */
        .accreditations-section {
            padding: 3rem 0;
            background: var(--bg-light);
        }

        .accreditation-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .accreditation-logo {
            width: 120px;
            height: 80px;
            object-fit: contain;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            background: #fff;
            box-shadow: 0px 1px 2px 0px;
        }

        .accreditation-logo:hover {
            opacity: 1;
        }

        /* Popup Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            position: relative;
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            color: var(--text-light);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--text-dark);
        }

        .modal .form-control {
            border: 2px solid var(--border-color);
            border-radius: 10px;
            padding: 0.75rem;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .modal .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
        }

        .modal .form-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .modal .btn-submit {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }

        .modal .btn-submit:hover {
            background: #047857;
            transform: translateY(-2px);
        }
/* how it works section css */
.how-it-works-section {
            background: linear-gradient(135deg, #e8f5e9, #ffebee);
            padding: 5rem 0;
        }
        .step-card {
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(10px);
        }
        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
        }
        .step-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #c10130, #7b7c7e);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
        }
        .step-title {
            color: #d32f2f;
            font-weight: 600;
                font-size: 1.1rem !important;
        }
        .step-text {
            color: #333;
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-left ul {
                column-count: 1;
            }
            .promo-strip {
                font-size: 0.9rem;
            }

            .hero-section {
                flex-direction: column;
                text-align: center;
            }

            .hero-left, .hero-right {
                max-width: 100%;
            }

            .hero-left h3 {
                font-size: 1.5rem;
            }

            .hero-left ul li {
                font-size: 1rem;
            }

            .hero-right {
                margin-top: 2rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .benefits-section {
                padding: 1rem 0;
            }

            .benefits-section h2 {
                font-size: 1.5rem;
            }

            .benefit-title {
                font-size: 0.8rem;
                font-weight: normal;
            }
            .navbar-brand img {
                width: 90px;
            }
            #treatments .row>* {
                width: 50%;
                max-width: 50%;
            }
            .treatment-image {
                width: 100%;
                height: unset;
            }
            .treatment-name {
                font-size: 1rem;
                font-weight: 600;
            }
            .treatment-details {
                display: inline-block;
                padding: 0px 10px;
                 font-weight: normal; 
            }
            .treatment-specialty {
                margin-bottom: 0px;
            }
            .treatment-info {
                padding: 0.5rem 0.5rem;
                text-align: left;
            }
            .departments-section, .cost-comparison-section, .treatments-section, .why-choose-section, .about-section, .counter-section, .accreditations-section {
                padding: 1.5rem 0;
            }
            .global-health-section {
                padding: 1.5rem 0 !important;
            }
            .navbar {
                 padding: 0rem !important; 
            }
            .mbtn{
                display: block;
                background: var(--primary-color);
                border: none;
                color: white;
                padding: 0.3rem 1.5rem;
                border-radius: 5px;
                font-weight: 600;
                text-decoration: none;
                transition: all 0.3s ease;
                /*display: flex;*/
                align-items: center;
                margin-right: 1rem;
            }
            .btn-call-now {
                padding: 0.2rem 0.5rem;
                border-radius: 6px;
                margin-right: 0rem;
                display: block;
            }
            .hero-left .hero-buttons {
                display: none;
            }
            .department-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .department-whatsapp .btn {
                padding: 0.2rem 2rem;
                font-size: 12px;
            }
            .department-card {
                padding: 0.5rem;
                border-radius: 6px;
            }
            .department-name {
                font-size: 0.9rem;
                font-weight: normal;
                margin-bottom: 1rem;
            }
            .cta-section {
                padding: 1rem 0;
                margin-top: 0rem;
                border-radius: 0px;
            }
            .cta-section h2 {
                font-size: 1rem;
            }
            .cta-section .btn {
                padding: 0.2rem 2rem;
                margin: 0 1rem;
                border-radius: 8px;
                display: inline-block !important;
            }
            .department-icon {
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }
            .treatment-details .right, .treatment-details .left {
                font-size: 14px;
            }
            .section-subtitle {
                font-size: 1rem;
            }
            .benefit-card {
                padding: 0.5rem 0px;
            }
            .hero-right h3 {
                font-size: 1.4rem;
            }
            .section-title, .about-title {
              font-size: 1.4rem;
            }
            
            .about-content {
                padding-left: 0;
                margin-top: 0rem;
            }
            .counter-item {
                padding: 1rem;
                border-radius: 9px;
            }
            .counter-number {
                font-size: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .department-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
            }
            
            .cta-section .btn {
                display: block;
                margin: 1rem auto;
            }
            
            .key-highlights {
                flex-direction: column;
            }
            
            .highlight-item {
                flex: 0 0 100%;
            }
            
            .counter-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        @media (max-width: 992px) {
            .about-section .row {
                flex-direction: column-reverse;
            }
            .about-content {
                padding-left: 0;
            }
            
            .department-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            
            .key-highlights {
                flex-direction: column;
            }
            
            .highlight-item {
                flex: 0 0 100%;
            }
            
            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 769px) and (max-width: 1200px) {
            .department-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
            
            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .modal-content {
                width: 95%;
                padding: 1.5rem;
            }
        }
/* Global Health Section */
    .global-health-section {
        padding: 4rem 0;
        background: oklch(27.7% .046 192.524);
        position: relative;
        overflow: hidden;
    }

    .global-health-section .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .global-health-left {
        flex: 1;
        text-align: left;
    }
.logo-placeholder1 img{
    width: 200px;
    margin-bottom: 15px;
}
    .global-health-left .logo-placeholder {
        width: 150px;
        height: 60px;
        background: #c10130;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }

    .global-health-left p {
        font-size: 1.1rem;
        color: #1f2937;
        line-height: 1.7;
        max-width: 500px;
        margin-bottom: 2rem;
    }

    .global-health-left .btn-consult {
        background: #c10130;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .global-health-left .btn-consult:hover {
        background: #047857;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .global-health-left .btn-consult::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.4s ease, height 0.4s ease;
    }

    .global-health-left .btn-consult:hover::after {
        width: 200%;
        height: 200%;
    }

    .global-health-right {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        text-align: center;
    }

    .global-health-stat {
        background: white;
        padding: 2rem 1.5rem;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(5, 150, 105, 0.1);
    }

    .global-health-stat:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    .global-health-stat::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #c10130, #c10130);
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

    .global-health-stat:hover::before {
        opacity: 1;
    }

    .global-health-stat i {
        font-size: 2.5rem;
            color: #c10130;
        margin-bottom: 1rem;
        transition: transform 0.3s ease;
    }

    .global-health-stat:hover i {
        transform: scale(1.1);
    }

    .global-health-stat .stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: #c10130;
        margin-bottom: 0.5rem;
    }

    .global-health-stat .stat-label {
        font-size: 1rem;
        color: #6b7280;
        font-weight: 500;
        line-height: 1.4;
    }

    /* Modal Styling */
    .modal.fade .modal-dialog {
        transform: translateY(-100px);
        transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    }

    .modal.show .modal-dialog {
        transform: translateY(0);
        opacity: 1;
    }

    .modal-content {
        background: linear-gradient(135deg, #ffffff, #f8fafc);
        padding: 1.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        border: 1px solid rgba(5, 150, 105, 0.1);
    }

    .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.8rem;
        color: #6b7280;
        cursor: pointer;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .modal-close:hover {
        color: #c10130;
        transform: rotate(90deg);
    }

    .modal h3 {
        color: #1f2937;
        font-weight: 700;
        text-align: center;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }

    .modal p {
        text-align: center;
        color: #6b7280;
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }

    .modal .form-control {
          border: 2px solid #e5e7eb;
        border-radius: 4px;
        padding: 0.5rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.7);
    }

    .modal .form-control:focus {
        border-color: #c10130;
        box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
        background: white;
        outline: none;
    }

    .modal .form-label {
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .modal .form-control:focus + .form-label,
    .modal .form-control:not(:placeholder-shown) + .form-label {
        color: #c10130;
    }

    .modal .btn-submit {
        background: #c10130;
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 10px;
        font-weight: 600;
        width: 100%;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .modal .btn-submit:hover {
        background: #047857;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .modal .btn-submit::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.4s ease, height 0.3s ease;
    }

    .modal .btn-submit:hover::after {
        width: 200%;
        height: 200%;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .tp-sheading {
            padding: 0px 6px;
            font-size: 14px;
        }
        .global-health-section .container {
            flex-direction: column;
            text-align: center;
        }

        .global-health-left .logo-placeholder {
            margin: 0 auto 1.5rem;
        }

        .global-health-right {
            grid-template-columns: 1fr;
        }

        .modal-content {
            padding: 1.5rem;
        }

        .modal h3 {
            font-size: 1.5rem;
        }

        .modal p {
            font-size: 1rem;
        }
    }

    @media (max-width: 992px) {
        .global-health-right {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .global-health-right {
            grid-template-columns: 1fr;
        }

        .global-health-stat {
            padding: 1.5rem;
        }

        .global-health-stat i {
            font-size: 2rem;
        }

        .global-health-stat .stat-number {
            font-size: 1.8rem;
        }

        .modal-content {
            width: 95%;
        }
    }
   /* Footer Section */
    .footer-section {
        background: linear-gradient(135deg, #1f2937, #2d3748);
        color: #ffffff;
        padding: 4rem 0 2rem;
        position: relative;
        overflow: hidden;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-left {
        flex: 1;
        /*max-width: 400px;*/
    }

    .footer-left h4 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #c10130;
    }

    .footer-left p {
        font-size: 1rem;
        line-height: 1.7;
        color: #d1d5db;
    }

    .footer-right {
        flex: 1;
        /*max-width: 500px;*/
    }

    .footer-right h4 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #c10130;
    }

    .footer-right p {
        font-size: 1rem;
        color: #d1d5db;
        margin-bottom: 1.5rem;
    }

    .footer-right .form-control {
        border: 2px solid #4b5563;
        border-radius: 10px;
        padding: 0.75rem;
        font-size: 1rem;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
        color: #4b5563;
    }

    .footer-right .form-control:focus {
        border-color: #c10130;
        box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
        background: rgba(255, 255, 255, 0.1);
        outline: none;
    }

    .footer-right .form-control::placeholder {
        color: #9ca3af;
    }

    .footer-right .form-label {
        font-weight: 600;
        color: #d1d5db;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .footer-right .form-control:focus + .form-label,
    .footer-right .form-control:not(:placeholder-shown) + .form-label {
        color: #c10130;
    }

    .footer-right .btn-submit {
        background: #c10130;
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 10px;
        font-weight: 600;
        width: 100%;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .footer-right .btn-submit:hover {
        background: #047857;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .footer-right .btn-submit::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.4s ease, height 0.4s ease;
    }

    .footer-right .btn-submit:hover::after {
        width: 200%;
        height: 200%;
    }

    .copyright-section {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .copyright-section p {
        font-size: 0.9rem;
        color: #9ca3af;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .benefits-grid {
            grid-template-columns: repeat(auto-fit, minmax(140px, 0.5fr));
        }
        .footer-content {
            flex-direction: column;
            text-align: center;
        }

        .footer-left,
        .footer-right {
            max-width: 100%;
        }

        .footer-left h4,
        .footer-right h4 {
            font-size: 1.5rem;
        }

        .footer-right {
            margin-top: 2rem;
        }
    }

    @media (max-width: 576px) {
        .footer-section {
            padding: 3rem 0 1.5rem;
        }

        .footer-right .form-control {
            font-size: 0.9rem;
        }

        .footer-right .btn-submit {
            padding: 0.6rem 1.2rem;
        }
    } 
/* Hospital section and photo gallery css */
.vidframe iframe {
    height: 205px;
    border: 3px solid #00a950;
    border-radius: 5px;
    margin-bottom: 31px;
}
        .hospital-card .card-title{
                font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        .hospital-card {
               background: white;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                transition: all 0.3s ease;
                height: 100%;
                border: 1px solid var(--border-color);
                text-align: center;
        }
        .hospital-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .hospital-img {
            height: 200px;
            object-fit: cover;
        }
        .whatsapp-btn {
            background-color: #25D366;
            color: white;
            border: none;
        }
        .whatsapp-btn:hover {
            background-color: #128C7E;
            color: white;
        }
        .appointment-btn {
            background-color: #0d6efd;
            color: white;
            border: none;
        }
        .appointment-btn:hover {
            background-color: #0b5ed7;
            color: white;
        }
        .gallery-img {
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        .gallery-img:hover {
            transform: scale(1.05);
        }           